/* Main CSS - PC Layout & Components */

/* =========================================
   Shared Components
   ========================================= */
/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #d88898;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title small {
    display: block;
    font-size: 1rem;
    color: #888;
    margin-top: 10px;
    font-family: sans-serif;
}

/* Decor Patterns */
.deco-pattern-1,
.deco-pattern-2,
.deco-pattern-3,
.deco-pattern-4,
.deco-pattern-5,
.deco-pattern-6,
.deco-pattern-7 {
    position: absolute;
    background: url('../images/deco-pattern-1.svg') no-repeat center center/cover;
    width: 300px;
    height: 300px;
    opacity: 0.4;
}

/* Background Sakura Branch */
.sakura-branch-bg {
    position: absolute;
    min-height: unset;
    top: auto;
    bottom: 0;
    right: 0;
    background: url('../images/sakura-branch-1.webp') no-repeat center center/contain;
}

/* Buttons - More (Standard) */
.btn-more {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    letter-spacing: 0.05em;
}

.btn-more:hover {
    color: #d18a99;
}

.more-icon {
    width: 27px;
    height: 27px;
    background-color: #d18a99;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: opacity 0.3s;
}

.more-icon::after {
    content: '';
    width: 10px;
    height: 12px;
    background-color: #fff;
    -webkit-mask: url('../images/default-vector.svg') no-repeat center / contain;
    mask: url('../images/default-vector.svg') no-repeat center / contain;
    margin-bottom: -1px;
}

/* Buttons - More (White) */
.btn-more-white {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 12px;
    width: 100%;
    justify-content: space-between;
}

.more-icon-white {
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.more-icon-white::after {
    content: '';
    width: 8px;
    height: 12px;
    background-color: #fff;
    -webkit-mask: url('../images/default-vector.svg') no-repeat center / contain;
    mask: url('../images/default-vector.svg') no-repeat center / contain;
}


/* =========================================
   Header
   ========================================= */
.main-header {
    position: fixed;
    width: 100%;
    padding: 30px 35px;
    z-index: 1000;
}

.header-logo {
    width: 30%;
    max-width: 220px;
}

.brand-text {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.1em;
    width: 100%;
    -webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.8));
    filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.8));
}


/* =========================================
   Hero Section
   ========================================= */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-bg-wrap {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-split-left {
    width: 50%;
    background: url('../images/bg-wave.webp') no-repeat center center/cover;
}

.hero-split-right {
    width: 50%;
    background: url('../images/bg-pink.webp') no-repeat center center/cover;
    position: relative;
    z-index: 2;
}

.mv-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: #581C28;
}

.hero-center {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
    color: #fff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
}

.hero-center.fade-in {
    opacity: 0;
    transform: translate(-50%, calc(-37% + 80px));
}

.hero-center.fade-in.visible {
    opacity: 1;
    transform: translate(-50%, -37%);
}

.hero-logo-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}

.hero-logo-img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.hero-title-wrap {
    margin: 0;
}

.hero-title-wrap p {
    font-size: 1.15rem;
    line-height: 2;
}

.hero-title-img {
    width: 800px;
    max-width: 95vw;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.side-nav {
    position: absolute;
    bottom: 45px;
    left: 0;
    z-index: 200;
}

.side-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.side-nav a {
    display: flex;
    align-items: center;
    background-color: rgba(200, 100, 115, 0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 11px 20px 11px 27px;
    border-radius: 0px 40px 40px 0;
    text-decoration: none;
    font-size: 0.95rem;
    width: 245px;
    transition: all 0.3s;
}

.side-nav a:hover {
    background-color: rgba(200, 100, 115, 0.8);
    transform: translateX(10px);
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.hero-lead {
    position: absolute;
    bottom: 80px;
    right: 60px;
    text-align: right;
    color: #fff;
    z-index: 200;
    font-size: 1.2rem;
    line-height: 2;
}

.hero-visual-sakura {
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    z-index: 5;
    pointer-events: none;
}

.sakura-branch-img {
    width: 100%;
    height: auto;
}

.sakura-branch-bg.hero {
    position: absolute;
    width: 423px;
    height: 250px;
    min-height: unset;
    bottom: -150px;
    z-index: 3;
}

.deco-pattern-1 {
    top: 45%;
    right: -25px;
    width: 170px;
    height: 170px;
}

.deco-pattern-2 {
    background: url('../images/deco-pattern-2.svg') no-repeat center center/cover;
    bottom: 21%;
    right: 200px;
    width: 125px;
    height: 125px;
}

.page-nav {
    display: none !important;
}


/* =========================================
   Lobby Decoration
   ========================================= */
#lobby.section {
    padding: 170px 0 180px;
    background: url('../images/lobby-bg.webp') no-repeat center center/cover;
}

.lobby-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 90px;
    margin: 0 auto;
    position: relative;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .lobby-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

.lobby-visual {
    position: relative;
    flex: 1.2;
    max-width: 545px;
    width: 60%;
    container-type: inline-size;
}

.lobby-visual.fade-in {
    transition-delay: 0.2s;
}

.petal-mask {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: visible;
    position: relative;
}

.petal-mask img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.lobby-swiper {
    width: 100%;
    height: 100%;
}

.insta-badge {
    position: absolute;
    bottom: 0;
    left: 2.2cqw;
    background: url('../images/insta-badge-bg.webp') no-repeat center center/cover;
    color: #fff;
    padding: 3.6cqw;
    width: 33cqw;
    height: 33cqw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-decoration: none;
}

.insta-badge:hover {
    opacity: 0.8;
}

.insta-icon {
    width: 5.8cqw;
    height: 5.8cqw;
    margin-top: -1.2cqw;
    filter: brightness(0) invert(1);
}

.insta-badge .hashtag {
    font-size: 4cqw;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
}

.lobby-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 120px 0px 0 18px;
    width: 40%;
}

.lobby-header.fade-in {
    transition-delay: 0.5s;
}

.lobby-text.fade-in {
    transition-delay: 0.8s;
}

.lobby-title {
    font-size: 2.8rem;
    color: #d18a99;
    margin: 0;
    line-height: 1;
}

.lobby-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 12px;
}

.lobby-hr {
    border: none;
    border-top: 1px solid #D1D1D1;
    width: 100%;
    margin-top: 15px;
}

.lobby-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.9;
}

.lobby-text p {
    margin-bottom: 25px;
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.lobby-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 5px;
}

.nav-prev,
.nav-next {
    background: none;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    transition: all 0.3s;
    outline: none;
    padding: 0;
    margin-top: -1px;
}

.nav-prev img,
.nav-next img {
    width: 14px;
    height: auto;
    transition: filter 0.3s;
}

.nav-prev img {
    transform: rotate(180deg);
}

.nav-prev:hover,
.nav-next:hover {
    background-color: #d18a99;
    border-color: #d18a99;
}

.nav-prev:hover img,
.nav-next:hover img {
    filter: brightness(0) invert(1);
}

.nav-prev.swiper-button-disabled,
.nav-next.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.nav-line {
    width: 40px;
    height: 1px;
    background-color: #ccc;
}

.sakura-branch-bg.lobby {
    position: absolute;
    bottom: -123px;
    left: 0;
    right: auto;
    width: 278px;
    height: 253px;
    background: url('../images/sakura-branch-2.webp') no-repeat center center / contain;
}

.deco-pattern-3 {
    background: url('../images/deco-pattern-3.webp') no-repeat center center/cover;
    bottom: -28%;
    right: 100px;
    width: 180px;
    height: 180px;
}


/* =========================================
   Restaurant
   ========================================= */
section#restaurant {
    padding-top: 45px;
    padding-bottom: 105px;
    overflow-x: hidden;
}

.restaurant-inner {
    padding: 0 20px 0;
}

.restaurant-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.restaurant-header.fade-in {
    transition-delay: 0.2s;
}

.restaurant-title {
    font-size: 2.8rem;
    color: #d18a99;
    margin-bottom: -2px;
}

.restaurant-subtitle {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.1em;
}

.restaurant-hr {
    border: none;
    border-top: 1px solid #D1D1D1;
    width: 100%;
    max-width: 380px;
    margin: 18px auto 24px;
}

.restaurant-lead {
    color: #888;
    line-height: 1.7;
}

/* Restaurant Decorations */
.restaurant-decoration-bg {
    position: absolute;
    width: 150px;
    height: 150px;
}

.restaurant-decoration-bg.deco-1 {
    width: 30px;
    height: 30px;
    top: 100px;
    left: auto;
    right: 150px;
    background: url('../images/sakrua-bg_icon-1.svg') no-repeat center center/contain;
}

.restaurant-decoration-bg.deco-2 {
    width: 60px;
    height: 60px;
    top: 515px;
    left: 30px;
    right: auto;
    background: url('../images/sakrua-bg_icon-2.webp') no-repeat center center/contain;
}

.restaurant-decoration-bg.deco-3 {
    width: 160px;
    height: 160px;
    top: 838px;
    left: auto;
    right: -44px;
    background: url('../images/deco-pattern-4.webp') no-repeat center center/contain;
}

.restaurant-decoration-bg.deco-4 {
    width: 185px;
    height: 185px;
    top: 1450px;
    left: -70px;
    right: auto;
    background: url('../images/deco-pattern-5.webp') no-repeat center center/contain;
}

.restaurant-decoration-bg.deco-5 {
    width: 52px;
    height: 52px;
    top: 1870px;
    left: 48px;
    right: auto;
    background: url('../images/sakrua-bg_icon-3.webp') no-repeat center center/contain;
}

.restaurant-decoration-bg.deco-6 {
    width: 60px;
    height: 60px;
    top: auto;
    left: auto;
    right: 228px;
    bottom: 300px;
    background: url('../images/sakrua-bg_icon-2.webp') no-repeat center center/contain;
}

.sakura-branch-bg.restaurant {
    position: absolute;
    top: auto;
    bottom: 60px;
    right: 0;
    width: 325px;
    height: 320px;
    background: url('../images/sakura-branch-3.webp') no-repeat center center/contain;
}

/* Shop Grid & Cards */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 100px 40px;
    max-width: 1120px;
    margin: 75px auto 0;
}

.restaurant-grid.fade-in {
    transition-delay: 0.3s;
}

.shop-card.fade-in {
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.shop-card.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.shop-card.fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.shop-card.fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.shop-card.fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

.shop-card.fade-in:nth-child(5) {
    transition-delay: 0.5s;
}

.shop-card.fade-in:nth-child(6) {
    transition-delay: 0.6s;
}

.shop-card.fade-in:nth-child(7) {
    transition-delay: 0.7s;
}

.shop-card.fade-in:nth-child(8) {
    transition-delay: 0.8s;
}

.shop-card.fade-in:nth-child(9) {
    transition-delay: 0.9s;
}

.shop-card.fade-in:nth-child(10) {
    transition-delay: 1.0s;
}

.shop-card.fade-in:nth-child(11) {
    transition-delay: 1.1s;
}

@media (min-width: 768px) {
    .restaurant-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
}

.shop-visual {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 300px;
    margin-bottom: 20px;
}

.shop-decor {
    position: absolute;
    top: 5px;
    right: -10px;
    width: 100%;
    height: 100%;
    background: url('../images/restaurant-column-bg.webp') no-repeat center center/cover;
    z-index: 1;
}

.shop-mask {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shop-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.shop-card:hover .shop-img {
    transform: scale(1.1);
}

.shop-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 20px 19px;
    margin-bottom: 10px;
}

.shop-genre {
    font-size: 0.7rem;
    color: #d18a99;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-brand {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 130px;
}

.shop-brand-img {
    object-fit: contain;
    height: 70px;
    max-width: 100%;
}

.shop-name {
    grid-area: name;
    font-size: 1rem;
    font-weight: 500;
    color: #4a3b3b;
}

.shop-actions {
    width: 90%;
    text-align: right;
    border-bottom: 1px solid var(--text, #4A3B3B);
    padding: 0 2px 5px 10px;
    margin: 0 auto;
}

.shop-card .btn-more {
    font-size: 1.2rem;
    width: 100%;
    justify-content: space-between;
}


/* =========================================
   Stay
   ========================================= */
#stay.section {
    background-image:
        url('../images/stay-bg.webp'),
        linear-gradient(180deg, #FDFCFB 0%, #E3D4C7 100%);
    background-size: cover, cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 125px;
    padding-bottom: 54px;
}

#stay .section-inner {
    max-width: unset;
    padding: 0;
}

#stay .section-title {
    margin-bottom: 4px;
}

#stay .section-hr {
    width: 62%;
    margin: 15px auto 25px;
}

#stay .section-lead {
    letter-spacing: 0.5px;
}

.stay-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.stay-header.fade-in {
    transition-delay: 0.2s;
}

#stay .section-lead.fade-in {
    transition-delay: 0.4s;
}

.plan-card:nth-of-type(1) .plan-content-inner.fade-in,
.plan-card:nth-of-type(2) .plan-content-inner.fade-in {
    transition-delay: 0s;
}

.plan-card:nth-of-type(1) .plan-visual.fade-in,
.plan-card:nth-of-type(2) .plan-visual.fade-in {
    transition-delay: 0.3s;
}

.sakura-branch-bg.stay {
    width: 300px;
    height: 260px;
    top: -45px;
    left: 0;
    right: auto;
    background: url('../images/sakura-branch-5.webp') no-repeat center center / contain;
}

.stay-grid {
    margin: 0 auto;
}

/* Plan Cards (Stay) */
.plan-card {
    display: grid;
    grid-template-columns: 1fr 58% 42% 1fr;
    align-items: start;
    position: relative;
    margin-bottom: 100px;
    width: 100%;
}

.plan-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    pointer-events: none;
    background-image: radial-gradient(#4a3b3b 1px, transparent 1px);
    background-size: 20px 20px;
}

.plan-card:nth-child(1)::after {
    bottom: -60px;
    left: -60px;
}

.plan-card:nth-child(2)::after {
    bottom: -60px;
    right: -60px;
}

.plan-content {
    grid-column: 1 / 3;
    flex: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    padding: 70px 115px 72px 0;
    flex: 1.3;
}

.plan-content-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(225, 204, 180, 0.50);
    border-radius: 0 16px 16px 0;
    z-index: -1;
}

.plan-content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 666px;
    width: 89%;
    flex-shrink: 0;
}

.plan-title {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #4a3b3b;
    margin-bottom: 25px;
    font-family: "Shippori Mincho", serif;
}

.plan-desc {
    color: #665a5a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.plan-period {
    letter-spacing: 0.64px;
    color: #8a7a7a;
    margin-bottom: 26px;
    font-weight: 500;
}

.plan-actions {
    width: 55%;
    padding: 0 7px 4px 10px;
}

#stay .plan-actions {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.plan-actions .btn-more {
    font-size: 1.3rem;
    justify-content: space-between;
    width: 100%;
}

.plan-actions .more-icon {
    background-color: #4A3B3B;
}

.plan-visual {
    grid-column: 3;
    flex: none;
    padding-right: 0;
    position: relative;
    margin-left: -110px;
    margin-top: 90px;
    z-index: 2;
}

.plan-img {
    width: 100%;
    max-width: 560px;
    height: 410px;
    object-fit: cover;
    border-radius: 16px;
}

.plan-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    transform: translate(-50%, -50%);
    background: url(../images/stay_plan-badge-1.webp) no-repeat center center / contain;
    width: 120px;
    height: 120px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.plan-badge.plan-2 {
    background: url('../images/stay_plan-badge-2.webp') no-repeat center center / contain;
}

/* Reverse Plan Layout */
.plan-reverse {
    grid-template-columns: 1fr 41% 59% 1fr;
    flex-direction: row-reverse;
}

.plan-reverse .plan-content {
    grid-column: 3 / 5;
    flex: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 72px 80px 72px 212px;
}

.plan-reverse .plan-content-bg {
    border-radius: 16px 0 0 16px;
}

.plan-reverse .plan-content-inner {
    width: 100%;
    max-width: 665.6px;
    flex-shrink: 0;
}

.plan-reverse .plan-visual {
    text-align: right;
    grid-column: 2;
    grid-row: 1;
    flex: none;
    margin-top: 65px;
    margin-left: 75px;
    margin-right: -110px;
    padding: 0;
}

.plan-reverse .plan-badge {
    left: auto;
    right: -5px;
    top: 15px;
    transform: translate(50%, -50%);
}

.plan-reverse .plan-actions {
    width: 65%;
}

.deco-pattern-4 {
    background: url('../images/deco-pattern-6.svg') no-repeat center center/cover;
    right: auto;
    left: 44px;
    width: 133px;
    height: 133px;
    top: 682px;
}

.deco-pattern-5 {
    background: url('../images/deco-pattern-7.svg') no-repeat center center/cover;
    bottom: -112px;
    right: -14px;
    width: 170px;
    height: 170px;
}


/* =========================================
   Salon Escoffier
   ========================================= */
#salon {
    background: linear-gradient(to right, #3E6974 68%, #8FA2A7 68%);
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.salon-inner {
    display: flex;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.salon-content {
    flex: 1;
    padding: 54px 0px 0px 60px;
}

.salon-header {
    margin-bottom: 20px;
}

.salon-title {
    font-size: 2.5rem;
    font-family: serif;
    margin-bottom: 1px;
    color: #fff;
}

.salon-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.salon-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    margin-bottom: 22px;
}

.salon-lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 75px;
    opacity: 0.95;
    font-family: "Shippori Mincho", serif;
}

.salon-plan-box {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 44px 20px;
    color: #fff;
    width: 100%;
    max-width: 514px;
}

.salon-plan-box .plan-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 44px;
    line-height: 1.4;
    font-family: "Shippori Mincho", serif;
    color: #fff;
}

.salon-plan-box .plan-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
    color: #fff;
}

.salon-plan-box .plan-period {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #fff;
}

.salon-plan-box .plan-actions {
    width: 62%;
    padding: 0 3px 0 6px;
}

.salon-plan-box .btn-more-white {
    font-size: 1.3rem;
    padding-bottom: 3px;
}

.salon-plan-box .more-icon-white {
    width: 27px;
    height: 27px;
}

.salon-visuals {
    display: flex;
    flex: 1;
    flex-direction: column;
    position: relative;
    gap: 80px;
}

.salon-img-main {
    width: 88%;
    height: auto;
}

.salon-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.salon-img-sub {
    width: 285px;
    height: 260px;
}

.salon-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.salon-deco-top {
    position: absolute;
    top: 20px;
    left: -50px;
    width: 160px;
    height: 160px;
    background: url('../images/deco-pattern-8.svg') no-repeat center center / contain;
}

.salon-deco-bottom {
    position: absolute;
    bottom: 30px;
    right: 115px;
    width: 208px;
    height: 208px;
    background: url('../images/deco-pattern-9.webp') no-repeat center center / contain;
    z-index: 1;
}


.sakura-branch-bg.salon {
    position: absolute;
    min-height: unset;
    width: 300px;
    height: 180px;
    top: auto;
    bottom: 34%;
    right: -6px;
    background: url('../images/salon-branch-1.webp') no-repeat center center/contain;
    z-index: 2;
}


/* =========================================
   Spa Treatment
   ========================================= */
#spa {
    background: linear-gradient(to right, #D7C398 32%, #A5916A 32%);
    color: #fff;
    padding: 112px 0 160px;
    position: relative;
    overflow: hidden;
}

.spa-inner {
    display: flex;
    align-items: start;
    position: relative;
    z-index: 2;
}

.spa-visuals {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 80px;
    position: relative;
    height: 550px;
    padding: 0 25px 0 0;
}

.spa-visuals.fade-in {
    transition-delay: 0.8s;
}

.spa-img-main {
    width: 100%;
    max-width: 530px;
    height: auto;
    z-index: 2;
}

.spa-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.spa-img-sub {
    width: 284px;
    height: 260px;
    z-index: 3;
}

.spa-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.deco-pattern-6 {
    display: none;
}

.spa-content {
    flex: 1;
    padding: 60px 60px 0 50px;
}

.spa-header {
    margin-bottom: 20px;
}

.spa-header.fade-in {
    transition-delay: 0.2s;
}

.spa-title {
    font-size: 2.5rem;
    font-family: serif;
    margin-bottom: 2px;
    color: #fff;
}

.spa-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.spa-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    margin-bottom: 18px;
}

.spa-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 70px;
    opacity: 0.95;
    font-family: "Shippori Mincho", serif;
}

.spa-plan-box {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 38px 40px 45px;
    border-radius: 12px;
    margin-top: 45px;
    position: relative;
    z-index: 2;
    color: #4A3B3B;
}

.spa-plan-box.fade-in {
    transition-delay: 0.5s;
}

.spa-plan-box .plan-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 42px;
    line-height: 1.4;
    font-family: "Shippori Mincho", serif;
    color: #fff;
}

.spa-plan-box .plan-desc {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
    color: #fff;
}

.spa-plan-box .plan-desc p {
    margin-bottom: 10px;
}

.spa-plan-box .plan-period {
    font-size: 1.1rem;
    margin-bottom: 38px;
    color: #fff;
}

.spa-plan-box .plan-actions {
    width: 62%;
}

.spa-plan-box .btn-more-white {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    padding-bottom: 6px;
}

.spa-plan-box .more-icon-white {
    width: 27px;
    height: 27px;
}



.sakura-branch-bg.spa {
    width: 300px;
    height: 180px;
    top: 457px;
    left: -16px;
    right: auto;
    background: url('../images/spa-branch-1.webp') no-repeat center center / contain;
    z-index: 4;
}

.deco-pattern-6 {
    background: url('../images/deco-pattern-10.svg') no-repeat center center/cover;
    right: -54px;
    left: auto;
    top: 40px;
    width: 160px;
    height: 160px;
}

.deco-pattern-7 {
    background: url('../images/deco-pattern-11.webp') no-repeat center center/cover;
    bottom: 26px;
    left: 145px;
    right: auto;
    width: 210px;
    height: 210px;
    z-index: 2;
}

.spa-deco-top {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 12px 12px;
    border-radius: 50%;
}

.spa-deco-circle {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    opacity: 0.15;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 18px 18px;
    border-radius: 50%;
    z-index: 1;
}


/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #433838;
    color: #fff;
    padding: 72px 0 64px;
    position: relative;
    font-family: "Shippori Mincho", serif;
}

.footer-inner {
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto 8px;
    padding: 0 80px;
}

.footer-brand {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.1em;
}

.footer-contact {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.64px;
    opacity: 0.9;
}

.footer-right {
    display: flex;
    align-items: center;
}

.btn-top {
    width: 74px;
    height: 74px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-top:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.top-arrow {
    width: 20px;
    height: auto;
    margin-bottom: 5px;
    display: flex;
}

.top-arrow img {
    width: 100%;
    height: auto;
    display: block;
}

.top-text {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.8;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #d88898;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}