/* ==========================================================================
   1. デザインの基本設定 & 高級カラーシステム
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Noto+Serif+JP:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');
:root {
    --bg-light-beige: #f6f4f0;
    --bg-white: #ffffff;
    --khaki-dark: #584c2d;
    --khaki-light: #73643d;
    --gold-line: #c5b48e;
    --text-dark: #33302a;
    --text-muted: #787366;
    --font-serif-en: 'Cinzel', serif;
    --font-serif-ja: 'Noto Serif JP', serif;
    --font-sans: 'Inter', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    /* scroll-behavior: smooth; */
}
body {
    background-color: var(--bg-light-beige);
    color: var(--text-dark);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.inline-block {
    display: inline-block;
}
/* ==========================================================================
   2. 左固定グローバルメニュー（PC用：通常レイアウト）
   ========================================================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    border-right: 1px solid rgba(197, 180, 142, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 24px;
    z-index: 100;
    transition: transform 0.3s ease;
    box-shadow: 5px 0 7px 0 rgba(100, 100, 100, .1);
}
.sidebar-logo-pc {
    text-align: center;
    border-bottom: 1px solid rgba(197, 180, 142, 0.3);
    padding-bottom: 20px;
}
.sidebar-logo-pc img {
    max-width: 140px;
}
.mobile-header, 
.sidebar-top-mobile {
    display: none;
}
.main-content {
    margin-left: 280px;
    width: calc(100% - 280px);
}
.nav-links {
    list-style: none;
    margin-top: 0px;
}
.nav-links li {
    margin: 13px 0;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 17px;
    font-family: var(--font-serif-ja);
    display: inline-block;
    padding: 6px 10px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}
.nav-links a:hover {
    color: #aa9055;
    transform: translateX(3px);
}
.nav-links a.active-page {
    color: #aa9055 !important;
}
.nav-links a.active-page::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 10px;
    width: calc(100% - 20px);
    height: 1px;
    background: linear-gradient(to right, rgba(170, 144, 85, 0) 0%, rgba(170, 144, 85, 1) 50%, rgba(170, 144, 85, 0) 100%);
}
/* ==========================================================================
   3. メニュー下部：公式LINE ＆ ダブルインスタ
   ========================================================================== */
.sidebar-bottom {
    border-top: 1px solid rgba(197, 180, 142, 0.2);
    padding-top: 25px;
}
.line-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.line-rect-btn {
    display: block;
    text-decoration: none;
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(88, 76, 45, 0.4);
    text-align: center;
    padding: 12px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.line-rect-btn:hover {
    background-color: var(--khaki-dark);
    color: #ffffff;
    border-color: var(--khaki-dark);
}
.sidebar-sns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 2px;
}
.sns-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--khaki-dark);
    transition: all 0.3s ease;
    padding: 4px;
}
.sns-btn i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid rgba(197, 180, 142, 0.4);
    background-color: transparent;
    transition: all 0.3s ease;
}
.sns-btn span {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
}
.sns-btn:hover i {
    background-color: var(--bg-light-beige);
}
/* ==========================================================================
   4. 共通セクション ＆ 見出し
   ========================================================================== */
.section-padding {
    padding: 100px 8%;
}
.white-bg {
    background-color: var(--bg-white);
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.main-title {
    font-family: var(--font-serif-ja);
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 24px 0;
    position: relative;
}
.main-title::before, 
.main-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, rgba(197,180,142,0) 0%, rgba(197,180,142,1) 50%, rgba(197,180,142,0) 100%);
}
.main-title::before {
    top: 0;
}
.main-title::after {
    bottom: 0;
}
.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}
/* ==========================================================================
   5. メインビジュアル・選ばれる理由
   ========================================================================== */
.hero-section {
    width: 100%;
    height: 80vh;
    position: relative;
}
.hero-slider, 
.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}
/* 画像の下部を下の白いエリア（キャンペーンバナー背景）に完全になじませる */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 5;
}

/* 画像のすぐ下のエリアを確実に白にして、グラデーションと一体化させる */
.campaign-invite-section {
    background-color: #ffffff !important; 
    position: relative;
    z-index: 10;
}

/* .hero-text 全体のコンテナ設定 */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 680px; 
    background-color: rgba(0, 0, 0, 0.25); 
    border: none;
    box-shadow: 0 0 90px 70px rgba(0, 0, 0, 0.25);   
    z-index: 10;
}

.hero-text h1 {
    max-width: 100%;
    margin-bottom: 50px;
}
.hero-text h1 img {
    max-width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
}
/* サブタイトル */
.hero-text p {
    font-size: 16px; 
    font-family: var(--font-serif-ja); 
    letter-spacing: 2px; 
    color: #f6f4f0; 
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7); 
}

@media (max-width: 600px) {
    .hero-text {
        width: 90%;
        padding: 30px 20px;
        /* border-radius: 80px; */
        box-shadow: 0 0 60px 45px rgba(0, 0, 0, 0.25); 
    }
    .hero-text h1 {
        font-size: 36px; 
        letter-spacing: 6px;
    }
    .hero-text h1 img {
    max-width: 65%;
    }
    .hero-text p {
        font-size: 13.5px;
        letter-spacing: 1px;
        line-height: 1.6;
    }
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.reason-card {
    background: var(--bg-white);
    padding: 45px 25px;
    box-shadow: 10px 10px 0px 0px rgba(220, 210, 186, 0.25);
    border: 1px solid rgba(197, 180, 142, 0.52);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-family: var(--font-serif-ja);
}
.reason-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}
.reason-num-box {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.reason-num {
    font-family: var(--font-serif-en);
    font-size: 20px;
    color: var(--gold-line);
    font-weight: 400;
    line-height: 1;
}
.reason-divider {
    display: none;
}
.reason-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}
.reason-line {
    width: 30px;
    height: 1px;
    background-color: var(--gold-line);
    margin-bottom: 25px;
}
.reason-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}
/* ==========================================================================
   6. Before / After スライダー・カード
   ========================================================================== */
.ba-section-sub-title {
    display: block;
    text-align: center;
    font-family: var(--font-serif-en);
    font-size: 13px;
    color: var(--gold-line);
    letter-spacing: 4px;
    margin-bottom: 6px;
    font-weight: 500;
}
.ba-card-wrapper {
    cursor: pointer;
    background: var(--bg-white);
    padding: 15px;
    box-shadow: 0 15px 40px rgba(88, 76, 45, 0.03);
    border: 1px solid rgba(197, 180, 142, 0.6);
    display: flex;
    flex-direction: column;
    width: 100%;
}
.ba-card {
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.ba-card-wrapper:hover .ba-card img {
    transform: scale(1.04);
}
.ba-info {
    border-top: 1px solid rgba(197, 180, 142, 0.15);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.ba-info strong {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 400;
}
.ba-info span {
    font-family: var(--font-serif-ja);
    font-size: 13.5px;
    color: var(--gold-line);
}
.center-btn {
    text-align: center;
    margin-top: 50px;
}
.gold-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--bg-white);
    background-color: var(--khaki-dark);
    padding: 15px 40px;
    font-size: 13px;
    transition: background-color 0.3s;
}
.gold-btn:hover {
    background-color: var(--khaki-light);
}

.custom-slider-section {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.ba-only-controls {
    margin-top: 25px !important;
}

/* ==========================================================================
   料金専用ページ用：メニュー料金表
   ========================================================================== */
.price-category-block {
    margin-bottom: 80px;
    width: 100%;
}
.white-bg-padded {
    background-color: var(--bg-white);
    padding: 60px 40px;
    border: 1px solid rgba(197, 180, 142, 0.15);
}
.price-table-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-serif-ja);
}
.price-sub-heading {
    font-size: 16px;
    color: var(--khaki-dark);
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-left: 3px solid var(--gold-line);
    padding-left: 10px;
    font-weight: 500;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 18px 5px;
    border-bottom: 1px solid rgba(197, 180, 142, 0.15);
}
.price-row:last-child {
    border-bottom: none;
}
.price-item-name {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 75%;
}
.price-item-cost {
    font-size: 16px;
    color: #aa9055;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
/* ==========================================================================
   7. よくある質問
   ========================================================================== */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}
.faq-tab-btn {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(88, 76, 45, 0.3);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-serif-ja);
    transition: all 0.3s ease;
}
.faq-tab-btn:hover,
.faq-tab-btn.active {
    background-color: var(--khaki-dark);
    color: var(--bg-white);
    border-color: var(--khaki-dark);
}
.faq-tab-content {
    display: none;
}
.faq-tab-content.active {
    display: block;
    animation: faqFadeIn 0.4s ease;
}
@media (max-width: 850px) {
    .faq-tabs {
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
    }
    .faq-tab-btn {
        width: 100%;
        padding: 10px;
    }
}
@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.accordion-container {
    max-width: 850px;
    margin: 0 auto;
}
.accordion-item {
    background: var(--bg-white);
    margin-bottom: 7px;
    border: 1px solid rgba(197, 180, 142, 0.15);
    overflow: hidden;
}
.accordion-header {
    padding: 22px 28px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    font-weight: 500;
    font-family: var(--font-serif-ja);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #faf9f6;
}
.accordion-content p {
    padding: 22px 28px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    font-family: var(--font-serif-ja);
}
.accordion-item.active .accordion-content {
    max-height: 300px;
    border-top: 1px solid rgba(197, 180, 142, 0.1);
}
/* ==========================================================================
   8. お問い合わせ＆アクセス独立セクション
   ========================================================================== */
.contact-section-bg {
    background-color: var(--bg-white);
    border-top: 1px solid rgba(197, 180, 142, 0.15);
}
.contact-buttons-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.price-2col-buttons {
    flex-direction: row !important;
    justify-content: center;
    gap: 20px !important;
    width: 100%;
}
.contact-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 280px;
}
.contact-buttons .p-btn-line-reserve {
    background-color: var(--khaki-dark);
    color: #ffffff;
    border: 1px solid var(--khaki-dark);
}
.contact-buttons .p-btn-line-reserve:hover {
    background-color: var(--khaki-light);
    border-color: var(--khaki-light);
}
.contact-buttons .p-btn-line-inquiry {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(88, 76, 45, 0.4);
}
.contact-buttons .p-btn-line-inquiry:hover {
    background-color: var(--gold-line);
    border-color: var(--gold-line);
    color: #fff;
}
.tel-text {
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
    color: var(--khaki-dark);
    letter-spacing: 0.5px;
}
.tel-text a {
    color: var(--khaki-dark) !important;
    text-decoration: none !important;
    font-weight: bold !important;
    pointer-events: auto;
}
.footer-bg {
    background-color: var(--khaki-dark);
    color: var(--bg-white);
    padding: 80px 8% 40px;
}
.access-content-layout {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.access-info {
    text-align: center;
}
.access-info p {
    font-size: 15px;
    margin-bottom: 8px;
    opacity: 0.9;
    font-family: var(--font-serif-ja);
}
.access-map {
    width: 100%;
}
.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.15);
}
.copyright {
    text-align: center;
    font-size: 11px;
    margin-top: 60px;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
/* ==========================================================================
   フッター アクセス情報の表デザイン ＆ SNSボタン
   ========================================================================== */
.access-table {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px auto;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-serif-ja);
    font-size: 15px;
}
.access-table th {
    width: 25%;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 400;
    vertical-align: top;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}
.access-table td {
    width: 75%;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.footer-sns-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}
.footer-sns-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: transparent;
    color: var(--bg-white);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 20px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
}
.footer-sns-btn:hover {
    background-color: var(--bg-white);
    color: var(--khaki-dark);
}
.footer-sns-btn i {
    font-size: 20px;
}
.footer-sns-btn span {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
}
/* ==========================================================================
   9. ポップアップ画像拡大（モーダル制御）
   ========================================================================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding: 40px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 40, 34, 0.9);
}
.modal-content-img {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 85vh;
    aspect-ratio: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
    }
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}
/* ==========================================================================
   10. レスポンシブ対応
   ========================================================================== */
@media (max-width: 1199px) {
    .main-content {
        margin-left: 0;
        width: 100%;
        padding-top: 70px;
    }
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: var(--bg-white);
        padding: 0 24px;
        border-bottom: 1px solid rgba(197, 180, 142, 0.2);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
        z-index: 90;
    }
    .mobile-header-logo img {
        height: 36px;
        display: block;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 16px;
        cursor: pointer;
    }
    .hamburger span {
        width: 100%;
        height: 2px;
        background-color: var(--text-dark);
        transition: 0.3s ease;
    }
    .sidebar-logo-pc {
        display: none;
    }
    .sidebar-top-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(197, 180, 142, 0.2);
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
    .mobile-menu-logo img {
        height: 32px;
    }
    .menu-close-btn {
        font-size: 32px;
        color: var(--text-dark);
        cursor: pointer;
        line-height: 1;
    }
    .sidebar {
        left: auto;
        right: 0;
        transform: translateX(100%);
        width: 300px;
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; 
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .reason-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .section-padding {
        padding: 80px 6%;
    }
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .white-bg-padded {
        padding: 40px 20px;
    }
    .map-placeholder {
        height: 260px;
    }
}
@media (max-width: 600px) {
    .hero-section {
        height: 55vh;
    }
    .section-padding {
        padding: 60px 4%;
    }
    .reason-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .reason-card {
        width: 100%;
        padding: 40px 24px;
    }
    .hero-text h1 {
        font-size: 30px;
        letter-spacing: 4px;
    }
    .main-title {
        font-size: 24px;
    }
    .price-item-name {
        font-size: 13px;
    }
    .price-item-cost {
        font-size: 14px;
    }
    .modal-content-img {
        max-width: 95%;
        max-height: 80vh;
    }
    .access-table {
        font-size: 14px;
    }
    .access-table th, .access-table td {
        padding: 12px 5px;
    }
    .footer-sns-btn {
        padding: 12px 15px;
    }
    .price-2col-buttons {
        flex-direction: column !important;
        align-items: center;
        gap: 14px !important;
    }
    .contact-buttons a {
        width: 100% !important;
        max-width: 300px;
    }
    .sidebar-sns {
        justify-content: center;
        gap: 0px;
    }
}
/* ==========================================================================
   13. オーナー紹介セクション
   ========================================================================== */
.owner-section-header {
    text-align: left;
    width: 100%;
    margin-bottom: 50px;
    font-family: var(--font-serif-ja);
}
.owner-header-title {
    font-size: 30px;
    color: var(--gold-line);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}
.owner-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}
.owner-image {
    width: 40%;
    max-width: 420px;
    flex-shrink: 0;
}
.owner-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 50px rgba(88, 76, 45, 0.05);
    border: 1px solid rgba(197, 180, 142, 0.15);
}
.owner-text-block {
    width: 60%;
    font-family: var(--font-serif-ja);
}
.owner-sub-title {
    font-family: var(--font-serif-en);
    font-size: 12px;
    color: var(--gold-line);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.owner-main-title {
    font-size: 24px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.owner-paragraph {
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.owner-paragraph:last-of-type {
    margin-bottom: 25px;
}
.owner-signature {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding-right: 10px;
}
.owner-job {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.owner-name {
    font-size: 20px;
    color: var(--text-dark);
    letter-spacing: 2px;
}
@media (max-width: 991px) {
    .owner-section-header {
        text-align: center;
    }
    .owner-header-title {
        font-size: 25px;
    }
    .owner-layout {
        flex-direction: column;
        gap: 40px;
    }
    .owner-image {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .owner-text-block {
        width: 100%;
    }
    .owner-main-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}
/* ==========================================================================
   14. 解説エリア ＆ チェックリスト装飾（ホバー色反転を解除）
   ========================================================================== */
.si-intro-box {
    max-width: 850px;
    margin: 0 auto 50px;
    font-family: var(--font-serif-ja);
}
.si-intro-lead {
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 25px;
}
.si-intro-notes {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--text-muted);
}
.si-check-section {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    font-family: var(--font-serif-ja);
}
.si-check-sub {
    font-family: var(--font-serif-en);
    font-size: 12px;
    color: var(--gold-line);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}
.si-check-title {
    font-family: var(--font-serif-ja); /* フォント統一用に追加 */
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}
.si-check-flex-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    text-align: left;
}
.si-check-main-image {
    width: 45%;
    flex-shrink: 0;
}
.si-check-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(197, 180, 142, 0.3);
    box-shadow: 0 15px 35px rgba(88, 76, 45, 0.03);
}
.si-check-list-container {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ================= チェックリスト（ホバー色反転なし） ================= */
.si-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-white);
    border: 1px solid rgba(197, 180, 142, 0.4);
    padding: 16px 24px;
    transition: all 0.3s ease;
}
/* .si-check-item:hover {
    border-color: var(--khaki-dark);
    transform: translateY(-2px);
} */
.si-check-num {
    font-family: var(--font-serif-en);
    font-size: 18px;
    color: var(--khaki-dark);
    font-weight: 500;
    width: 24px;
    display: inline-block;
}
.si-check-text {
    font-size: 14.5px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}
/* =============================================================== */

@media (max-width: 850px) {
    .si-check-flex-layout {
        flex-direction: column;
        gap: 35px;
    }
    .si-check-main-image {
        width: 100%;
        max-width: 400px;
    }
    .si-check-list-container {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .si-check-item {
        padding: 14px 18px;
        gap: 7px;
    }
    .si-check-text {
        font-size: 13.5px;
    }
}
/* ==========================================================================
   15. 汎用スライダー（横並びレスポンシブ）
   ========================================================================== */
.si-reasons-slider-section {
    max-width: 1100px;
    margin: 80px auto 40px;
    text-align: center;
    font-family: var(--font-serif-ja);
}
.si-slider-outer-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    padding: 0;
}
.si-slider-wrap-viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab; 
}
.si-slider-wrap-viewport:active {
    cursor: grabbing; 
}
.si-slider-track-container {
    display: flex;
    width: 100%;
    user-select: none; 
}

#siSliderTrack .si-slider-card-item {
    flex-shrink: 0;
    width: calc(100% / 3);
    padding: 0 12px;
    cursor: pointer;
}
#siSliderTrack .si-slider-card-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(197, 180, 142, 0.35);
    box-shadow: 0 10px 30px rgba(88, 76, 45, 0.02);
    transition: border-color 0.3s, transform 0.3s;
    pointer-events: none; 
}
#siSliderTrack .si-slider-card-item:hover img {
    border-color: var(--khaki-dark);
    transform: translateY(-4px);
}

.custom-slider-section .si-slider-card-item {
    flex-shrink: 0;
    width: calc(100% / 3);
    padding: 0 12px;
}

.si-slider-controls {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    width: 100%;
}
.si-slider-arrow {
    position: static;
    transform: none;
    background-color: var(--bg-white);
    color: var(--khaki-dark);
    border: 1px solid rgba(197, 180, 142, 0.4);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.si-slider-arrow:hover {
    background-color: var(--khaki-dark);
    color: var(--bg-white);
    border-color: var(--khaki-dark);
}

@media (max-width: 1199px) {
    #siSliderTrack .si-slider-card-item,
    .custom-slider-section .si-slider-card-item {
        width: calc(100% / 2);
    }
    .ba-grid {
        display: flex !important;
        width: 100%;
    }
}
@media (max-width: 600px) {
    #siSliderTrack .si-slider-card-item,
    .custom-slider-section .si-slider-card-item {
        width: 100%;
    }
}

.slider-dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    width: 100%;
}
.slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(88, 76, 45, 0.2); 
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background-color: var(--khaki-dark); 
    transform: scale(1.25);
}
/* ==========================================================================
   ISO 9001 認証取得 特設コンポーネント
   ========================================================================== */
.custom-iso-block {
    margin: 120px auto 40px auto;
    /* max-width: 950px; */
    border-top: 3px double rgba(197, 180, 142, 0.4);
    border-bottom: 3px double rgba(197, 180, 142, 0.4);
    padding: 50px;
    background-color: var(--bg-white);
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); */
}

.custom-iso-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.custom-iso-logo-side {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.custom-iso-logo-side img {
    max-width: 100%;
    height: auto;
    max-height: 245px;
    vertical-align: middle;
    object-fit: contain;
}

.custom-iso-text-side {
    flex: 2;
    min-width: 280px;
    font-family: var(--font-serif-ja);
}

.custom-iso-text-side h3 {
    font-size: 23px;
    color: var(--khaki-dark);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
}

.custom-iso-main-txt {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.custom-iso-sub-txt {
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .custom-iso-block {
        padding: 20px;
        margin: 40px auto 30px auto;
    }
    .custom-iso-flex {
        gap: 20px;
    }
    .custom-iso-text-side h3 {
        font-size: 19px;
    }
}

/* ==========================================================================
   THE SCALP INK 公式バナー（ロゴ左配置・横並び版）
   ========================================================================== */
.official-banner-container {
    max-width: 850px;
    margin: 115px auto 125px auto;
    padding: 0 20px;
}
.official-banner {
    display: block;
    background: linear-gradient(135deg, #000 0%, #000 100%);
    border: 1px solid var(--gold-line);
    text-decoration: none;
    padding: 30px 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.official-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}
.official-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: #d4c5a0;
}
.official-banner:hover::before {
    left: 200%;
}
.official-banner-content {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    gap: 40px; 
}

.official-banner-logo-img {
    width: 100px; 
    height: auto;
    display: block;
    flex-shrink: 0;
    filter: brightness(1.05);
}

.official-banner-text-inner {
    display: flex;
    flex-direction: column;
    gap: 4px; 
    text-align: left;
}

.official-banner-sub {
    font-family: var(--font-serif-en);
    color: var(--gold-line);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
}
.official-banner-title {
    font-family: var(--font-serif-ja);
    color: #ffffff;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 1.5px;
}
.official-banner-arrow {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-line);
    font-size: 18px;
    transition: transform 0.3s ease;
}
.official-banner:hover .official-banner-arrow {
    transform: translate(5px, -50%);
}

@media (max-width: 768px) {
    .official-banner {
        padding: 25px 20px;
    }
    .official-banner-content {
        flex-direction: column; 
        gap: 15px;
        text-align: center;
    }
    .official-banner-logo-img {
        width: 90px;
    }
    .official-banner-text-inner {
        text-align: center;
    }
    .official-banner-title {
        font-size: 16px;
    }
    .official-banner-arrow {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 5px;
        font-size: 16px;
    }
    .official-banner:hover .official-banner-arrow {
        transform: translateX(5px);
    }
    .official-banner-container {
    margin: 60px auto 80px auto;
}
}
@media (max-width: 410px){
    .official-banner-title {
        font-size: 13px;
    }
}

/* ==========================================================================
   16. 口コミ（Reviews）専用スタイル
   ========================================================================== */
.reviews-section {
    max-width: 1000px; 
    margin: 0 auto;
    text-align: center;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: left;
}
.review-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(197, 180, 142, 0.4);
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(88, 76, 45, 0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
/* .review-card:hover {
    transform: translateY(-3px);
    border-color: var(--khaki-dark);
} */
.review-stars {
    color: var(--gold-line);
    font-size: 15px;
    letter-spacing: 3px;
}
.review-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    /* 修正：文章部分をサイト全体のゴシック体に統一するため、明朝体の指定を削除しました */
}

@media (max-width: 850px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }
    .review-card {
        padding: 25px 20px;
    }
}

/* =========================================
   追加：品質管理（パワーメーター）セクション
   ======================================= */
.quality-control-block {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 20px 0;
    margin: 100px auto;
    /* max-width: 1000px; */
}

.qc-flex-layout {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.qc-text-side {
    flex: 1;
    font-family: var(--font-serif-ja);
}

.qc-sub-title {
    display: block;
    font-family: var(--font-serif-en);
    font-size: 13px;
    color: var(--gold-line);
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-weight: 500;
}

.qc-main-title {
    font-size: 22px;
    color: var(--khaki-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 1px;
}

.qc-desc {
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--text-dark);
}

.qc-image-side {
    flex: 1;
    text-align: center;
}

.qc-image-side {
    flex: 1;
    display: flex;
    justify-content: center; 
}

.qc-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.qc-image-wrapper::after {
    content: "";
    position: absolute;
    top: -2px; 
    left: -2px; 
    right: -2px; 
    bottom: -2px;
    box-shadow: inset 0 0 40px 60px var(--bg-light-beige),
                0 0 10px 5px var(--bg-light-beige);
}

.qc-image-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
    /* 以前の mask-image 等の記述はすべて削除し、色調補正だけ残します */
    filter: sepia(0.15) saturate(0.8) contrast(1.05);
}


/* レスポンシブ対応（スマホ画面用） */
@media (max-width: 850px) {
    .quality-control-block {
        padding: 10px 0;
        margin: 60px auto;
    }
    .qc-flex-layout {
        flex-direction: column-reverse; /* スマホでは画像が上、テキストが下 */
        gap: 35px;
    }
    .qc-text-side {
        width: 100%;
        padding: 0 15px; /* スマホ画面の端に文字がくっつかないための余白 */
    }
    .qc-image-side {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .qc-main-title {
        font-size: 20px;
    }
}


/* ==========================================================================
   初回50%OFF キャンペーン装飾（トップページ＆料金ページ）
   ========================================================================== */

/* --- トップページ用：インビテーション風バナー --- */
.campaign-invite-section {
    background-color: var(--bg-white);
    padding: 1px 8% 0;
    position: relative;
    z-index: 10; 
    margin-top: 0;
}

/* バナー本体 */
.campaign-invite-card {
    max-width: 900px; 
    margin: -110px auto 0 auto;
    background-color: var(--bg-white);
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(88, 76, 45, 0.1); 
    padding: 35px 30px; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* カードの四隅に薄いゴールドのアクセントライン */
.campaign-invite-card::before {
    content: "";
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid rgba(197, 180, 142, 0.25);
    border-radius: 6px;
    pointer-events: none;
}

.campaign-invite-inner {
    position: relative;
    z-index: 2;
}

.campaign-invite-sub {
    display: inline-block;
    font-family: var(--font-serif-en);
    font-size: 11px;
    color: var(--gold-line);
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 500;
}

.campaign-invite-title {
    font-family: var(--font-serif-ja);
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
    /* line-height: 1.5; */
    letter-spacing: 1.5px;
}

.campaign-highlight {
    display: inline-block;
    font-size: 23px;
    color: #aa9055; 
    margin-top: 5px;
    font-weight: 500;
}

.campaign-invite-desc {
    font-family: var(--font-serif-ja);
    font-size: 13.5px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
}

.campaign-invite-btn {
    display: inline-block;
    text-decoration: none;
    background-color: var(--khaki-dark);
    color: var(--bg-white);
    padding: 10px 35px;
    font-size: 13px;
    font-family: var(--font-serif-ja);
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 1px solid var(--khaki-dark);
}

.campaign-invite-btn:hover {
    background-color: var(--bg-white);
    color: var(--khaki-dark);
}




/* --- 料金ページ用：キャンペーンお知らせボックス --- */
.price-campaign-notice {
    background-color: var(--bg-white);
    border: 1px solid rgba(197, 180, 142, 0.4);
    border-left: 4px solid var(--gold-line); /* 左側にゴールドの太線を引いて視線を誘導 */
    padding: 30px 40px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(88, 76, 45, 0.03);
}

.price-campaign-icon {
    font-size: 35px;
    color: var(--gold-line);
    flex-shrink: 0;
}

.price-campaign-text {
    flex: 1;
    font-family: var(--font-serif-ja);
}

.price-campaign-label {
    display: inline-block;
    font-size: 14px;
    color: var(--khaki-dark);
    background-color: rgba(197, 180, 142, 0.15);
    padding: 5px 12px;
    border-radius: 3px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 500;
}

.price-campaign-p {
    font-size: 14.5px;
    color: var(--text-dark);
    line-height: 1.8;
}

.price-campaign-p strong {
    color: #aa9055;
    font-weight: 500;
    font-size: 16px;
}

.price-campaign-p a, .price-campaign-line-btn {
    color: var(--khaki-dark);
    text-decoration: underline;
    transition: all 0.2s ease;
    text-decoration: none;
}

.price-campaign-p a:hover, .price-campaign-line-btn:hover {
    color: var(--gold-line);
    text-decoration: underline;
}


/* --- レスポンシブ対応（スマホ画面用） --- */
@media (max-width: 850px) {
    /* トップページ用バナー */
    .campaign-invite-section {
        padding: 1px 5% 0; /* スマホ用の隙間消し設定 */
    }
    
    .campaign-invite-card {
        margin: -115px auto 0 auto; /* スマホ時の重なり具合 */
        padding: 20px;
    }
    
    .campaign-invite-title {
        font-size: 18px;
    }
    
    .campaign-highlight {
        font-size: 22px;
    }
    
    .campaign-invite-desc {
        font-size: 12.5px;
        /* text-align: left;  */
        margin-bottom: 20px;
    }
    
    .campaign-invite-btn {
        width: 70%;
        padding: 12px 0;
    }
    
    /* 料金ページ用お知らせボックス */
    .price-campaign-notice {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .price-campaign-icon {
        font-size: 28px;
    }
    
    .price-campaign-p {
        font-size: 13.5px;
    }
    
    .price-campaign-p strong {
        font-size: 15px;
    }
}

@media (max-width: 550px) {
    .campaign-invite-title {
        font-size: 16px;
    }
    .campaign-invite-btn {
        width: 80%;
    }
    .campaign-highlight {
        font-size: 20px;
    }
}

/* ==========================================================================
   Googleマップの黒い帯を隠す裏ワザ
   ========================================================================== */
.access-map {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.access-map iframe {
    margin-top: -58px;
    height: 408px !important; 
    width: 100%;
    border: none;
}

/* ==========================================================================
   ヘアーサロンいしざわ 
   ========================================================================== */
.hairsalon-ad-section {
    max-width: 1020px;
    margin: 75px auto 0 auto; 
    padding: 40px;
    background-color: #01004e;
    border: none;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(88, 76, 45, 0.15);
    font-family: var(--font-serif-ja);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hairsalon-ad-section.premium-dark::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197,180,142,0.08) 0%, rgba(88,76,45,0) 60%);
    pointer-events: none;
}

.hairsalon-ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hairsalon-ad-sub {
    display: block;
    font-family: var(--font-serif-en);
    font-size: 12px;
    color: #fff;
    letter-spacing: 2px;
    /* margin-bottom: 7px; */
    font-weight: 500;
}

.hairsalon-ad-title {
    font-size: 26px;
    color: var(--bg-white); 
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hairsalon-ad-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 2.0;
    margin-bottom: 15px;
}

/* ダーク背景用のゴールドハイライト（線のデザイン） */
.hl-gold-dark {
    color: var(--gold-line);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

.hl-gold-dark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    /* background-color: var(--gold-line); */
}

.hairsalon-ad-badge {
    display: inline-block;
    padding: 12px 30px;
    font-size: 13.5px;
    font-family: var(--font-serif-en);
    color: var(--gold-line);
    background-color: transparent;
    letter-spacing: 3px;
    font-weight: 500;
}

@media (max-width: 850px) {
    .hairsalon-ad-section.premium-dark {
        padding: 50px 20px;
        margin: 60px 15px 0px 15px; 
    }
    .hairsalon-ad-title {
        font-size: 22px;
    }
    .hairsalon-ad-desc {
        font-size: 16.5px;
        line-height: 1.8;
    }
    .hairsalon-ad-desc br {
        display: none; 
    }
}
@media (max-width: 500px) {
    .hairsalon-ad-section.premium-dark {
        padding: 30px 15px;
    }
}

/* ==========================================================================
   ヘアーサロンいしざわ
   ========================================================================== */
.fade-medium-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 auto 30px auto;
    width: 100%;
}

.fade-medium-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 180, 142, 0.3);
    border-radius: 12px;
    padding: 15px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.fade-medium-img {
    width: 200px;
    height: 240px;
    object-fit: cover;
    border: 1px solid rgba(197, 180, 142, 0.4);
    flex-shrink: 0;
}

.fade-medium-info {
    flex: 1;
}

.fade-medium-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--gold-line);
    margin-bottom: 4px;
    font-family: var(--font-serif-en);
}

.fade-medium-title {
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 6px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.fade-medium-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

/* スマホ用レスポンシブ対応（スマホ画面では縦に並びます） */
@media (max-width: 950px) {
    .fade-medium-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .fade-medium-img {
        width: 150px;
        height: 180px;
    }
    .fade-medium-title {
        font-size: 15px;
    }
}

.hairsalon-ad-reserve {
    font-size: 16px;
    color: var(--gold-line);
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.8; /* 改行した時の行間を調整 */
}

@media (max-width: 850px) {
    .hairsalon-ad-reserve {
        font-size: 14px; /* スマホでは少し文字を小さくして収まり良く */
        margin-bottom: 15px;
        line-height: 1.6;
    }
}
/* ==========================================================================
   SEO用：画面からは見えないがGoogleには認識させるクラス
   ========================================================================== */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}