@charset "UTF-8";

/* ======
mv
======= */
.mv img {
    object-position: 30% 15%;
}

.mv .sec_subtitle {
    top: calc(26% + 4px);
}

/* ======
faq_nav
======= */
.faq_nav {
    margin: 0 auto;
    text-align: center;
}

.faq_btn {
    display: inline-block;
    padding: 0 32px;
    height: 40px;
    line-height: 40px;
    letter-spacing: 2px;
    position: relative;
    border: 1px solid #333;
    border-radius: px;
    margin: 0 24px;
}

.faq_btn::after {
    font-family: "Material Symbols Outlined";
    content: '\e313';
    font-size: 20px;
    position: absolute;
    transition: 0.4s;
}

.faq_btn:hover::after {
    transform: translateY(2px);
}


/* ======
faq_box
======= */
.faq_box {
    padding: 88px 0;
}

.faq_box .heading {
    width: 200px;
}


/* ======
アコーディオンパネル
======= */
/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
}



.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    border: 1px solid #ccc;
    padding-top: 0;
    padding-bottom: 0;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;
    transition: all .5s ease;

}

.title::before {
    top: 48%;
    left: 15px;
    transform: rotate(0deg);
}

.title::after {
    top: 48%;
    left: 15px;
    transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
    transform: rotate(45deg);
}

.title.close::after {
    transform: rotate(315deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    /*はじめは非表示*/
    background: #f3f3f3;
    margin: 0 3% 3% 3%;
    padding: 3%;
}

@media screen and (max-width:768px) {

    .faq_box {
        padding: 44px 0;
        width: 80%;
        margin: 0 auto;
    }

    .faq_btn {
        display: block;
        margin: 32px auto;
        width: 33%;

    }

    /* =========== max-width:711px =========== */
}

@media screen and (max-width:519px) {
    .faq_btn {
        width: 60%;
    }

    .accordion-area section {
        margin: 16px 0;
    }

    /* =========== max-width:519px =========== */
}