@charset "UTF-8";

@import url("reset.css");

.grecaptcha-badge {
visibility: hidden;
}
::placeholder{
color:#ccc;
}

#form {
width: 100%;
margin: 0 auto 0 auto;
font-family: ryo-gothic-plusn, sans-serif;
font-style: normal;
}
#form p {
font-size: 18px;
line-height: 1.5em;
margin: 1em 0 0 0;
}
#form h4 {
color: #c30d23;
font-size: 28px;
line-height: 1.5em;
font-weight: 700;
border: 1px solid #d33737;
padding: 0.3em 0 0.4em 0;
margin: 30px auto 40px auto;
}
.form-area {
margin: 0px auto 0 auto;
}
#form input[type="text"]:hover,
#form textarea:hover {
border: 1px solid #666666;
}
#form input[type="text"]:focus,
#form textarea:focus {
background-color: #ffffcc;
border: 1px solid #333333;
}
#form input[type="text"],
#form input[type="tel"],
#form textarea {
border: 1px solid #999999;
padding: 5px;
}
.anq_required {
}
.anq_required:after,
.optional:after {
content:"必須";
font-size: 11px;
color: #FFF;
background-color: #F60;
border-radius: 3px;
padding-top: 3px;
padding-bottom: 3px;
text-align: center;
line-height: 1em;
width: 3em;
margin-left: 10px;
padding-right: 5px;
padding-left: 5px;
position: relative;
top: -2px;
}
.optional {}
.optional:after {
content:"任意";
background-color: #6C6C6C;
}
.form-area {
width: 100%;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
padding-top: 0px;
padding-bottom: 60px;
}
.form-area h3 {
font-size: 30px;
line-height: 1.7em;
font-weight: bold;
text-align: center;
margin: 0 0 20px 0;
}
.form-area p {
text-align: center;
font-size: 18px;
line-height: 1.7em;
}
.form-area dl,
.form-area dt,
.form-area dd {
}
.form-area dl{
margin: 20px 0 20px 0;
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
box-sizing: border-box;

}
.form-area dt {
text-align: left;
font-size: 18px;
line-height: 1.7em;
padding: 2%;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #CCCCCC;
box-sizing: border-box;
width: 25%;
}
.form-area dd {
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #CCCCCC;
box-sizing: border-box;
font-size: 18px;
line-height: 1.7em;
padding: 2%;
text-align: left;
color: #000;
width: 75%;
}
.form-area dd span {
color: #666;
line-height: 1.2em;
margin-top: 0.5rem;
font-size: clamp(0.688rem, 0.641rem + 0.23vw, 0.875rem);/*14-11*/
}
.form-area .text_postal {
margin-bottom: 20px;
}
.form-area input[type="text"],
.form-area input[type="tel"],
.form-area textarea {
font-size: 18px;
line-height: 1.8em;
padding-left: 5px;
border: 1px solid #999999;
border-radius: 4px;
box-sizing:border-box;
}
.form-area input[type="text"]:focus,
.form-area textarea:focus {
background-color: #ffffcc;
border: 1px solid #333333;
}
.form-area select {
border: 1px solid #999999;
font-size: 18px;
border-radius: 6px;
padding: 0.5em;
}
.form-area label {
cursor: pointer;
margin-right: 15px;
}
#zip {
margin-bottom: 0.5rem;
}
/******************************************************** input テキスト */
.text100 {
width: 100%;
}
.text80 {
width: 80%;
}
.text60 {
width: 60%;
}
.text50 {
width: 50%;
}
.text40 {
width: 40%;
}
.text30 {
width: 30%;
}
.text20 {
width: 20%;
}
.text10 {
width: 10%;
}

/******************************************************** チェック・セレクトボックス設定 */
input[type=radio],
input[type=checkbox] {
display: none;
}
.radio, .checkbox {
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    margin: 0 20px 8px 0;
    padding: 20px 20px 20px 42px;
    border-radius: 8px;
    background-color: #f6f7f8;
    vertical-align: middle;
    cursor: pointer;
}
.radio:hover,
.checkbox:hover {
background-color: #FFD1D9;
}
.radio:hover:after,
.checkbox:hover:after {
border-color: #FF6600;
}
.radio:after,
.checkbox:after {
-webkit-transition: border-color 0.2s linear;
transition: border-color 0.2s linear;
position: absolute;
top: 45%;
left: 12px;
display: block;
margin-top: -8px;
width: 20px;
height: 20px;
border: 2px solid #bbb;
border-radius: 100vh;
content: '';
}
.radio:before {
-webkit-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
position: absolute;
top: 50%;
left: 16px;
display: block;
margin-top: -7px;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #FF3808;
content: '';
opacity: 0;
}
input[type=radio]:checked + .radio:before {
opacity: 1;
}
.checkbox:before {
-webkit-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
position: absolute;
top: 46%;
left: 20px;
display: block;
margin-top: -7px;
width: 7px;
height: 12px;
border-right: 3px solid #FF3808;
border-bottom: 3px solid #FF3808;
content: '';
opacity: 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
opacity: 1;
}
/******************************************************** チェック・セレクトボックス設定 */
#submit {
text-align: center;
margin-top: 2rem;
}
#submit p {
text-align: center;
margin: 20px auto 0 auto;
}
#submit input[type="button"] {
cursor: pointer;
font-size: 18px;
line-height: 1.7em;
padding-top: 0.5em;
padding-bottom: 0.4em;
padding-right: 1em;
padding-left: 1em;
}
#submit input[type="button"]:hover {
background: #D3D3D3;
}
#submit .css_btn_class {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 24px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 50px;
    background-color: #ccc;
}
.button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.button {
    display: inline-block;
    padding: 20px 30px;
    font-size: 24px;
    background-color: #f12b2b !important;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


/******************************************************** プライバシーポリシー */
#contents #privacy {
text-align: left;
padding-top: 30px;
width: 100%;
margin: 0px auto 20px auto;
}

#privacy .title {
width: 100%!important;
position:relative;
margin:0;
font-size: 18px;
color: #2c6862;
display: block;
border: 1px solid #2c6862;
cursor: pointer;
line-height: 1.5em;
font-weight: bold;
text-align: center;
padding: 0.5em;
}
#privacy .title.active {
border-bottom: none;
}
#privacy .title .tg-toggle {
display: block;
vertical-align: middle;
color: #2c6862;
line-height: 1;
width: 1.2em;
height: 0.25em;
background: #2c6862;
position: relative;
float: right;
margin-top: 10px;
right: 10px;
}
#privacy .title .tg-toggle::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: inherit;
border-radius: inherit;
transform: rotate(90deg);
}
#privacy .title.active .tg-toggle {
display: block;
vertical-align: middle;
color: #919191;
position: relative;
width: 1.2em;
height: 18px;
background: none;
margin-top: 2px;
}
#privacy .title.active .tg-toggle::before,
#privacy .title.active .tg-toggle::after { /* 共通設定 */
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 4px; /* 棒の幅（太さ） */
height: 18px; /* 棒の高さ */
background: #919191;
}
#privacy .title.active .tg-toggle::before {
transform: translate(-50%,-50%) rotate(45deg);
}
#privacy .title.active .tg-toggle::after {
transform: translate(-50%,-50%) rotate(-45deg);
}


#form #privacy .privacy_contents {
padding: 1em 2em 2em 2em;
overflow-y: auto;
height: 400px;
background-color: #fff;
border: solid 1px #919191;
display: none;
}
#form #privacy h5 {
font-size: 18px;
line-height: 1.5em;
font-weight: bold;
margin: 1em auto 0.2em auto;
}
#form #privacy h6 {
font-size: 18px;
line-height: 1.5em;
font-weight: bold;
margin: 1.5em auto 0.2em auto;
}
#form #privacy p {
font-size: 16px;
line-height: 1.7em;
margin-bottom: 1em;
text-align: left;
}
#form #privacy ul {
margin-bottom: 1em;
}

.accept_ck {
    display: flex;
    justify-content: center;
    font-size: 18px;
}

/******************************************************** プライバシーポリシー */

/* THANKS */
#thanks {
padding: 50px 0 0 0;
}
#thanks p.thanks {
font-size: 32px;
line-height: 1.5em;
font-weight: bold;
color: #F00;
margin: 50px 0 30px 0;
}
#thanks p {
font-size: 18px;
line-height: 1.7em;
color: #000;
padding-top: 10px;
margin-top: 10px;
}
#thanks address {
font-style: normal;
font-size: 18px;
line-height: 1.7em;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #CCC;
padding: 20px 0 0 0;
margin: 40px 0 0 0;
}

@media screen and (min-width:768px) and (max-width:1024px) {

#form {
width: 100%;
margin: 0 auto;
}
.form-area {
    width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding-top: 0px;
    padding-bottom: 60px;
}


}


/******************************************************** スマホ用設定 */

@media screen and (max-width:767px) {

#form {
width: 100%;
margin: 1rem auto 0 auto;
font-family: ryo-gothic-plusn, sans-serif;
font-style: normal;
}
#form h3 {
margin: 0px auto 20px auto;
}
#form h3:before {
content: '';
display: block;
width: 120px;
height: 40px;
background-image: url("../image/title_Contact.png");
background-size: contain;
vertical-align: middle;
position: absolute;
top: -20px;
left: 20%;
}
#form p {
font-size: 14px;
line-height: 1.3em;
}
#form h4 {
color: #c30d23;
font-size: 18px;
line-height: 1.3em;
font-weight: 700;
border: 1px solid #d33737;
padding: 0.3em 1em 0.4em 1em;
margin: 10px auto 40px auto;
}

.form-area {
width: 100%;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
padding-top: 0px;
padding-bottom: 60px;
}
.form-area dl {
margin-bottom: 20px;
box-sizing: border-box;
}
.form-area dt {
text-align: left;
font-size: 16px;
line-height: 1.3em;
padding: 0.5em 3% 0.5em 3%;
width: 100%;
display: block;
border: none;
box-sizing: border-box;
}
.form-area dd {
padding: 1em 3% 1em 3%;
text-align: left;
font-size: 16px;
line-height: 1.3em;
color: #000;
display: block;
width: 100%;
border: none;
box-sizing: border-box;
}
.form-area input[type="text"],
.form-area input[type="tel"],
.form-area input[type="email"],
.form-area textarea {
padding: 0.5em;
font-size: 16px;
line-height: 1.3em;
border: 1px solid #999999;
border-radius: 4px;
box-sizing:border-box;
}
.form-area select {
border: 1px solid #999999;  /* 必要 */
font-size: 16px;
box-sizing:border-box;
}
::-webkit-input-placeholder {
color: #ACACAC;
font-size: 16px;
width:80%;
}
/******************************************************** input テキスト */
.text100,.text80,.text60,.text50,.text40,.text30,.text20,.text10 {
width: 100%!important;
}
/******************************************************** ラジオ・チェックボックス */
.radio,
.checkbox {
width: 100%;
margin-bottom: 20px;
font-size: 16px;
}
.radio:after{
    top: 45%;
    left: 13px;
    margin-top: -7px;
    width: 18px;
    height: 18px;
}
.radio:before {
top: 48%;
left: 16px;
margin-top: -6px;
width: 12px;
height: 12px;
}
.checkbox:after {
    top: 45%;
    left: 13px;
    margin-top: -11px;
    width: 18px;
    height: 18px;
}
.checkbox:before {
top: 40%;
left: 18px;
margin-top: -7px;
width: 7px;
height: 12px;
}
#submit input[type="submit"] {
font-size: 18px;
line-height: 1.5em;
font-weight: bold;
padding: 0.8em 0 0.8em 0;
width: 70%;
margin: 20px auto 0 auto;
}
/******************************************************** プライバシーポリシー */
#contents #privacy {
text-align: left;
padding-top: 0px;
width: 100%;
margin: 0px auto 20px auto;
}

#privacy .title {
width: 100%!important;
position:relative;
margin:0;
font-size: 14px;
color: #2c6862;
display: block;
border: 1px solid #2c6862;
cursor: pointer;
line-height: 1.5em;
font-weight: bold;
text-align: left;
padding: 0.5em 2em 0.5em 0.5em;
}
#privacy .title.active {
border-bottom: none;
}
#privacy .title .tg-toggle {
display: block;
vertical-align: middle;
color: #2c6862;
line-height: 1;
width: 1.2em;
height: 0.25em;
background: #2c6862;
position: absolute;
top: 15%;
right: 3%;
}
#privacy .title .tg-toggle::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: inherit;
border-radius: inherit;
transform: rotate(90deg);
}
#privacy .title.active .tg-toggle {
display: block;
vertical-align: middle;
color: #919191;
position: absolute;
width: 18px;
height: 18px;
background: none;
top: 30%;
right: 3%;
}
#privacy .title.active .tg-toggle::before,
#privacy .title.active .tg-toggle::after { /* 共通設定 */
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 4px; /* 棒の幅（太さ） */
height: 18px; /* 棒の高さ */
background: #919191;
}
#privacy .title.active .tg-toggle::before {
transform: translate(-50%,-50%) rotate(45deg);
}
#privacy .title.active .tg-toggle::after {
transform: translate(-50%,-50%) rotate(-45deg);
}
#contents #privacy .privacy_contents {
padding: 1em;
overflow-y: auto;
height: 200px;
background-color: #f7f7f7;
border: solid 1px #919191;
display: none;
}
#contents #privacy h5 {
font-size: 16px;
line-height: 1.2em;
font-weight: bold;
margin: 1em auto 0.2em auto;
}
#contents #privacy h6 {
font-size: 16px;
line-height: 1.2em;
font-weight: bold;
margin: 1.5em auto 0.2em auto;
}
#contents #privacy p {
font-size: 14px;
line-height: 1.2em;
margin-bottom: 1em;
}
#contents #privacy ul {
margin-bottom: 1em;
}

/******************************************************** プライバシーポリシー */
#thanks {
width: 100%;
margin: 2rem auto 4rem;
padding-top: 15px;
}
#thanks p {
font-size: 16px;
line-height: 1.8em;
}
#thanks p.thanks {
font-size: 20px;
line-height: 1.8em;
font-weight: bold;
color: #F00;
margin-bottom: 30px;
}
#thanks address {
font-style: normal;
font-size: 16px;
line-height: 1.3em;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #CCC;
padding: 20px 0 0 0;
margin: 40px 0 0 0;
}
}