@charset "UTF-8";

/**fv**/
h2 {
    background-image: url(../img/questions-fv.jpg);
}

h4 {
    display: flex;
    flex-direction: column;
}

h4 .ja {
    font-family: "Murecho", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: -50% 0 0 0;
    text-align: left;
}

h4 .en {
    font-family: "Quicksand", sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #9ADFFA;
    line-height: 0;
    text-align: left;
    padding-top: 2%;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 1rem;
}

.q {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
    h4 .ja {
        font-size: 14px;
    }

    h4 .en {
        font-size: 25px;
    }

    h5 {
        font-size: 14px;
    }
}

/*アコーディオン*/
.accordion-area {
    width: 100%;
    max-width: 1080px;
    margin: 50px auto 0 auto;
}

.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 25px;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #1c1c1c;
}

.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(-45deg);
}

/*アコーディオンで現れるエリア*/
.accordion-box {
    display: none;
    /*はじめは非表示*/
    background: #dbf5ff77;
    margin: 0 3% 3% 3%;
    padding: 3%;
    border-radius: 25px;
}


/*font
英語
font-family: "Quicksand", sans-serif;
font-weight: Light-300,Regular-400,Medium-500,SemiBold-600,Bold-700;

日本語
font-family: "Murecho", sans-serif;
font-weight: Thin-100,ExtraLight-200,Light-300,Regular-400,Medium-500,SemiBold-600,Bold-700,ExtraBold-800,Black-900;
*/