@charset "UTF-8";

.mainTitleWrap + .contTitle_h2 {
    margin-top: 40px;
}

.question {
    position: relative;
    margin-top: 18px;
    padding: 15px 40px 15px 54px;
    border-radius: 8px;
    background-color: #F2F2F2;
    cursor: pointer;
}
.contTitle_h2 + .question {
    margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
    .question {
        padding: 16px 40px 16px 54px;
    }
    .contTitle_h2 + .question {
        margin-top: 40px;
    }
}

.question:hover {
    background-color: #f8f8f8;
}
.question::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../img/icon_q.svg);
    background-size: contain;
    position: absolute;
    top: 15px;
    left: 12px;
}
.question::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-regular);
    content: '\f107';
    color: #206700;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}
.question.active::after {
    content: '\f106';
}

.answer {
    position: relative;
}
.answer::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../img/icon_a.svg);
    background-size: contain;
    position: absolute;
    top: 20px;
    left: 12px;
}
.answerCont {
    padding: 20px 12px 20px 54px;
}
.answerCont p {
    margin-top: 20px;
}
.answerCont p:first-child {
    margin-top: 0;
}
.answerCont ul,
.answerCont ol {
    margin-left: 25px;
}
.answerCont ul li {
    list-style: disc;
    margin-top: 20px;
}
.answerCont ol li {
    list-style: decimal;
    margin-top: 20px;
}
.answerCont ul:first-child li:first-child,
.answerCont ol:first-child li:first-child {
    margin-top: 0;
}
.answerCont .photo {
    text-align: center;
    margin-top: 30px;
}
.answerCont .photo__w520 {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.answerCont .photo__w370 {
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
}
@media print, screen and (min-width: 768px) {
    .answer::before {
        top: 30px;
    }
    .answerCont {
        padding: 30px 40px 32px 54px;
    }
}

.disnon {
    display: none;
}

/* アイコン */
.pdfIcon::after {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
    content: '\f1c1';
    color: #ED0000;
    margin-left: 3px;
}
