@charset "UTF-8";

body {
    /* フォント指定 */
    font-family: "Helvetica Neue",
        Arial,
        "Noto Sans JP", sans-serif;
    Meiryo,
    sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
    background-color: #F5F2E6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 共通 */

.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.wrapper_s {
    max-width: 1040px;
    width: 100%;
    margin: auto;
}

/* 共通タイトル */
.title_section {
    width: 80%;
    margin: auto;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.title_section::before {
    content: "";
    position: absolute;
    bottom: -20px;
    display: inline-block;
    width: 100px;
    height: 1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #5F6F52;
    border-radius: 2px;
}

.content_title {
    /* font-size: 40px; */
    font-size: 30px;
    color: #5F6F52;
    font-family: "Shippori Mincho", serif;
}

.content_subTitle {
    color: #7D936C;
    /* font-family: "Shippori Mincho", */
    font-family: "Cardo", serif;
    font-size: 20px;
    margin-top: 7px;
}

/* 背景の文字 */
.bg_text {
    color: #FFFAF5;
    font-size: 150px;
    font-family: "Mrs Saint Delafield", cursive;
    text-transform: capitalize;
    transform: rotate(-15deg);
}

/* ボタン共通 */
/* メインボタン */
.btn_arrow {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    border: 1px solid #5F6F52;
    width: 100%;
    max-width: 418px;
    padding: 17px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    color: #5F6F52;
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s linear;
}

.btn_arrow:hover {
    background: #B99470;
    color: #fff;
}

/*矢印と下線の形状*/
.btn_arrow::before {
    content: "";
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    top: 50%;
    right: -30px;
    /*下線の形状*/
    width: 50px;
    height: 1px;
    background: #5F6F52;
    /*アニメーションの指定*/
    transition: all .2s linear;
}

.btn_arrow::after {
    content: "";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 31%;
    right: -25px;
    /*矢印の形状*/
    width: 1px;
    height: 12px;
    background: #5F6F52;
    transform: skewX(45deg);
    /*アニメーションの指定*/
    transition: all .2s linear;
}

/*hoverした際の移動*/
.btn_arrow:hover::before {
    right: -35px;
}

.btn_arrow:hover::after {
    right: -30px;
}

.main_button {
    margin-top: 147px;
    justify-content: center;
    display: flex;
}

.button_box {
    max-width: 418px;
    width: 100%;
}

/* 下層ページメインビジュアル */
.page_mv {
    width: 100%;
    height: 320px;
}

/* ヘッダー */
.header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 100;
}

.header_inner {
    margin: auto 37px;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
}

.gnav_logo {
    text-align: left;
    position: relative;
}

.gnav_logo img {
    transition: opacity 0.5s;
}

.gnav_logo:hover img:first-of-type {
    opacity: 0;
}

.gnav_logo img:last-of-type {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}

.gnav_logo:hover img:last-of-type {
    opacity: 1;
}

.gnav_list {
    color: #5F6F52;
    display: flex;
    align-items: center;

}

.gnav_list a {
    transition: 0.4s ease-out;
}

.gnav_list a:hover {
    color: #B99470;
}

.gnav {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.gnav_list li {
    margin-left: 30px;
}

.gnav_snsLists {
    display: flex;
    margin-left: 30px;
    gap: 7px;
}

.gnav_snsList {
    position: relative;
    width: 40px;
    height: 40px;
    margin: auto;
    overflow: hidden;
    cursor: pointer;
}

.gnav_snsList img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    display: block;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.gnav_snsList:hover img:nth-of-type(2) {
    opacity: 0;
}

.gnav_btn a {
    position: relative;
    display: block;
    width: 170px;
    padding: 16px;
    padding-left: 12px;
    padding-right: 20px;
    background-color: #7D936C;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin-left: 30px;
}

.gnav_btn a:hover {
    background-color: #B99470;
}

.lesson_nav a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

/* 背景のWAVEライン */
.wave_line_img img {
    width: 100%;
}

/* フッター */
footer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 484px;
    background-image: url(../img/footer_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #5F6F52;
    color: #fff;
    padding-top: 88px;
    padding-bottom: 28px;
    margin-top: 200px;
}

footer::before {
    position: absolute;
    content: "";
    background-color: #5F6F52;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    mix-blend-mode: normal;
}

.footer_inner {
    position: relative;
    margin-bottom: 165px;
}

.footer_nav {
    display: flex;
    justify-content: space-between;
}

.footer_logo {
    margin-bottom: 42px;
    display: flex;
}

/* logoアニメーション */
.footer_logo {
    position: relative;
}

.footer_logo img {
    transition: opacity 0.5s;
}

.footer_logo:hover img:first-of-type {
    opacity: 0;
}

.footer_logo img:last-of-type {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}

.footer_logo:hover img:last-of-type {
    opacity: 1;
}

.footer_sns {
    display: flex;
}

.footer_snsicon {
    display: flex;
}

/* アイコンアニメーション ２枚目が先*/
.footer_snsicon {
    position: relative;
    width: 35px;
    height: 35px;
    margin: auto;
    overflow: hidden;
    cursor: pointer;
}

.footer_snsicon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    display: block;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.footer_snsicon:hover img:nth-of-type(2) {
    opacity: 0;
}

.footer_box {
    display: flex;
    gap: 77px;
}

.footer_lists {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_list a {
    transition: 0.4s ease-out;
}

.footer_list a:hover {
    color: #B99470;
}

.footer_copyright {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.footer_arrow {
    position: absolute;
    right: 80px;
    top: 35px;

}


.footer_arrow {
    /* position: relative; */
}

.footer_arrow img {
    transition: opacity 0.5s;
}

.footer_arrow:hover img:first-of-type {
    opacity: 0;
}

.footer_arrow img:last-of-type {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}

.footer_arrow:hover img:last-of-type {
    opacity: 1;
}

@media screen and (min-width:769px) {
    .footer_sns_sp {
        display: none;
    }

    .sp_fixed_menu {
        display: none;
    }

    .spButton {
        display: none;
    }

    .footer_copyright_s {
        display: none;
    }

    .sp_insta {
        display: none;
    }

    .sp_header_menu {
        display: none;
    }
}

/* スマホ対応 */
@media screen and (max-width:768px) {
    .wrapper {
        width: 100%;
        padding: 20px;
    }

    /* 共通タイトル */

    .img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .title_section {
        width: 100%;
        margin: auto;
        text-align: center;
        position: relative;
        padding-top: 0px;
    }

    .content_title {
        font-size: 20px;
    }

    .content_subTitle {
        color: #7D936C;
        /* font-family: "Shippori Mincho", */
        font-family: "Cardo", serif;
        font-size: 20px;
        margin-top: 7px;
    }

    .bg_text {
        display: none;
    }

    .main_button {
        max-width: 240px;
        margin: 70px auto;
    }

    /* ヘッダー */
    .header_inner {
        margin: 0;
        align-items: center;
        justify-content: center;
    }

    .gnav {
        display: none;
    }

    /* ハンバーガー */
    .spButton {
        display: block;
        position: relative;
        width: 32px;
        height: 25px;
        z-index: 300;
        padding: 0;
    }

    .spButton span {
        position: absolute;
        background-color: #7D936C;
        width: 32px;
        height: 2px;
        transition: all .3s ease;

    }

    .spButton span:nth-child(1) {
        top: 0;
        left: 0;
    }

    .spButton span:nth-child(2) {
        top: 12px;
        left: 0;
    }

    .spButton span:nth-child(3) {
        top: 24px;
        left: 0;
    }

    /* ハンバーガーボタン❌にする */
    .active .spButton span:nth-child(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%
    }

    .active .spButton span:nth-child(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .active .spButton span:nth-child(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }

    /* ハンバーガーで表示するメニュー */
    .header_inner {
        position: relative;
    }

    .sp_header_menu {
        position: absolute;
        background-color: #7D936C;
        color: #fff;
        font-size: 14px;
        width: 100%;
        height: 700px;
        top: 100%;
        left: 0;
        right: 0;
        padding: 70px;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
        transform: translateY(100%);
    }

    .sp_gnav_list {
        text-align: center;
    }

    .sp_gnav_list li {
        padding-bottom: 20px;
    }

    /* ハンバーガー押した時にメニューを表示 */
    .active .sp_header_menu {
        opacity: 1;
        visibility: visible;
        transition: 0.5s;
        transform: translateY(0);
    }


    /* フッター */

    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background-image: url(../img/footer_bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-color: #5F6F52;
        color: #fff;
        padding-top: 88px;
        padding-bottom: 28px;
        margin-top: 0px;

    }

    footer::before {
        position: absolute;
        content: "";
        background-color: #5F6F52;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.7;
        mix-blend-mode: normal;
    }

    .footer_inner {
        margin-bottom: 110px;
    }

    .footer_info {
        margin: 0 auto;
    }

    .footer_logo {
        margin-bottom: 20px;
    }

    .footer_nav {
        flex-direction: column;
    }

    .footer_box {
        font-size: 11px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 12px;
        gap: 50px;
        justify-content: center;
    }

    .footer_lists {
        gap: 7px;
    }

    .footer_sns {
        display: none;
    }

    .footer_sns_sp {
        width: 100%;
        display: flex;
        justify-content: end;
        /* padding-left: 105px;
        padding-right: 20px;
        padding-bottom: 20px; */
    }

    .footer_snsicon {
        padding: 30px;
        margin: 0;
    }

    .footer_snsicon img {
        width: 40px;
        height: 40px;
    }

    .footer_arrow {
        display: none;
    }

    .footer_copyright_s {
        display: flex;
        justify-content: center;
    }

    .footer_copyright {
        display: none;
    }

    /* 追従メニュー */
    .sp_fixed_menu {
        position: fixed;
        display: flex;
        width: 100%;
        height: 100px;
        background-color: #fff;
        justify-content: space-between;
        gap: 20px;
        padding: 20px;
        bottom: 0;
        left: 0;
        z-index: 200;
        b
    }

    .sp_btn a {
        position: relative;
        display: block;
        width: 154px;
        padding: 16px;
        padding-right: 20px;
        background-color: #7D936C;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        border-radius: 10px;
        color: #fff;
        text-decoration: none;
        text-align: center;
        font-size: 12px;
    }

    .sp_btn_box_sp a {}

    .sp_snsLists {
        display: flex;
        gap: 16px;
        align-items: center;
        justify-content: center;

    }



}