/*fv関係*/
.fvwarp {
    height: 10px;
}

/*コンテンツ*/
.mainbox {
    color: #707070;
}

.mainbox .title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #222222;
    padding-left: 1em;
    text-indent: -1em;
}

.mainbox .title::before {
    border: 3px solid #4BA3E3;
    width: 18px;
    height: 18px;
    content: "";
    display: inline-block;
    border-radius: 50%;
    vertical-align: baseline;
    margin-right: 0.3em;
}

.mainbox .bold {
    font-weight: bold;
}

.mainbox .questions_box {
    border-top: 1px solid #A2A2A2;
    font-size: 16px;
    line-height: 1.5;
}

.mainbox .questions_box.end {
    border-bottom: 1px solid #A2A2A2;
}
.mainbox .questions_box dt {
    position: relative;
    padding: 1em 0.5em;
}

.mainbox .questions_box dt::after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    pointer-events: none;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 0.7em;
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
}

.mainbox .questions_box dd {
    padding: 0 0.5em 1em;
    display: none;
}

.mainbox .questions_box.active dt::after {
    transform: translateY(-50%) rotate(180deg);
}

/*727px以下　SP表示処理*/
@media screen and (max-width: 727px) {
    .mainbox {
        width: 90%;
        margin: auto;
    }

    .mainbox .title {
        font-size: 25px;
        padding-left: 0;
        text-indent: 0;
    }

    p {
        font-size: 12px;
    }

    .mainbox .title::before {
        display: none;
    }
    .mainbox .questions_box dt,
    .mainbox .questions_box dd{
        padding-right: 2em;
    }
}