@charset "UTF-8";

:root {
    --main-text-color: #4F5651;
    --title-color: #465529; 
    --white-color: #FFFFFF;
    
    /* ▼ フォントサイズ管理 */
    --font-size-sm: clamp(12px, 1vw + 10px, 14px);       /* 極小文字（フッターなど） */
    --font-size-base: clamp(14px, 1.2vw + 11px, 16px);   /* 本文・小さい文字など */
    --font-size-lead: clamp(18px, 1.8vw + 12px, 22px);   /* リード文 */
    --font-size-title: clamp(26px, 2.5vw + 16px, 36px);  /* 各セクションのタイトル */
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: var(--font-size-base);
    color: var(--main-text-color);
    line-height: 2.2;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: clamp(50px, 8vw, 90px) 0;
}

.bg-light {
    background-color: #F4F9F1;
}

.bg-white {
    background-color: var(--white-color);
}

/* =========================================
   ヘッダー・ナビゲーション
========================================= */
.top-bar {
    background-image: url('img/fv-bg.png');
    background-size: cover;
    background-position: center;
    padding: 15px 20px;
    position: relative;
    z-index: 100;
}

.top-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.top-nav a {
    color: var(--title-color);
    font-size: clamp(16px, 1.5vw + 10px, 20px);
    font-weight: 500;
    transition: opacity 0.3s;
}

.top-nav a:hover {
    opacity: 0.6;
}

.top-nav .divider {
    color: var(--title-color);
    opacity: 0.5;
    font-size: var(--font-size-base);
}

.header {
    background-color: var(--white-color);
    padding: clamp(20px, 3vw, 30px) 40px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: clamp(50px, 10vw, 100px);
    width: auto;
}

.header-sns {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-sns img {
    height: 22px;
    width: auto;
    opacity: 0.7;
}

.footer-sns {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.footer-sns img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.header-sns a,
.footer-sns a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.header-sns a:hover,
.footer-sns a:hover {
    opacity: 0.4;
}

/* =========================================
   メインビジュアル (FV)
========================================= */
.fv {
    padding-bottom: clamp(60px, 10vw, 120px);
    position: relative;
}

.fv-images {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: clamp(40px, 6vw, 60px);
    padding-left: 0;
}

.fv-img-left {
    width: calc(50% + 80px);
}

.fv-img-left img {
    width: 100%;
    height: clamp(400px, 55vw, 550px);
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.fv-text-vertical {
    writing-mode: vertical-rl;
    font-size: clamp(18px, 2vw + 12px, 24px);
    padding: 0 clamp(20px, 4vw, 40px);
    letter-spacing: 0.3em;
    color: var(--main-text-color);
    z-index: 5;
}

.fv-img-right {
    flex: 1;
    position: relative;
    left: 10px;
}

.fv-img-right img {
    width: 100%;
    height: clamp(400px, 55vw, 550px);
    object-fit: cover;
    object-position: left center;
}

.fv-decorations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 3vw, 30px);
    margin: clamp(40px, 8vw, 90px) 0;
}

.decor-left {
    width: clamp(150px, 25vw, 300px);
}

.decor-right {
    width: clamp(180px, 22vw, 280px);
}

.fv-subtext-area {
    text-align: center;
}

.fv-subtext {
    font-size: clamp(13px, 1vw + 11px, 15px);
    letter-spacing: 0.15em;
    line-height: 2.2;
}

/* =========================================
   共通・コンポーネント
========================================= */
.section-title {
    text-align: center;
    font-size: var(--font-size-title);
    margin-bottom: clamp(40px, 6vw, 80px);
    color: var(--title-color);
    font-style: italic;
}

.title-icon {
    height: 2.5em;
    vertical-align: middle;
}

.row {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    justify-content: center;
}

.col-text,
.col-img {
    flex: 1;
}

.text-center {
    text-align: center;
}

.center {
    text-align: center;
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.text-red {
    font-size: var(--font-size-base);
}

.blend-box {
    position: relative;
    display: inline-block;
    padding: 15px;
    width: 100%;
}

.bg-layer {
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    z-index: 1;
    opacity: 0.9;
}

.fg-layer {
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply;
    display: block;
    width: 100%;
}

.fruit-wrapper {
    max-width: clamp(100px, 15vw, 150px);
}

.btn-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    z-index: 50;
}

.btn-group .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 10px);
    max-width: 350px;
    box-sizing: border-box;
    padding: 20px 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--title-color);
    color: var(--white-color);
    padding: 20px 40px;
    border-radius: 40px;
    font-size: var(--font-size-base);
    letter-spacing: 0.1em;
    transition: 0.3s;
    text-align: center;
    line-height: 1.4;
}

.btn:hover {
    opacity: 0.8;
}

.btn-arrow {
    height: 20px;
    margin-left: 10px;
}

/* =========================================
   Concept セクション
========================================= */

.concept {
    overflow: hidden;
    position: relative;
}

.concept-container {
    max-width: 900px;
    padding: 0 40px;
}

.concept .section-title {
    margin-bottom: clamp(40px, 6vw, 60px);
}

.concept-layout {
    display: flex;
    align-items: center;
    width: 100%;
}

.concept-img-area {
    width: 50%;
    position: relative;
}

.concept-visual {
    position: relative;
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: flex-end;
}

.concept-bg-slant {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-12deg);
    z-index: 1;
    opacity: 0.7;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.concept-main-img {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 600px;
    display: block;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.concept-text-area {
    width: 50%;
}

.concept-text-area .container {
    margin: 0; 
    padding: 0 clamp(20px, 4vw, 60px);
}

.concept-content {
    max-width: 450px;
}

.concept-lead {
    font-size: var(--font-size-lead);
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: 0.1em;
}

.concept-list {
    margin-bottom: 50px;
}

.concept-list p {
    font-size: var(--font-size-base);
    line-height: 2.4;
    color: var(--main-text-color);
    margin-bottom: 15px;
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
}

.concept-conclusion {
    font-size: var(--font-size-lead);
    line-height: 2.2;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.08em;
}

/* =========================================
   Lesson セクション
========================================= */
.lesson-row {
    align-items: flex-start;
}

.lesson-text-area {
    flex: 1;
    text-align: left;
}

.lesson-lead {
    font-size: var(--font-size-lead);
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.lesson-features {
    margin-bottom: 40px;
}

.feature-item {
    margin-bottom: 25px;
}

.feature-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 5px;
}

.marker-green {
    background-image: linear-gradient(transparent 30%, rgba(225, 235, 218, 0.8) 30%);
    padding: 0 4px;
}

.feature-desc {
    font-size: var(--font-size-base);
    color: var(--main-text-color);
    padding-left: 1em;
    line-height: 1.8;
}

.lesson-conclusion {
    font-size: var(--font-size-base);
    line-height: 2.2;
}

.lesson-img-area {
    flex: 1;
    position: relative;
    padding: 20px;
}

.lesson-visual {
    position: relative;
    display: inline-block;
    max-width: 500px;
    width: 100%;
}

.lesson-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.05));
}

.lesson-bg-shadow {
    position: absolute;
    bottom: -20px; 
    right: -20px;
    width: 110%;
    height: 110%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
    mix-blend-mode: multiply;
    transform: rotate(12deg);
}

/* =========================================
   Lesson Detail セクション
========================================= */
.detail-row {
    align-items: center;
}

.detail-img-area {
    display: flex;
    justify-content: center;
}

/* ベース設定（スマホ用を兼ねる） */
.detail-wrapper {
    position: relative;
    display: inline-block;
    padding: 15px;
    width: 100%;
    max-width: clamp(280px, 40vw, 450px);
}

.detail-wrapper .bg-layer {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; 
    height: auto;
    object-fit: contain; 
}

.detail-text-area {
    text-align: left;
    padding: 0 clamp(10px, 3vw, 40px);
}

.detail-text-area p {
    font-size: var(--font-size-base);
    line-height: 2.2;
    margin-bottom: 25px;
}

.detail-intro {
    font-weight: 600;
    color: var(--title-color) !important;
}

.detail-list {
    margin-bottom: 35px;
}

.detail-list p {
    margin-bottom: 12px;
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
}

.detail-quotes {
    font-weight: 600;
    font-size: var(--font-size-lead);
    letter-spacing: 0.05em;
    color: var(--title-color);
}

/* 単語の途中で改行させない */
.keep-text {
    display: inline-block;
}

/* =========================================
   About セクション
========================================= */
.about-row {
    align-items: center;
}

.about-text-area {
    text-align: left;
    padding: 0 clamp(10px, 3vw, 40px);
}

.about-lead {
    font-size: var(--font-size-lead);
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 35px;
    letter-spacing: 0.1em;
}

.about-desc {
    font-size: var(--font-size-base);
    line-height: 2.2;
    margin-bottom: 25px;
}

.about-highlight {
    font-weight: 600;
}

.about-img-area {
    display: flex;
    justify-content: center;
}

.about-wrapper {
    position: relative;
    padding: 10px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: block;
    height: clamp(450px, 60vw, 650px);
}

.about-wrapper .bg-layer.about-floral-bg {
    position: absolute;
    top: 50%; 
    left: 60%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 120%; 
	max-width: none !important;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    z-index: 1;
    mix-blend-mode: normal;
}

.about-images {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.about-titles-overlay {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 4;
    text-align: left;
    position: absolute;
    top: 5%;
    right: -16%;
    left: auto;
    width: 105%;
    padding-left: 10%;
}

.about-titles-overlay p {
    color: var(--title-color);
    font-size: clamp(12px, 1vw + 10px, 14px);
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Noto Serif JP', serif;
    width: 100%;
    max-width: 350px; 
}

.about-titles-overlay p:last-child {
    margin-bottom: 0;
}

.about-main {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.05));
    object-fit: contain;
    position: absolute;
    width: 60%;
    height: auto;
    bottom: 5%;
    left: 10%;
    z-index: 2;
}

.about-sub-group {
    width: 45%;
    position: absolute;
    bottom: 5%;
    right: -18%;
    z-index: 3;
}

.about-sub {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.1));
    object-fit: contain;
}

.msg-emphasis {
    font-size: var(--font-size-lead) !important;
    font-weight: 600;
    color: var(--title-color);
    line-height: 1.8;
}

/* =========================================
   その他（FAQ, フッター等）
========================================= */
.faq-list {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FBFEF1;
    padding: 18px 30px;
    margin-bottom: 15px;
    border-radius: 60px;
    border: 1px solid #C5C5C5;
    text-align: center;
}

.faq-item p:first-child {
    font-weight: bold;
}

.map-placeholder {
    width: 100%;
    max-width: clamp(250px, 35vw, 350px);
    margin: 0 auto;
    aspect-ratio: 1/1;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.insta-img-wrap {
    max-width: 100% !important;
    margin: 0 auto;
    position: relative;
}

.insta-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.insta-link {
    color: #A52A2A;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.insta-link:hover {
    opacity: 0.6;
}

.snapwidget-widget {
    width: 100% !important;
    height: clamp(310px, 45vw, 450px) !important;
}

.footer-action {
    padding: 80px 40px;
    background-size: cover;
    background-position: center;
    padding-right: 0 !important;
}

.footer-action-container {
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
    max-width: 100% !important;
    padding-right: 0 !important;
}

.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: clamp(280px, 35vw, 350px);
    align-items: flex-end;
}

.footer-btns .btn {
    width: 100%;
    justify-content: space-between;
    border-radius: 40px 0 0 40px !important; 
}

.footer-bottom {
    background-color: #F4F9F1;
    text-align: center;
    padding: 20px;
    color: var(--main-text-color);
    font-size: var(--font-size-base);
}

.footer-links a {
    color: #A52A2A !important;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.6;
}

.sp-only,
.sp-nav {
    display: none;
}

.pc-only {
    display: block;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Reservation セクション
========================================= */
.reservation {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 10vw, 120px) 0;
    background-color: var(--white-color) !important;
}

.reservation .container,
.reservation-inner {
    position: static !important;
}

.reservation-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.reservation .btn-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 80px !important;
    position: relative;
    z-index: 20;
}

.reservation .btn-group .btn {
    width: calc(50% - 10px);
    max-width: 500px;
    padding: 16px 27px;
}

.reservation-text-area {
    position: relative;
    z-index: 15;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.reservation-text-content {
    min-height: clamp(294px, 37.33vw, 507px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reservation-subtext p {
    font-size: var(--font-size-base);
    line-height: 2.4;
    margin-bottom: 30px;
}

.reservation-subtext p:last-child {
    margin-bottom: 0;
}


.reservation-subtext p:first-child,
.reservation-subtext p:last-child {
    font-weight: 600;
}

.reservation-images {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(200px, 25vw, 400px);
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.reservation-img-left,
.reservation-img-right {
    flex: 1;
    width: 100%;
    position: relative;
    mix-blend-mode: normal;
}

.reservation-img-left .bg-layer,
.reservation-img-right .bg-layer {
    display: none !important;
}

.reservation-img-left .fg-layer,
.reservation-img-right .fg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(100px, 25vw, 400px);
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); 
}


/* =========================================
   トップへ戻るボタン
========================================= */

.page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    width: 50px;
    height: 50px;
    background-color: var(--title-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-top::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--white-color);
    border-left: 2px solid var(--white-color);
    transform: translateY(3px) rotate(45deg);
}

.page-top.show {
    opacity: 1;
    visibility: visible;
}

.page-top:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}


/* =========================================
   スクロール連動：マーカーアニメーション
========================================= */
.marker-animation {
    background-image: linear-gradient(transparent 30%, rgba(235, 225, 180, 0.6) 30%);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 100%;
    transition: background-size 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
    padding: 0 4px;
    display: inline;
}

.marker-animation.is-active {
    background-size: 100% 100%;
}


/* =========================================
   予約・お問い合わせボタン専用
========================================= */

/* 文字スペースを広げる */
.btn-group .btn.btn-contact {
    padding: 16px 50px;
    letter-spacing: 0.05em;
}

/* 2行の文字を中央揃えに整える */
.btn-contact .text-wrap {
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

/* 改行強力ブロック */
.btn-contact .nowrap-text {
    white-space: nowrap; 
}


/* =========================================
   PC版レイアウト統一（テキスト領域キープ＆画像外側はみ出し）
========================================= */
@media (min-width: 769px) {
    /* 1. 行全体は「上揃え」、テキストの開始位置をタイトル下固定 */
    .row,
    .concept-layout,
    .lesson-row,
    .detail-row,
    .about-row {
        align-items: flex-start !important;
    }

    /* 2. 画像エリアだけ個別に「上下中央揃え」 */
    .col-img,
    .concept-img-area,
    .lesson-img-area,
    .detail-img-area,
    .about-img-area {
        align-self: center;
    }

    /* =========================================
       外側へのはみ出し（フルブリード）設定
    ========================================= */

    /* 3. レッスン画像 */
    .lesson-img-area {
        text-align: left;
    }
    .lesson-visual {
        width: 120%;
        max-width: none;
    }

    /* 4. レッスン詳細画像 */
    .detail-img-area {
        display: flex;
        justify-content: flex-end !important;
    }
    .detail-wrapper {
        width: 150% !important;
        max-width: none !important;
    }

    .detail-wrapper img:not(.bg-layer) {
        width: 100% !important;
        max-width: none !important;
    }
}

/* =========================================
   レスポンシブ (スマホ表示)
========================================= */
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .btn-group {
        flex-direction: column; 
        gap: 15px; 
        align-items: center;
    }

    .btn-group .btn {
        width: 100%; 
        padding: 20px 20px; 
        font-size: var(--font-size-base);
        max-width: 350px;
    }

    .btn-arrow {
        height: 14px;
        margin-left: 4px;
    }

    .header-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .logo img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .header-sns {
        position: absolute;
        top: 15px;
        left: 20px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 6px;
        z-index: 110;
    }

    .header-sns a {
        display: inline-block;
    }

    .header-sns img {
        height: 22px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .top-bar {
        padding: 27px 20px;
    }

    .hamburger {
        position: absolute;
        top: 15px;
        z-index: 110;
        cursor: pointer;
        width: 75px;
        right: 20px;
        height: 24px;
    }

    .hamburger::before {
        content: "MENU";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 11px;
        font-weight: 600;
        color: var(--title-color);
        letter-spacing: 0.05em;
    }

    .hamburger span {
        display: block;
        position: absolute;
        height: 2px;
        background-color: var(--title-color);
        transition: 0.3s;
        left: auto;
        right: 0;
        width: 26px;
    }

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

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

    .hamburger span:nth-child(3) {
        top: 22px;
    }

    .hamburger.active::before {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .sp-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white-color);
        z-index: 105;
        transition: 0.4s;
        padding-top: 80px;
    }
    
    .sp-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('img/fv-right.png');
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        z-index: -1;
    }

    .sp-nav.active {
        right: 0;
    }
    
    .sp-nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--title-color);
        font-size: var(--font-size-base);
        font-weight: bold;
        cursor: pointer;
        padding: 10px;
    }

    .sp-nav-close .close-icon {
        position: relative;
        width: 20px;
        height: 20px;
    }

    .sp-nav-close .close-icon::before,
    .sp-nav-close .close-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--title-color);
    }

    .sp-nav-close .close-icon::before {
        transform: rotate(45deg);
    }

    .sp-nav-close .close-icon::after {
        transform: rotate(-45deg);
    }

    .sp-nav ul {
        list-style: none;
        text-align: center;
        padding: 0;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .sp-nav li {
        width: 100%;
        max-width: 300px;
        border-bottom: 2px solid #FFFFFF;
    }

    .sp-nav li:last-child {
        border-bottom: none;
    }

    .sp-nav a {
        font-size: clamp(18px, 5vw, 24px); 
        display: block;
        padding: 20px;
        color: var(--title-color);
        text-decoration: none;
    }

    .fv-images {
        position: relative;
        flex-direction: column;
        padding: 40px 0;
        min-height: 500px;
        justify-content: center;
    }

    .fv-img-left {
        width: 85%;
        margin: 0 auto;
        left: 0;
        position: relative;
        z-index: 2;
    }

    .fv-img-left img {
        height: 450px;
        object-position: bottom;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

    .fv-text-vertical {
        writing-mode: horizontal-tb;
        height: auto;
        padding: 40px 20px 20px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .fv-img-right {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        z-index: 1;
        opacity: 0.15;
    }

    .fv-img-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fv-decorations {
        padding: 40px 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .decor-left {
        display: none !important;
    }

    .decor-right {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 300px;
        opacity: 0.15;
        z-index: 1;
    }

    .fv-subtext-area {
        position: relative;
        z-index: 5;
    }

    .row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .action-row {
        flex-direction: column-reverse;
    }

    .concept-lead,
    .concept-conclusion,
    .lesson-lead,
    .lesson-conclusion,
    .about-lead {
        text-align: center;
    }

    .concept-list p,
    .detail-text-area,
    .detail-list p {
        text-align: left;
    }

    .concept-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .concept-img-area,
    .concept-text-area {
        width: 85%;
    }

    .concept-text-area .container {
        padding: 0 20px;
        margin: 0 auto;
    }

    .concept-bg-slant {
        display: none !important;
    }
    
    .concept-row {
        flex-direction: column-reverse;
        gap: 60px;
    }

    .concept-main-img {
        width: 100%;
    }

    .lesson-bg-shadow {
        display: none;
    }

    .lesson-detail .section-title {
        margin-bottom: 5px !important;
    }

    .detail-row {
        flex-direction: column;
        gap: 15px;
    }

    .detail-intro,

    .detail-quotes {
        text-align: center;
        margin-top: 20px;
    }

    .detail-text-area {
        padding: 0 20px;
    }

    .about-row {
        flex-direction: column;
        gap: 40px;
    }

    .about-text-area {
        padding: 0 20px;
    }

    .about-wrapper {
        height: auto;
        max-width: 450px;
        padding: 20px 20px 40px;
    }

    .about-titles-overlay {
        position: relative;
        width: 100%;
        margin-bottom: -15%;
        top: -30px; 
        right: 0;
        left: 0;
        padding-left: 20px;
        z-index: 4;
    }

    .about-titles-overlay p {
        max-width: none;
    }

    .about-main {
        position: relative;
        width: 60%;
        left: -20%;
        bottom: auto;
        z-index: 3;
    }

    .about-sub-group {
        position: absolute;
        bottom: 0;
        right: -5%;
        width: 40%;
        z-index: 2;
    }

    .about-wrapper .bg-layer.about-floral-bg {
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 105%; 
        max-width: none;
    }

    .reservation {
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
    }

    .reservation .video-bg-wrap {
        width: 100%;
        max-width: none;
        left: 0;
        top: 0;
        height: 100%;
        transform: none;
    }

    .reservation .reservation-inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        z-index: 15;
    }

    .reservation .reservation-text-area {
        max-width: 100%;
        padding: 0;
        order: 1;
    }

    .reservation .btn-group {
        margin-top: 40px !important;
        flex-direction: column;
        width: 100%;
        order: 2;
    }

    .reservation .btn-group .btn {
        width: 100%;
        max-width: none;
    }

    .reservation .reservation-images {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        flex-direction: row;
        gap: 10px;
        margin-top: 60px;
        order: 3;
        pointer-events: auto;
    }

    .reservation .reservation-img-left,
    .reservation .reservation-img-right {
        flex: 1;
        aspect-ratio: 2 / 3;
    }

    .reservation .reservation-img-left .fg-layer,
    .reservation .reservation-img-right .fg-layer {
        position: relative;
    }

    .access .container {
        padding: 0 20px;
    }

    .access .col-img {
        width: 100%;
    }

    .map-placeholder {
        max-width: 100% !important;
        width: 100% !important;
        aspect-ratio: 1 / 1;
        height: auto;
        position: relative;
    }

    .map-placeholder iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

    .instagram .section-title {
        margin-bottom: 10px !important;
    }

    .insta-img-wrap {
        margin-bottom: 0;
    }

    .snapwidget-widget {
        height: 60vw !important;
        max-height: 350px !important;
    }
    
    .insta-text {
        margin-top: 10px !important;
    }

    .footer-action,
    .footer-action-container {
        padding-right: 0 !important;
        margin-right: 0 !important;
    }

    .footer-action-container {
        justify-content: flex-end !important;
    }

    .footer-btns {
        align-items: flex-end !important;
        max-width: 90% !important;
        margin-right: 0 !important;
    }

    .footer-btns .btn {
        border-radius: 40px 0 0 40px !important;
        width: 100% !important;
    }
    
    .page-top {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
    }
}