@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --color-primary: #87CEEB;
    /* ロゴの水色 */
    --color-primary-light: #E0F7FA;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-secondary: #F0F8FF;

    --font-base: 'Noto Sans JP', sans-serif;

    --width-inner: 1100px;
    --width-inner-sm: 90%;

    --shadow-soft: 0 20px 60px rgba(135, 206, 235, 0.15);
    --shadow-hover: 0 30px 80px rgba(135, 206, 235, 0.25);

    --transition-base: all 0.3s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 2.0;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    user-select: none;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

ul,
ol {
    list-style: none;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.section {
    position: relative;
    padding: 0 0 120px;
}

.section__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    padding: 0 20px;
}

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

.center-align {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 見出し周り更新：画像を削除し、テキストのみでシンプルかつ上品に */
.section__title-wrap {
    margin-bottom: 80px;
    position: relative;
    text-align: center;
}

.section__title-wrap::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 20px auto 0;
}

/* TVセクション等で画像を使うためのクラス除外はHTML側で制御 */
.section__title-img {
    display: none;
    /* デフォルト非表示、TVのみ上書き */
}

.section__title {
    font-size: 2.5rem;
    font-weight: 300;
    /* 細く */
    letter-spacing: 0.15em;
    color: var(--color-primary);
    /* テーマカラー適用 */
    margin-top: 0;
    z-index: 2;
    position: relative;
    text-shadow: none;
}

/* テキストスタイル */
.app-heading-md {
    font-size: 1.6rem;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
    border-left: 5px solid var(--color-primary);
    padding-left: 20px;
}

.app-text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* SPのみの改行用 */
.u-sp-br {
    display: none;
}

@media screen and (max-width: 768px) {
    .u-sp-br {
        display: block;
    }
}

/* Button */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn--header-reserve {
    padding: 10px 24px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.9rem;
}

.btn--line {
    background-color: #06c755;
    color: #fff;
    min-width: 240px;
}

.btn--reserve {
    background-color: var(--color-primary);
    color: #fff;
    min-width: 240px;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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


/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 2px solid var(--color-primary-light);
}

.header__inner {
    max-width: var(--width-inner);
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header__logo {
    display: flex;
    align-items: center;
    height: 100%;
}

/* ロゴサイズ更新: 50px -> 70px */
.header__logo img {
    height: 70px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__list {
    display: flex;
    margin-right: 32px;
}

.header__list li {
    margin-left: 32px;
    font-size: 0.95rem;
    position: relative;
}

.header__list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}

.header__list li a:hover::after {
    width: 100%;
}

.header__hamburger {
    display: none;
}

/* SP Nav */
.header__sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.header__sp-nav.is-active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   FV
   ========================================================================== */
.fv {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.fv__slider {
    width: 100%;
    height: 100%;
}

.fv__slider .swiper-slide {
    background-color: #f5f5f5;
}

.fv__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media screen and (max-width: 768px) {
    .fv {
        height: auto;
        padding-top: 80px;
        margin-top: 0;
    }

    .fv__slider,
    .fv__slider .swiper-slide {
        height: auto;
    }

    .fv__slider .swiper-slide picture {
        display: block;
        width: 100%;
        height: auto;
    }

    .fv__slider .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}


/* ==========================================================================
   SV (Banner)
   ========================================================================== */
.sv {
    margin-top: 60px;
    padding-bottom: 60px;
}

.sv__banner {
    width: 50%;
    /* 4分の1程度 -> 幅50%程度にして高さオートで調整 */
    max-width: 500px;
    margin: 0 auto;
}

.section__heading-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.section__title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    white-space: nowrap;
}

.sv__img {
    transition: transform 0.6s ease;
    display: block;
    width: 100%;
}

.sv:hover .sv__img {
    transform: scale(1.05);
}

/* ==========================================================================
   TV (Concerns)
   ========================================================================== */
.tv {
    background: linear-gradient(135deg, #fff 50%, var(--color-primary-light) 100%);
}

.tv__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

/* TV特有：画像ありタイトルに戻すための処理 */
.tv .section__title-img {
    display: block;
    /* ここだけ復活 */
}

.tv .section__title {
    margin-top: -40px;
    color: var(--color-text);
    /* 画像上の場合見づらければ調整 */
    text-shadow: 2px 2px 0px #fff;
}

.tv .section__title-wrap::after {
    display: none;
}


.tv__content {
    background: #fff;
    padding: 60px;
    box-shadow: var(--shadow-soft);
    width: 48%;
    z-index: 1;
    border-top: 5px solid var(--color-primary);
}

.tv__list li {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    /* dotted/dashed for softer look */
}

.tv__list li::before {
    content: '✔';
    color: var(--color-primary);
    margin-right: 12px;
    font-size: 1.2rem;
}

.tv__image {
    width: 48%;
    z-index: 1;
}

.tv__image img {
    box-shadow: none;
}

/* ==========================================================================
   About / Message (Broken Grid Theme)
   ========================================================================== */
.about {
    background-color: #f9f9f9;
    padding-top: 100px;
}

.about__container,
.message__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* About */
.about__image {
    width: 45%;
    z-index: 1;
}

.about__content {
    width: 65%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    /* グラスモフィズム風でおしゃれに */
    padding: 60px;
    margin-left: -15%;
    /* 重なりをより深くしておしゃれに */
    z-index: 2;
    position: relative;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-top: 40px;
    /* タイトルとの間隔 */
}

/* REMOVED .about__content::before */

/* Message */
.message {
    background-color: #fff;
    padding: 100px 0;
}

.message__image {
    width: 50%;
}

.message__content {
    width: 50%;
    margin-left: 0;
    background: #fff;
    padding: 60px;
    box-shadow: var(--shadow-soft);
    z-index: 2;
    border-left: 5px solid var(--color-primary);
}


/* ==========================================================================
   Service
   ========================================================================== */
.service {
    background-color: var(--color-bg-secondary);
    padding-top: 100px;
}

.service__item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    /* 枠をつける感じに */
}

.service__item--reverse {
    flex-direction: row-reverse;
}

.service__content {
    width: 50%;
    padding: 60px;
}

.service__title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.service__title span {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: #ddd;
    line-height: 1;
    margin-bottom: 10px;
}

.service__image {
    width: 50%;
    height: 100%;
}

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

/* ==========================================================================
   Menu (Redesign)
   ========================================================================== */
.menu {
    position: relative;
    background-image: url('../img/background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 40px;
    /* 余白を縮小 */
    z-index: 1;
}

.menu .section__title-wrap {
    margin-bottom: 60px;
}

.menu .section__title {
    display: inline-block;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.3);
}

.menu .section__title-wrap::after {
    background-color: #fff;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.menu__intro {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.95);
    /* 背景を少しだけ透かす */
    padding: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.menu__intro-price {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.menu__intro-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

/* リストスタイル改善 */
.menu__list {
    max-width: 900px;
    margin: 0 auto;
}

.menu__category {
    margin-bottom: 80px;
}

.menu__category-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.3);
}

/* REMOVED .menu__category-title::before */


.menu__row {
    display: flex;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.menu__row:hover {
    transform: translateX(10px);
    border-left: 5px solid var(--color-primary);
}

.menu__row-img {
    width: 250px;
    flex-shrink: 0;
}

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

.menu__row-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu__row-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    /* border-bottom: 1px solid #eee; REMOVED */
    padding-bottom: 10px;
}

.menu__row-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.menu__row-price {
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
}

.menu__row-price span.tax {
    font-size: 0.85rem;
    font-weight: normal;
    margin-left: 4px;
    color: var(--color-text-light);
}

/* ==========================================================================
   Counseling Steps (Redesign of TV Section)
   ========================================================================== */
.counseling-steps {
    background-color: #fff;
    padding: 100px 0;
}

.counseling-steps .section__title-wrap::after {
    display: none;
}

.counseling-steps__title {
    display: flex;
    justify-content: center;
    width: 100%;
}

.counseling-steps__canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

/* 「まずは」のデザイン - PC時は大きめに、線画を添える */
.counseling-steps__unit-pre {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    /* PC時大きめに */
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    margin-bottom: 25px;
}

/* 線画デザイン - 上品な極細線 */
.counseling-steps__unit-pre::before,
.counseling-steps__unit-pre::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: var(--color-primary);
    opacity: 0.4;
}

/* メイン部分 - 縦に並べる */
.counseling-steps__unit-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.counseling-steps__word-large {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.counseling-steps__word-or {
    font-size: 1.2rem;
    font-weight: 300;
    color: #cbd5e0;
    margin: 5px 0;
    display: block;
    position: relative;
}

/* orの左右に短い線を配置 */


.counseling-steps__unit-sub {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 10px;
}

.counseling-steps__word-semi {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.counseling-steps__word-suffix {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* SP時の調整 */
@media screen and (max-width: 768px) {
    .counseling-steps__unit-pre {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .counseling-steps__unit-pre::before,
    .counseling-steps__unit-pre::after {
        width: 30px;
    }

    .counseling-steps__word-large {
        font-size: 2rem;
    }

    .counseling-steps__word-semi {
        font-size: 1.6rem;
    }
}

.counseling-steps__post {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .counseling-steps__options {
        flex-direction: column;
        gap: 0.5rem;
    }

    .counseling-steps .section__title {
        font-size: 1.6rem;
    }

    .counseling-steps__pre {
        font-size: 0.9rem;
    }

    .counseling-steps__or {
        display: block;
        font-size: 0.9rem;
        margin: 5px 0;
    }

    .counseling-steps__post {
        font-size: 1.1rem;
    }
}

.steps__container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    background: var(--color-bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-card__num {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.step-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.step-card__title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.step-card__text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.steps__note p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.steps__note .small {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .steps__container {
        flex-direction: column;
        gap: 40px;
    }

    .step-card {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   Staff
   ========================================================================== */
.staff {
    padding-top: 100px;
}

.staff__card {
    background: #fff;
    box-shadow: var(--shadow-soft);
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* Center Vertically */
    padding: 60px;
    border-top: 5px solid var(--color-primary);
}

.staff__img-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 60px;
    flex-shrink: 0;
    border: 5px solid var(--color-bg-secondary);
}

/* ==========================================================================
   Access (2 Columns)
   ========================================================================== */
.access__container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

.access__info {
    width: 45%;
}

.access__map {
    width: 50%;
    height: 400px;
}

.access__map iframe {
    width: 100%;
    height: 100%;
}

/* 見やすい定義リスト */
.access__list dt {
    background: var(--color-primary);
    color: #fff;
    padding: 8px 15px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    display: inline-block;
    border-radius: 4px;
}

.access__list dd {
    margin-bottom: 25px;
    font-size: 1.1rem;
    padding-left: 5px;
    line-height: 1.8;
}

.access__list a {
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
}

.access__sns {
    margin-top: 30px;
}

.btn--icon {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 15px;
    background: #eee;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn--instagram {
    background: #E1306C;
    color: #fff;
}

.btn--web {
    background: var(--color-primary);
    color: #fff;
}


/* ==========================================================================
   CTA / Footers
   ========================================================================== */
.cta--secondary {
    padding: 100px 0;
    /* 上下均等にしてセンターに配置 */
}

.cta__container {
    text-align: center;
    background-color: #fff;
    padding: 80px 40px;
    border-radius: 30px;
    /* より柔らかい印象に */
    box-shadow: 0 20px 50px rgba(135, 206, 235, 0.4);
    /* 水色のシャドー */
    border: 1px solid var(--color-primary-light);
}

.cta__text-main {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-primary);
    line-height: 1.4;
}

.cta__text-sub {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta__text-sub span {
    font-weight: bold;
    color: var(--color-primary);
    background: linear-gradient(transparent 70%, #e0f7fa 70%);
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer {
    background: var(--color-primary);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
}


.sp-fixed-cta {
    display: none;
}

/* ==========================================================================
   Responsive (SP)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .section {
        padding: 0 0 80px;
    }

    .header__logo img {
        height: 50px;
    }

    /* SPサイズ: 50px */
    .header__nav {
        display: none;
    }

    .header__hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1000;
        border: none;
        background: none;
    }

    .header__hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: all 0.3s;
    }

    .header__hamburger span:nth-of-type(1) {
        top: 0;
    }

    .header__hamburger span:nth-of-type(2) {
        top: 9px;
    }

    .header__hamburger span:nth-of-type(3) {
        bottom: 0;
    }

    .header__hamburger.is-active span:nth-of-type(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .header__hamburger.is-active span:nth-of-type(2) {
        opacity: 0;
    }

    .header__hamburger.is-active span:nth-of-type(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .header__sp-list {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .header__sp-list li {
        margin: 20px 0;
        font-size: 1.2rem;
    }

    /* SV */
    .sv__banner {
        width: 90%;
    }

    /* Broken Grid Reset for SP */
    .tv__container,
    .about__container,
    .message__container {
        flex-direction: column;
    }

    .message__image {
        order: 2;
        /* 文章の後に画像を表示 */
        margin-top: 40px;
    }

    .tv__content,
    .about__content,
    .message__content {
        width: 100%;
        padding: 40px 20px;
        margin: 0 auto;
        border-top: 3px solid var(--color-primary);
        border-left: none;
        box-shadow: none;
        background: #fff;
        backdrop-filter: none;
    }

    .about__content {
        margin-top: -20px;
        border-radius: 0;
    }

    .tv__image,
    .about__image,
    .message__image {
        width: 100%;
    }

    .about__content {
        margin-left: auto;
    }

    /* center it roughly */
    .message__content {
        margin-left: auto;
    }

    /* Service */
    .service__item,
    .service__item--reverse {
        flex-direction: column;
        margin-bottom: 60px;
        box-shadow: none;
        border-bottom: 1px solid #eee;
    }

    .service__content,
    .service__image {
        width: 100%;
        padding: 30px 20px;
    }

    .service__image {
        order: -1;
        height: auto;
    }

    /* Menu Redesign SP */
    .menu {
        position: relative;
        padding: 80px 0;
        z-index: 1;
        clip-path: inset(0);
        /* 固定背景をセクション内に閉じ込める */
        background-image: none !important;
    }

    .menu::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/SPbackground.png');
        background-size: cover;
        background-position: center;
        z-index: -1;
        pointer-events: none;
    }

    .menu__row {
        flex-direction: column;
    }

    .menu__row-img {
        width: 100%;
        height: 200px;
    }

    .menu__row-header {
        flex-direction: column;
    }

    .menu__row-price {
        margin-top: 5px;
        font-size: 1.4rem;
    }

    /* Staff SP */
    .staff__card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .staff__img-wrap {
        margin: 0 auto 20px;
    }

    /* Access SP */
    .access__container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .access__info,
    .access__map {
        width: 100%;
    }

    .access__map {
        height: 300px;
        margin-top: 30px;
    }

    /* Floating CTA */
    .floating-cta {
        display: flex;
    }

    /* Font Sizes */
    .section__title {
        font-size: 1.8rem;
    }

    .cta__text-main {
        font-size: 1.4rem;
    }

    .cta__text-sub {
        font-size: 1rem;
    }

    .app-heading-md {
        font-size: 1.3rem;
    }

    .btn {
        width: 100%;
        min-width: auto;
    }

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

    .cta__buttons .btn {
        width: 100%;
    }

    /* Fixed CTA SP */
    .sp-fixed-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 12px 20px;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1100;
        backdrop-filter: blur(8px);
    }

    .sp-fixed-cta .btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 14px;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .to-top {
        bottom: 90px;
    }
}

/* ==========================================================================
   Gallery Ticker
   ========================================================================== */
/* Gallery Ticker */
.gallery-ticker-section {
    padding: 40px 0 100px;
    /* 上部の余白を縮小 */
    overflow: hidden;
    position: relative;
    background-image: url('../img/background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 768px) {
    .gallery-ticker-section {
        padding: 30px 0 60px;
        /* SP時も上部余白を縮小 */
        background-image: none !important;
        position: relative;
        z-index: 1;
        clip-path: inset(0);
    }

    .gallery-ticker-section::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/SPbackground.png');
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
}

.gallery-swiper {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    max-width: none !important;
    background: transparent !important;
    /* 背景色を持たせず透過に */
    z-index: 2;
    /* 背景より上のレイヤーへ */
    pointer-events: auto;
}

.gallery-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    /* 等速移動を保証 */
    animation-play-state: running !important;
}

.gallery-swiper .swiper-slide {
    width: 350px !important;
    height: 250px;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    /* 元のデザイン（角丸）に戻す */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    /* 元のシャドウに戻す */
}

/* ==========================================================================
   TOP Button
   ========================================================================== */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    background-color: #5ab9e0;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(135, 206, 235, 0.6);
}

/* ==========================================================================
   Reviews (Google Reviews Link)
   ========================================================================== */
.reviews {
    background-color: var(--color-bg);
    padding-top: 100px;
}

.reviews__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.reviews__container .review-card {
    width: 100%;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.review-card__stars {
    color: #ffb400;
    /* Google Star Color */
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.review-card__name {
    font-weight: 700;
    font-size: 1rem;
}

.review-card__text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-card__text.is-expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.review-card__more {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--color-primary);
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
}

.review-card__more:hover {
    text-decoration: none;
    opacity: 0.8;
}

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

.btn--google {
    background: #fff;
    color: var(--color-text);
    border: 2px solid #ea4335;
    /* Google Red */
    padding: 20px 60px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn--google:hover {
    background: #ea4335;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .reviews__container {
        grid-template-columns: 1fr;
    }
}