@charset "utf-8";

/* * * Reset * * */
body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li, blockquote, pre, table, th, td, form, figure, fieldset, input, textarea {
    margin: 0;
    padding: 0;
}
img {
    vertical-align: baseline;
}
a {
    color: #3f3a36;
}
a img {
    border: none;
}
ol, ul {
    list-style: none;
    list-style-type: none;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* * * Setting * * */
:root {
    --ivory: #f7f3ed;
    --white: #fffcf8;
    --text: #3f3a36;
    --brown: #8c7469;
    --rose: #a76f68;
    --sage: #8b9482;
    --cta: #bd8465;
    --cta-dark: #9d6a51;
    --line: #dcd3ca;
    --deep: #554b45;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    font-family: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Meiryo', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.9;
    color: var(--text);
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
    overflow-x: hidden;
}

.PC {
    display: none;
}

/* * * general * * */
.inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    transition: opacity 0.3s, background-color 0.3s, color 0.3s;
}

a:hover {
    opacity: 0.75;
}

.section {
    padding: 88px 0;
}

.section_heading {
    margin-bottom: 42px;
}

.section_en {
    margin-bottom: 12px;
    color: var(--brown);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
}

.section h2 {
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: clamp(1.65rem, 5.8vw, 2.65rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.06em;
}

.title_line {
    display: inline-block;
}

.demo_note {
    margin-top: 24px;
    font-size: 0.78rem;
    line-height: 1.7;
    color: #776e68;
}

/* * * header * * */
#header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    background: rgba(63, 58, 54, 0.42);
    color: var(--white);
    backdrop-filter: blur(6px);
}

.header_inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.17em;
}

.logo a {
    color: var(--white);
    text-decoration: none;
}

.logo span {
    display: block;
    margin-bottom: -7px;
    font-size: 1.85rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

.header_reserve {
    padding: 8px 17px;
    border: 1px solid var(--cta);
    background: var(--cta);
    color: var(--white);
    font-size: 0.82rem;
    text-decoration: none;
    letter-spacing: 0.12em;
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.08);
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 0 auto;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is_open span:nth-child(1) {
    transform: translateY(6px) rotate(35deg);
}

.hamburger.is_open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is_open span:nth-child(3) {
    transform: translateY(-6px) rotate(-35deg);
}

.sp_nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    z-index: 30;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(54, 47, 42, 0.92);
    box-shadow: 0 18px 40px rgba(32, 26, 22, 0.34);
    backdrop-filter: blur(8px);
}

.sp_nav.is_open {
    display: block;
}

.sp_nav a {
    display: block;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.sp_nav li:last-child a {
    border-bottom: none;
}

/* * * first view * * */
.hero {
    position: relative;
    min-height: 790px;
    padding-bottom: 70px;
    background: var(--deep);
    color: var(--white);
    overflow: hidden;
}

.hero_photo {
    height: 520px;
    margin-left: 17%;
    overflow: hidden;
}

.hero_photo::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 520px;
    background: linear-gradient(180deg, rgba(33, 28, 25, 0.42) 0%, rgba(33, 28, 25, 0) 45%, rgba(33, 28, 25, 0.25) 100%);
    content: "";
}

.hero_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% 62%;
    transform: scale(1.08);
    transform-origin: 50% 70%;
}

.hero_text {
    position: relative;
    z-index: 2;
    width: calc(100% - 48px);
    max-width: 600px;
    margin: -165px 24px 0;
}

.hero_label {
    margin-bottom: 14px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.63rem;
    letter-spacing: 0.18em;
}

.hero h2 {
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: clamp(1.75rem, 7.2vw, 4.8rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 14px rgba(42, 34, 30, 0.42);
    overflow-wrap: anywhere;
}

.hero_lead {
    margin-top: 50px;
    font-size: 1rem;
    line-height: 2;
    overflow-wrap: anywhere;
}

.button_main {
    display: inline-block;
    margin-top: 32px;
    padding: 15px 25px;
    background: var(--cta);
    color: var(--white);
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    box-shadow: 0 12px 28px rgba(54, 68, 55, 0.24);
}

/* * * worries * * */
.worries {
    position: relative;
    background: var(--white);
}

.worries_heading {
    max-width: 560px;
}

.worries_text {
    line-height: 2.2;
}

.worries_text p + p {
    margin-top: 18px;
}

.consultation_photo {
    position: relative;
    min-height: 330px;
    margin-top: 42px;
    overflow: hidden;
    background: #e9e2da;
}

.consultation_photo img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    object-position: 50% 48%;
}

.consultation_photo figcaption {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 1;
    max-width: calc(100% - 44px);
    padding: 12px 16px;
    background: rgba(255,252,248,0.9);
    color: #6c625c;
    font-size: 0.84rem;
    line-height: 1.7;
}

/* * * concept * * */
.concept {
    padding-top: 88px;
}

.concept_photo {
    position: relative;
    width: 82%;
    margin-bottom: 54px;
}

.concept_photo::before {
    position: absolute;
    right: -36px;
    bottom: -28px;
    z-index: -1;
    width: 82%;
    height: 80%;
    border: 1px solid var(--line);
    content: "";
}

.concept_photo img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.concept_text h2 {
    margin-bottom: 30px;
}

.concept_text > p:not(.section_en):not(.concept_sign) {
    margin-top: 18px;
}

.concept_values {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.concept_values article {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.concept_values article:last-child {
    border-bottom: 1px solid var(--line);
}

.concept_values h3 {
    margin-bottom: 12px;
    color: var(--cta-dark);
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.concept_values p {
    font-size: 1rem;
    line-height: 1.9;
}

.concept_sign {
    margin-top: 30px;
    color: var(--brown);
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}

.concept_sign_pc {
    text-align: left;
}

/* * * features * * */
.features {
    background: #eee8e0;
}

.feature_list {
    counter-reset: feature;
}

.feature_list li {
    position: relative;
    padding: 30px 0;
    border-top: 1px solid #cfc4ba;
}

.feature_list li:last-child {
    border-bottom: 1px solid #cfc4ba;
}

.feature_number {
    display: block;
    margin-bottom: 10px;
    color: var(--rose);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
}

.feature_list h3 {
    margin-bottom: 8px;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature_list p {
    font-size: 0.98rem;
}

/* * * care * * */
.care {
    background: var(--white);
    overflow: hidden;
}

.care_title {
    padding: 0 24px;
}

.care_gallery {
    display: grid;
    gap: 18px;
    margin-top: 42px;
    padding: 0 24px;
}

.care_item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.care_item_large img {
    height: 300px;
}

.care_item figcaption {
    padding: 16px 10px 0;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: 1rem;
    line-height: 1.7;
}

.care_item figcaption span {
    display: block;
    margin-bottom: 4px;
    color: var(--brown);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
}

.care > .demo_note {
    padding: 0 24px;
}

/* * * menu * * */
.menu {
    background: var(--ivory);
}

.menu_intro {
    margin-bottom: 46px;
}

.menu_intro h2 {
    margin-bottom: 24px;
}

.menu_item {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.menu_item:last-of-type {
    border-bottom: 1px solid var(--line);
}

.menu_label {
    color: var(--rose);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.64rem;
    letter-spacing: 0.15em;
}

.menu_item h3 {
    margin: 3px 0;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: 1.2rem;
    font-weight: 400;
}

.menu_item div > p:last-child {
    font-size: 0.9rem;
    color: #726a65;
}

.menu_price {
    margin-top: 12px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
}

.menu_price span {
    margin-right: 3px;
    font-size: 0.8rem;
}

.menu_note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #776e68;
}

/* * * stylist * * */
.stylist {
    background: var(--deep);
    color: var(--white);
}

.stylist_visual {
    position: relative;
    width: 82%;
    height: 390px;
    margin: 0 auto 55px;
    overflow: hidden;
    background: #665b55;
}

.stylist_visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
}

.stylist_text .section_en {
    color: #c69a91;
}

.stylist_text h2 {
    margin-bottom: 28px;
}

.stylist_text > p:not(.section_en) {
    margin-top: 18px;
    color: rgba(255,255,255,0.8);
}

.stylist_name {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.24);
}

.stylist_name span,
.stylist_name small {
    display: block;
    font-size: 0.66rem;
    color: rgba(255,255,255,0.6);
}

.stylist_name strong {
    display: block;
    margin: 4px 0;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: 1.3rem;
    font-weight: 400;
}

/* * * flow * * */
.flow {
    background: var(--ivory);
}

.flow_list {
    position: relative;
}

.flow_list::before {
    position: absolute;
    top: 22px;
    bottom: 34px;
    left: 18px;
    width: 1px;
    background: var(--line);
    content: "";
}

.flow_list li {
    position: relative;
    padding: 0 0 38px 60px;
}

.flow_list span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: var(--brown);
    color: var(--white);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.66rem;
    border-radius: 50%;
}

.flow_list h3 {
    margin-bottom: 5px;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: 1.15rem;
    font-weight: 400;
}

.flow_list p {
    font-size: 0.94rem;
}

/* * * voice * * */
.voice {
    background: var(--white);
    color: var(--text);
}

.voice .section_en {
    color: var(--brown);
}

.voice_title {
    margin-bottom: 42px;
}

.message_text {
    padding: 30px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    line-height: 2.2;
}

.message_text p + p {
    margin-top: 18px;
}

.voice .demo_note {
    color: #776e68;
}

/* * * faq * * */
.faq {
    background: var(--ivory);
}

.faq_title {
    margin-bottom: 34px;
}

.faq_list details {
    border-top: 1px solid var(--line);
}

.faq_list details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq_list summary {
    position: relative;
    padding: 22px 42px 22px 0;
    cursor: pointer;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    list-style: none;
}

.faq_list summary::-webkit-details-marker {
    display: none;
}

.faq_list summary::after {
    position: absolute;
    top: 22px;
    right: 5px;
    color: var(--rose);
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    content: "+";
}

.faq_list details[open] summary::after {
    content: "−";
}

.faq_list details p {
    padding: 0 15px 24px;
    font-size: 0.94rem;
}

/* * * salon * * */
.salon {
    padding: 0;
    background: #e4ddd5;
}

.salon_space {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #d8cec4;
}

.salon_space img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% 50%;
}

.salon_info {
    padding: 58px 24px 76px;
    background: var(--white);
}

.salon_info h2 {
    margin-bottom: 28px;
}

.salon_info dl div {
    display: grid;
    grid-template-columns: 85px 1fr;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
}

.salon_info dt {
    color: var(--brown);
}

.salon_note {
    margin-top: 22px;
    font-size: 0.78rem;
    color: #776e68;
}

/* * * reservation * * */
.reservation {
    padding: 90px 0;
    background: #7c736a;
    color: var(--white);
    text-align: center;
}

.reservation .section_en {
    color: rgba(255,255,255,0.75);
}

.reservation h2 {
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: clamp(1.8rem, 7vw, 3.2rem);
    font-weight: 400;
    line-height: 1.65;
}

.reservation_inner > p:not(.section_en):not(.reservation_note) {
    margin-top: 18px;
}

.reservation_buttons {
    display: grid;
    gap: 12px;
    max-width: 560px;
    margin: 34px auto 0;
}

.button_line,
.button_web {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px 21px;
    background: var(--white);
    color: var(--deep);
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
}

.button_line {
    background: #7d8b73;
    color: var(--white);
}

.button_web {
    border: 1px solid var(--cta);
    background: var(--cta);
    color: var(--white);
}

.reservation_note {
    margin-top: 22px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.76);
}

/* * * page_top * * */
#page_top {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 100;
    width: 44px;
    height: 44px;
}

#page_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(140,116,105,0.42);
    background: rgba(85,75,69,0.54);
    color: rgba(247,243,237,0.82);
    text-decoration: none;
    opacity: 0.8;
}

#page_top a span {
    display: block;
    width: 13px;
    height: 13px;
    border-top: 2px solid rgba(247,243,237,0.82);
    border-left: 2px solid rgba(247,243,237,0.82);
    transform: translateY(3px) rotate(45deg);
}

#page_top a:hover {
    opacity: 1;
}

@media screen and (max-width: 750px) and (orientation: landscape) {
    #page_top {
        right: 8px;
        bottom: 8px;
    }
}

/* * * footer * * */
#footer {
    background: var(--deep);
    color: rgba(255,255,255,0.72);
}

#footer .inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    justify-content: space-between;
    padding-top: 38px;
    padding-bottom: 38px;
    font-size: 70%;
}

#footer a {
    color: var(--white);
    text-decoration: none;
}

#footer li::first-letter {
    font-size: 60%;
    vertical-align: middle;
}

.footer_logo {
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.14em;
}

.footer_logo span {
    margin-right: 6px;
    font-size: 1.5rem;
    font-style: italic;
}

.footer_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
}

.footer_info a {
    color: rgba(255,255,255,0.72);
}

/* * * privacy * * */
.privacy_page {
    background: var(--white);
}

.privacy_header {
    position: static;
    background: var(--deep);
}

.privacy {
    padding-top: 80px;
}

.privacy h2 {
    margin-bottom: 26px;
}

.privacy_lead {
    max-width: 760px;
    line-height: 2;
}

.privacy_body {
    max-width: 760px;
    margin-top: 46px;
    border-top: 1px solid var(--line);
}

.privacy_body section {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.privacy_body h3 {
    margin-bottom: 10px;
    font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    font-size: 1.15rem;
    font-weight: 400;
}

.privacy_back {
    margin-top: 38px;
}

.privacy_back a {
    color: var(--cta-dark);
}

/* * * class * * */
.none {
    display: none;
}
.t1em {
    margin-top: 1em;
}
.t2em {
    margin-top: 2em;
}
.t3em {
    margin-top: 3em;
}

a.hover80:hover img {
    opacity: 0.8;
    transition: all 1.0s;
}

/* * * motion * * */
.js_motion .fade_in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.js_motion .fade_in.is_visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .js_motion .fade_in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* * * ul_type * * */
.ul_type01 li {
    text-indent: -1em;
    padding-left: 1em;
}

/*------------------------------------------------------
    mediaQuery
*-------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .SP {
        display: none;
    }

    .PC {
        display: block;
    }

    .section {
        padding: 130px 0;
    }

    .header_inner {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .header_nav {
        margin-left: auto;
        margin-right: 36px;
    }

    .header_nav ul {
        display: flex;
        gap: 30px;
    }

    .header_nav a {
        color: var(--white);
        font-size: 0.72rem;
        text-decoration: none;
    }

    .header_actions {
        gap: 0;
    }

    .hero {
        min-height: 790px;
        padding-bottom: 0;
    }

    .hero_photo {
        height: 790px;
        margin-left: 34%;
    }

    .hero_photo::after {
        height: 790px;
        background: linear-gradient(90deg, rgba(51,44,40,0.62) 0%, rgba(51,44,40,0.08) 55%, rgba(51,44,40,0.14) 100%);
    }

    .hero_photo img {
        object-position: 50% 62%;
        transform: none;
    }

    .hero_text {
        position: absolute;
        top: 245px;
        left: max(6vw, calc((100vw - 1120px) / 2));
        width: 48%;
        margin: 0;
    }

    .hero h2 {
        font-size: clamp(3rem, 5.2vw, 4.9rem);
        text-shadow: none;
        white-space: nowrap;
    }

    .hero_lead {
        font-size: 0.95rem;
    }

    .worries_layout {
        display: grid;
        grid-template-columns: 0.86fr 1.14fr;
        gap: 90px;
        align-items: start;
    }

    .worries_text {
        margin: 0;
    }

    .consultation_photo {
        min-height: 420px;
        margin-top: 20px;
        padding: 38px;
    }

    .concept {
        padding-top: 210px;
    }

    .concept_inner {
        display: grid;
        grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1fr);
        gap: 12%;
        align-items: start;
    }

    .concept_photo {
        width: 100%;
        margin: 0;
    }

    .concept_photo img {
        height: 650px;
    }

    .concept_values {
        gap: 0;
        margin-top: 38px;
    }

    .feature_list {
        margin-left: 20%;
    }

    .feature_list li {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 28px;
        align-items: start;
        padding: 38px 0;
    }

    .feature_number {
        margin: 0;
        font-size: 1.8rem;
    }

    .care_title {
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .care_gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        width: min(92%, 1320px);
        margin: 65px auto 0;
        padding: 0;
    }

    .care_item img {
        height: 520px;
    }

    .care_item_large img {
        height: 520px;
    }

    .care > .demo_note {
        width: min(92%, 1320px);
        margin-right: auto;
        margin-left: auto;
        padding: 0;
    }

    .menu_inner {
        display: grid;
        grid-template-columns: 0.75fr 1.25fr;
        gap: 11%;
    }

    .menu_intro {
        align-self: start;
        margin: 0;
    }

    .menu_item {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 30px;
        padding: 34px 0;
    }

    .menu_price {
        flex: 0 0 auto;
        margin: 0;
    }

    .stylist_inner {
        display: grid;
        grid-template-columns: 0.8fr 1fr;
        gap: 12%;
        align-items: center;
    }

    .stylist_visual {
        width: 100%;
        height: 570px;
        margin: 0;
    }

    .flow_list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        margin-top: 65px;
    }

    .flow_list::before {
        top: 18px;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 1px;
    }

    .flow_list li {
        padding: 62px 0 0;
    }

    .flow_list span {
        left: 0;
    }

    .voice_inner {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 10%;
        align-items: center;
    }

    .voice_title {
        margin: 0;
    }

    .voice .demo_note {
        grid-column: 2;
    }

    .faq_inner {
        display: grid;
        grid-template-columns: 0.65fr 1.35fr;
        gap: 10%;
    }

    .faq_title {
        margin: 0;
    }

    .salon {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        min-height: 650px;
    }

    .salon_space {
        height: 100%;
        min-height: 650px;
    }

    .salon_info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px max(6vw, 60px);
    }

    .reservation_buttons {
        grid-template-columns: 1fr 1fr;
    }

    #page_top {
        right: 18px;
    }

    #footer .inner {
        flex-direction: row;
        align-items: center;
        padding-top: 45px;
        padding-bottom: 45px;
    }
}
