:root {
    --main: #D4637C;
    --pink-light: #E2B2B2;
    --yellow-main: #E9AC4B;
    --yellow-light: #DBBB8B;
    --text: #655252;
    --max-width: 1320px;
    --font-sans: "Inter", sans-serif;
    --font-corm: "Cormorant", "Playfair Display", serif;
}

/* =========================================================
   Header
========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.site-header__fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1001;
    height: 80px;
    display: flex;
    align-items: center;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

.g-nav {
    position: relative;
    z-index: 1;
    background-color: #fff;
    margin-top: 80px;
}

body {
    padding-top: 0;
}

.site-logo {
    margin: 0px;
}

.site-logo img {
    display: block;
}

.site-header__catch {
    font-size: 18px;
    flex: 1;
    text-align: center;
    font-family: var(--font-sans);
    margin-bottom: 0;
}

.btn--header {
    background-color: var(--main) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    box-shadow: 0 3px 0 #b14a63 !important;
    transition: 0.3s !important;
    font-family: var(--font-sans) !important;
}

.btn--header:hover {
    opacity: 0.9 !important;
    transform: translateY(1px) !important;
    box-shadow: 0 1px 0 #b14a63 !important;
}

.btn--header--left {
    margin-right: 15px !important;
}

@media screen and (max-width:850px) {
    .btn--header--left {
        margin-right: 0px !important;
        margin-bottom: 15px !important;
    }
}


/* ---------- Global Nav ---------- */
.g-nav {
    background-color: #f1f1f1;
    border-top: 1px solid #eee;
}


.g-nav__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0px 100px;
    padding: 0;
}

.g-nav__list li {
    flex: 1;
    text-align: center;
}

.g-nav__list li a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    background-color: #f1f1f1;
    transition: background-color 0.3s, color 0.3s;
    font-family: var(--font-sans);
}

.g-nav__list li a:hover,
.g-nav__list li.active a {
    background-color: var(--pink-light);
    color: #fff;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 34px;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 11px;
}

.nav-toggle span:nth-child(3) {
    bottom: 0;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
}

@media screen and (max-width: 850px) {
    .pc-only {
        display: inherit;
    }

    .sp-only {
        display: none !important;
    }


    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: inherit;
    }

    .fv {
        margin-top: 0px !important;
    }

    .site-header__inner {
        position: relative;
        z-index: 1002;
    }

    .nav-toggle {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        display: block;
        width: 32px;
        height: 24px;
        cursor: pointer;
        border: none;
        background: none;
        z-index: 1002;
    }

    .site-header__inner .btn--header,
    .site-header__catch {
        display: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    .g-nav {
        position: fixed;
        inset: 0;
        background: rgba(255, 247, 248, 0.98);
        backdrop-filter: blur(14px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        opacity: 0;
        pointer-events: none;
        transform: scale(0.97);
        transition: opacity 0.4s ease, transform 0.4s ease;
        z-index: 1001;
        padding: 40px 30px;
        box-sizing: border-box;
        overflow-y: auto;
        max-height: 100vh;
        -webkit-overflow-scrolling: touch;
    }

    .g-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }

    .g-nav.open {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .g-nav__catch {
        font-size: 16px;
        font-family: var(--font-sans);
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.05em;
        line-height: 1.8;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(58, 47, 47, 0.15);
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.95;
    }

    .g-nav__list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .g-nav__list li {
        list-style: none;
        width: 100%;
    }

    .g-nav__list li a {
        display: block;
        position: relative;
        font-family: var(--font-sans);
        font-size: 17px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        padding: 15px 0;
        letter-spacing: 0.05em;
        background-color: #fff;
        transition: color 0.3s ease, background 0.3s ease;
    }

    .g-nav__list li a::before,
    .g-nav__list li a::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 1.5px;
        background: linear-gradient(to right, #F2CB8E 0%, #FDEFCD 50%, #F2CB8E 100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .g-nav__list li a::before {
        top: 0;
    }

    .g-nav__list li a::after {
        bottom: 0;
    }

    .g-nav__list li a:hover {
        color: var(--main);
        background: #fffdfa;
    }

    .g-nav__list li a:hover::before,
    .g-nav__list li a:hover::after {
        opacity: 1;
        transform: scaleX(1.02);
    }

    .g-nav__reserve {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .g-nav__reserve .btn--header {
        position: relative;
        z-index: 2;
        background-color: var(--main) !important;
        color: #fff;
        padding: 12px 24px;
        border-radius: 6px;
        font-size: 18px;
        font-weight: 800;
        box-shadow: 0 3px 0 #b14a63 !important;
        transition: 0.3s;
        font-family: var(--font-sans);
        border: none;
        outline: none;
        background-image: none !important;
    }

    .g-nav__reserve .btn--header::before,
    .g-nav__reserve .btn--header::after {
        display: none !important;
    }

    .g-nav__reserve .btn--header:hover {
        opacity: 0.9;
        transform: translateY(1px);
        box-shadow: 0 1px 0 #b14a63;
    }

    .site-header__inner {
        position: relative;
        z-index: 1002;
    }

    .nav-toggle {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        display: block;
        width: 32px;
        height: 24px;
        cursor: pointer;
        border: none;
        background: none;
        z-index: 1002;
    }

    .site-header__inner .btn--header,
    .site-header__catch {
        display: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    .g-nav {
        position: fixed;
        inset: 0;
        background: rgba(255, 247, 248, 0.98);
        backdrop-filter: blur(14px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        opacity: 0;
        pointer-events: none;
        transform: scale(0.97);
        transition: opacity 0.4s ease, transform 0.4s ease;
        z-index: 1001;
        padding: 40px 30px;
        box-sizing: border-box;
        overflow-y: auto;
        max-height: 100vh;
        -webkit-overflow-scrolling: touch;
    }

    .g-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }

    .g-nav.open {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .g-nav__catch {
        font-size: 16px;
        font-family: var(--font-sans);
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.05em;
        line-height: 1.8;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(58, 47, 47, 0.15);
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.95;
    }

    .g-nav__list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .g-nav__list li {
        list-style: none;
        width: 100%;
    }

    .g-nav__list li a {
        display: block;
        position: relative;
        font-family: var(--font-sans);
        font-size: 17px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        padding: 15px 0;
        letter-spacing: 0.05em;
        background-color: #fff;
        transition: color 0.3s ease, background 0.3s ease;
    }

    .g-nav__list li a::before,
    .g-nav__list li a::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 1.5px;
        background: linear-gradient(to right, #F2CB8E 0%, #FDEFCD 50%, #F2CB8E 100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .g-nav__list li a::before {
        top: 0;
    }

    .g-nav__list li a::after {
        bottom: 0;
    }

    .g-nav__list li a:hover {
        color: var(--main);
        background: #fffdfa;
    }

    .g-nav__list li a:hover::before,
    .g-nav__list li a:hover::after {
        opacity: 1;
        transform: scaleX(1.02);
    }

    .g-nav__reserve {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .g-nav__reserve .btn--header {
        position: relative;
        z-index: 2;
        background-color: var(--main) !important;
        color: #fff;
        padding: 12px 24px;
        border-radius: 6px;
        font-size: 18px;
        font-weight: 800;
        box-shadow: 0 3px 0 #b14a63;
        transition: 0.3s;
        font-family: var(--font-sans);
        border: none;
        outline: none;
        background-image: none !important;
    }

    .g-nav__reserve .btn--header::before,
    .g-nav__reserve .btn--header::after {
        display: none !important;
    }

    .g-nav__reserve .btn--header:hover {
        opacity: 0.9;
        transform: translateY(1px);
        box-shadow: 0 1px 0 #b14a63;
    }

}

@media screen and (min-width: 851px) {

    .g-nav__catch,
    .g-nav__reserve {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .site-logo img {
        max-width: 200px;
    }
}

@media screen and (min-width: 851px) {

    .g-nav__catch,
    .g-nav__reserve {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .site-logo img {
        max-width: 200px;
    }
}

.flow-card__btns .btn {
    display: inline-block;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-sizing: border-box;
}

.btn:hover {
    opacity: 0.8;
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 15px 0;
}

.wrap {
    margin: 0 auto;
    max-width: var(--max-width);
}

/* =========================================================
   Responsive Font Adjustments
========================================================= */
/* --- Tablet (〜1199px) --- */
@media screen and (max-width:1199px) {
    .site-header__catch {
        font-size: 15px;
    }

    .btn--header {
        font-size: 15px;
    }

    .g-nav__list li a {
        font-size: 18px;
    }

    .btn {
        font-size: 14px;
    }
}

/* --- SP (〜767px) --- */
@media screen and (max-width:767px) {
    .site-header__catch {
        font-size: 15px;
    }

    .btn--header {
        font-size: 12px;
    }

    .g-nav__list li a {
        font-size: 15px;
    }

    .btn {
        font-size: 13px;
    }
}