@charset "UTF-8";

@import url("reset.css");

.grecaptcha-badge {
visibility: hidden;
}
::placeholder{
color:#ccc;
}
/* Honeypot: 画面外へ退避 */
.hp-field{
position:absolute !important;
left:-10000px !important;
top:auto !important;
width:1px !important;
height:1px !important;
overflow:hidden !important;
}
.form-area input[type="text"]:hover,
.form-area textarea:hover {
border: 1px solid #666666;
}
.form-area input[type="text"]:focus,
.form-area textarea:focus {
background-color: #ffffcc;
border: 1px solid #333333;
}
.form-area input[type="text"],
.form-area input[type="email"],
.form-area input[type="tel"],
.form-area textarea {
border: 1px solid #999999;
padding-top: 3px;
padding-right: 3px;
padding-bottom: 3px;
padding-left: 5px;
}

.anq_required {
position: relative;
}
.anq_required:after {
content:"必須";
font-size: 12px;
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: 3px;
padding-left: 3px;
position: absolute;
top: 4px;
right: 0;
}
.form-area {
width: 1000px;
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;
border: solid 1px #cccccc;
font-family: "ryo-gothic-plusn", sans-serif;
font-weight: 700;
font-style: normal;
}
.form-area dt {
text-align: left;
font-size: 18px;
line-height: 1.7em;
font-weight: bold;
padding: 2%;
background-color: #EAEAEA;
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;
background-color: #FFF;
box-sizing: border-box;
font-size: 18px;
line-height: 1.7em;
padding: 2%;
text-align: left;
color: #000;
width: 75%;
}
.form-area .text_postal {
margin-bottom: 20px;
}
.form-area input[type="text"],
.form-area input[type="email"],
.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 input[type="email"]: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;
}
/******************************************************** チェック・セレクトボックス設定 */
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;
padding: 12px 12px 12px 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: 18px;
display: block;
margin-top: -5px;
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;
}
#submit input[type="submit"] {
font-size: 26px;
line-height: 1.5em;
padding-left: 50px;
font-weight: bold;
margin: 20px auto 30px auto;
padding: 1em 5em 1em 5em;
border-radius: 6px;
box-shadow: 0px 0px 6px #898989;
background-image: -moz-linear-gradient(top, #24de2c, #057a02);
background-image: -webkit-linear-gradient(top, #24de2c, #057a02);
background-image: linear-gradient(top, #24de2c, #057a02);
background-clip: padding-box;
cursor: pointer;
color: #FFF;
background-color: #057a02;
touch-action: manipulation;
}
#submit input[type="submit"]:hover {
background-image: -webkit-linear-gradient(top, #ff3a30, #d91400);
background-image: linear-gradient(top, #ff3a30, #d91400);
}
#submit p {
text-align: center;
margin: 20px auto 0 auto;
}
button{
background-color: transparent;
border: none;
cursor: pointer;
outline: none;
padding: 0;
appearance: none;
}
#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;
}

/******************************************************** プライバシーポリシー */
#privacy {
text-align: left;
padding-top: 30px;
width: 100%;
margin: 0px auto 20px auto;
}
#privacy .title {
position:relative;
margin:0;
font-size: 18px;
color: #000000;
display: block;
border: 1px solid #919191;
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: #919191;
line-height: 1;
width: 1.2em;
height: 0.25em;
background: #919191;
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: 18px;
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);
}

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

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

/* THANKS */
#thanks {
padding: 0 0 50px 0;
}
#thanks p.thanks {
font-size: 32px;
line-height: 1.5em;
font-weight: bold;
color: #F00;
margin-bottom: 30px;
}
#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;
text-align: center;
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: 0px) and (max-width: 640px) {

.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%;
}
.radio,
.checkbox {
width: 100%;
margin-bottom: 20px;
}
.radio:after,
.checkbox:after {
top: 45%;
left: 12px;
margin-top: -8px;
width: 16px;
height: 16px;
}
.radio:before {
top: 48%;
left: 16px;
margin-top: -5px;
width: 12px;
height: 12px;
}
.checkbox:before {
top: 40%;
left: 18px;
margin-top: -7px;
width: 7px;
height: 12px;
}
#submit input[type="submit"] {
font-size: 20px;
line-height: 1.5em;
font-weight: bold;
padding: 0.8em 0 0.8em 0;
width: 90%;
margin: 20px auto 0 auto;
}
/******************************************************** プライバシーポリシー */
#privacy {
text-align: left;
padding-top: 0px;
width: 100%;
margin: 0px auto 20px auto;
}

#privacy .title {
position:relative;
margin:0;
font-size: 14px;
color: #000000;
display: block;
border: 1px solid #919191;
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: #919191;
line-height: 1;
width: 1.2em;
height: 0.25em;
background: #919191;
position: absolute;
top: 30%;
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);
}
#privacy .privacy_contents {
padding: 1em;
overflow-y: auto;
height: 200px;
background-color: #f7f7f7;
border: solid 1px #919191;
display: none;
}
#privacy h5 {
font-size: 16px;
line-height: 1.2em;
font-weight: bold;
margin: 1em auto 0.2em auto;
}
#privacy h6 {
font-size: 16px;
line-height: 1.2em;
font-weight: bold;
margin: 1.5em auto 0.2em auto;
}
#privacy p {
font-size: 14px;
line-height: 1.2em;
margin-bottom: 1em;
}
#privacy ul {
margin-bottom: 1em;
}

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