/* 基本設定 */
:root {
    --primary-color: #5d311b;
    --secondary-color: #8f94c7;
    --accent-color: #ffa36c;
    --text-color: #333333;
    --light-gray: #f5f5f7;
    --dark-gray: #666666;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
}

.section-title span {
    color: var(--accent-color);
    font-size: 1.2em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

section {
    padding: 20px 0;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: #2e3057;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: #ff8c50;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(61, 64, 112, 0.1);
}

/* =============================================== */
/* ヘッダー スタイル */
/* =============================================== */

header {
    position: sticky; /* スクロールに追従 */
    top: 0;
    z-index: 100;
    background-color: var(--white, #fff);
    box-shadow: var(--shadow, 0 2px 10px rgba(0,0,0,0.08));
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px; /* 左右の余白を少し広めに */
    max-width: var(--max-width, 1280px); /* 最大幅 */
    margin: 0 auto;
}

/* ロゴ */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* ロゴの高さを調整 */
    width: auto;
    display: block;
}

/* 右側の「ご予約・お問い合わせ」エリア */
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px; /* 電話番号とボタンの間の隙間 */
}

.header-phone {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--dark-gray, #555);
    text-align: right; /* 文字を右揃えに */
}

.header-phone span {
    line-height: 1.3;
}

.header-phone i {
    margin-right: 8px;
    font-size: 1.5em; /* アイコンを少し大きく */
    color: var(--primary-color, #FF5722);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.header-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50px;
}
/* ボタンの具体的な色などは既存の .btn-primary, .btn-secondary を流用 */


/* メインナビゲーションバー */
.main-nav {
    background-color: var(--primary-color, #2a2c52);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    max-width: var(--max-width, 1280px);
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.main-nav ul li a {
    display: block;
    padding: 12px 25px;
    color: var(--white, #fff);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.main-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- モバイル対応 --- */

/* モバイルメニューアイコン (ハンバーガー) */
.mobile-menu-icon {
    display: none; /* PCでは非表示 */
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color, #2a2c52);
}

/* モバイルメニュー本体 */
.mobile-menu {
    display: block; /* display:noneから変更 */
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態は画面の外 */
    width: 85%;
    max-width: 320px;
    height: 100%;
    background-color: var(--white, #fff);
    z-index: 1001; /* ヘッダーより手前 */
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease; /* スライドアニメーション */
    overflow-y: auto;
    padding: 60px 25px 25px;
    box-sizing: border-box;
}

.mobile-menu.active {
    right: 0; /* activeクラスが付いたら画面内に表示 */
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark-gray, #555);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}
.mobile-menu ul li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color, #333);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}
.mobile-menu .phone-link {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
.mobile-menu .phone-link a {
    color: var(--primary-color, #2a2c52);
    font-weight: 500;
    border-bottom: none;
}
.mobile-menu .phone-link i {
    margin-right: 8px;
}


/* 画面幅が992px以下になったらモバイル表示に切り替え */
@media screen and (max-width: 992px) {
    .header-contact, .main-nav {
        display: none; /* PC用のナビと右側エリアを非表示 */
    }
    .mobile-menu-icon {
        display: block; /* モバイル用のメニューアイコンを表示 */
    }
}
/* メインビジュアル */
.main-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("img/トップ画像.webp");
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("img/sejyutsudatsumou2.JPG");
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 600px;
}

.slide-content h2 {
    font-size: 48px;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}


/* =============================================== */
/* Web予約クーポンバナー スタイル */
/* =============================================== */

.coupon-banner-section {
    padding: 20px 0; /* セクションの上下の余白 */
    background-color: #f4f7f9; /* セクションの背景色（任意、白背景なら不要） */
}

/* containerはサイト共通のスタイルがあればそちらが適用されます */
.coupon-banner-section .container {
    max-width: 1000px; /* バナーの最大幅 */
    margin: 0 auto;
    padding: 0 20px;
}

.coupon-banner-link {
    display: block; /* aタグをブロック要素にして、影や変形を適用しやすくする */
    text-decoration: none; /* リンクの下線を消す */
    border-radius: 12px; /* 角を丸くする */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* 影を付けて立体感を出す */
    overflow: hidden; /* 画像が角丸からはみ出ないように */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* アニメーションの設定 */
	
    /* ↓↓↓ この2行を追加・修正！ ↓↓↓ */
    max-width: 600px;  /* ← バナーの最大幅を800pxに制限（この数字で大きさを調整できるよ！） */
    margin: 0 auto;    /* ← これでバナーが中央に配置されるよ */
}


.coupon-banner-link:hover {
    transform: translateY(-6px); /* ホバー時に少し浮き上がる */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* 影を少し濃くする */
}

.coupon-banner-link img {
    width: 100%; /* 親要素の幅いっぱいに表示 */
    height: auto; /* 画像の縦横比を維持 */
    display: block; /* 画像下の余分な隙間をなくす */
}


/* 3つの強み */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(143, 148, 199, 0.2);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-gray);
    font-size: 15px;
}

/* メニュー */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background-color: var(--white);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    box-shadow: var(--shadow);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.menu-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-card-header {
    margin-bottom: 15px;
}

.menu-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-price {
    margin-bottom: 10px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: 500;
}

.time {
    color: var(--dark-gray);
}

.price {
    color: var(--accent-color);
    font-weight: 700;
}

.price small {
    font-size: 12px;
    font-weight: normal;
}

.original {
    text-decoration: line-through;
    color: var(--dark-gray);
    margin-right: 10px;
}

.discount {
    color: #e74c3c;
}

.menu-description {
    color: var(--dark-gray);
    font-size: 14px;
}

.depilation-intro {
    margin-bottom: 30px;
    text-align: center;
}

.depilation-intro h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.depilation-intro p {
    max-width: 800px;
    margin: 0 auto;
}

.menu-note {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-gray);
    font-size: 14px;
}

.menu-note i {
    color: var(--accent-color);
    margin-right: 5px;
}

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

/* メニューカード内の写真のスタイル */
.menu-card-photo {
    width: 100%; /* カードの幅いっぱいに表示 */
    height: 180px; /* 写真の高さを固定 (お好みで調整してください) */
    object-fit: cover; /* 画像が指定した高さ/幅に合うように調整 (アスペクト比維持、はみ出しはトリミング) */
    border-radius: calc(var(--border-radius) - 5px); /* カードより少し小さい角丸 (任意) */
    /* またはカードと同じ角丸にする場合: border-radius: var(--border-radius); */
    margin-bottom: 20px; /* 写真とコースヘッダーの間の余白 */
    display: block; /* imgタグが持つ可能性のある下の余白を消す */
}

.menu-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex; /* ↓↓↓ 追加: カード内の要素を縦に並べ、高さを揃えやすくする */
    flex-direction: column; /* ↓↓↓ 追加 */
}

.menu-card-header {
    margin-bottom: 15px;
    /* flex-shrink: 0; */ /* 画像追加により不要、または調整 */
}

.menu-description {
    color: var(--dark-gray);
    font-size: 14px;
    margin-top: auto; /* ↓↓↓ 追加: 説明文をカードの下部に配置し、ボタン等がない場合に高さを揃えるのに役立つ */
    padding-top: 10px; /* ↓↓↓ 追加: ヘッダーとの間に少しスペース */
}


/* 店舗案内 (カルーセル付き新デザイン) */
.shops-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
}

.shop-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

/* --- ここからカルーセルのスタイル (修正・強化版) --- */
.shop-image-slider {
    position: relative;
    height: 220px; /* 画像エリアの高さ */
    overflow: hidden; /* このエリアからはみ出た画像を隠す */
    background-color: #f0f0f0; /* 画像読み込み中の背景色 */
}

/* スライドを横に並べるための「線路」役 */
.shop-image-slider .slider-track {
    display: flex; /* ← 最重要！スライドを横並びにする */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* 個々のスライド（電車でいう車両役） */
.shop-image-slider .slider-slide {
    width: 100%; /* 親要素(slider-trackではなく、slider)の幅に合わせる */
    height: 100%;
    flex-shrink: 0; /* スライドが勝手に縮まないようにするおまじない */
}

.shop-image-slider .slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像がコンテナいっぱいに表示されるように */
}

/* 左右の矢印ボタン */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none; /* 最初は操作不可に */
}

/* カードにマウスを乗せたら矢印ボタンを表示 */
.shop-card:hover .slider-btn {
    opacity: 1;
    pointer-events: auto; /* 操作可能に */
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

/* 下のドットナビゲーション */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot.active {
    background-color: white;
    transform: scale(1.2); /* アクティブなドットを少し大きく */
}
/* --- カルーセルのスタイルここまで --- */


/* 店舗情報テキストエリア (変更なし) */
.shop-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/* ... (以下の .shop-info 関連のスタイルは変更なし) ... */
一番のポイント

CSS

.shop-image-slider .slider-track {
    display: flex; /* ← これが超重要！ */
}
/* ご予約 */
.reservation-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reservation-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
}

.reservation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(143, 148, 199, 0.2);
    border-radius: 50%;
}

.reservation-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.reservation-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.reservation-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.store-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.store-phone {
    display: block;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.store-phone:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.store-phone strong {
    margin-right: 10px;
    color: var(--primary-color);
}

/* =============================================== */
/* よくある質問 スタイル */
/* =============================================== */

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* セクションの背景色 (任意) */
}

/* .container はサイト共通のスタイルがあればそちらが適用されます */
.faq-section .container {
    max-width: 900px; /* Q&Aエリアの最大幅 */
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 50px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* 質問間の隙間 */
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: margin 0.3s ease;
}

/* 開いた時に少しマージンを追加して区切りを分かりやすく（任意） */
.faq-item[open] {
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 50px 20px 25px; /* 右側にアイコン用のスペース確保 */
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative; /* アイコンの配置基準 */
    list-style: none; /* デフォルトの▶マーカーを消す */
}

/* デフォルトの▶マーカーを消す (Safari用) */
.faq-question::-webkit-details-marker {
    display: none;
}

/* カスタムの開閉アイコン (+/-) */
.faq-question::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--primary-color, #2a2c52);
    transition: transform 0.3s ease;
}

.faq-item[open] > .faq-question::after {
    content: '−'; /* Unicodeのマイナス記号 */
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0px 25px 25px 25px;
    color: #555;
    line-height: 1.8;
    border-top: 1px solid #e9ecef;
    margin: 0 25px;
    animation: fadeInAnswer 0.5s ease;
}

/* 答えがフェードインするアニメーション */
@keyframes fadeInAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================== */
/* よくある質問「もっとみる」ボタン スタイル */
/* =============================================== */

.faq-more-link {
    text-align: center; /* ボタンを中央揃えに */
    margin-top: 40px; /* 上のQ&Aリストとの間に余白を作る */
}

/* ボタンの共通スタイルがあればそれを使いつつ、なければこちらを参考に */
.faq-more-link .btn.btn-outline {
    display: inline-block;
    padding: 12px 50px; /* ボタンのサイズ */
    border: 2px solid var(--primary-color, #2a2c52); /* 枠線の色 */
    color: var(--primary-color, #2a2c52); /* 文字の色 */
    background-color: transparent; /* 背景は透明 */
    border-radius: 50px; /* 角を丸くして、やわらかい印象に */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

/* マウスを乗せたら色が変わるホバーエフェクト */
.faq-more-link .btn.btn-outline:hover {
    background-color: var(--primary-color, #2a2c52);
    color: var(--white, #fff);
    transform: translateY(-3px); /* 少し浮き上がる */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-section .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .faq-question {
        padding: 15px 45px 15px 20px;
        font-size: 1em;
    }
    .faq-question::after {
        right: 20px;
    }
    .faq-answer {
        padding: 0px 20px 20px 20px;
        margin: 0 20px;
    }
}

/* お客様の声 */
.testimonials{
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title::after {
    background-color: var(--white);
}



.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}


.testimonial-item {
    text-align: center;
    padding: 30px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
}


.testimonial-item.active {
    opacity: 1;
    position: relative;
}



.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    position: relative;
}



.quote {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
}



.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
}



.rating {
    margin-top: 15px;
}



.rating i {
    color: var(--accent-color);
    margin: 0 2px;
}

.testimonial-author {
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}


/* レスポンシブ対応 */
@media screen and (max-width: 992px) { /* タブレットなど */
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr); /* 2カラム */
    }
}

@media screen and (max-width: 768px) { /* スマートフォン */
    .testimonial-grid {
        grid-template-columns: 1fr; /* 1カラム (縦積み) */
        gap: 50px; /* カード間の縦の隙間を少し広げる */
    }
    .testimonial-card {
        flex-direction: column; /* アバターと吹き出しも縦積みに変更 */
        align-items: center; /* 中央揃え */
        text-align: center;
    }
    .testimonial-avatar-container {
        margin-bottom: -10px; /* アバターと吹き出しの重なりとしっぽの位置調整 */
        position: relative;
        z-index: 1; /* 吹き出しのしっぽより手前に */
    }
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    .testimonial-bubble {
        width: 100%; /* スマホでは吹き出しの幅を広げる */
        box-sizing: border-box;
    }
    /* スマホでアバターが上、吹き出しが下の場合の「しっぽ」 */
    .testimonial-bubble::before {
        top: -14px; /* しっぽを上に突き出す */
        left: 50%;
        transform: translateX(-50%) rotate(180deg); /* 上向きの三角形に */
        border-right: 15px solid #ffffff; /* 吹き出しの背景色と同じ */
        /* 上記だと三角形の向きが違うので、border-topを使う */
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #ffffff; /* 下向きのしっぽ（吹き出しが下） */
        /* もし吹き出しが下で、アバターが上なら、しっぽは上向き */
        /* border-top: 15px solid #ffffff; */
        /* border-bottom: none; */

        filter: drop-shadow(0px -2px 1px rgba(0,0,0,0.05)); /* しっぽに軽い影 */
    }
    .testimonial-author {
        text-align: center;
    }
}





/* 初めての方へ */
.first-time-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.first-time-text {
    flex: 1;
}

.first-time-text p {
    margin-bottom: 20px;
}

.first-time-text h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
}

.first-time-text h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.flow-list {
    margin: 20px 0 30px;
}

.flow-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.flow-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 25px;
    width: 2px;
    height: 15px;
    background-color: var(--primary-color);
}

.flow-step {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 15px;
}

.flow-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: auto;
}

.flow-desc {
    color: var(--dark-gray);
    font-size: 14px;
}

.first-time-image {
    flex: 1;
    max-width: 450px;
}

.first-time-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.first-time-cta {
    margin-top: 30px;
}

/* キャンペーン */
.campaign-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.campaign-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.campaign-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.campaign-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 15px 0;
    font-weight: 600;
}

.campaign-price {
    font-size: 24px;
    margin: 15px 0;
    font-weight: 700;
}

.campaign-price .original {
    text-decoration: line-through;
    color: var(--dark-gray);
    font-size: 20px;
}

.campaign-price .discount {
    color: #e74c3c;
}

.campaign-details {
    margin-bottom: 15px;
}

.campaign-note {
    font-size: 12px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* アクセス */
.access-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.access-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}


/* 求人情報セクション */
.recruitment-info {
    padding: 80px 0;
    background-color: #f9f9f9; /* セクションの背景色 (任意) */
}

/* .container はサイト共通のスタイルがあればそちらが適用されます */
/* 必要であれば個別に設定 */
.recruitment-info .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.recruitment-info .section-title {
    text-align: center;
    font-size: 2.2em; /* サイトの他のセクションタイトルと合わせる */
    margin-bottom: 60px;
    color: #333;
}

.recruitment-content {
    display: flex;
    align-items: center; /* 要素を垂直方向中央に配置 */
    gap: 40px; /* テキストと画像の間の隙間 */
}

.recruitment-text {
    flex: 1; /* 利用可能なスペースを分け合う (画像より少し広めでも良い) */
    /* order: 1; PCではテキストが左 */
}

.recruitment-text h3 {
    font-size: 1.8em;
    color: #007bff; /* テーマカラーなどに合わせて調整 */
    margin-bottom: 20px;
}

.recruitment-text p {
    font-size: 1.05em; /* 16px-17px相当 */
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.btn-recruit {
    display: inline-block;
    background-color: #007bff; /* プライマリボタンの色 (テーマカラー推奨) */
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px; /* 角丸ボタン */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.btn-recruit:hover {
    background-color: #0056b3; /* ホバー時の色を少し濃く */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.btn-recruit i {
    margin-left: 8px; /* アイコンとテキストの間隔 */
}

.recruitment-image {
    flex: 1; /* 利用可能なスペースを分け合う */
    text-align: center; /* 画像を中央に配置する場合 */
    /* order: 2; PCでは画像が右 */
}

.recruitment-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* 画像の角を少し丸くする */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* レスポンシブ対応 (スマートフォンなど) */
@media screen and (max-width: 768px) {
    .recruitment-info {
        padding: 60px 0;
    }
    .recruitment-info .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .recruitment-content {
        flex-direction: column; /* 縦積みに変更 */
        text-align: center; /* テキストとボタンを中央揃え */
    }
    .recruitment-text {
        order: 2; /* スマートフォンではテキストが下 (画像が上) */
        margin-top: 30px; /* 画像との間隔 */
    }
    .recruitment-image {
        order: 1; /* スマートフォンでは画像が上 */
        width: 90%; /* 画像の幅を少し調整 */
        max-width: 400px; /* 最大幅 */
        margin: 0 auto; /* 中央揃え */
    }
    .recruitment-text h3 {
        font-size: 1.6em;
    }
    .recruitment-text p {
        font-size: 1em;
    }
    .btn-recruit {
        padding: 12px 30px;
        font-size: 1em;
    }
}


/* 求人情報セクション */
.recruitment-info {
    padding: 80px 0;
    background-color: #f9f9f9; /* セクションの背景色 (任意) */
}

/* .container はサイト共通のスタイルがあればそちらが適用されます */
/* 必要であれば個別に設定 */
.recruitment-info .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.recruitment-info .section-title {
    text-align: center;
    font-size: 2.2em; /* サイトの他のセクションタイトルと合わせる */
    margin-bottom: 60px;
    color: #333;
}

.recruitment-content {
    display: flex;
    align-items: center; /* 要素を垂直方向中央に配置 */
    gap: 40px; /* テキストと画像の間の隙間 */
}

.recruitment-text {
    flex: 1; /* 利用可能なスペースを分け合う (画像より少し広めでも良い) */
    /* order: 1; PCではテキストが左 */
}

.recruitment-text h3 {
    font-size: 1.8em;
    color: #ff5f15; /* テーマカラーなどに合わせて調整 */
    margin-bottom: 20px;
}

.recruitment-text p {
    font-size: 1.05em; /* 16px-17px相当 */
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.btn-recruit {
    display: inline-block;
    background-color: #573115; /* プライマリボタンの色 (テーマカラー推奨) */
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px; /* 角丸ボタン */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.btn-recruit:hover {
    background-color: #0056b3; /* ホバー時の色を少し濃く */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.btn-recruit i {
    margin-left: 8px; /* アイコンとテキストの間隔 */
}

.recruitment-image {
    flex: 1; /* 利用可能なスペースを分け合う */
    text-align: center; /* 画像を中央に配置する場合 */
    /* order: 2; PCでは画像が右 */
}

.recruitment-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* 画像の角を少し丸くする */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* レスポンシブ対応 (スマートフォンなど) */
@media screen and (max-width: 768px) {
    .recruitment-info {
        padding: 60px 0;
    }
    .recruitment-info .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .recruitment-content {
        flex-direction: column; /* 縦積みに変更 */
        text-align: center; /* テキストとボタンを中央揃え */
    }
    .recruitment-text {
        order: 2; /* スマートフォンではテキストが下 (画像が上) */
        margin-top: 30px; /* 画像との間隔 */
    }
    .recruitment-image {
        order: 1; /* スマートフォンでは画像が上 */
        width: 90%; /* 画像の幅を少し調整 */
        max-width: 400px; /* 最大幅 */
        margin: 0 auto; /* 中央揃え */
    }
    .recruitment-text h3 {
        font-size: 1.6em;
    }
    .recruitment-text p {
        font-size: 1em;
    }
    .btn-recruit {
        padding: 12px 30px;
        font-size: 1em;
    }
}




/* フッター */
/* フッター */
footer {
    background-color: #6B3726;
    color: var(--white, #fff); /* CSS変数が無い場合のフォールバック */
}

.footer-top {
    padding: 60px 0 50px; /* 上下の余白を調整 */
}

/* containerはサイト共通のスタイルがあればそちらを優先 */
footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* フッターのメインコンテンツエリアをFlexboxに変更 */
.footer-info {
    display: flex;
    flex-wrap: wrap; /* スマホなどで折り返す */
    justify-content: space-between;
    gap: 30px; /* カラム間の隙間 */
}

/* 各カラムの基本設定 */
.footer-logo, .footer-nav, .footer-shops, .footer-contact {
    flex: 1; /* スペースを分け合う */
    min-width: 220px; /* 各カラムの最小幅 */
}

/* ロゴエリア */
.footer-logo {
    flex-grow: 1.2; /* ロゴエリアを少し広めに */
    min-width: 240px;
}
.footer-logo h3 {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}
.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* サイトマップ & 店舗情報エリア */
.footer-nav h4, .footer-shops h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-nav ul, .footer-shops ul {
    list-style: none;
    padding: 0;
}
.footer-nav ul li {
    margin-bottom: 12px;
}
.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav ul li a:hover {
    color: var(--white, #fff);
}
.footer-shop {
    margin-bottom: 20px;
}
.footer-shop h5 {
    font-size: 16px;
    margin-bottom: 8px;
}
.footer-shop p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 5px;
}
.footer-shop a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer-shop a:hover {
    color: var(--white, #fff);
}

/* ネット予約 & SNSエリア */
.footer-contact {
    display: flex;
    flex-direction: column; /* ボタンとSNSアイコンを縦に並べる */
    align-items: flex-start; /* 左寄せ */
    gap: 20px;
    min-width: 200px;
}
/* 削除: .footer-contact h4, .footer-contact-buttons は不要 */

/* 新しいフッターのCTAボタンスタイル */
.btn-footer-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color, ##cf5112); /* テーマカラー */
    color: var(--white, #fff);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-footer-cta:hover {
    background-color: var(--primary-color-dark, #E64A19);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer-social {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white, #fff);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: var(--accent-color, #E4405F); /* Instagramのブランドカラーなど */
    transform: translateY(-3px);
}

/* フッター下部 */
.footer-bottom {
    background-color: #562609;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* レスポンシブ対応 */
@media screen and (max-width: 992px) {
    .footer-info {
        /* タブレットではロゴとCTAを上段、マップと店舗を中段... のように調整 */
        grid-template-columns: 1fr 1fr; /* CSS Gridの指定はFlexboxに変更したため削除 */
    }
    .footer-logo, .footer-contact {
        flex-basis: calc(50% - 15px); /* 2列レイアウト */
    }
    .footer-nav, .footer-shops {
        flex-basis: calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .footer-info {
        flex-direction: column; /* スマホでは縦積みに */
        align-items: flex-start; /* 左寄せ */
        text-align: left;
    }
    .footer-logo, .footer-nav, .footer-shops, .footer-contact {
        flex-basis: 100%; /* 幅を100%に */
        min-width: unset;
        align-items: flex-start;
        text-align: left;
    }
    .footer-contact {
        align-items: stretch; /* ボタンの幅を100%に */
    }
}
/* 固定予約ボタン（モバイル用） */
.fixed-reservation {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.btn-fixed {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-fixed:hover {
    background-color: #2e3057;
    transform: translateY(-2px);
}

.btn-fixed i {
    margin-right: 5px;
}

/* レスポンシブ調整 */
@media screen and (max-width: 1024px) {
    .main-nav ul li a {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .slide-content h2 {
        font-size: 40px;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .first-time-content {
        flex-direction: column-reverse;
    }
    
    .first-time-image {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .header-contact {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-visual {
        height: 450px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .reservation-types {
        grid-template-columns: 1fr;
    }
    
    .shop-buttons {
        flex-direction: column;
    }
    
    .fixed-reservation {
        display: block;
    }
    
    .shops-container {
        grid-template-columns: 1fr;
    }
    
    .campaign-cards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .menu-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-card {
        padding: 20px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}