@charset "UTF-8";

body {
    font-family: 'brandon-grotesque', 'GenjyuGothic', sans-serif;
    color: #33485c;
    letter-spacing: 0.07em;
    font-family: GenJyuuGothic, "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}

@font-face {
    font-family: "GenJyuuGothic";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/GenJyuuGothic-Normal.ttf") format("truetype"),
        url("../fonts/GenJyuuGothic-Normal.woff") format("woff");
}

@font-face {
    font-family: "GenJyuuGothic";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/GenJyuuGothicX-Medium.ttf") format("truetype"),
        url("../fonts/GenJyuuGothic-Regular.woff") format("woff");
}

@font-face {
    font-family: "GenJyuuGothic";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/GenJyuuGothic-Bold.ttf") format("truetype"),
        url("../fonts/GenJyuuGothic-Bold.woff") format("woff");
}


/* 
font-family: "brandon-grotesque", sans-serif;
font-weight: 400;
font-style: normal;
font-family: "brandon-grotesque", sans-serif;
font-weight: 400;
font-style: italic;
font-family: "brandon-grotesque", sans-serif;
font-weight: 700;
font-style: normal;
font-family: "brandon-grotesque", sans-serif;
font-weight: 700;
font-style: italic; */
/* .biryani-extralight {
    font-family: "Biryani", sans-serif;
    font-weight: 200;
    font-style: normal;
  } */

.ff_biryani {
    font-family: "Biryani", sans-serif;
}

/* ----------------------------全体css-------------------------- */

a {
    cursor: pointer;
}

a:hover {
    opacity: 0.8;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

@media screen and (max-width: 820px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}

/* ----------------------------header-------------------------- */

header {
    background-color: #e8e6db;
    display: flex;
    align-items: center;
    /* box-shadow: 0px 7px 14px #bebdb3; */
    z-index: 10;
    /* 他の要素より前面に表示 */
    position: fixed;
    /* z-index を適用するには position が必要 */
    width: 100%;
}


.header_logo {
    padding: 1em 32px;
}

.header_right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header_menu {
    display: flex;
    align-items: center;
    /* gap: 16px; */
    font-family: "Biryani", sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.3em;
    padding: 0 45px;
}

.header_menu p:hover {
    opacity: 0.7;
    cursor: pointer;
    transition: 0.3s;
}

.header_reserv {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e0c259;
    padding: 25px 50px 20px;
    line-height: 1.8;
}


.header_reserv p:nth-of-type(1) {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 1.3;
}

.header_reserv p:nth-of-type(2) {
    font-size: 10px;
    text-align: center;
}

@media screen and (max-width: 820px) {
    .header_logo {
        padding: 1em 14px;
    }

    .header_menu {
        flex-direction: column;
        gap: 0px;
        font-size: 10px;
        letter-spacing: 0.07em;
        padding: 0 0.7em;
        color: #767777;
    }

    #header-hamburger {
        /* aspect-ratio: 1/0.8 !important; */
        width: 36px;
        height: 30px;
    }

    header #header-hamburger span:nth-of-type(1) {
        top: 30%;
        left: 22px;
        width: 24px;
    }

    header #header-hamburger span:nth-of-type(2) {
        top: 48%;
        left: 23px;
        width: 20.3px;
        transform: translateX(-13px);
    }

    header #header-hamburger span:nth-of-type(3) {
        top: 66%;
        left: 23px;
        width: 14.8px;
        transform: translateX(-13px);
    }

    #header-hamburger span {
        background-color: #767777;
    }

    .header_reserv {
        padding: 17px 12px 10px;
    }

    .header_reserv p:nth-of-type(1) {
        letter-spacing: 0.15em;
        font-size: 11px;
    }

    .header_reserv p:nth-of-type(2) {
        font-size: 10px;
    }
}

/* -----------------------ハンバーガー-------------------------- */
/* ---------------------------------------------- */
/* ハンバーガーメニュー */
/* ------------------------- */
#header-hamburger {
    /* 見た目のCSS */
    cursor: pointer;
    width: 45px;
    aspect-ratio: 1/1;
    margin-left: auto;
    /* ボタンがハンバーガーウィンドウの下に隠れないようにする指定 */
    position: relative;
    z-index: 10;
}

/* ----------------- */
/* 三本線 */
/* ----------------- */
#header-hamburger span {
    /* 見た目のCSS */
    display: inline-block;
    background: #33485c;
    width: 50%;
    height: 2px;
    /* バーガー線の太さ */
    /*アニメーションの設定*/
    transition: all .4s;
    position: absolute;
    left: 50%;
    /* バーガー線の位置 */
    transform: translateX(-50%);
}

/* １本目 */
#header-hamburger span:nth-of-type(1) {
    top: 30%;
    width: 70%;
}

/* ２本目 */
#header-hamburger span:nth-of-type(2) {
    top: 45%;
    left: 43%;
    width: 55%;
}

/* ３本目 */
#header-hamburger span:nth-of-type(3) {
    top: 61%;
    left: 38%;
    width: 45%;
}

/* ------------------ */
/* ×印 */
/* ------------------ */
/*activeクラスが付与されると線が回転して×になる*/
#header-hamburger.active span:nth-of-type(1) {
    top: 50%;
    left: 25%;
    transform: rotate(-45deg);
    width: 50%;
}

#header-hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

#header-hamburger.active span:nth-of-type(3) {
    top: 50%;
    left: 25%;
    transform: rotate(45deg);
    width: 50%;
}

/* ----------------------------------------------- */
/* メニューウィンドウ */
/* -------------------------- */
#hamburger-window {
    transition: 0.3s;
    text-align: center;
    /* 初期状態は非表示 */
    visibility: hidden;
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 3;
    /* 画面いっぱいに表示されるサイズに設定 */
    width: 100%;
    height: 100%;
    /* 画面からはみ出したらスクロール可能にする */
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: rgba(51, 72, 92, 0.9);
    padding: 80px 150px 165px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*スクロールバー非表示（Chrome・Safari）*/
.content::-webkit-scrollbar {
    display: none;
}

#hamburger-window.open {
    visibility: visible;
    right: 0;
    justify-content: flex-start;
}

.hamburger-window__link {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.hamburger-window__link:hover {
    /* background-color: #ccc; */
}

.menu-link {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    color: #fff;
    /* font-weight: bold; */
    letter-spacing: 0.3em;
    padding: 1.68em 1.5em;
    font-family: "Biryani", sans-serif;
}

.menu-link span {
    margin-left: auto;
    font-weight: 400;
    font-size: 0.8em;
}

.hamburger-window__title {
    color: #333;
}

.hum_top {
    display: flex;
    align-items: center;
    gap: 35px;
}

.hum_res_btn {
    background-color: #e0c259;
    color: #33485c;
    display: flex;
    align-items: center;
    font-family: "Biryani", sans-serif;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 15px 40px 15px 20px;
}

.hum_res_btn a {
    display: flex;
    align-items: center;
}

.hum_res_btn img {
    height: fit-content;
    margin-right: 29px;
}

.hum_res_btn p {
    font-size: 0.8em;
    font-family: 'GenjyuGothic', sans-serif;
    font-style: normal;
    padding-left: 10px;
    white-space: nowrap;
}

.hum_close {
    font-family: "Century Gothic", sans-serif;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 0.3em;
    margin-left: auto;
}
.hum_close:hover {
    opacity: 0.7;
    cursor: pointer;
    transition: 0.3s;
}

/* １本目 */
#header-hamburger span:nth-of-type(1) {
    top: 30%;
    width: 70%;
}

/* ２本目 */
#header-hamburger span:nth-of-type(2) {
    top: 45%;
    left: 43%;
    width: 55%;
}

/* ３本目 */
#header-hamburger span:nth-of-type(3) {
    top: 61%;
    left: 38%;
    width: 45%;
}

.close_btn_box {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.close-button {
    /* 見た目のCSS */
    cursor: pointer;
    width: 45px;
    aspect-ratio: 1/1;
    /* ボタンがハンバーガーウィンドウの下に隠れないようにする指定 */
    position: relative;
    z-index: 10;
}

/* pc */
.close-button span {
    /* 見た目のCSS */
    display: inline-block;
    background: #fff;
    width: 50%;
    height: 2px;
    /* バーガー線の太さ */
    /*アニメーションの設定*/
    transition: all .4s;
    position: absolute;
    left: 50%;
    /* バーガー線の位置 */
    transform: translateX(-50%);
}

.close-button span:nth-of-type(1) {
    /* 1番目の `span` に適用されるスタイル */
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    /* 45度回転（右上から左下の線） */
}

.close-button span:nth-of-type(2) {
    /* 2番目の `span` に適用されるスタイル */
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-button.active span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.close-button.active span:nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* sp */
.close-button-sp span {
    /* 見た目のCSS */
    display: inline-block;
    background: #fff;
    width: 5%;
    height: 2px;
    /* バーガー線の太さ */
    /*アニメーションの設定*/
    transition: all .4s;
    position: absolute;
    right: 3%;
    /* バーガー線の位置 */
    transform: translateX(-50%);
}

.close-button-sp span:nth-of-type(1) {
    /* 1番目の `span` に適用されるスタイル */
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    /* 45度回転（右上から左下の線） */
}

.close-button-sp span:nth-of-type(2) {
    /* 2番目の `span` に適用されるスタイル */
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-button-sp.active span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.close-button-sp.active span:nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(0deg);
}

.hum_under {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 94px;
    margin-top: 57px;
}

.hum_top_line {
    border-bottom: 1px solid #fff;
}

.hum_FAQ_btn,
.hum_q_btn {
    border: solid 2px #fff;
    border-radius: 5px;
    width: 70%;
    padding: 1.55em;
    font-family: "Biryani", sans-serif;
}

.hum_FAQ_btn {
    margin-bottom: 14px;
}

.hum_FAQ_btn p:nth-of-type(1),
.hum_q_btn p:nth-of-type(1) {
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.hum_FAQ_btn p:nth-of-type(2),
.hum_q_btn p:nth-of-type(2) {
    font-size: 0.75em;
    margin-top: 10px;
    letter-spacing: 0.3em;
}

.hum_policy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    font-size: 0.85em;
    border-left: solid 2px #fff;
    letter-spacing: 0.2em;
    padding-left: 20px;
    margin-top: 27px;
}

.hum_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: 38px;
}

.hum_info01 {
    display: flex;
    align-items: center;
    gap: 0.4em;
}

.hum_info01 p:nth-of-type(1) {
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    font-family: "Biryani", sans-serif;
}

.hum_info01 p:nth-of-type(2) {
    font-size: 0.7em;
}

.hum_info02 {
    line-height: 1.6;
    margin-top: 28px;
}

.hum_address {
    font-size: 0.9em;
    letter-spacing: 0.1em;
}

.hum_tell {
    display: flex;
    align-items: flex-end;
}

.hum_tell p:nth-of-type(1) {
    font-weight: bold;
    font-size: 1.8em;
    letter-spacing: 0.1em;
}

.hum_tell p:nth-of-type(2) {
    font-size: 0.75em;
    font-weight: 400;
    margin-bottom: 0.65em;
}

@media screen and (max-width: 820px) {
    #hamburger-window {
        left: 0;
        padding: 0px 30px 0px;
        flex-direction: column;
        box-sizing: border-box;
        /* パディングを幅に含める */
        overflow-x: hidden;
        /* 横スクロールを無効化 */
        width: 100vw;
        height: 100vh;
        justify-content: flex-start;
    }

    .hum_top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hum_top_line {
        display: none;
    }

    .close_btn_box {
        width: 100%;
        margin-left: 0;
        padding-top: 23px;
        padding-bottom: 1.5em;
    }

    .close-button {
        margin-left: auto;
    }

    .hum_res_btn {
        /* 予約ボタン（SP） */
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 1.5em 2em 1.5em 2em;
    }

    #header-hamburger span {
        background: #767777;
    }

    #header-hamburger span:nth-of-type(3) {
        top: 65%;
    }

    .hum_under {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 0;
        padding-top: 6px;
    }

    .menu-link {
        padding: 20px 0 16.8px;
        font-family: "Biryani", sans-serif;
        line-height: 1;
    }

    .menu-link span {
        font-size: 12px;
        letter-spacing: 0.3em;
        margin-top: 1px;
    }

    .hum_FAQ_btn,
    .hum_q_btn {
        width: 100%;
        position: relative;
        border-radius: 0px;
        padding: 0;
        height: 56px;
        line-height: 1;
    } 

    /* .hum_FAQ_btn::after,
    .hum_q_btn::after {
        content: "〉";
        color: #fff;
        position: absolute;
        right: 4%;
        top: 37%;
    } */

    .hum_FAQ_btn a,
    .hum_q_btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 8px;
        white-space: nowrap;
        height: 100%;
        padding-right: 12px;
        padding-bottom: 2px;
    }

    .hum_q_btn a {
        justify-content: center;
    }

    .hum_FAQ_btn p:nth-of-type(1),
    .hum_q_btn p:nth-of-type(1) {
        font-size: 12px;
        font-weight: bold;
        font-family: Biryani, sans-serif;
        letter-spacing: 0.3em;
        padding-top: 8px;
    }

    .hum_FAQ_btn p:nth-of-type(2),
    .hum_q_btn p:nth-of-type(2) {
        margin-top: 0;
        font-size: 10px;
        letter-spacing: 0.1em;
        padding-top: 7.6px;
    }

    .sp_hum_info01 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2.5em;
    }

    .sp_hum_info03 {
        font-size: 0.75em;
    }
}

/* ----------------------------fv-------------------------- */
.fv {
    background-color: #e0ded3;
    /* padding-top: 4em; */
    padding-top: 11.5em;
    padding-bottom: 2.1em;
    position: relative;
}

/* スライダー全体のスタイル */
.fv_slider {
    height: 100%;
    text-align: center;
    position: relative;
}

.fv_slider img {
    width: 930px;
    height: 579px;
}

.fv_now {
    /* position: absolute;
    bottom: 19.5%;
    left: 36.5%;
    z-index: 2; */
    /* 追加 */
    position: absolute;
    bottom: 19.5%;
    left: calc(50% - 490px);
    z-index: 2;
    font-size: 1.4em;
}

.fv_ttl {
    width: 806px;
    max-width: 100%;
    position: absolute;
    top: 14.5%;
    left: 50%;
    transform: translate(-50%, 0);
    /* 自身の幅の50%を左にシフトして中央揃え */
    z-index: 2;
}

.fv_now01 {
    background: #fff;
    color: #33485c;
    width: fit-content;
    padding: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 500;
    letter-spacing: 0.07em;
}

.fv_now02 {
    background: #fff;
    color: #33485c;
    width: fit-content;
    padding: 0.5em;
    font-weight: 500;
    letter-spacing: 0;
}

.fv_price {
    color: #33485c;
    /* font-family: 'GenjyuGothic', sans-serif; */
    /* margin-left: 37%; */
    margin-left: calc(50% - 490px);
    /* 1204追加 */
    margin-top: -4%;
}

.fv_price01 {
    font-size: 0.9em;
}

.fv_price02 {
    font-size: 1.7em;
    margin: 0.2em 0 0.1em;
}

.fv_price03 {
    font-size: 0.9em;
}

.fv_official_icon {
    position: absolute;
    bottom: 6%;
    right: 4%;
    z-index: 2;
}

.fv_official_icon img {
    width: 125px;
    height: auto;
}

.fv_official_icon img {
    transition: transform 0.3s ease;
    /* 変化にアニメーションを適用 */
}

.fv_official_icon img:hover {
    transform: scale(1.1);
    /* hover時に拡大 */
}


@media screen and (max-width: 820px) {
    .fv {
        padding-top: 7em;
    }

    .fv_slider {
        /* padding-top: 1.5em !important; */
        width: 311px;
        height: 502px;
        border-radius: 153px;
    }

    .fv_slider img {
        width: 311px;
        height: 502px;
    }

    .fv_now {
        position: absolute;
        bottom: 17.5%;
        left: 5%;
        z-index: 2;
        font-size: 1em;
    }

    .fv_ttl {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, 0);
        /* 自身の幅の50%を左にシフトして中央揃え */
        z-index: 2;
    }

    .fv_price {
        margin-left: 8%;
        /* transform: translateY(-13px); */
        position: relative;
        z-index: 2;
    }

    .fv_price01 {
        font-size: 12px;
        letter-spacing: 0;
    }

    .fv_price02 {
        font-size: 26px;
        margin: 0.2em 0 0.1em;
        letter-spacing: 0;
        font-weight: 500;
    }

    .fv_price03 {
        font-size: 12px;
    }

    .fv_official_icon {
        position: absolute;
        bottom: 9%;
        right: 3%;
        z-index: 2;
    }

    .fv_official_icon img {
        width: 29vw;
    }
}

/* ----------------------------under_25-------------------------- */
.under_25 {
    background-color: #e0ded3;
    padding: 65px 5%;
}

.under_25_pcbox {
    background-color: #f5e69a;
    padding-bottom: 38px;
    position: relative;
    z-index: 0;
    position: relative;
    /* 1204追加 */
    max-width: 980px;
    margin: 0 auto;
}

.under_25_ttl {
    text-align: center;
}

.under_25_ttl_01 {
    /* font-size: 1.1em; */
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 0.09em;
    /* margin-bottom: 1.7em; */
    margin-bottom: 1.1em;
    display: flex;
    justify-content: center;
    gap: 1.8em;
    align-items: flex-end;
    position: absolute;
    /* top: -3.5%; */
    top: -4%;
    left: 50%;
    transform: translate(-50%, 0);
}

.under_25_ttl_01 img {
    width: 14px;
}

.under_25_ttl_02 {
    font-size: 1.6em;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 2;
    /* 追加 */
    padding-top: 2.3em;
}

.under_25_ttl_02_back {
    color: #fff;
    position: absolute;
    top: 4%;
    /* left: 39.2%; */
    left: calc(50% - 190px);
    z-index: -1;
    /* 追加 */
    /* padding-top: 2.3em; */
}

.under_25_ttl_03 {
    /* font-size: 1.7em; */
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 0.5em;
    position: relative;
    z-index: 2;
}

.under_25_ttl_03_back {
    color: #fff;
    position: absolute;
    top: 4%;
    left: calc(50% - 162px);
    z-index: -1;
    font-size: 25px;
}

.under_25_ttl_03 .span02 {
    font-family: 'brandon-grotesque';
    /* font-size: 3.2em; */
    font-size: 91px;
    margin: 0 0.06em;
}

.span02_pers {
    font-size: 50px;
}

.under_25_ttl_03_back .span02_pers {
    font-size: 50px;
}

.under_25_ttl_03 .span03 {
    font-family: 'brandon-grotesque';
    font-size: 45px;
}

.under_25_info {
    color: #33485c;
    display: flex;
    width: 90%;
    margin: 0 auto;
}

.under_25_info li {
    background-color: #fff;
    width: 40%;
}

.under_25_info li:first-child {
    width: 65%;
    border-top: solid 1px #33485c;
    border-right: solid 1px #33485c;
    border-bottom: solid 1px #33485c;
    border-left: solid 1px #33485c;
}

.under_25_info li:last-child {
    width: 42%;
    border-top: solid 1px #33485c;
    border-right: solid 1px #33485c;
    border-bottom: solid 1px #33485c;
}

.under_25_info h4 {
    text-align: center;
    font-weight: bold;
    padding: 0.7em;
    border-bottom: solid 1px #33485c;
}

.under_25_item {
    padding: 1.45em 3em;
}

.under_25_item h5 {
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 0.9em;
}

.highlight {
    background: linear-gradient(transparent 60%, #f5e69a 60%);
}

.under_25_item p {
    /* font-size: 0.9em; */
    font-size: 0.68em;
    line-height: 1.7;
}

@media screen and (max-width: 1280px) {
    .under_25_ttl_02_back {
        color: #fff;
        position: absolute;
        top: 4.5%;
        /* left: 36%; */
        left: calc(50% - 162px);
        z-index: -1;
        /* 追加 */
        padding-top: 2.3em;
    }

    .under_25_ttl_03_back {
        color: #fff;
        position: absolute;
        top: 4%;
        left: calc(50% - 174px);
        z-index: -1;
    }
}

@media screen and (max-width: 820px) {
    .under_25 {
        background-color: #f5e69a;
    }

    .under_25_pcbox {
        background-color: #f5e69a;
        padding-bottom: 0;
        position: static;
        z-index: 0;
    }

    .under_25_ttl_01 {
        /* 追加 */
        position: static;
        transform: none;
    }

    .under_25_ttl_01 img {
        width: 20px;
    }

    .under_25_ttl_02 {
        /* 追加 */
        padding-top: 0;
        /* font-size: 0.075em; */
        font-size: 22px;
    }

    .under_25_ttl_02_back {
        top: calc(50% - 76px);
        left: calc(50% - 140px);
        /* 追加 */
        padding-top: 61px;
    }

    .under_25_ttl_03_back {
        top: 2%;
        left: calc(50% - 165px);
    }

    .under_25_info {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .under_25_info li {
        width: 100%;
    }

    .under_25_info li {
        border: none;
    }

    .under_25_info li:first-child {
        width: 100%;
        border-top: solid 1px #33485c !important;
        border-left: solid 1px #33485c !important;
        border-right: solid 1px #33485c !important;
        border-bottom: none !important;
    }

    .under_25_info li:nth-child(2) {
        width: 100%;
        border-left: solid 1px #33485c !important;
        border-right: solid 1px #33485c !important;
        border-bottom: solid 1px #33485c !important;
    }

    .under_25_item {
        padding: 1em 1em;
    }

    .under_25_item h5 {
        font-size: 1em;
        letter-spacing: 0;
    }

    .under_25_info h4 {
        font-size: 14px;
        letter-spacing: 0.1em;
    }
}

/* ----------------------------private_room-------------------------- */
.private_room {
    background-color: #697e75;
    color: #fff;
    padding: 0 10%;
}

.private_room01 {
    padding: 120px 0% 60px;
    margin: 0 4%;
    width: 100%;
    margin: 0 auto;
    /* 追加 */
    text-align: center;
}

@keyframes horizontal-animation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.middle_slider {
    overflow: hidden;
}

/* コンテナ全体 */
/* .slider-container {
    display: flex;
    overflow: hidden; 
    width: 100%; 
  } */
/* スライダーのラッパー */
.private_slider {
    display: flex;
    animation: horizontal-animation 35s linear infinite;
}

.private_slider01 {
    display: none !important;
}

/* 各スライド */
.pri_slide {
    flex: 0 0 33.33%;
    box-sizing: border-box;
}

/* スライド内の画像 */
.pri_slide img {
    width: 100%;
    transform: scale(1.005);
    height: auto;
    vertical-align: bottom;
}

.private_ttl {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 1.3em;
}

.private_ttl_s {
    font-size: 12px;
    color: #fff;
    line-height: 1.9;
}

.five_point {
    padding-bottom: 150px;
}

.five_point_ttl {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
    padding: 0 0 50px;
    /* 1204 */
    display: flex;
    justify-content: center;
    gap: 1.5em;
    letter-spacing: 0.1em;
}

.five_point_border {
    border-bottom: solid 1px #fff;
    width: 73%;
    margin: 60px auto 0;
}

.point_container {
    display: flex;
    flex-direction: column;
    /* gap: 60px; */
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.point01_box,
.point02_box,
.point03_box,
.point04_box,
.point05_box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* gap: 3em; */
}

.point01,
.point02,
.point03,
.point04,
.point05 {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    /* 追加 */
    background-color: #e0ded3;
    color: #516272;
    border-top-right-radius: 27px;
    border-bottom-right-radius: 27px;
    padding: 55px 11% 0;
    box-sizing: border-box;
    /* justify-content: center; */
    /* 垂直方向の中央寄せ */
    height: 100%;
    /* 親要素の高さが必要 */
}

.point03 {
    /* padding-top: 25px !important; */
    gap: 1.1em;
}

.point_number {
    font-size: 1.2em;
    font-family: "Biryani", sans-serif;
}

.point_ttl01,
.point_ttl02,
.point_ttl03,
.point_ttl04,
.point_ttl05 {
    font-size: 1.5em;
    font-weight: 500;
}

.slider_wrap {
    img {
        width: 100%;
    }
}

/* スライダーの親要素 */
.point_s {
    font-size: 0.8em;
    line-height: 1.8;
}

.point_s a {
    border-bottom: solid 1px #fff;
}

.point_s_02 {
    font-size: 10px;
    line-height: 1.7;
}

.five_point_more {
    border: solid 1px #fff;
    text-align: center;
    padding: 1.4em 0;
    position: relative;
    margin: 90px 33% 0px;
}

/* .five_point_more::after {
    content: "〉";
    color: #fff;
    position: absolute;
    right: 4%;
    top: 37%;
} */

@media screen and (max-width: 1200px) and (min-width: 840px) {

    .point01_box,
    .point02_box,
    .point03_box,
    .point04_box,
    .point05_box {
        height: 400px;
    }

    .slider_wrap {
        border-top-left-radius: 27px;
        border-bottom-left-radius: 27px;

        img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
    }
}

@media screen and (max-width: 820px) {
    .point_container {
        gap: 41px;
    }

    .private_ttl {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 1.1em;
    }

    .private_ttl_s {
        /* font-size: 0.7em; */
        line-height: 1.833;
        letter-spacing: 0.01em;
    }

    .private_slider {
        display: none;
    }

    .private_slider01 {
        display: block !important;
    }


    .private_slider01 img {
        width: 100%;
        transform: scale(1.005);
        aspect-ratio: 1.1/1;
    }

    .five_point_border {
        width: 97%;
        margin: 60px auto 0;
    }

    .five_point_ttl {
        /* 1204追加 */
        display: block;
        /* displayを変更してflexを解除 */
        justify-content: unset;
        /* justify-contentを解除 */
        gap: unset;
        /* gapを解除 */
        font-size: 18px;
        line-height: 1.4;
        text-align: center;
        padding: 0 0 50px;
    }

    .slider {
        /* 1202追加 */
        display: none;
    }

    .point01,
    .point02,
    .point03,
    .point04,
    .point05 {
        color: #fff;
    }

    .point01_box,
    .point02_box,
    .point03_box,
    .point04_box,
    .point05_box {
        display: flex;
        position: relative;
        flex-direction: column;
        gap: 0;
    }

    /* 画像 */
    .slider_wrap {
        img {
            width: 100%;
            height: auto;
        }
    }

    .point_number {
        font-size: 14px;
        position: absolute;
        top: 4%;
        right: 4%;
        z-index: 1;
        letter-spacing: 0.1em;
    }

    .point01,
    .point02,
    .point03,
    .point04,
    .point05 {
        display: flex;
        flex-direction: column;
        gap: 1.7em;
        padding: 22px 15px 0;
        /* 追加 */
        background-color: inherit;
    }

    .point_ttl01,
    .point_ttl02,
    .point_ttl03,
    .point_ttl04,
    .point_ttl05 {
        background-color: #697e75;
        width: fit-content;
        height: 12vw;
        border-radius: 0 15px 0 0;
        line-height: 11vw;
        z-index: 2;
        left: 0;
        padding-top: 8px;
        padding-left: 10px;
        padding-right: 30px;
        top: 50vw;
        bottom: auto !important;
    }

    .point_ttl02 {
        padding-right: 75px;
    }

    .point_ttl03 {
        padding-right: 25px;
    }

    .point_ttl04 {
        padding-right: 16px;
    }

    .point_ttl05 {
        padding-right: 18px;
    }

    .point_ttl01 .before_wrp,
    .point_ttl02 .before_wrp,
    .point_ttl03 .before_wrp,
    .point_ttl04 .before_wrp,
    .point_ttl05 .before_wrp {
        content: "";
        display: block;
        position: absolute;
        height: 5vw;
        width: 5vw;
        top: 1px;
        left: 0;
        transform: translate(0, -100%);
        background-image: url(../img/under25/SP/point_border.svg);
        z-index: 2;
        border-radius: 0 -10px 0 0;
    }

    /* .point_ttl01::before,
    .point_ttl02::before,
    .point_ttl03::before,
    .point_ttl04::before,
    .point_ttl05::before {
      content: "";
      display: block;
      position: absolute;
      height: 5vw;
      width: 5vw;
      top: 0;
      left: 0;
      transform: translate(0, -100%);
      background-color: transparent;
      z-index: 2;
      border-radius: 50%;
    } */

    .point_ttl01 .after_wrp,
    .point_ttl02 .after_wrp,
    .point_ttl03 .after_wrp,
    .point_ttl04 .after_wrp,
    .point_ttl05 .after_wrp {
        content: "";
        display: block;
        position: absolute;
        height: 6vw;
        width: 6vw;
        bottom: 5px;
        right: 0;
        transform: translate(100%, 0);
        background-image: url(../img/under25/SP/point_border.svg);
        z-index: 2;
        border-radius: 0 -10px 0 0;
    }

    /* .point_ttl01::after,
    .point_ttl02::after,
    .point_ttl03::after,
    .point_ttl04::after,
    .point_ttl05::after {
      content: "";
      display: block;
      position: absolute;
      height: 6vw;
      width: 6vw;
      bottom: 0;
      right: 0;
      transform: translate(100%, 0);
      background-color: transparent;
      z-index: 2;
      border-radius: 50%;
    } */

    .point_ttl01 {
        position: absolute;
        bottom: 23%;
        font-size: 1.35em;
    }

    .point_ttl02 {
        position: absolute;
        bottom: 40%;
        font-size: 1.35em;
    }

    .point_ttl03 {
        position: absolute;
        font-size: 1.35em;
    }

    .point_ttl04 {
        position: absolute;
        bottom: 42%;
        font-size: 1.3em;
        letter-spacing: 0.06em;
    }

    .point_ttl05 {
        position: absolute;
        bottom: 34%;
        font-size: 1.22em;
    }

    .point_s {
        font-size: 12px;
        letter-spacing: 0;
    }

    .five_point {
        padding-bottom: 65px;
    }

    .private_room {
        padding: 0 5%;
    }

    .private_room01 {
        padding: 61px 0%;
        width: 94%;
        text-align: left;
    }

    .five_point_more {
        margin: 50px 4% 0;
        font-size: 14px;
    }
}

/* ----------------------------res-bonus-------------------------- */
.res-bonus {
    background-color: #f5e69a;
    padding: 0 5% 57px;
}

.res-bonus img {
    width: auto;
    /* 幅を自動調整 */
    height: 209px;
    /* 画像の高さを固定 */
    object-fit: cover;
}

.res-bonus_ttl {
    font-size: 1.7em;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-align: center;
    padding: 65px 0 52px;
}

.res-bonus_flx {
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 18px;
    /* 1204追加 */
    max-width: 720px;
}

/* .res-bonus_flx {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 18px;
} */

.bonus01_top img,
.bonus02_top img {
    border-top-left-radius: 15.4px;
    border-top-right-radius: 15.4px;
    width: 100%;
}

.bonus01_under,
.bonus02_under {
    background-color: #fff;
    height: 310px;
    padding: 10% 8%;
    border-bottom-left-radius: 15.4px;
    border-bottom-right-radius: 15.4px;
}

.bonus_number_ttl {
    display: flex;
    align-items: flex-end;
    gap: 7%;
}

.bonus_number {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 1px #33485c;
    /* padding: 12px 17px 5px; */
    padding: 11px 14px 0px;
    border-radius: 50%;
    font-size: 10px;
}

.bous_number_s {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.55;
    letter-spacing: 0;
}

.bonus_number span {
    /* ボーナス・特典の数字 */
    font-family: "Biryani", sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.bonus_s {
    padding-top: 1.8em;
    line-height: 1.7;
    font-size: 12px;
    letter-spacing: 0;
}

.bonus_s_02 {
    color: #767777;
    font-size: 0.7em;
    line-height: 1.5;
    padding-top: 0.8em;
    letter-spacing: 0;
}

.bonus_guide {
    line-height: 1.7;
    font-size: 12px;
    font-weight: 500;
    padding: 27px 4% 0;
    text-align: center;
    letter-spacing: 0;
}

@media screen and (max-width: 1280px) {
    .res-bonus img {
        height: 209px;
        /* 画像の高さを固定 */
    }
}

@media screen and (max-width: 820px) {
    .res-bonus_flx {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .res-bonus_ttl {
        font-size: 24px;
    }

    .res-bonus img {
        height: auto;
        /* 画像の高さを固定 */
    }

    .bonus01_under,
    .bonus02_under {
        height: auto;
        padding: 8% 7%;
    }

    .bonus_guide {
        line-height: 1.7;
        font-size: 12px;
        padding: 27px 4% 0;
        text-align: initial;
        /* デフォルトに戻す */
    }
}

/* ----------------------------access-------------------------- */
.access {
    background-color: #e0ded3;
    padding: 124px 8%;
}

.access_ttl {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 32px;
    padding-bottom: 50px;
}

.map_container {
    display: flex;
    gap: 61px;
}

iframe {
    filter: grayscale(65%);
}

.access_ttl h2 {
    font-size: 2.6em;
    font-weight: bold;
    letter-spacing: 0.13em;
}

.access_ttl p {
    line-height: 1.7;
    font-weight: 500;
}

/* ---case_box--- */
.case_box {
    display: flex;
    flex-direction: column;
    gap: 39px;
    width: 44%;
}

.case_box h3 {
    font-size: 15px;
    font-weight: 500;
}

.case_box p {
    line-height: 1.7;
    letter-spacing: 0;
}

.car_case,
.train_case,
.free_case {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

/* ---access_btn_box--- */
.access_btn_box {
    display: flex;
    justify-content: center;
    gap: 2.9em;
    padding-top: 75px;
}

.now_btn {
    background-color: #e0c259;
    text-align: center;
    padding: 1.4em 2.9em;
    position: relative;
}

.now_btn a,
.official_more_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    height: 100%;
    font-weight: 500;
}

.now_btn a img,
.official_more_btn a img {
    width: 6px;
    height: 12px;
    margin-left: auto;
}

.five_point_more a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2em;
    font-weight: 500;
}

.five_point_more a img {
    width: 6.75px;
    height: 13.5px;
    margin-left: auto;
}

/* .now_btn::after {
    content: "〉";
    color: #33485c;
    position: absolute;
    right: 4%;
    top: 37%;
} */
.official_more_btn {
    background-color: #33485c;
    color: #fff;
    text-align: center;
    padding: 1.4em 2.9em;
    position: relative;
}


/* .official_more_btn::after {
    color: #fff;
    content: "<?php echo get_template_directory_uri(); ?>/img/under25/SP/black_arrow.png";
    color: #fff;
    position: absolute;
    right: 4%;
    top: 37%;
} */

@media screen and (max-width: 820px) {
    .access {
        background-color: #e0ded3;
        padding: 85px 0% 69px;
    }

    .access_ttl {
        display: flex;
        flex-direction: column;
        gap: 17px;
        padding: 0 8% 43px;
    }

    .map_container {
        flex-direction: column;
    }

    .case_box {
        width: 100%;
        padding: 0 8%;
    }

    .car_case,
    .train_case,
    .free_case {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .access_btn_box {
        display: flex;
        flex-direction: column;
        gap: 13px;
        padding: 75px 8% 0;
    }

    .now_btn {
        background-color: #e0c259;
        text-align: center;
        padding: 19px 25px;
        position: relative;
    }

    .official_more_btn {
        background-color: #33485c;
        color: #fff;
        text-align: center;
        padding: 19px 0;
        position: relative;
    }
}

/* ----------------------------FAQ-------------------------- */
.FAQ {
    background-color: #e0ded3;
    padding: 0 8% 80px;
}

/* ----------------アコーディオン用------------------ */
.FAQ_ttl {
    font-size: 2.6em;
    font-weight: bold;
    letter-spacing: 0.09em;
    /* padding-bottom: 35px; */
    padding-bottom: 28px;
}

/* アコーディオン全体のスタイル */
.accordion {
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

/* ヘッダー部分 */
.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 20px 0;
    border: none;
    text-align: left;
    font-size: 16pt;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
    border-top: solid 1px #99a3ae;
}

.ac_q {
    width: 90%;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
}

.toggle {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin-left: auto;
    /* テキストの右端に配置 */
}

.toggle::before,
.toggle::after {
    content: "";
    position: absolute;
    background-color: #33485c;
    /* 線の色 */
    width: 20px;
    /* 線の長さ */
    height: 2px;
    /* 線の太さ */
    top: 50%;
    /* 垂直中央 */
    left: 0;
    transform-origin: center;
    transition: transform 0.3s ease;
    /* スムーズな動き */
}

/* 横線（マイナス記号） */
.toggle::before {
    transform: translateY(-50%);
    /* 初期位置を中央に */
}

/* 縦線（プラス記号） */
.toggle::after {
    transform: translateY(-50%) rotate(90deg);
    /* 初期位置を中央にして縦線を作成 */
}

/* アクティブ時（マイナス記号にする） */
.toggle.active::after {
    transform: translateY(-50%) rotate(0deg);
    /* 縦線を水平に */
}

/* コンテンツ部分 */
.accordion-content {
    display: none;
    /* 初期状態では非表示 */
    overflow: hidden;
    line-height: 1.7;
    padding-bottom: 25px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.last_border {
    border-bottom: solid 1px #99a3ae;
}

@media screen and (max-width: 820px) {
    .accordion-header {
        font-size: 13pt;
        border-top: solid 1px #99a3ae;
    }

    .FAQ {
        background-color: #e0ded3;
        padding: 0 8% 135px;
    }
}



/* ----------------------------footer-------------------------- */
footer {
    background-color: #33485c;
    color: #fff;
    padding: 70px 8% 55px;
}

.footer_pc_flx {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.footer_icon {
    text-align: center;
}

.bamboo_info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 60px 0 35px;
    text-align: center;
    line-height: 1.8;
}

.bamboo_info li:nth-child(3) {
    /* display: flex;
    justify-content: center;
    gap: 40px; */
    display: none;
}

.bamboo_info h3 {
    /* THE BAMBOO FOREST */
    font-family: "Biryani", sans-serif;
    font-size: 1.5em;
    font-size: 22px;
}

.fotter_middle_pc {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 95px;
    gap: 2.8em;
}

.contact_btn {
    width: 20%;
    /* margin: 0 auto; */
    font-weight: bold;
    letter-spacing: 0.3em;
    border: solid 2px #fff;
    border-radius: 5px;
    padding: 20px 0;
    text-align: center;
}

.footer_sns_pc {
    display: flex;
    gap: 1.1em;
}

small {
    display: block;
    text-align: right;
}

.grecaptcha-badge {
    z-index: 2;
}

@media screen and (max-width: 820px) {
    .header_logo img {
        width: 123px;
        height: 17px;
    }

    .fv_ttl {
        width: 300px;
    }

    .footer_pc_flx {
        display: block;
        /* デフォルトのブロック表示に戻す */
        align-items: initial;
        /* 初期値に戻す */
        flex-direction: initial;
        /* 初期値に戻す */
        justify-content: initial;
        /* 初期値に戻す */
    }

    .bamboo_info {
        gap: 30px;
    }

    .bamboo_info li:first-child p {
        font-size: 12px;
    }

    .bamboo_info li:nth-child(2) {
        font-size: 12px;
    }

    .bamboo_info li:nth-child(3) {
        display: flex;
        justify-content: center;
        gap: 2.4em;
    }

    .bamboo_info h3 {
        font-size: 15px;
        /* font-weight: bold; */
        letter-spacing: 0.08em;
    }

    .fotter_middle_pc {
        display: flex;
        align-items: center;
        margin-top: 0px;
        margin-bottom: 95px;
        gap: 2.8em;
    }

    .contact_btn {
        width: 63%;
        margin: 0 auto;
        font-weight: bold;
        font-size: 12px;
        letter-spacing: 0.3em;
        border: solid 2px #fff;
        border-radius: 5px;
        padding: 20px 0;
        text-align: center;
    }

    .footer_sns_pc {
        display: none !important;
    }

    .footer_sns_sp {
        display: flex !important;
    }

    .footer_sns_sp a {
        display: block;
    }

    small {
        font-size: 8px;
        text-align: center;
    }

    .sp_hum_info03 {
        display: flex;
        flex-direction: column;
        gap: 5px !important;
        margin-top: -22px;
    }
}

/* --------------430px以下のレスポンシブ---------------- */
@media screen and (max-width: 430px) {

    /* .under_25_ttl_02_back {
        left: calc(50% - 167px);
    } */
    .under_25_ttl_03_back {
        left: calc(50% - 161px);
    }

    .sp_point01_slider,
    .sp_point02_slider,
    .sp_point03_slider,
    .sp_point04_slider,
    .sp_point05_slider {
        border-radius: 20px;
        /* 角丸の半径を指定 */
        overflow: hidden;
        /* 角丸の外に要素がはみ出ないようにする */
    }
}

/* --------------390px以下のレスポンシブ---------------- */
@media screen and (max-width: 395px) {

    /* header */
    .close_btn_box {
        /* padding-top: 0; */
        padding-bottom: 1em;
    }

    .close-button-sp span {
        right: 5%;
    }

    .bamboo_info {
        padding: 40px 0 35px;
    }

    /* under25 */
    .under_25_ttl_02 {
        /* font-size: 1.4em; */
    }

    .under_25_ttl_01 {
        gap: 1.3em;
        margin-bottom: 0.9em;
    }

    .under_25_ttl_01 img {
        width: 15px;
        margin-bottom: 5px;
    }

    /* .under_25_ttl_02_back {
        top: calc(50% - 66px);
        left: calc(50% - 143px);
    } */
    /* .under_25_ttl_03 {
        font-size: 1.5em;
    } */
    .under_25_ttl_03_back {
        top: 4%;
        left: calc(50% - 161px);
    }

    /* point */
    /* .sp_point01_slider img,
    .sp_point02_slider img,
    .sp_point03_slider img,
    .sp_point04_slider img,
    .sp_point05_slider img {
        border-radius: 20px;
    } */
    .point01,
    .point02,
    .point03,
    .point04,
    .point05 {
        padding: 22px 10px 0;
        gap: 0.6em;
        letter-spacing: 0;
    }

    .point_ttl01 {
        font-size: 18px;
        bottom: 22%;
    }

    .point_ttl02 {
        bottom: 35%;
        font-size: 18px;
    }

    .point_ttl03 {
        bottom: 43%;
        font-size: 18px;
    }

    .point_ttl04 {
        bottom: 42%;
        font-size: 18px;
        letter-spacing: 0.06em;
    }

    .point_ttl05 {
        bottom: 29%;
        font-size: 18px;
    }

    /* bonus */
    .bous_number_s {
        font-size: 16px;
        letter-spacing: 0;
    }

    .bonus_s {
        font-size: 12px;
        letter-spacing: 0;
        line-height: 1.8333;
    }

    .bonus_s_02 {
        font-size: 10px;
        letter-spacing: 0;
    }

    .bonus_guide {
        font-size: 12px;
    }

    /* access */
    .access_ttl h2 {
        font-size: 35px;
    }

    .access_ttl p {
        font-size: 14px;
        letter-spacing: 0;
    }

    .case_box h3 {
        font-size: 15px;
    }

    .case_box p {
        font-size: 12px;
    }

    .now_btn,
    .official_more_btn {
        font-size: 14px;
    }

    /* FAQ */
    .FAQ_ttl {
        font-size: 32px;
        padding-bottom: 28px;
    }

    .accordion-header {
        font-size: 12pt;
    }

    .accordion-content {
        font-size: 0.9em;
    }

    .toggle::before,
    .toggle::after {
        width: 15px;
    }

    /* footer */
    footer {
        padding: 70px 7% 55px;
    }
}

/* --------------375px以下のレスポンシブ---------------- */
@media screen and (max-width: 375px) {

    /* under25 */
    /* .under_25_ttl_02_back {
        left: calc(50% - 167px)
    } */
    .under_25_ttl_03_back {
        left: calc(50% - 161px);
    }

    /* point */
    .point_ttl01 {
        bottom: 22%;
    }

    .point_ttl02 {
        bottom: 35%;
    }

    .point_ttl04 {
        bottom: 42%;
    }

    /* .sp_point01_slider img,
    .sp_point02_slider img,
    .sp_point03_slider img, 
    .sp_point04_slider img, 
    .sp_point05_slider img {
        width: 340px;
        height: auto;
    } */
}

/* ---------------------タブレット用css----------------------- */

@media screen and (min-width: 700px) and (max-width: 820px) {

    /* fv */
    .fv_official_icon {
        right: 14%;
    }

    .fv_official_icon img {
        width: 14vw;
    }

    .fv_now {
        left: 18%;
    }

    .fv_price {
        margin-left: 18%;
    }

    /* under25 */
    /* .under_25_ttl_02_back {
        left: calc(50% - 162px)
    } */
    /* .under_25_ttl_03_back {
        left: calc(50% - 174px);
    } */
    /* point */
    .point_ttl01 {
        bottom: 19%;
        font-size: 2em;
    }

    .point_ttl02 {
        bottom: 35%;
        font-size: 2em;
    }

    .point_ttl03 {
        bottom: 35%;
        font-size: 2em;
    }

    .point_ttl04 {
        bottom: 33%;
        font-size: 2em;
    }

    .point_ttl05 {
        bottom: 24%;
        font-size: 2em;
    }

    .point_s {
        font-size: 12px;
    }

    /* bonus */
    .bous_number_s {
        font-size: 1.8em;
    }

    .bonus_number {
        padding: 12px 29px 5px;
    }

    .bonus_number span {
        font-size: 2.6rem;
    }
}

/* -----------------------------アニメーション用CSS----------------------- */

.fadeup01 {
    opacity: 0;
    /* 初期状態は透明 */
    transform: translateY(30px);
    /* 初期状態で下に20pxずらす */
    transition: opacity 1.5s ease, transform 1.5s ease;
    /* ここで出てくる速さを1秒に指定 */
    */
}

.fadeup01.active,
.fadeup02.active {
    opacity: 1;
    /* 表示 */
    transform: translateY(0);
    /* 元の位置に移動 */
}

.fadeup02 {
    opacity: 0;
    /* 初期状態は透明 */
    transform: translateY(30px);
    /* 初期状態で下に20pxずらす */
    transition: opacity 1s ease, transform 1s ease;
    /* ここで出てくる速さを1秒に指定 */
    /* position: absolute;
    top: 3.5%;
    left: 50%;
    z-index: 2; */
}

/* スライド部分 */

.slide01,
.slide02 {
    opacity: 0;
    /* 初期状態は透明 */
    transform: translateX(-80px);
    /* 左に50px移動 */
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.slide03 {
    opacity: 0;
    /* 初期状態は透明 */
    transform: translateX(-80px);
    /* 左に50px移動 */
    transition: opacity 1s ease, transform 1s ease;
}

.slide01.active,
.slide02.active,
.slide03.active {
    opacity: 1;
    /* 表示 */
    transform: translateX(0);
    /* 元の位置に移動 */
}

/* 公式アイコン */

.fadeup03 {
    opacity: 0;
    /* 初期状態は透明 */
    transform: translateY(30px);
    /* 初期状態で下に20pxずらす */
    transition: opacity 0.9s ease, transform 0.9s ease;
    /* ここで出てくる速さを1秒に指定 */
    */
}

.fadeup03.active {
    opacity: 1;
    /* 表示 */
    transform: translateY(0);
    /* 元の位置に移動 */
}

@media (min-width: 1500px) {
    .fv_official_icon {
        right: 18%;
    }

    .under_25_ttl_02_back {
        left: calc(50% - 160px);
    }

    .under_25_ttl_03_back {
        left: calc(50% - 172px);
    }

    .five_point_more {
        width: 22%;
    }
}

@media (min-width: 840px) {
    header {
        height: 80px;
        box-shadow: none;
    }

    .header_logo img {
        width: 180px;
    }

    #header-hamburger {
        width: 35px;
        margin-top: 7px;
    }

    #header-hamburger span {
        height: 1px;
    }

    .header_reserv {
        padding: 24px 50px 24px;
    }

    .header_menu {
        font-size: 15px;
        padding-right: 40px;
        /* gap: 16px; */
    }

    .header_menu p {
        margin-top: 10px;
        padding-left: 16px;
    }

    /* window */
    .pc .hum_top .hum_res_btn a {
        display: flex;
    }

    .pc_hum_logo {
        width: 197px;
        height: 25.7px;
    }

    .hum_res_btn p {
        font-size: 15.6px;
        font-family: "Biryani", sans-serif;
    }

    .hum_FAQ_btn,
    .hum_q_btn {
        border: solid 1.5px #fff;
        border-radius: 5px;
        width: 100%;
        padding: 1.1em;
        font-family: "Biryani", sans-serif;
        border-radius: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .pc_hum_arrow {
        position: absolute;
        top: calc(50% - 11px);
        right: 7%;
    }

    .hum_FAQ_btn p:nth-of-type(1),
    .hum_q_btn p:nth-of-type(1) {
        font-size: 16px;
    }

    .hum_FAQ_btn p:nth-of-type(2),
    .hum_q_btn p:nth-of-type(2) {
        font-size: 10px;
    }

    .hum_info01 p:nth-of-type(1) {
        font-size: 20px;
    }

    .hum_info01 p:nth-of-type(2) {
        font-size: 12px;
    }

    .hum_address {
        font-size: 12px;
    }

    .hum_tell p:nth-of-type(1) {
        font-size: 26px;
    }

    .hum_tell p:nth-of-type(2) {
        font-size: 10px;
    }

    .pc_header_sns {
        display: flex;
        gap: 40px;
        margin-top: 30px;
    }

    .hum_close {
        font-family: "Century Gothic", sans-serif;
        font-weight: bold;
        font-size: 15px;
    }

    .close-button span {
        width: 85%;
    }

    .menu-link {
        font-family: "Biryani", sans-serif;
        font-size: 16px;
        padding: 26px 0 24px;
        line-height: 1;
    }

    .menu-link span {
        font-size: 12px;
        margin-top: 1px;
    }

    /* fv */
    .fv_slider {
        width: 930px;
        height: 579px;
        border-radius: 500px;
    }

    .fv_ttl {
        top: 14.2%;
    }

    .fv_ttl img {
        width: 806px;
        height: 136px;
    }

    .fv_now {
        bottom: 16.5%;
    }

    .fv_now01,
    .fv_now02 {
        font-size: 24px;
        padding: 11px 15px;
    }

    .fv_price {
        margin-top: -4.5%;
    }

    .fv_price01,
    .fv_price03 {
        font-size: 11px;
    }

    .fv_price02 {
        font-size: 28px;
    }

    .fv_official_icon {
        bottom: 4%;
    }

    /* under25 */
    .under_25 {
        padding: 65px 5% 86px;
    }

    .under_25_ttl_01 {
        font-size: 18px;
        top: -4%;
        left: calc(50% - 69px);
        transform: translate(-37%, 0);
        gap: 29px;
    }

    .under_25_ttl_02 {
        font-size: 24.4px;
        padding-top: 38px;
    }

    .under_25_ttl_02_back {
        font-size: 24.4px;
        padding-top: 38px;
    }

    .under_25_ttl_03,
    .under_25_ttl_03_back {
        font-size: 28px;
    }

    .under_25_ttl_03 .span02,
    .under_25_ttl_03_back .span02 {
        font-size: 101px;
    }

    .span02_pers,
    .under_25_ttl_03_back .span02_pers {
        font-size: 56px;
    }

    .under_25_info {
        width: 93.5%;
    }

    .under_25_info h4 {
        font-size: 14px;
        letter-spacing: 0;
        padding: 12px;
        letter-spacing: 0.05em;
    }

    .under_25_item h5 {
        font-size: 16px;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .under_25_info li:nth-child(2) .under_25_item h5 {
        margin-bottom: 5px;
    }

    .under_25_item {
        padding: 27px 40px 21px;
    }

    .under_25_item p {
        font-size: 12px;
        letter-spacing: 0;
    }

    .under_25_info li:first-child {
        width: 62%;
    }

    .under_25_pcbox {
        padding-top: 55px;
    }

    .under_25_under {
        width: 347.4px;
        height: 119px;
        margin: 0 auto 39px;
    }

    /* private-room */
    .private_image {
        display: flex;
    }

    .private_image img {
        transform: scale(1.005);
        width: 100%;
        /* 画像を親要素の幅に合わせる */
        height: auto;
        /* 画像の高さを自動調整 */
    }

    .private_image div {
        flex: 0 0 33.33%;
        /* 各スライドを全体の3分の1に設定 */
        max-width: 33.33%;
        /* 最大幅も3分の1 */
    }

    .private_room01 {
        padding: 111px 0% 63px;
    }

    .private_ttl {
        font-size: 24px;
        margin-bottom: 35px;
        letter-spacing: 0;
    }

    .private_ttl_s {
        font-size: 14px;
        letter-spacing: 0;
        line-height: 2;
    }

    .five_point_border {
        border-bottom: solid 1px #fff;
        width: 30.5%;
        margin: 109px auto 0;
    }

    .five_point_ttl {
        font-size: 24px;
        letter-spacing: 0.1em;
        gap: 20px;
        padding: 0 0 55px;
    }

    /* point */
    .point_container {
        gap: 24px;
    }

    .point_number {
        font-family: "Biryani", sans-serif;
        font-weight: bold;
        font-size: 12px;
    }

    .point01,
    .point02,
    .point03,
    .point04,
    .point05 {
        padding: 56px 46px 0;
    }

    .point_ttl01,
    .point_ttl02,
    .point_ttl03,
    .point_ttl04,
    .point_ttl05 {
        font-size: 24px;
        letter-spacing: 0;
    }

    .point_s {
        font-size: 14px;
        letter-spacing: 0;
    }

    .point_s_02 {
        letter-spacing: 0;
    }

    .five_point {
        padding-bottom: 122px;
    }

    .five_point_more {
        padding: 19px 0;
        font-size: 14px;
        width: 30%;
        margin: 66px auto 0;
    }

    /* access */
    .arrow {
        margin-top: -4px;
    }

    /* footer */
    .footer_icon img {
        width: 186px;
        height: 89px;
    }

    .footer_bamboo_ttl {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-left: 0px !important;
    }
}

@media (max-width: 820px) {
    .header_logo img {
        width: 122px;
        height: 16px;
    }

    .sp_hum_logp {
        width: 122px;
        height: 16px;
    }

    .under_25_under {
        width: 312px;
        height: 110px;
        margin: 28px auto 37px;
    }

    .footer_icon img {
        width: 149px;
        height: 71px;
    }

    .footer_pc_flx .bamboo_info h3 {
        font-size: 18px;
    }

    .footer_pc_flx .bamboo_info h3 .sp {
        font-size: 12px !important;
    }

    /* FAQ */
    .accordion-content {
        font-size: 12px;
    }

    .sp_arrow {
        position: absolute;
        top: calc(50% - 10px);
        right: 6%;
    }

    .sp_arrow img {
        width: 8px;
        height: 13px;
    }

    .fv_cuttion {
        height: 37px;
    }
}