@charset "utf-8";
/*==========================
common
==========================*/
:root {
    --primary-beige: #F1F0EC;
    --primary-brown: #493C2E;
    --primary-amber: #C1994D;
    --primary-dark-amber: #956D30;
    --primary-white: #FAFAFA;
    --primary-black: #395241;
    --primary-green: #47763C;
    --primary-red: #C8412D;
    --primary-orange: #DA780D;
    --primary-lightgray: #F5F6F7;
    --primary-faq-border-orange: #D9790D;
    --primary-voice-wrapper-brown: #493C2E;
    --primary-voice-customers-black: #000000;
    --primary-topic-font: linear-gradient(90deg, #FCDA1F 0%, #D15F09 100%);
    --primary-btn-gradient-orange: linear-gradient(90deg, #F3C11B 0%, #E39513 100%);
    --primary-btn-gradient-green: linear-gradient(90deg, #57A244 0%, #47763C 100%);
    --primary-faq-gradient-orange: linear-gradient(180deg, #F3C11B 0%, #E39513 100%);
}
    
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family:
        'Cormorant Garamond',
        'Noto Sans JP',
        'Noto Serif JP',
        'Arial',
        'serif';
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--primary-black);
    background-color: var(--primary-beige);
    line-height: 2;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    /* 画像ドラッグ禁止 */
    -webkit-user-drag: none; /* Chrome, Safari, Edge, Opera */
    /* spの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.spbr {
    display: none;
}

.topic {
    text-align: center;
    opacity: 0;
    transform: translateY(40px); /* 下からふわっとさせる設定 */
    transition: 1.2s ease; /* 下からふわっとさせる設定 */
}

.topic_eng {
    font-family: "Cormorant Garamond";
    font-size: 9.2rem; /* フォールバック */
    font-size: clamp(6.4rem,6.38vw,9.2rem);
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    background: var(--primary-topic-font);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.topic_ja {
    display: block;
    color: #C1994D;
    font-family: 'Noto Serif JP';
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8;
    margin-top: 14px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    color: var(--primary-white, #FFFFFF);
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    width: 212px;
    height: 67px;
    position: relative;
}

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

.btn p {
    text-align: center;
}

.btn span {
    display: block;
    font-size: 2rem;
    margin-top: 4px;
}

.btn-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: fit-content;
    height: auto;
}

.btn-header-nav {
    background: var(--primary-amber);
    transition: 0.5s;
    border-radius: 0;
}

.btn-header-nav:hover {
    background: var(--primary-dark-amber);
}

/* orangeボタンhover */
.btn-orange {
    position: relative;
    z-index: 0;
    background: var(--primary-btn-gradient-orange);
}

/* マウスホバー時の背景色を重ねて表示（初期状態で透明） */
.btn-orange::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 5px;
    background: linear-gradient(90deg, #E39513 0%, #F3C11B 100%);
    opacity: 0;
    transition: 0.5s ease;
    
}

/* マウスホバー時に透明化を解除 */
.btn-orange:hover::before {
    opacity: 1;
}

/* greenボタンhover */
.btn-green {
    position: relative;
    z-index: 0;
    background: var(--primary-btn-gradient-green);
}

/* マウスホバー時の背景色を重ねて表示（初期状態で透明） */
.btn-green::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 5px;
    background: linear-gradient(90deg, #47763C 0%, #57A244 100%);
    opacity: 0;
    transition: 0.5s ease;
    
}

/* マウスホバー時に透明化を解除 */
.btn-green:hover::before {
    opacity: 1;
}

.LINE-icon {
    width: 40px;
    height: 40px;
}

.btn-freee-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    color: var(--primary-white, #FFFFFF);
    background-color: var(--primary-amber);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    width: 212px;
    height: 67px;
    position: relative;
    transition: 0.5s;
}

.btn-freee-reserve:hover {
    transform: scale(1.05,1.05);
}

.salon-reserve img {
    width: 30px;
    height: 30px;
}

.btn-freee-reserve p {
    text-align: center;
}

.salon-reserve {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0 10px 4px 10px;
    border-bottom: 2px solid #FFF;
}

.salon-reserve-supplement {
    display: block;
    margin-top: 8px;
}

/*==========================
header
==========================*/
.gnav-header, .gnav-list-ja, .btn-list-header, .header__btn,.text-logo-sp{
    display: none;
}

.header {
    height: auto;
    padding: 0 20px;
    width: 100%;
    background-color: rgba(241, 240, 236, 0.90);
}

/* .header固定 */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.gnav {
    display: flex;
    text-align: start;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
}

.hader-text-logo {
    display: flex;
    align-items: center;
    width: 8.06vw;
}

.gnav-list-wrapper {
    display: flex;
    align-items: start;
    justify-content: start;
}

.gnav-list {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 1.67vw;
    padding: 1.38vw;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--primary-amber);
}

/*==========================
footer
==========================*/
.iframe-pan_rea-sp, .footer-ps-sp {
        display: none;
    }

.footer {
    padding: 80px 20px;
    background-color: var(--primary-brown);
}

.footer-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1114px;
    margin: 0 auto;
}

.footer-left {
    width: 50%;
}

.footer-right {
    width: 50%;
    display: flex;
    flex-direction:column;
    justify-content: start;
}

.footer-logo {
    width: 92px;
    height: 146.07px;
}

.salon-info-description-footer {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    line-height:1.8;
    margin-top: 32px;
}

.salon-info-description-footer dl {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.salon-info-description-footer dl:nth-child(n+2) {
    margin-top: 10px;
}

.salon-info-description-footer dt {
    display:flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 32px;
    font-weight: 700;
    background-color: #000000;
}

.salon-info-contact-footer {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
    max-width: 373px;
    margin-top: 32px;
}

.salon-info-contact-footer figure {
    transition: 0.5s;
    width: 40px;
    height: 40px;
}

.salon-info-contact-footer figure img {
    display: block;
    width: 100%;
    height: 100%;
}

.salon-info-contact-footer figure:hover {
    transform: scale(1.1,1.1);
}

.gnav-list-footer {
    padding: 0;
    font-size:1.6rem;
    font-weight: 700;
    color: #FFFFFF;
}

.iframe-pan_rea {
    max-width: 547px;
    height: auto;
    margin-top: 32px;
}

.iframe-pan_rea iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.footer-ps {
    color: #FFFFFF;
    margin-top: 10px;
}

.copy {
    color: #FFFFFF;
    text-align: center;
    font-family: "Noto Sans JP";
    line-height: 1.5;
    margin-top: 80px;
}

.footer-credit {
    color: #FFFFFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 6px;
}

/* common sp */
@media screen and (max-width:769px) {
    .spbr {
        display: block;
    }

    .pcbr {
        display: none;
    }

    .topic_eng {
        font-size: 5.2rem;
    }

    .topic_ja {
        font-size: 1.4rem;
    }

    .btn-list {
        flex-direction: column;
        gap: 32px;
    }

}/* sp 769px */

/* header sp */
@media screen and (max-width:769px) {
    .gnav-header, .gnav-list-ja, .btn-list-header, .header__btn,.text-logo-sp {
        display: block;
    }

    .hader-text-logo, .btn-header-nav {
        display: none;
    }

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

    .btn-close {
        width: fit-content;
        padding: 10px;
        cursor: pointer;
    }

    .sp-menu-logo {
        width: 20vw;
        max-width: 100px;
        height: auto;
        cursor: pointer;
    }

    /* .gnav初期表示 */
    .gnav {
        flex-direction: column;
        gap: 30px;
        justify-content: start;
        background-color: rgba(250, 250, 250, 0.98);
        width: 100%;
        height: 100vh;
        padding: 32px 6.4vw;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform 0.4s;
        overflow-y: auto; /* 開いた画面でスクロールできるように */
        -webkit-overflow-scrolling: touch; /* iPhone用のスムーズスクロール */
    }

    /* .gnav.active表示 */
    .gnav.active {
        transform: translateX(0);
    }

    .gnav-list-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: start;
    }

    .gnav-list-header {
        width: 100%;
        flex-direction: column;
        justify-content: start;
        gap: 0;
        padding: 16px 0;
        font-size: 1.8rem;
        color: var(--primary-dark-amber);
    }

    .gnav-list-header li {
        width: 100%;
        height: 69px;
        border-top: 1px solid rgba(149, 109, 48, 0.30);
    }

    .gnav-list-header li a {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: start;
        gap: 20px;
        position: relative;
    }

    .gnav-list-header li a::after {
        content: "";
        display: block;
        background-image: url( ../images/sp-menu-arrow.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        width: 7.361px;
        height: 12px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
    }

    .gnav-list-en {
        width: 100px;
        font-size: 2.2rem;
    }

    .gnav-list-ja {
        color: rgba(149, 109, 48, 0.80);
        font-size: 1.4rem;
        font-weight: 300;
        line-height: 1;
    }

    .btn-list-header {
        display: flex;
    }

    /* spメニューボタン */
    .article-header {
        position: relative;
    }

    .header__btn {
        width: 52px;
        height: 48px;
        padding: 10px;
        background: rgba(250, 250, 250, 0.85);
        position: absolute;
        top: 35px;
        left: 24px;
        cursor: pointer;
    }

    .header__btn img {
        width: 100%;
        height: 100%;
    }

    .text-logo-sp {
        width: 116px;
        height: 40px;
        position: absolute;
        top: 35px;
        right: 24px;
        cursor: pointer;
    }

}/* sp 769px */

/* footer sp */
@media screen and (max-width:769px) {
    .iframe-pan_rea-pc, .footer-ps-pc {
        display: none;
    }

    .iframe-pan_rea-sp {
        display: block;
        margin-top: 40px;
        max-width: none;
    }

    .footer-ps-sp {
        display: block;
        font-size: 1.2rem;
    }

    .footer {
        padding: 80px 24px;
    }

    .footer-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
    }

    .salon-info-description-footer dl {
        align-items: start;
    }

    .salon-info-description-footer dl:nth-child(n+2) {
        margin-top: 32px;
    }

    .salon-info-description-footer dt {
        width: 30%;
        max-width: 68px;
        height: 32px;
        padding: 5px;
    }

    .salon-info-description-footer dd {
        width: 70%;
        height: auto;
    }

    .salon-info-contact-footer {
        flex-wrap: wrap;
        justify-content: start;
    }

    .salon-info-contact-footer figure {
        width: 30px;
        height: 30px;
    }

    .gnav-list-footer {
        justify-content: start;
        gap: 20px;
    }

    .footer-logo {
        width: 20vw;
        max-width: 100px;
        height: auto;
    }

    .copy {
        margin-top: 40px;
    }

}/* sp 769px */
        