@charset "UTF-8";

/* fv */
.fv {
    background-image: url(./img/fv.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.fv_title {
    font-family: "Noto Serif JP", serif;
    color: #fff;
    font-size: 20px;
    font-weight: 600;

    text-align: center;
    animation: fadeIn 3s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
        /* 小さく始まる */
    }

    100% {
        opacity: 1;
        transform: scale(1);
        /* 通常の大きさに */
    }
}

.message {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin: 30px;
}

/* main共通 */
.main {
    background-image: url(./img/top_back.jpg);
    background-size: cover;
    background-position: center;
}

.main_block {
    padding: 30px 0;


}

.main_subtitle {
    display: block;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-weight: 800;
}

.main_text {
    display: block;
    margin-top: 10px;
    text-align: center;
    line-height: 180%;
}

.main_title {
    display: block;
    margin-top: 20px;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 16px;
}

/* main_section */
.main_energie {
    margin-top: 50px;
}

.energie_img {
    display: block;
    width: 90%;
    margin: 0 auto -10px auto;
}

.main_session {
    margin-top: 50px;
}

.profile {
    background-image: url(./img/profile.jpg);
    background-size: cover;
    background-position: center;
}

.profile_block {
    padding: 30px 0;
}

.profile_text {
    font-family: "Noto Serif JP", serif;
    color: #fff;
    font-size: 18px;
    text-align: center;
}