.tbl01 {
background: #fff;
width: 100%;
margin: 10px auto 30px;
font-size: 15px;
line-height: 1.5;
}

.tbl01 th {
background:#111343;
width: 100%;
padding: 18px 28px;
color: #fff;
font-weight: bold;
text-align: center;
vertical-align: middle;
border-bottom: 1px dotted rgba(255,255,255,0.66);
}

.tbl01 td {
width: 100%;
padding: 18px 28px;
text-align: left;
vertical-align: middle;
border-bottom: 1px dotted rgba(0,26,62,0.33);
}

.tbl01 td:nth-of-type(1) {
border-top: 1px dotted rgba(0,26,62,0.33);
}


.tbl01 {
background: #fff;
width: 100%;
margin: 10px auto 30px;
font-size: 14px;
line-height: 1.5;
border-bottom: 1px dotted rgba(0,26,62,0.33);
}

.tbl01 th {
display: block;
background:#111343;
width: 100%;
padding: 8px 10px;
color: #fff;
font-weight: bold;
text-align: left;
vertical-align: middle;
border-bottom: 0px dotted rgba(255,255,255,0.66);
}

.tbl01 td {
display: block;
width: 100%;
padding: 15px 10px;
text-align: left;
vertical-align: middle;
border-bottom: 0px dotted rgba(0,26,62,0.33);
}

.tbl01 td:nth-of-type(1) {
border-top: 0px dotted rgba(0,26,62,0.33);
}

.req {
color: rgb(255, 255, 255);
font-size: 66%;
background: rgb(255, 0, 0);
padding: 2px 4px;
vertical-align: 2px;
}


/* フォーム PC
---------------------------------------------------------------------------*/
.form_inner {
width: 980px;
margin: 0 auto;
padding: 60px 0 20px;
text-align: center;
}

input, button, textarea, select {
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

input,
textarea,
select {
background: #fff;
margin: 0;
padding: 8px 10px;
width: 100%;
font-size: 15px;
font-family: inherit;
-moz-border-radius: 2px; 
-webkit-border-radius: 2px;
border-radius: 2px;
border: 1px solid #ddd;
-webkit-box-sizing:border-box;
box-sizing: border-box;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
filter: alpha(opacity=70);
-ms-filter: "alpha(opacity=70)";
opacity: 0.7;
}

input::-webkit-input-placeholder {
color: #999;
font-weight: normal;
}

input:-ms-input-placeholder {
color: #999;
font-weight: normal;
}

input::-moz-placeholder {
color: #999;
font-weight: normal;
}

.req {
color: rgb(255, 255, 255);
font-size: 66%;
background: rgb(255, 0, 0);
padding: 2px 4px;
vertical-align: 2px;
}

#agre_btn input[type="checkbox"] {
display: none;
}

#agre_btn label::before {
content: "";
display: inline-block;
position: relative;
top: 1px;
left: 0;
width: 13px;
height: 13px;
margin-right: 5px;
border: 1px solid #333;
}

#agre_btn input:checked + label::before {
background-color: rgba(11,56,120,0.66);
border: 1px solid #333;
}

button[type="submit"] {
display: block;
background: #111343;
width: 100%;
max-width: 400px;
height: auto;
margin: 10px auto 30px;
padding: 15px 0;
color: #fff;
font-size: 15px;
font-weight: bold;
border: none;
-moz-border-radius: 2px; 
-webkit-border-radius: 2px;
border-radius: 2px;
-webkit-appearance: none;
}

button[type="submit"]:hover {
filter: alpha(opacity=70);
-ms-filter: "alpha(opacity=70)";
opacity: 0.7;
}

.privacy_link a {
color: #F45B69;
text-decoration: underline;
}

.privacy_link a:hover {
filter: alpha(opacity=70);
-ms-filter: "alpha(opacity=70)";
opacity: 0.7;
}

.btn-submit li {
display:inline-block;
width: 48%;
}

.btn-submit li input[type="button"], .btn-submit li input[type="submit"]{
background: rgba(11,56,120,1);
width: 90%;
height: auto;
margin: 10px auto 30px;
padding: 15px 0;
color: #fff;
font-size: 15px;
font-weight: bold;
border: none;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-webkit-appearance: none;
}

.error_messe {
color: #ff0000;
text-align: center;
}


.exclusive {
font-family: source-han-sans-japanese,sans-serif;
font-weight: 700;
font-style: normal;
}


.center {
  text-align: center;
}


/* ベーススタイル */
.tbl01 {
    background: #fff;
    width: 100%;
    margin: 10px auto 30px;
    font-size: 15px; /* PC用フォントサイズ */
    line-height: 1.5;
}

.tbl01 th, .tbl01 td {
    padding: 18px 28px; /* PC用パディング */
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px dotted rgba(0,26,62,0.33);
}

.tbl01 th {
    background: #111343;
    color: #fff;
    font-weight: bold;
    text-align: center; /* thのみ中央寄せ */
}

/* メディアクエリでモバイル対応 */
@media (max-width: 768px) {
    .tbl01 {
        font-size: 14px; /* モバイル用フォントサイズ */
    }

    .tbl01 th, .tbl01 td {
        padding: 10px; /* モバイル用パディング */
    }
}

/* フォームのスタイル */
.form_inner {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 60px 0 20px;
    text-align: center;
}

input, button, textarea, select {
    background: #fff;
    padding: 8px 10px;
    width: 100%;
    font-size: 15px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    input, button, textarea, select {
        font-size: 14px; /* モバイル用フォントサイズ */
    }
}

.button[type="submit"] {
    background: #111343;
    width: 100%;
    padding: 15px 0;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .button[type="submit"] {
        padding: 12px 0; /* モバイル用パディング */
    }
}
