:root {
  /*--main-bg-color: #00bfff;*/
  --main-bg-color: #92ffff;
  --main-text-color: #000000;
  --header-text-color: #000000;
}
.form-control-lg {
  background: inherit;
}

@media screen and (min-width:480px) { 
    /*　画面サイズが480pxからはここを読み込む　*/
 td {
   white-space: normal;
 }
}
@media screen and (min-width:1024px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
 td {
   white-space: nowrap;
 }
}

body {
  font-family: "Arial", "メイリオ";
  background: #fefefe ;
}

div.header {
  background: linear-gradient(90deg, var(--main-bg-color), var(--main-bg-color) );
  width: 100%;
  height: auto;
  padding: 12px;
  vertical-align: middle;
  font-size: 30px;
  color: var(--header-text-color); 
  font-weight: bold;
}

textarea.wide {
  width: 500px;
  height: 5em;
}

.button {
  appearance: none;
  border: 0;
  border-radius: 5px;
  background: #4676D7;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none !important;
}

.marker_pink {
background: linear-gradient(transparent 80%, #ff66ff 80%);
}

.cols {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    
    -webkit-column-gap: 10px; /* Chrome, Safari, Opera */
    -moz-column-gap: 10px; /* Firefox */
    column-gap: 10px;
    
    display:flex;
    flex-wrap:wrap;
}

.box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: var(--main-text-color);/*文字色*/
    background: #000;
    color: #fff;
    border: none;/*線*/
    border-radius: 0px;/*角の丸み*/
}
.box2 p {
    margin: 0; 
    padding: 0;
}

.top {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.content {
  padding: 20px 20px 0;
  padding-bottom: 20px;
  line-height: 1.8em;
}

h4 {
  /*線の種類（実線） 太さ 色*/
  border-bottom: solid 2px black;
}

.footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #000;
  color: #fff;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 0px;
  padding-bottom: 0px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/7);
  font-size: 80%;
  height: 40px;
  border-bottom: 3px solid #ea8d00;
  background-color: #d9d9d9;
  line-height: 40px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

.button {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 13pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #000066;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 3px 3px 1px #666666;  /* 影の設定 */
  border        : 0px   /* 枠の指定 */
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #fff;     /* 背景色     */
  background    : #4a72c2;     /* 文字色     */
}

.title {
	background-color: #d1ccc9;
	color: #404040;
	padding: 5px;
}

.link {
  position: relative;
  text-decoration: none;
}
.link:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-left: solid 2px #333;
  position: absolute;
  top: 50%;
  left: 890;
  margin-top: -4px;
  margin-left: -14px;
  transform: rotate(135deg);
}

.link {
    cursor: pointer ;
    color: #404040 ;
    background: #d9d9d9 ;
    pointer-events: none;
    font-size: 20px;
    font-weight: bold;
    width: 900px;
    margin: 2px;
    padding: 4px;
    display: block ;
    text-decoration: none ;
    text-align: left;
    pointer-events: auto;
}
.link a{
    text-decoration: none ;
    color: #404040 ;
    background: #d9d9d9 ;
    pointer-events: auto;
}

.footer {
	max-width: 1140px;
    font-size: 80%;
    font-weight: bold;
    background-color: #333f50;
    color: white;
    padding: 30px;
}

td {
    background-color: #e8e6e4;
    border: solid 1px;
}

input[type=submit] {
    padding: 10px;
    background-color: #2f378e;
    color: #fbf3ec;
    font-weight: bold;
    width: 250px;
    border-radius: 6px;
    margin: 5px;
}
input[type=submit]:hover {
    padding: 10px;
    background-color: #080880;
    color: #fbf3ec;
    margin: 5px;
}

textarea {
    width: 95%;
    padding: 6px;
    border-radius: 6px;
    margin: 5px;
    height: 84px;
}
input[type=text] {
    width: 95%;
    padding: 6px;
    border-radius: 6px;
    margin: 5px;
}
input[type=text].half {
    width: 20%;
    padding: 6px;
    margin: 5px;
}
input[type=text].half2 {
    width: 40%;
    padding: 6px;
    margin: 5px;
}
input[type=password] {
    width: 95%;
    padding: 6px;
    border-radius: 6px;
    margin: 5px;
}
input[type=email] {
    width: 95%;
    padding: 6px;
    border-radius: 6px;
    margin: 5px;
}

.required {
    color: red;
    padding: 2px;
}

.clear {
    clear: left;
}

table {
    width: 80%%;
    border-collapse:  collapse;     /* セルの線を重ねる */
}


table {
  border: 1px solid #d1ccc9;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
}
table thead th,
table tbody th,
table tbody td {
  padding: none;
  border: 1px solid #d1ccc9;
  font-weight: bold;
  color: #404040;
}
table thead th + th,
table tbody td {
  border-left: 1px solid #d1ccc9;
}
table tbody tr:last-child th,
table tbody tr:last-child td {
  border-bottom: none;
}

::placeholder {
  color: rgb(160, 160, 160);
}

.acd-check{
    display: none;
}
.acd-label{
    background: #333;
    color: #fff;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
}
.acd-content{
    border: 1px solid #333;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
    height: 40px;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}

.box11{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box11 p {
    margin: 0; 
    padding: 0;
}

.border-box{
    width: 75%;
    border:1px solid #fff;
    background-color:#e8e8e8;
    border-radius:10px;
    padding:30px;
    padding-top: 16px;
    padding-bottom: 16px;
    margin:20px;
    text-align: left;
}

#kotei {


background-color:#ffffff;
width:100%;
height:15em;
text-align:center;
position:sticky;
top:0;

}

#honbun {
/*padding-top:5em;*/

}
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #d04a4a;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #FF4F4F;
}

a.btn--radius {
   border-radius: 100vh;
}