html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Serif JP', serif;
    background-color: #F8F7F3;
}



/* header,
footer {
    width: 100%;
}

header {
    background-color: #C4A19B;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header_nav {
    max-width: 1440px;
    height: 80px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site_logo {
    width: 76px;
    height: auto;
    display: block;
}

.site_logo img {
    width: 100%;
    height: auto;
}

.nav_menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.nav_menu a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.nav_menu a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.reserve-button {
    width: 171px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #F8F7F3;
    color: #C4A19B;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.143;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    gap: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.reserve-button::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #C4A19B;
}

.reserve-button:hover {
    background-color: #F8F7F380;
    color: #C4A19B;
}

.reserve-button--sp {
    display: none;
}

.hamburger,
.sp_menu {
    display: none;
}

main {
    margin-top: 80px;
}

footer {
    background-color: #C4A19B;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', serif;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
} */


header,
footer {
    width: 100%;
}

header {
    background-color: #C4A19B;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header_nav {
    max-width: 1440px;
    height: 80px;
    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* ロゴ */
.site_logo {
    width: 76px;
    grid-column: 1;
    justify-self: start;
}


.site_logo img {
    width: 100%;
    height: auto;
}


/* ナビ中央 */
.nav_menu {
    display: flex;
    gap: 48px;
    grid-column: 2;
    justify-self: center;
    list-style: none;
}

.nav_menu a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.nav_menu a:hover {
    color: rgba(255, 255, 255, 0.5);
}


.reserve-button {
    width: 171px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #F8F7F3;
    color: #C4A19B;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.143;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    gap: 8px;
    transition: background-color 0.3s, color 0.3s;

    grid-column: 3;
    justify-self: end;
}

.reserve-button::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #C4A19B;
}

.reserve-button:hover {
    background-color: #F8F7F380;
    color: #C4A19B;
}

.reserve-button--sp {
    display: none;
}

.hamburger,
.sp_menu {
    display: none;
}

main {
    margin-top: 80px;
}

footer {
    background-color: #C4A19B;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', serif;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
}


/* =========================
共通パーツ
========================= */

.section_title {
    text-align: center;
    margin-bottom: 100px;
}

.section_title_en {
    font-family: 'Italianno', cursive;
    font-size: 96px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.042;
    color: #000000;
}

.section_title_ja {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.25;
    color: #8E845F;
    text-align: center;
}

.separate {
    display: block;
    border-bottom: 2px dotted #C5BFAF;
    margin: 25px 0;
}

.btn {
    align-items: center;
    padding: 12px 20px;
    background-color: #C4A19B;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.143;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    gap: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.btn::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ffffff;
    margin-left: 8px;
}

.btn:hover {
    background-color: #D9B6B080;
    color: #FFFFFF;
}

.btn_wrap {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding-top: 40px;
}

.btn_wrap .btn {
    width: 225px;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.btn_wrap .btn:hover {
    background-color: #C4A19B80;
    color: #FFFFFF;
}

.btn_center {
    display: block;
    width: 174px;
    margin: 0 auto;
    text-align: center;
}

.btn_left::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid #ffffff;
    margin-right: 8px;
}

.btn_left::after {
    display: none;
}

.pc_br {
    display: inline;
}

.sp_br {
    display: none;
}

/* =========================
下層ページ共通
========================= */

.menu_page {
    padding: 100px 0 200px;
}

.menu_detail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1000px;
    margin: 0 auto 70px;
}

.menu_detail_text {
    margin-right: 39px;
}

.menu_detail_title {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.menu_detail_description {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.75;
}

.sliming_menu_detail_description,
.sliming_description_top,
.sliming_description_middle_top,
.sliming_description_middle_bottom,
.sliming_description_bottom {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 350;
    letter-spacing: 0.1em;
    line-height: 1.714;
}

.sliming_description_middle_bottom {
    margin-bottom: 16px;
}



.menu_point {
    display: flex;
    align-items: stretch;
    width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 100px;
}

.menu_point_img {
    flex: 0 0 320px;
    height: 100%;
}

.menu_point_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu_point_text_area {
    flex: 1;
    padding: 30px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #FFFFFF;
}

.menu_point_title {
    width: 700px;
    font-family: 'Italianno', cursive;
    font-size: 40px;
    color: #C4A19B;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    font-weight: 400;
}

.menu_point_description_top {
    margin-bottom: 16px;
}


.menu_point_description_top,
.menu_point_description_bottom {
    width: 733px;
    text-align: left;
    letter-spacing: 0.1em;
    line-height: 1.75;
}

.bridal_description_top,
.bridal_description_bottom {
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.facial_description_top {
    letter-spacing: 0.05em;
}

.facial_description_bottom,
.facial_description_bottom {
    margin-top: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.75;
}

.facial_description_middle_bottom {
    margin-bottom: 16px;
}


.menu_card {
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu_card_text_area {
    width: 450px;
}

.menu_card_title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.25;
}

.price {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.price16,
.slimming_price16 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 350;
    letter-spacing: 0.1em;
    line-height: 1.75;
    margin-bottom: 4px;
}


.menu_card_image {
    max-width: 400px;
}

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

.menu_price_title {
    width: 700px;
    font-family: 'Italianno', cursive;
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    letter-spacing: 0.05em;
    margin: 0 auto 40px;
}

.menu_point_bridal .menu_point_img {
    height: auto;
    align-self: stretch;
}

.menu_point_bridal .menu_point_img img {
    height: 100%;
}


.price_group:nth-child(2) {
    margin-top: 20px;
}

.menu_card_column {
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 100px;
}

.price_wrap_image img {
    width: 100%;
    height: auto;
}

.price_wrap_text_area {
    width: 800px;
    margin: 50px auto 0;
    letter-spacing: 0.1em;
}


/* =========================
768px タブレット：レスポンシブ
========================= */
@media (min-width: 431px) and (max-width: 768px) {

    header {
        height: 64px;
    }

    .header_nav {
        height: 64px;
        padding: 0 21px;

        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 14px;
    }

    .site_logo {
        width: 54px;
        height: 38px;

        margin: 0;
        grid-column: 1;
    }

    .nav_menu,
    .reserve-button {
        display: none;
    }

    .reserve-button--sp {
        display: inline-flex;
        width: 122px;
        height: 28px;
        font-size: 12px;
        grid-column: 3;
        justify-self: end;
        white-space: nowrap;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 30px;

        grid-column: 4;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: #F8F7F3;
    }

    main {
        margin-top: 64px;
    }

    .sp_menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #F8F7F3;
        z-index: 2000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sp_menu.is-open {
        display: flex;
    }

    .sp_menu_close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: #604444;
        background: none;
        border: none;
        cursor: pointer;
    }

    .sp_menu_list {
        list-style: none;
        text-align: center;
    }

    .sp_menu_list li {
        margin-bottom: 40px;
    }

    .sp_menu_list a {
        font-size: 24px;
        color: #8E845F;
        text-decoration: none;
        font-family: 'Noto Serif JP', serif;
        letter-spacing: 0.05em;
    }


    /* section共通 */
    .section_title_en {
        font-size: 80px;
    }

    .section_title_ja {
        font-size: 18px;
        margin-bottom: 50px;
    }

    /* 下層ページ共通 */
    .menu_page {
        padding: 80px 0 0;
    }

    .menu_detail {
        display: block;
        width: 100%;
        margin: 0 auto 50px;
        flex-wrap: wrap;
    }

    .facial_menu_detail {
        display: block;
    }

    .menu_detail_title {
        font-size: 26px;
        font-weight: 400;
        line-height: 1.5;
        text-align: center;
    }

    .menu_detail_text {
        width: 100%;
        padding: 0 40px;
        box-sizing: border-box;
        margin: 0 auto 40px;
        margin-right: 0;
    }

    .separate {
        margin: 25px 0;
    }

    .sliming_description {
        margin-bottom: 50px;
    }

    .slimming_detail_text .menu_detail_description {
        width: fit-content;
    }

    .slimming_detail_text .menu_detail_description .sp_br {
        display: none;
    }
    .slimming_detail_text .menu_detail_description .pc_br {
        display: inline;
    }
    

    .menu_detail_description {
        font-size: 15px;
        margin: 0;
        width: fit-content;
    }

    .menu_detail img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        padding: 18px;
    }

    /* menu_point */
    .hair_menu_point,
    .slimming_menu_point,
    .facial_menu_point,
    .bridal_menu_point {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .hair_menu_point .menu_point_img,
    .hair_menu_point .menu_point_img_left,
    .hair_menu_point .menu_point_img_right,
    .slimming_menu_point .menu_point_img,
    .slimming_menu_point .menu_point_img_left,
    .slimming_menu_point .menu_point_img_right,
    .facial_menu_point .menu_point_img,
    .facial_menu_point .menu_point_img_left,
    .facial_menu_point .menu_point_img_right {
        flex: 0 0 200px;
        width: 200px;
        height: auto;
    }

    .hair_menu_point .hair_point_text_area,
    .slimming_menu_point .menu_point_text_area,
    .facial_menu_point .menu_point_text_area {
        order: unset;
        flex: 1;
        width: auto;
        padding: 30px 30px;
    }

    .hair_menu_point .sp_br {
        display: none;
    }

    .menu_point_title {
        width: 100%;
        font-size: 36px;
        text-align: center;
    }

    .menu_point_description_top,
    .menu_point_description_bottom {
        width: 100%;
        font-size: 15px;
        text-align: left;
    }

    .facial_description_middle_bottom {
        margin-bottom: 16px;
    }

    .hair_menu_point .menu_point_text_area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hair_menu_point .menu_point_description_top,
    .hair_menu_point .menu_point_description_bottom {
        width: fit-content;
        margin: 0 auto;
    }


    /* menu_card */
    .menu_card {
        display: block;
        max-width: 600px;
        padding: 24px 40px;
        margin: 0 auto 30px;
    }

    .menu_card_title {
        font-size: 20px;
    }

    .price {
        font-size: 15px;
    }

    .price16,
    .slimming_price16 {
        font-size: 15px;
        font-weight: 350;
        letter-spacing: 0.1em;
        line-height: 1.714;
    }

    .sp_br {
        display: inline;
    }

    .sp_br br {
        display: inline;
    }

    .hair_tablet_description .sp_br {
        display: none;
    }

    .hair_tablet_description .pc_br {
        display: inline;
    }

    .bridal_menu_detail_description {
        font-size: 15px;
        text-align: left;
    }

    .bridal_menu_detail_description .sp_br {
        display: none;
    }

    .bridal_menu_detail_description .pc_br {
        display: inline;
    }

    .bridal_menu_point {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .bridal_menu_point .menu_point_img,
    .bridal_menu_point .menu_point_img_left,
    .bridal_menu_point .menu_point_img_right {
        flex: 0 0 200px;
        width: 200px;
        height: auto;
    }

    .bridal_menu_point .menu_point_text_area {
        order: unset;
        flex: 1;
        width: auto;
        padding: 30px 30px;
    }

    .menu_point_description_top .sp_br,
    .menu_point_description_bottom .sp_br {
        display: none;
    }

    .hair_menu_point .hair_point_text_area,
    .slimming_menu_point .menu_point_text_area,
    .facial_menu_point .menu_point_text_area,
    .bridal_menu_point .menu_point_text_area {
        order: unset;
        flex: 1;
        width: auto;
        padding: 30px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu_card_image {
        max-width: 100%;
        height: 200px;
        margin-top: 22px;
    }

    .menu_card_image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    /* btn_wrap */
    .btn_wrap {
        padding: 40px;
        gap: 20px;
        flex-direction: row;
        justify-content: center;
    }

    footer {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer small {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 10px;
        letter-spacing: 0.1em;
        text-align: center;
    }

    .top_page .menu_price {
        padding: 80px 0;
    }

    .menu_price_title {
        width: 100%;
        font-size: 40px;
        margin: 0 auto 40px;
        font-weight: 400;
    }

    .price_wrap_text_area {
        width: 100%;
    }

    .menu_card_column {
        margin: 0 40px 50px;
        padding: 40px;
    }
}



/* =========================
430px iPhone新機種対応：レスポンシブ
========================= */
@media (min-width: 376px) and (max-width: 430px) {

    header {
        height: 64px;
    }

    .header_nav {
        height: 64px;
        padding: 0 21px;

        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 14px;
    }

    .site_logo {
        width: 54px;
        height: 38px;

        margin: 0;
        grid-column: 1;
    }

    .nav_menu,
    .reserve-button {
        display: none;
    }

    .reserve-button--sp {
        display: inline-flex;
        width: auto;
        padding: 0 12px;
        height: 28px;
        font-size: 12px;
        white-space: nowrap;
        grid-column: 3;
        justify-self: end;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 30px;
        grid-column: 4;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: #F8F7F3;
    }

    .sp_menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #F8F7F3;
        z-index: 2000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sp_menu.is-open {
        display: flex;
    }

    .sp_menu_close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: #604444;
        background: none;
        border: none;
        cursor: pointer;
    }

    .sp_menu_list {
        list-style: none;
        text-align: center;
    }

    .sp_menu_list li {
        margin-bottom: 40px;
    }

    .sp_menu_list a {
        font-size: 24px;
        color: #8E845F;
        text-decoration: none;
        font-family: 'Noto Serif JP', serif;
        letter-spacing: 0.05em;
    }

    main {
        margin-top: 64px;
    }

    /* section共通 */
    .section_title_en {
        font-size: 64px;
    }

    .section_title_ja {
        font-size: 16px;
        margin-bottom: 50px;
    }

    /* 下層ページ共通 */
    .menu_page {
        padding: 70px 0 0;
    }

    .menu_detail {
        display: flex;
        justify-content: center;
        width: 390px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .menu_detail_title {
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 0.1em;
        line-height: 1.25;
        text-align: center;
    }

    .menu_detail_description,
    .sliming_description_bottom {
        font-size: 14px;
        margin: 0 0 16px;
        font-weight: 350;
    }

    .sliming_description_middle_bottom {
        margin-bottom: 32px;
    }

    .hair_menu_detail_description {
        letter-spacing: 0.05em;
    }

    .menu_detail_text {
        margin: 0px 18px 50px;
    }

    .pc_br {
        display: none;
    }

    .sp_br {
        display: inline;
    }

    .sp_br br {
        display: inline;
    }

    .facial_description_top--second {
        margin-top: 16px;
    }

    .menu_detail img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .bridal_menu_detail_description {
        font-size: 15px;
        text-align: left;
    }





    /* menu_point */
    .menu_point {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        left: 0;
        transform: none;
        margin: 0;
    }

    .menu_point_text_area {
        order: 1;
        width: 100%;
        padding: 30px 48px;
        font-size: 14px;
        background-color: #FFFFFF;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu_point_img_left {
        order: 2;
        width: 50%;
        flex: 0 0 50%;
        height: auto;
        min-width: unset;
    }

    .menu_point_img_right {
        order: 3;
        width: 50%;
        flex: 0 0 50%;
        height: auto;
        min-width: unset;
    }

    .menu_point_description_top,
    .menu_point_description_bottom {
        width: 294px;
        font-weight: 350;
        letter-spacing: 0.1em;
    }


    .facial_description_bottom {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.1em;
        line-height: 1.714;
        margin-top: 16px;
    }

    .menu_point_title {
        width: 340px;
        font-size: 36px;
    }

    .bridal_description_top,
    .bridal_description_bottom {
        width: 294px;
        margin: 0 auto;
    }

    /* menu_card */
    .menu_card {
        background-color: #ffffff;
        max-width: 390px;
        padding: 22px 26px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
    }

    .menu_card_text_area {
        width: 340px;
    }

    .menu_card_title {
        font-size: 16px;
        letter-spacing: 0.05rem;
        font-weight: 400;
    }

    .price {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.1em;
        margin-bottom: 16px;
    }

    .price16,
    .slimming_price16 {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.1em;
        line-height: 1.714;
        margin-bottom: 16px;
    }

    .hair_menu_point .menu_point_description_top,
    .hair_menu_point .menu_point_description_bottom {
        width: 294px;
        margin: 0 auto;
    }

    .slimming_price16 {
        margin-bottom: 8px;
    }


    .separate {
        margin: 24px 0;
    }

    .menu_card_image {
        max-width: 100%;
        height: 160px;
        margin-top: 22px;
    }

    .menu_card_image img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        display: block;
    }

    /* btn_wrap */
    .btn_wrap {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 40px;
        flex-direction: column-reverse;
        align-items: center;
    }

    .btn_wrap .btn {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.1em;
        line-height: 1.714;
    }

    footer {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer small {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 10px;
        letter-spacing: 0.1em;
        text-align: center;
    }

    .menu_price_title {
        width: 100%;
        font-size: 36px;
        margin: 0 auto 40px;
        font-weight: 400;
    }

    .price_wrap_text_area {
        width: 100%;
    }

    .menu_card_column {
        margin: 0 30px;
        padding: 50px 20px;
    }
}

/* =========================
375px SP：レスポンシブ
========================= */
@media (max-width: 375px) {

    header {
        height: 64px;
    }

    .header_nav {
        height: 64px;
        padding: 0 16px;

        display: grid;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 10px;
    }

    .site_logo {
        width: 54px;
        height: 38px;

        margin: 0;
        grid-column: 1;
    }

    .nav_menu,
    .reserve-button {
        display: none;
    }

    .reserve-button--sp {
        display: inline-flex;
        width: auto;
        padding: 0 10px;
        height: 28px;
        font-size: 12px;

        white-space: nowrap;

        grid-column: 3;
        justify-self: end;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 28px;

        grid-column: 4;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #F8F7F3;
    }

    .sp_menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #F8F7F3;
        z-index: 2000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sp_menu.is-open {
        display: flex;
    }

    .sp_menu_close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: #604444;
        background: none;
        border: none;
        cursor: pointer;
    }

    .sp_menu_list {
        list-style: none;
        text-align: center;
    }

    .sp_menu_list li {
        margin-bottom: 40px;
    }

    .sp_menu_list a {
        font-size: 24px;
        color: #8E845F;
        text-decoration: none;
        font-family: 'Noto Serif JP', serif;
        letter-spacing: 0.05em;
    }

    main {
        margin-top: 64px;
    }

    /* section共通 */
.section_title {
    margin-bottom: 0;
}

    .section_title_en {
        font-size: 64px;
    }

    .section_title_ja {
        font-size: 16px;
        margin-bottom: 50px;
    }

    /* 下層ページ共通 */
    .menu_page {
        padding: 70px 0 0;
    }

    .menu_detail {
        display: flex;
        justify-content: center;
        width: 319px;
        margin: 0 28px 0;
        flex-wrap: wrap;
    }

    .menu_detail_title {
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 0.1em;
        line-height: 1.25;
        text-align: center;
    }

    .menu_detail_description {
        font-size: 14px;
        margin: 0 0 16px;
        font-weight: 350;
    }

    .sliming_description_middle_bottom {
        margin-bottom: 32px;
    }

    .sliming_description_bottom {
        font-size: 14px;
        font-weight: 350;
    }

    .hair_menu_detail_description {
        letter-spacing: 0.05em;
    }

    .slimming_detail_text .menu_detail_description,
    .bridal_menu_detail_description {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.05em;
        line-height: 1.714;
    }


    .facial_description_bottom {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.1em;
        line-height: 1.714;
    }

    .menu_detail_text {
        margin-right: 0;
        margin-bottom: 50px;
    }

    .pc_br {
        display: none;
    }

    .sp_br {
        display: inline;
    }

    .sp_br br {
        display: inline;
    }

    .menu_detail img {
        width: 319px;
        height: 280px;
    }

    /* menu_point */
    .menu_point {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        left: 0;
        transform: none;
        margin: 0;
    }

    .menu_point_text_area {
        order: 1;
        width: 100%;
        padding: 30px 48px;
        font-size: 14px;
        background-color: #FFFFFF;
    }

    .menu_point_img_left {
        order: 2;
        width: 50%;
        flex: 0 0 50%;
        height: auto;
        min-width: unset;
    }

    .menu_point_img_right {
        order: 2;
        width: 50%;
        flex: 0 0 50%;
        height: auto;
        min-width: unset;
    }

    .menu_point_description_top,
    .menu_point_description_bottom {
        width: 100%;
        font-weight: 350;
        margin-bottom: 16px;
    }

    .menu_point_title {
        width: 279px;
        font-size: 36px;
    }

    /* menu_card */
    .menu_card {
        background-color: #ffffff;
        max-width: 319px;
        padding: 22px 26px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
    }

    .menu_card_text_area {
        width: 239px;
    }

    .menu_card_title {
        font-size: 16px;
        letter-spacing: 0.05rem;
        font-weight: 400;
    }

    .price {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.1em;
        margin-bottom: 16px;
    }

    .price16,
    .slimming_price16 {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.1em;
        line-height: 1.714;
        margin-bottom: 16px;
    }

    .slimming_price16 {
        margin-bottom: 8px;
    }

    .separate {
        margin: 24px 0;
    }

    .menu_card_image {
        max-width: 239px;
        height: 140px;
        margin-top: 22px;
    }

    .menu_card_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .btn_wrap {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 40px;
        flex-direction: column-reverse;
        align-items: center;
    }

    .btn_wrap .btn {
        font-size: 14px;
        font-weight: 350;
        letter-spacing: 0.1em;
        line-height: 1.714;

    }

    .menu_card_column {
        width: 331px;
        margin: 0 22px 0;
        padding: 50px 20px;
    }

    .menu_price_title {
        width: 291px;
        font-size: 36px;
        margin: 0 auto 40px;
        font-weight: 400;
    }

    .price_wrap_text_area {
        width: 291px;
        height: auto;
        margin: 50px auto 0;
        letter-spacing: 0.1em;
    }

    .address-col {
        display: flex;
        flex-direction: column;
    }

    footer {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer small {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 10px;
        letter-spacing: 0.1em;
        text-align: center;
    }
}