@charset "UTF-8";

.faq-content{
margin-bottom: 80px;
}

.faq-content .layout{
padding-bottom: 30px;
margin-bottom: 40px;
border-bottom: 2px dashed #D9D9D9;
}

.faq-content .layout:last-child{
border-bottom: 0;
}
.faq-content .layout .item:nth-of-type(1) {
margin-bottom: 40px;
}
.faq-content .layout .item:nth-of-type(1) h3{
display: block;
margin: 0;
padding: 0;
font-size: 21px;
text-align: center;
}

.faq-content .layout .item:nth-of-type(2) dl dt{
position: relative;
padding: 20px 50px 20px 60px;
margin-bottom: 10px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
-moz-box-shadow: 0px 0px 10px #ccc;
-webkit-box-shadow: 0px 0px 10px #ccc;
box-shadow: 0px 0px 10px #ccc;
cursor: pointer;
}

.faq-content .layout .item:nth-of-type(2) dl dt.active{
background: #FBF7EF;
}

.faq-content .layout .item:nth-of-type(2) dl dt:before{
content: "";
width: 20px;
height: 2px;
background: #000;
position: absolute;
top: calc(50% - 1px);
right: 15px;
}

.faq-content .layout .item:nth-of-type(2) dl dt:after{
opacity: 1;
visibility: visible;
content: "";
width: 2px;
height: 20px;
background: #000;
position: absolute;
top: calc(50% - 10px);
right: 24px;
}

.faq-content .layout .item:nth-of-type(2) dl dt.active:after{
opacity: 0;
visibility: hidden;
}

.faq-content .layout .item:nth-of-type(2) dl dt span.question{
display:block;
position: relative;
font-family: 'Noto Sans JP', sans-serif;
font-size: 14px;
line-height: 2em;
font-weight: 500;
}

.faq-content .layout .item:nth-of-type(2) dl dt span.question:before{
content: "Q";
font-family: "Zen Kaku Gothic New", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
color: var(--c-orange);
padding: 5px 10px 8px;
font-size: 24px;
line-height: 1em;
background: #FBF7EF;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -5px;
left: -50px;
}

.faq-content .layout .item:nth-of-type(2) dl dt.active span.question:before{
color: #fff;
background: var(--c-orange);
}

.faq-content .layout .item:nth-of-type(2) dl dd{
height: 0;
opacity: 0;
visibility: hidden;
padding: 0 50px 0 20px;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
transition: 0.5s;
}

.faq-content .layout .item:nth-of-type(2) dl dd.active{
height: auto;
opacity: 1;
visibility: visible;
padding: 20px 50px 20px 20px;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
transition: 0.5s;
}

.faq-content .layout .item:nth-of-type(2) dl dd span.answer{
display:block;
position: relative;
font-family: 'Noto Sans JP', sans-serif;
font-size: 14px;
line-height: 2em;
font-weight: 500;
}

.faq-content .layout .item:nth-of-type(2) dl dd span.answer:before{
content: "A";
font-family: "Zen Kaku Gothic New", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
color: #fff;
padding: 5px 10px 8px;
font-size: 24px;
line-height: 1em;
background: var(--c-gry);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -5px;
left: -50px;
}

@media (min-width: 768px) {
.faq-content{
margin-bottom: 120px;
}

.faq-content .layout{
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-pack: space-between;
-webkit-box-pack: space-between;
-webkit-justify-content: space-between;
justify-content: space-between;
}

.faq-content .layout .item:nth-of-type(1){
flex-basis: 20%;
text-align: left;
padding-top: 30px;
}

.faq-content .layout .item:nth-of-type(1) h3{
font-size: 24px;
}

.faq-content .layout .item:nth-of-type(2){
flex-basis: 75%;
}

.faq-content .layout .item:nth-of-type(2) dl dt{
position: relative;
padding: 20px 50px 20px 70px;
}

.faq-content .layout .item:nth-of-type(2) dl dt span.question{
font-size: 16px;
}

.faq-content .layout .item:nth-of-type(2) dl dt span.question:before{
top: -2px;
}

.faq-content .layout .item:nth-of-type(2) dl dd{
padding: 0 50px 0 30px;
}

.faq-content .layout .item:nth-of-type(2) dl dd.active{
padding: 20px 50px 20px 30px;
}

.faq-content .layout .item:nth-of-type(2) dl dd span.answer{
font-size: 16px;
}

.faq-content .layout .item:nth-of-type(2) dl dd span.answer:before{
top: -2px;
}
}


@media (min-width: 1024px) {
}

