@charset "UTF-8";

/**fv**/
h2 {
    background-image: url(../img/procedure-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: #FFD6E0;
    line-height: 0;
    text-align: left;
    padding-top: 2%;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    text-indent: 1rem;
    margin-bottom: 10px;
}

h5:nth-child(n+2) {
    margin-top: 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;
}

/*ボタン*/
.content {
    width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btn {
    width: 100px;
    aspect-ratio: 1/1;
    border: 3px solid #FFD6E0;
    border-radius: 10px;
    background-color: #fff;
    text-align: center;
    text-align: left;
    padding: 0 .3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
}

.btn:hover {
    border-color: #fff;
    background: #FFD6E0;
    font-size: 12px;
    letter-spacing: 0.15em;
}

/*アコーディオンタイトル*/
.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: #ffedf27e;
    margin: 0 3% 3% 3%;
    padding: 3%;
    border-radius: 25px;
}

@media screen and (max-width: 600px) {

    .content {
        display: block;
    }

    .btn {
        width: 100%;
        margin: 1rem auto;
        aspect-ratio: 1/0.3;
    }
}


/*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;
*/