@charset "utf-8";

/* MV
----------------------------------------------------------------------------- */
.page-ttl-inner{
    background-image: url("../images/mv_faq.png");
}

@media screen and (max-width:768px){
    .page-ttl-inner{
        background-image: url("../images/mv_faq_sp.png");
    }
}


/* faq
----------------------------------------------------------------------------- */
.faq-section{
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 100px;
}

.faq-section .list-faq dl:last-child{
    border-bottom: none;
}
.faq-section .list-faq dl dd .box-notice{
	margin: 20px 0;
}

@media screen and (max-width:768px){
    .faq-section{
        padding: 7.5vw;
        border-radius: 3.75vw;
        margin-bottom: 12.5vw;
    }
    .faq-section .list-faq dl dd .box-notice{
        margin: 2.5vw 0;
    }
}

/* access
----------------------------------------------------------------------------- */
.faq-access ul{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.faq-access ul li{
    width: 50%;
    padding: 0 0 0 30px;
}
.faq-access ul li:first-child{
    border-right: 1px solid #ddd;
    padding: 0 30px 0 0;
}
.faq-access-ttl{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.faq-access-ttl i{
    margin-right: 10px;
    color: #89C330;
    font-size: 25px;
    vertical-align: middle;
}
.faq-access ul li p{
    font-size: 18px;
    line-height: 1.8em;
}

@media screen and (max-width:768px){
    .faq-access ul{
        display: block;
    }
    .faq-access ul li{
        width: 100%;
        padding: 5vw 0 0;
    }
    .faq-access ul li:first-child{
        border-right:none;
        border-bottom: 1px solid #ddd;
        padding: 0 0 5vw;
    }
    .faq-access-ttl{
        font-size: 4.5vw;
        margin-bottom: 3.75vw;
    }
    .faq-access-ttl i{
        margin-right: 2.5vw;
        font-size: 7vw;
    }
    .faq-access ul li p{
        font-size: 4vw;
    }
}