@charset "utf-8";

/* ========================================
   CSS変数（:root）
   ======================================== */
:root {
    /* カラー（テキスト） */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-bg: #FCFBF9;
    --color-bg-section: #FFF5F5;
    --color-bg-section-alt: #F8F8F8;
    --color-border: #E5E5E5;
    --color-border-light: #F0F0F0;

    /* アクセントカラー（ネイルサロン用） */
    --color-accent: #C4A882;
    --color-accent-hover: #B89A6F;
    --color-primary: #C4A882;

    /* 背景色（セクション用） */
    --color-bg-accent: #FFF9F9;

    /* フォント */
    --font-family-base: "Noto Sans JP", "serif";
    --font-family-en: "Roboto", "serif";
    --font-size-base: 15px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --line-height-base: 1.5;

    /* コンテナサイズ */
    --container-sm: 800px;
    --container-md: 960px;
    --container: 1100px;
    --container-lg: 1200px;
    --container-xl: 1300px;

    /* パディング */
    --padding-container: 20px;
    --padding-container-sp: 20px;
    --padding-header: 40px;
    --padding-header-sp: 20px;

    /* ブレークポイント */
    --breakpoint-sp: 600px;
    --breakpoint-tablet: 768px;
    --breakpoint-pc: 1080px;

    /* 余白 */
    --spacing-xs: 5px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 130px;
    --spacing-xxl: 80px;
}

/* ========================================
   基本設定（base）
   ======================================== */
body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-base);
    font-size: var(--font-size-base);
    font-feature-settings: "palt";
    background: linear-gradient(135deg, #F5F0E8 0%, #F8F5F0 50%, #F5F0E8 100%);
    min-height: 100vh;
}

/* ========================================
   コンテナ/ラッパー
   ======================================== */
/* コンテナ（標準） */
.container {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container) + (var(--padding-container) * 2));
}

/* 小サイズコンテナ */
.container-sm {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container-sm) + (var(--padding-container) * 2));
}

/* 中サイズコンテナ */
.container-md {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container-md) + (var(--padding-container) * 2));
}

/* 大サイズコンテナ */
.container-lg {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container-lg) + (var(--padding-container) * 2));
}

/* 特大サイズコンテナ */
.container-xl {
    width: 100%;
    padding: 0 var(--padding-container);
    margin: 0 auto;
    max-width: calc(var(--container-xl) + (var(--padding-container) * 2));
}

/* PCファースト */
/* ベース: PC（1080px以上） */

/* 中サイズPC: 1080px未満 */
@media screen and (max-width: 1080px) {}

/* タブレット: 768px未満 */
@media screen and (max-width: 768px) {}

/* スマートフォン: 600px未満 */
@media screen and (max-width: 600px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        padding: 0 var(--padding-container-sp);
    }
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1002;
    transition: background 0.3s ease;
}

.header.is-scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.is-menu-open {
    background: #fff !important;
}

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

.header__logo {
    flex-shrink: 0;
}

.header__logo a {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header__logo a:hover {
    opacity: 0.8;
}

.header__logo img {
    width: 100%;
    height: auto;
}

/* PC用ナビゲーション */
.pc-nav {
    display: block;
}

.header__nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.header__nav-item a {
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.header__nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.header__nav-item a:hover {
    opacity: 1;
}

.header__nav-item a:hover::after {
    width: 100%;
}

.header__nav-item--contact a {
    background: var(--color-accent);
    color: #fff;
    padding: 8px 20px;
    /* パディングを少し広げてボタンらしく */
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header__nav-item--contact a::after {
    display: none;
}

.header__nav-item--contact a:hover {
    background: var(--color-accent-hover);
    opacity: 1;
}

/* SP用ハンバーガーボタン */
.sp-hamburger {
    display: none;
    position: relative;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.sp-hamburger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.sp-hamburger__line:nth-child(1) {
    top: 10px;
}

.sp-hamburger__line:nth-child(2) {
    bottom: 10px;
}

.sp-hamburger__line:nth-child(3) {
    display: none;
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(2) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.sp-hamburger.is-active .sp-hamburger__line:nth-child(3) {
    display: none;
}

/* SP用ナビゲーション（パターンB: フェードイン表示） */
.sp-nav--pattern-b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
    overflow: hidden;
    pointer-events: none;
}

.sp-nav--pattern-b.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* オーバーレイ（背景が暗くなる） */
.sp-nav--pattern-b .sp-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.sp-nav--pattern-b.is-open .sp-nav__overlay {
    opacity: 1;
    pointer-events: auto;
}

/* メニューコンテンツ */
.sp-nav--pattern-b .sp-nav__content {
    position: relative;
    background: #F8F5F0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sp-nav__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 120px 24px 100px 24px;
}

.sp-nav__logo {
    margin-bottom: 60px;
    text-align: center;
}

.sp-nav__logo a {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-family: 'Roboto', sans-serif;
}

.sp-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* メニューアイテム */
.sp-nav--pattern-b .sp-nav__item {
    margin-bottom: 32px;
    width: 100%;
    text-align: center;
}

.sp-nav--pattern-b .sp-nav__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.sp-nav__en {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #B89C7A;
}

.sp-nav__jp {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.sp-nav--pattern-b .sp-nav__item--contact,
.sp-nav--pattern-b .sp-nav__item--line {
    margin-top: 8px;
    margin-bottom: 0;
}

.sp-nav--pattern-b .sp-nav__item--contact a,
.sp-nav--pattern-b .sp-nav__item--line a {
    background: #B89C7A;
    color: #fff;
    padding: 16px 20px;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-weight: 600;
    display: block;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.sp-nav--pattern-b .sp-nav__item--line a {
    background: #06C755;
    margin-top: 16px;
}

.sp-nav__footer {
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
}

.sp-nav__sns-link {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding-bottom: 4px;
}

.sp-nav__sns-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #333;
}

@media screen and (max-width: 600px) {
    .header__inner {
        padding: 0 var(--padding-header-sp);
    }

    .pc-nav {
        display: none;
    }

    .sp-hamburger {
        display: block;
    }

    .sp-nav--pattern-b {
        display: block;
    }
}

/* ========================================
   メインビジュアル
   ======================================== */
.top-mv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.top-mv__slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.top-mv__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.top-mv__slide.is-active {
    opacity: 1;
}

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

.top-mv__slide--1 img {
    object-position: 80%;
}

.top-mv__content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    padding: 0;
    text-align: left;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.top-mv__title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.top-mv__scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    color: #fff;
}

.top-mv__scroll-text {
    font-size: 10px;
    letter-spacing: 0.3em;
    font-family: var(--font-family-en);
    writing-mode: vertical-rl;
    text-transform: uppercase;
    opacity: 0.8;
}

.top-mv__scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.top-mv__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleY(0);
    transform-origin: top;
    animation: scrollLineAnimation 2.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

@keyframes scrollLineAnimation {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    45% {
        transform: scaleY(1);
        transform-origin: top;
    }

    55% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@media screen and (max-width: 600px) {
    .top-mv__content {
        bottom: 72px;
        left: 20px;
        padding: 0;
    }

    .top-mv__title {
        font-size: 32px;
    }

    .top-mv__scroll-indicator {
        bottom: 20px;
        right: 20px;
    }

    .top-mv__scroll-line {
        height: 40px;
    }
}

/* ========================================
   セクション共通
   ======================================== */
.section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

@media screen and (max-width: 600px) {
    .section {
        padding: 80px 0;
    }
}

.section--alt {
    background: linear-gradient(135deg, #F8F8F8 0%, #F5F5F5 50%, #F8F8F8 100%);
}

/* ========================================
   セクションタイトル
   ======================================== */
.m-section-ttl {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 64px;
    color: var(--color-text);
}

.m-section-ttl span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 8px;
    font-family: var(--font-family-en);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media screen and (max-width: 600px) {

    .m-section-ttl {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: left;
    }

    .m-section-ttl span {
        font-size: 14px;
		margin-bottom:0;
    }
}
.m-section-ttl--contact{
text-align:center;
}
/* ========================================
   イントロダクション
   ======================================== */
.top-intro {
    background: var(--color-bg-section);
    padding-top: 120px;
    padding-bottom: 120px;
}

.top-intro__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.top-intro__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
}

@media screen and (max-width: 600px) {
    .top-intro__text {
        font-size: 16px;
    }
}

/* ========================================
   当店の特徴
   ======================================== */
.top-features {
    background: linear-gradient(135deg, #F5F0E8 0%, #F8F5F0 50%, #F5F0E8 100%);
    position: relative;
}

.top-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(196, 168, 130, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(196, 168, 130, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.top-features__list {
    max-width: 1000px;
    margin: 0 auto;
}

.top-features__item {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 80px;
}

.top-features__item:last-child {
    margin-bottom: 0;
}

.top-features__item--reverse {
    flex-direction: row-reverse;
}

.top-features__content {
    flex: 1;
    text-align: left;
}

.top-features__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.top-features__lead {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-text);
}

.top-features__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-text);
}

.top-features__text:last-child {
    margin-bottom: 0;
}

.top-features__img {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

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

@media screen and (max-width: 768px) {
    .top-features__item {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 64px;
    }

    .top-features__item:first-child {
        flex-direction: column-reverse;
    }

    .top-features__item--reverse {
        flex-direction: column-reverse;
    }

    .top-features__img {
        width: 100%;
        height: 250px;
    }

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

@media screen and (max-width: 600px) {
	    .top-features__item {
gap:15px;
    }
    .top-features__content {
        text-align: left;
    }

    .top-features__title {
        font-size: 24px;
		margin-bottom:10px;
    }

    .top-features__lead {
        font-size: 16px;
    }

    .top-features__text {
        font-size: 15px;
    }
}

/* ========================================
   コンセプト
   ======================================== */
.top-concept__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.top-concept__content {
    flex: 1;
    text-align: left;
}

.top-concept__title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.top-concept__lead {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-text);
}

.top-concept__list {
    list-style: none;
    margin-bottom: 32px;
}

.top-concept__item {
    font-size: 16px;
    line-height: 1.8;
    padding: 12px 0;
    color: var(--color-text);
    position: relative;
    padding-left: 24px;
}

.top-concept__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.top-concept__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.top-concept__img {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

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

@media screen and (max-width: 768px) {
    .top-concept__inner {
        flex-direction: column;
        gap: 32px;
    }

    .top-concept__img {
        width: 100%;
        height: 250px;
    }
}

@media screen and (max-width: 600px) {
    .top-concept__title {
        font-size: 24px;
    }

    .top-concept__lead {
        font-size: 16px;
    }

    .top-concept__item {
        font-size: 15px;
    }

    .top-concept__text {
        font-size: 15px;
    }
}

/* ========================================
   他サロンとの違い
   ======================================== */
.top-difference__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.top-difference__img {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

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

.top-difference__content {
    flex: 1;
    text-align: left;
}

.top-difference__subtitle {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.top-difference__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-text);
}

@media screen and (max-width: 768px) {
    .top-difference__inner {
        flex-direction: column;
        gap: 32px;
    }

    .top-difference__img {
        width: 100%;
        height: 250px;
    }

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

@media screen and (max-width: 600px) {
    .top-difference__subtitle {
        font-size: 24px;
    }

    .top-difference__text {
        font-size: 15px;
    }
}

/* ========================================
   施術事例
   ======================================== */
.top-gallery__list {
    margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
    .top-gallery__list {
        margin-bottom: 30px;
    }
}

.top-gallery__item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.top-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.top-gallery__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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


@media screen and (max-width: 600px) {


    .top-gallery__item:nth-child(n+5) {
        display: none;
    }

    .top-gallery__btn {
        text-align: left;
    }
}

/* ========================================
   画像スライダー（Splide）
   ======================================== */
.top-slider {
    padding: 120px 0;
    padding-bottom: 80px;
    overflow: hidden;
    width: 100%;
    padding-top: 40px;
}

@media screen and (max-width: 480px) {
    .top-slider {
        padding: 0;
        padding-top: 0px;
    }
}

.top-slider .splide {
    width: 100%;
}

.top-slider .splide__track {
    width: 100%;
}

.top-slider .splide__list {
    width: 100%;
}

.splide__slide {
    overflow: hidden;
    border-radius: 8px;
}

.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* ========================================
   メニュー紹介
   ======================================== */
.top-menu {
    background: transparent;
}

.top-menu__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .top-menu__content {
        text-align: left;
    }
}

.top-menu__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 64px;
    color: var(--color-text);
}

.top-menu__categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.top-menu__category {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(196, 168, 130, 0.15);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.top-menu__category:hover {
    box-shadow: 0 6px 24px rgba(196, 168, 130, 0.2);
}

.top-menu__category-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.top-menu__category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-menu__category:hover .top-menu__category-img img {
    transform: scale(1.04);
}

.top-menu__category-content {
    padding: 32px 24px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .top-menu__category-content {
        text-align: left;
    }
}

.top-menu__category-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.top-menu__category-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.top-menu__category-description {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
}

.top-menu__category-link {
    display: block;
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 500;
    text-decoration: none;
    margin-top: 16px;
    text-align: right;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease;
}

.top-menu__category-link::after {
    content: '→';
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.top-menu__category:hover .top-menu__category-link::after {
    transform: translateX(4px);
}

.top-menu__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.top-menu__item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.top-menu__btn {
    margin-top: 24px;
}

@media screen and (max-width: 768px) {
    .top-menu__categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 64px;
    }

    .top-menu__category-content {
        padding: 24px 16px;
    }

    .top-menu__category-title {
        font-size: 20px;
    }

    .top-menu__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media screen and (max-width: 600px) {
    .top-menu__text {
        font-size: 15px;
        margin-bottom: 48px;
    }

    .top-menu__categories {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .top-menu__category-content {
        padding: 24px 20px;
    }

    .top-menu__category-title {
        font-size: 20px;
    }

    .top-menu__category-text {
        font-size: 13px;
    }

    .top-menu__category-link {
        font-size: 13px;
        margin-top: 12px;
    }

    .top-menu__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* ========================================
   スタッフの挨拶
   ======================================== */
.top-greeting {
    padding: 180px 0;
    position: relative;
}

@media screen and (max-width: 600px) {
    .top-greeting {
        padding: 120px 0;
        padding-bottom: 160px;
    }
}

.top-greeting__img {
    position: absolute;
}

.top-greeting__img--left {
    width: 22vw;
    top: 50px;
    left: 5vw;
}

@media screen and (max-width: 600px) {
    .top-greeting__img--left {
        width: 28vw;
        top: 20px;
        left: initial;
        right: 5vw;
    }
}

.top-greeting__img--center {
    width: 12vw;
    bottom: 10%;
    left: 7vw;
}

@media screen and (max-width: 600px) {
    .top-greeting__img--center {
        width: 22vw;
        left: 5vw;
    }
}

.top-greeting__img--right {
    width: 16vw;
    top: 50%;
    right: 5vw;
}

@media screen and (max-width: 600px) {
    .top-greeting__img--right {
        width: 30vw;
        top: initial;
        bottom: 30px;
        right: 3vw;
    }
}

.top-greeting__img img {
    border-radius: 10px;
}


.top-greeting__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}


@media screen and (max-width: 600px) {
    .top-greeting__content {
        padding: 0px 0;
    }
}

.top-greeting__content h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .top-greeting__content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.top-greeting__text {
    font-size: 16px;
    line-height: 2.2;
    color: var(--color-text);
}

@media screen and (max-width: 600px) {
    .top-greeting__text {
        font-size: 14px;
    }
}

/* ========================================
   スタッフオススメ
   ======================================== */
.top-recommend__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.top-recommend__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

@media screen and (max-width: 600px) {
    .top-recommend__text {
        font-size: 15px;
    }
}

/* ========================================
   バナー（トップページ）
   ======================================== */
.top-banners {
    padding-bottom: 0;
	background:#FCFBF9;
}

.top-banners__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media screen and (max-width: 600px) {
    .top-banners__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.top-banners__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 7;
}

@media screen and (max-width: 600px) {
    .top-banners__item {
        aspect-ratio: 16 / 6;
    }
}

.top-banners__img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.top-banners__item:hover .top-banners__img {
    transform: scale(1.08);
}

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

.top-banners__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
}

.top-banners__item:hover .top-banners__img::after {
    background: rgba(0, 0, 0, 0.35);
}

.top-banners__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.top-banners__en {
    display: block;
    font-size: 14px;
    font-family: var(--font-family-en);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.9;
}

.top-banners__title {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 600px) {
    .top-banners__en {
        font-size: 12px;
    }

    .top-banners__title {
        font-size: 18px;
    }
}

/* ========================================
   お知らせ（トップページ）
   ======================================== */
.top-news {
    position: relative;
}

.top-news__inner {
    max-width: 800px;
    margin: 0 auto;
}

.top-news__ttl {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: var(--color-text);
    margin-bottom: 32px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .top-news__ttl {
        text-align: left;
    }
}

.top-news__ttl span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: var(--color-accent);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
@media screen and (max-width: 600px) {
.top-news__ttl span {
margin-bottom:0;
}
}

.top-news__btn {
    margin-top: 32px;
    text-align: center;
}

.top-news__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px dotted #ccc;
}

.top-news__item {
    border-bottom: 1px dotted #ccc;
}

.top-news__link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px 0;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    gap: 12px 20px;
    position: relative;
}

.top-news__link:hover {
    color: var(--color-primary);
}

.top-news__date {
    font-size: 14px;
    color: var(--color-text-light);
    flex-shrink: 0;
    width: auto;
    transition: color 0.3s ease;
}

.top-news__link:hover .top-news__date {
    color: var(--color-primary);
}

.top-news__category {
    font-size: 12px;
    padding: 3px 15px;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.top-news__title {
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
}

.top-news__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.top-news__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #333;
    border-right: 1.5px solid #333;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
}

.top-news__link:hover .top-news__arrow::after {
    transform: translate(4px, -50%) rotate(45deg);
    border-color: var(--color-primary);
}

@media screen and (max-width: 600px) {
    .top-news__link {
        padding: 16px 0;
        gap: 8px 16px;
    }

    .top-news__date {
        font-size: 13px;
    }

    .top-news__category {
        padding: 2px 12px;
        font-size: 11px;
    }

    .top-news__title {
        font-size: 15px;
        margin-top: 0;
    }
}

/* ========================================
   お問い合わせCTA
   ======================================== */
.top-contact {
    position: relative;
    background: #EFE9DF;
    /* 背景色を少し暗めに */
    border-top: 1px solid var(--color-border-light);
    overflow: hidden;
}

.top-contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.35;
    /* 画像をより鮮明に */
}

/* 擬似要素で暗めのフィルタを追加 */
.top-contact__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.top-contact__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 90%;
}

.top-contact .container {
    position: relative;
    z-index: 1;
}

.top-contact__content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}



.top-contact__text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 48px;
    color: var(--color-text);
}

.top-contact__methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.top-contact__method {
    padding: 40px 32px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(196, 168, 130, 0.1);
    box-shadow: 0 10px 30px rgba(196, 168, 130, 0.1);
}

.top-contact__method-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--color-text);
}

.top-contact__method-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.top-contact__method-btn {
    margin-top: 24px;
}

.top-contact__method-btn .button:not(.button--line) {
    background: var(--color-primary);
    /* プライマリーカラーに戻す */
    font-weight: 600;
}

.top-contact__method-btn .button:not(.button--line):hover {
    background: var(--color-accent-hover);
    opacity: 1;
}

.button--line {
    background: #06C755 !important;
    color: #fff !important;
}

.button--line:hover {
    background: #05B04A !important;
    opacity: 1;
}

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

    .top-contact__method {
        padding: 32px 20px;
        /* モバイルではパディングを少し絞る */
    }
}

/* ========================================
   ボタン
   ======================================== */
.button {
    display: inline-block;
    padding: 12px 32px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.button:hover {
    background: var(--color-accent-hover);
    opacity: 1;
}

@media screen and (max-width: 600px) {
    .button {
        font-size: 14px;
        padding: 10px 24px;
    }
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: #fff;
    color: var(--color-text);
    padding: 100px 0 40px;
    border-top: 1px solid #eee;
}

.footer__inner {
    width: 100%;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.footer__shop {
    flex: 1;
}

.footer__logo {
    margin-bottom: 30px;
}

.footer__logo a {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-family-en);
    transition: all 0.3s ease;
}

.footer__logo a:hover {
    opacity: 0.7;
}

.footer__info {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.footer__address {
    margin-bottom: 20px;
}

.footer__nav {
    flex-shrink: 0;
}

.footer__nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    list-style: none;
}

.footer__nav-item a {
    color: var(--color-text);
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.footer__nav-item a:hover {
    color: var(--color-accent);
}

.footer__copyright {
    text-align: center;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.05em;
    padding-top: 40px;
    border-top: 1px solid #f5f5f5;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 50px;
        text-align: center;
    }

    .footer__shop {
        width: 100%;
    }

    .footer__logo {
        margin-bottom: 20px;
    }

    .footer__logo a {
        font-size: 22px;
    }

    .footer__info {
        font-size: 13px;
    }

    .footer__address {
        margin-bottom: 15px;
    }

    .footer__nav {
        width: 70%;
        max-width: 400px;
        /* 広がりすぎ防止 */
        margin: 0 auto;
    }

    .footer__nav-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3列に固定して整理 */
        gap: 20px 10px;
    }

    .footer__nav-item a {
        font-size: 12px;
        display: block;
        padding: 5px 0;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 50px 0 25px;
    }

    .footer__content {
        gap: 35px;
    }

    .footer__nav-list {
        grid-template-columns: repeat(1, 1fr);
        /* 非常に狭い場合は2列 */
        gap: 15px 10px;
    }

    .footer__copyright {
        font-size: 10px;
        padding-top: 30px;
    }
}

/* ========================================
   ページビジュアル（下層ページ共通）
   ======================================== */
.page-mv {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-top: 60px;
}

.page-mv__img {
    width: 100%;
    height: 100%;
}

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

.page-mv__content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    z-index: 2;
}

.page-mv__title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.page-mv__title span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-family-en);
}

@media screen and (max-width: 600px) {
    .page-mv {
        height: 200px;
    }

    .page-mv__title {
        font-size: 32px;
    }

    .page-mv__title span {
        font-size: 12px;
        margin-bottom: 6px;
    }
}

/* ========================================
   料金ページ
   ======================================== */
/* タブナビゲーション */
.price-tabs {
    padding-top: var(--spacing-lg);
}

.price-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.price-tabs__button {
    padding: 12px 32px;
    background: #fff;
    border: 2px solid var(--color-accent);
    border-radius: 30px;
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.price-tabs__button:hover {
    background: rgba(196, 168, 130, 0.1);
}

.price-tabs__button.is-active {
    background: linear-gradient(135deg, var(--color-accent) 0%, #D4B99A 100%);
    color: #fff;
    border-color: var(--color-accent);
}

.price-tabs__content {
    display: none !important;
}

.price-tabs__content.is-active {
    display: block !important;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-tabs__content-title {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin: 0 auto 40px;
    max-width: 1000px;
    color: var(--color-text);
    letter-spacing: 0.03em;
}

.price-tabs__content-title span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-family-en);
}

.price-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.price-item {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.price-item--featured {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

.price-item--premium {
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
}

.price-item__badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #D4B99A 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 20px;
    flex-shrink: 0;
}

.price-item__badge--popular {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8FB3 100%);
}

.price-item__badge--premium {
    background: linear-gradient(135deg, #C9A961 0%, #E8D5C4 100%);
}

.price-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.price-item__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 700;
    color: var(--color-accent);
}

.price-item__price-number {
    font-size: 48px;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-accent) 0%, #D4B99A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.price-item__price-unit {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text-light);
}

.price-item__gallery {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.price-item__gallery-item {
    flex: 1;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.price-item__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.price-item__content {
    margin-top: 0;
}

.price-item__text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

/* オプションリスト */
.price-option-list {
    max-width: 1000px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.price-option-item {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

.price-option-item:first-child {
    border-top: 1px solid var(--color-border-light);
}

.price-option-item:last-child {
    border-bottom: 1px solid var(--color-border-light);
}

.price-option-item__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-option-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-option-name {
    flex: 1;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.price-option-price {
    font-weight: 700;
    color: var(--color-accent);
    margin-left: 24px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.price-option-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
    letter-spacing: 0.02em;
}

/* 割引特典セクション */
.price-discount__content {
    max-width: 1000px;
    margin: 0 auto;
}

.price-discount__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 80px 60px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.price-discount__card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-accent);
    opacity: 0.3;
    pointer-events: none;
}

.price-discount__badge {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-family-en);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    font-weight: 700;
}

.price-discount__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.price-discount__info {
    flex: 1;
    text-align: left;
}

.price-discount__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.price-discount__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0;
}

.price-discount__benefit {
    flex-shrink: 0;
    text-align: center;
    padding-left: 60px;
    border-left: 1px solid #eee;
}

.price-discount__benefit-label {
    display: block;
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.price-discount__benefit-value {
    font-size: 80px;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    font-family: var(--font-family-en);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-discount__benefit-value small {
    font-size: 24px;
    font-weight: 700;
    margin-left: 5px;
}

/* オフサービスセクション */
.price-off__content {
    max-width: 1000px;
    margin: 0 auto;
}

.price-off__box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 80px 60px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    max-width: 900px;
    margin: 0 auto;
}

.price-off__box::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-accent);
    opacity: 0.3;
    pointer-events: none;
}

.price-off__badge {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-family-en);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    font-weight: 700;
}

.price-off__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.price-off__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f5f5f5;
}

.price-off__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.price-off__info {
    flex: 1;
    text-align: left;
}

.price-off__item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-off__item-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.price-off__item-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

.price-off__status {
    flex-shrink: 0;
    text-align: right;
    min-width: 140px;
}

.price-off__status-label {
    display: block;
    font-size: 11px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.price-off__status-value {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    font-family: var(--font-family-en);
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
}

.price-off__status-value small {
    font-size: 14px;
    font-weight: 500;
    margin: 0 2px;
}

@media screen and (max-width: 768px) {
    .price-tabs__nav {
        gap: 6px;
        margin-bottom: 32px;
    }

    .price-tabs__button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .price-tabs__content-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .price-tabs__content-title span {
        font-size: 13px;
    }

    .price-list {
        gap: 24px;
    }

    .price-item {
        border-radius: 16px;
        padding: 32px 24px;
    }

    .price-item__gallery {
        gap: 10px;
        margin-bottom: 20px;
    }

    .price-item__gallery-item {
        border-radius: 10px;
    }

    .price-item__price-number {
        font-size: 40px;
    }

    .price-item__price-unit {
        font-size: 20px;
    }

    .price-item__text {
        font-size: 15px;
        line-height: 1.8;
    }

    .price-discount__card {
        padding: 60px 25px 40px;
        border-radius: 4px;
    }

    .price-discount__card::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .price-discount__badge {
        top: 30px;
        font-size: 11px;
    }

    .price-discount__inner {
        flex-direction: column;
        gap: 30px;
    }

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

    .price-discount__title {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .price-discount__text {
        font-size: 14px;
        line-height: 1.7;
    }

    .price-discount__benefit {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 30px;
        width: 100%;
    }

    .price-discount__benefit-value {
        font-size: 64px;
    }

    .price-discount__benefit-value small {
        font-size: 20px;
    }

    .price-off__box {
        padding: 60px 25px 40px;
        border-radius: 4px;
    }

    .price-off__box::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .price-off__badge {
        top: 30px;
        font-size: 11px;
    }

    .price-off__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 30px;
    }

    .price-off__info {
        text-align: left;
        width: 100%;
    }

    .price-off__item-title {
        font-size: 17px;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .price-off__item-text {
        font-size: 13px;
    }

    .price-off__status {
        text-align: left;
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 15px;
        border-top: 1px dashed #eee;
    }

    .price-off__status-label {
        margin-bottom: 0;
        font-size: 11px;
    }

    .price-off__status-value {
        font-size: 26px;
    }

    .price-off__status-value small {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .price-tabs {
        padding-top: 0;
    }
}

/* ========================================
   メニューページ サービス案内
   ======================================== */
.menu-service__inner {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(196, 168, 130, 0.1);
    position: relative;
    border: 1px solid rgba(196, 168, 130, 0.2);
}

.menu-service__inner::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(196, 168, 130, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.menu-service__list {
    display: grid;
    gap: 40px;
}

.menu-service__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.menu-service__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    border-radius: 50%;
    position: relative;
    margin-top: 4px;
}

.menu-service__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.menu-service__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

@media screen and (max-width: 768px) {
    .menu-service__inner {
        padding: 40px 30px;
    }

    .menu-service__list {
        gap: 30px;
    }

    .menu-service__text {
        font-size: 15px;
    }
}

@media screen and (max-width: 600px) {
    .menu-service__inner {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .menu-service__inner::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .menu-service__item {
        gap: 15px;
    }

    .menu-service__icon {
        width: 20px;
        height: 20px;
    }

    .menu-service__icon::after {
        width: 5px;
        height: 8px;
    }

    .menu-service__text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ========================================
   メニューページ おすすめメニュー
   ======================================== */
.menu-recommend__content {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-recommend__item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: stretch;
    position: relative;
    border: 1px solid #f0f0f0;
}

.menu-recommend__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent);
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 2;
}

.menu-recommend__img {
    flex-shrink: 0;
    width: 45%;
    overflow: hidden;
}

.menu-recommend__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.menu-recommend__info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-recommend__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.menu-recommend__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.5;
}

.menu-recommend__description {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
    margin: 0;
}

@media screen and (max-width: 900px) {
    .menu-recommend__info {
        padding: 40px;
    }

    .menu-recommend__title {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .menu-recommend__item {
        flex-direction: column;
    }

    .menu-recommend__img {
        width: 100%;
        height: 250px;
    }

    .menu-recommend__info {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 600px) {
    .menu-recommend__img {
        height: 200px;
    }

    .menu-recommend__info {
        padding: 30px 20px;
    }

    .menu-recommend__title {
        font-size: 18px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .menu-recommend__description {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media screen and (max-width: 600px) {
    .price-tabs__nav {
        gap: 4px;
        margin-bottom: 24px;
    }

    .price-tabs__button {
        padding: 8px 16px;
        font-size: 13px;
        border-width: 1.5px;
    }

    .price-tabs__content-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .price-tabs__content-title span {
        font-size: 12px;
    }

    .price-list {
        gap: 20px;
    }

    .price-item {
        border-radius: 12px;
        padding: 28px 20px;
    }

    .price-item__badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .price-item__header {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px;
    }

    .price-item__gallery {
        gap: 8px;
        margin-bottom: 20px;
    }

    .price-item__gallery-item {
        border-radius: 8px;
    }

    .price-item__price-number {
        font-size: 36px;
    }

    .price-item__price-unit {
        font-size: 18px;
    }

    .price-item__text {
        font-size: 14px;
        line-height: 1.75;
    }

    .price-option-item {
        padding: 16px 20px;
        font-size: 15px;
    }

    .price-option-item__header {
        flex-wrap: wrap;
    }

    .price-option-price {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }

    .price-option-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .price-discount__card {
        padding: 50px 15px 30px;
        border-radius: 4px;
    }

    .price-discount__card::before {
        display: none;
        /* 狭い画面では内枠を消してスペースを確保 */
    }

    .price-discount__badge {
        top: 25px;
    }

    .price-discount__title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .price-discount__text {
        font-size: 13px;
        text-align: left;
    }

    .price-discount__benefit {
        padding-top: 25px;
    }

    .price-discount__benefit-value {
        font-size: 52px;
    }

    .price-off__box {
        padding: 50px 15px 30px;
        border-radius: 4px;
    }

    .price-off__box::before {
        display: none;
        /* 非常に狭い画面では内枠を消して文字スペースを確保 */
    }

    .price-off__badge {
        top: 25px;
    }

    .price-off__item {
        gap: 15px;
    }

    .price-off__item-title {
        font-size: 16px;
        gap: 8px;
    }

    .price-off__status-value {
        font-size: 22px;
    }

    .price-off__status-value small {
        font-size: 12px;
    }
}

@media screen and (max-width: 400px) {
    .price-tabs__button {
        font-size: 11px;
    }
}

/* ========================================
   店舗情報ページ
   ======================================== */
.shop-message.section {
    padding-top: var(--spacing-xl);
}

.shop-message__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.shop-message__text-wrapper {
    flex: 1;
    min-width: 0;
}

.shop-message__title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.03em;
    text-align: left;
    margin-bottom: 32px;
    color: var(--color-text);
}

.shop-message__title span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: var(--color-accent);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.shop-message__text {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
    color: var(--color-text);
    padding: 0;
    margin-bottom: 1em;

}

.shop-message__img {
    flex-shrink: 0;
    width: 45%;
    max-width: 500px;
}

.shop-message__img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/1;
    object-position: right;
}

@media screen and (max-width: 768px) {
    .shop-message.section {
        padding-top: var(--spacing-xl);
    }

    .shop-message__content {
        flex-direction: column;
        gap: 32px;
    }

    .shop-message__text-wrapper {
        order: 1;
    }

    .shop-message__img {
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    .shop-message__img img {
        aspect-ratio: 1 / .6;
    }

    .shop-message__title {
        text-align: center;
        margin-bottom: 24px;
    }

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

@media screen and (max-width: 600px) {
    .shop-message.section {
        padding-top: var(--spacing-lg);
    }

    .shop-message__title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: left;
    }

    .shop-message__title span {
        font-size: 14px;
    }

    .shop-message__text {
        font-size: 15px;
        text-align: left;
    }

}

@media screen and (max-width: 480px) {
    .shop-access {
        padding-top: 0;
    }
}

.shop-access__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.shop-access__img {
    width: 45%;
    flex-shrink: 0;
}

.shop-access__img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.shop-access__content {
    width: 55%;
    flex: 1;
}

.shop-access__text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 40px;
    text-align: left;
    color: var(--color-text);
    padding: 0;
}

.shop-info {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
}

.shop-info::before {
    display: none;
}

.shop-info__term {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 12px;
    margin-top: 28px;
    padding-left: 0;
    position: relative;
    letter-spacing: 0.05em;
}

.shop-info__term::before {
    display: none;
}

.shop-info__term:first-child {
    margin-top: 0;
}

.shop-info__desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
}

@media screen and (max-width: 768px) {
    .shop-access__inner {
        flex-direction: column;
        gap: 40px;
    }

    .shop-access__img {
        width: 100%;
    }

    .shop-access__img img {
        border-radius: 4px;
    }

    .shop-access__content {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .shop-access__inner {
        gap: 32px;
    }

    .shop-access__img img {
        border-radius: 4px;
    }

    .shop-access__text {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .shop-info__term {
        font-size: 15px;
        margin-top: 24px;
        margin-bottom: 10px;
    }

    .shop-info__desc {
        font-size: 15px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 600px) {
    .shop-photos__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.shop-map {
    padding-bottom: 80px;
    padding-top: 0;
}

.shop-map__content {
    max-width: 1000px;
    margin: 0 auto;
}

.shop-map__iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 4px;
}

@media screen and (max-width: 600px) {
    .shop-map__iframe {
        height: 300px;
        border-radius: 4px;
    }
}

/* ========================================
   お知らせページ
   ======================================== */
.news-category {
    max-width: 800px;
    margin: 0 auto 32px;
}

.news-category__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    justify-content: center;
}

.news-category__link {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.news-category__link:hover {
    border-color: var(--color-accent);
}

.news-category__link.is-active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.news-list {
    min-height: 50vh;
}

.news-list__items {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px dotted #ccc;
}

.news-item {
    border-bottom: 1px dotted #ccc;
}

.news-item__link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px 0;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    gap: 12px 20px;
    position: relative;
}

.news-item__link:hover {
    color: var(--color-primary);
}

.news-item__date {
    font-size: 14px;
    color: var(--color-text-light);
    flex-shrink: 0;
    width: auto;
    transition: color 0.3s ease;
}

.news-item__link:hover .news-item__date {
    color: var(--color-primary);
}

.news-item__category {
    font-size: 12px;
    padding: 3px 15px;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.news-item__title {
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    margin: 0;
}

.news-item__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.news-item__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #333;
    border-right: 1.5px solid #333;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
}

.news-item__link:hover .news-item__arrow::after {
    transform: translate(4px, -50%) rotate(45deg);
    border-color: var(--color-primary);
}

@media screen and (max-width: 600px) {
    .news-item__link {
        padding: 16px 0;
        gap: 8px 16px;
    }

    .news-item__date {
        font-size: 13px;
    }

    .news-item__category {
        padding: 2px 12px;
        font-size: 11px;
    }

    .news-item__title {
        font-size: 15px;
        margin-top: 0;
    }
}

/* ページネーション */
.news-pagination {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
}

.news-pagination__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-pagination__nav .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #fff;
}

.news-pagination__nav .page-numbers:hover {
    background: var(--color-bg-section);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.news-pagination__nav .page-numbers.current {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    font-weight: 700;
}

.news-pagination__nav .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

.news-pagination__nav .page-numbers.dots:hover {
    background: transparent;
    border: none;
    color: var(--color-text);
}

.news-pagination__nav .page-numbers.prev,
.news-pagination__nav .page-numbers.next {
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .news-pagination {
        margin: 60px auto 0;
    }

    .news-pagination__nav {
        gap: 4px;
        flex-wrap: wrap;
    }

    .news-pagination__nav .page-numbers {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }

    .news-pagination__nav .page-numbers.prev,
    .news-pagination__nav .page-numbers.next {
        font-size: 12px;
        padding: 0 10px;
    }
}

/* ========================================
   お知らせ詳細ページ
   ======================================== */
.news-detail {
    padding-bottom: 180px;
}

@media screen and (max-width: 600px) {
    .news-detail {
        padding-bottom: 100px;
    }
}

.news-detail__content {
    max-width: 800px;
    margin: 0 auto;
}

.news-detail__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news-detail__date {
    font-size: 14px;
    color: var(--color-text-light);
}

.news-detail__category {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: var(--color-accent);
    padding: 4px 8px;
    border-radius: 4px;
}

.news-detail__title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--color-text);
}

.news-detail__body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 48px;
}

.news-detail__body p {
    margin-bottom: 16px;
}

.news-detail__footer {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.news-detail__back {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    background: var(--color-accent);
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.news-detail__back:hover {
    background: var(--color-accent-hover);
    opacity: 1;
}

@media screen and (max-width: 600px) {
    .news-detail__title {
        font-size: 24px;
    }

    .news-detail__body {
        font-size: 15px;
    }

    .news-detail__back {
        font-size: 13px;
        padding: 10px 24px;
    }
}

/* ========================================
   よくある質問ページ
   ======================================== */
.faq-first__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-first__text {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
}

@media screen and (max-width: 600px) {
    .faq-first__text {
        font-size: 15px;
        text-align: left;
    }
}

.faq-list {
    padding-top: 40px;
}

.faq-list__items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
}

.faq-item__question {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.faq-item__answer {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

@media screen and (max-width: 600px) {
    .faq-item {
        padding: 24px;
        margin-bottom: 16px;
    }

    .faq-item__question {
        font-size: 16px;
    }

    .faq-item__answer {
        font-size: 15px;
    }
}

/* ========================================
   お問い合わせページ
   ======================================== */
.contact-form__content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form__text {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-text);
}

.form-list {
    margin-bottom: 32px;
}

.form-item {
    margin-bottom: 32px;
}

.form-item__label {
    margin-bottom: 8px;
}

.form-item__label label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: var(--color-text);
}

.form-item__input {
    width: 100%;
}

.form-item__input input[type="text"],
.form-item__input input[type="email"],
.form-item__input input[type="tel"],
.form-item__input select,
.form-item__input textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
    font-family: var(--font-family-base);
}

.form-item__input input[type="text"]:focus,
.form-item__input input[type="email"]:focus,
.form-item__input input[type="tel"]:focus,
.form-item__input select:focus,
.form-item__input textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-item__input select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-item__input textarea {
    resize: vertical;
    min-height: 120px;
}

.m-required::after {
    content: " *";
    color: #FF0000;
    margin-left: 4px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .button {
    max-width: 400px;
}

@media screen and (max-width: 600px) {
    .contact-form__text {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .form-item {
        margin-bottom: 24px;
    }

    .form-item__input input[type="text"],
    .form-item__input input[type="email"],
    .form-item__input input[type="tel"],
    .form-item__input select,
    .form-item__input textarea {
        font-size: 16px;
    }

    .form-submit {
        margin-top: 32px;
    }
}

/* ========================================
   ユーティリティクラス（u-プレフィックス）
   ======================================== */
/* 表示制御系 */
.u-pc-only {
    display: block !important;
}

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

@media screen and (max-width: 600px) {
    .u-pc-only {
        display: none !important;
    }

    .u-sp-only {
        display: block !important;
    }
}

/* ========================================
   トップに戻るボタン（メニューページのみ）
   ======================================== */
.page-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-top.is-visible {
    display: flex;
}

.page-top:hover {
    background: #D4B99A;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-top::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%) rotate(-45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media screen and (max-width: 600px) {
    .page-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .page-top::before {
        font-size: 20px;
    }
}

/* ========================================
   アニメーション（Scroll Reveal）
   ======================================== */
.js-fade-in {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.js-fade-in.is-visible {
    opacity: 1;
}

/* 遅延用クラス */
.u-delay-100 {
    transition-delay: 0.1s;
}

.u-delay-200 {
    transition-delay: 0.2s;
}

.u-delay-300 {
    transition-delay: 0.3s;
}

.u-delay-400 {
    transition-delay: 0.4s;
}

.u-delay-500 {
    transition-delay: 0.5s;
}