/* =============================================
   main.css — サイト全体スタイル（モバイルファースト）
   カラーパレット:
     メインブルー  #0C68AB
     白            #ffffff
     薄グレー      #f5f5f5
     赤            #c0392b
   ============================================= */

/* =============================================
   カラー変数
   ============================================= */
:root {
    --color-navy: #0C68AB;
    --color-white: #ffffff;
    --color-gray: #f5f5f5;
    --color-red: #c0392b;
    --color-text: #333333;
    --color-border: #dddddd;
    --color-navy-dark: #094f85;
    --color-navy-light: #1a7fc4;
}

/* =============================================
   リセット・ベース
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

a:hover {
    color: var(--color-navy-light);
}

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

.pc {
    display: none;
}

.sp {
    display: block;
}

/* =============================================
   ボタン共通
   ============================================= */
.btn-primary {
    display: inline-block;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--color-navy-light);
    color: var(--color-white);
}

.btn-secondary {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-navy);
    padding: 12px 24px;
    border: 2px solid var(--color-navy);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

/* =============================================
   コンテナ
   ============================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
}

@media (min-width: 600px) {
    .container {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (min-width: 768px) {
    .container {
        padding-right: 32px;
        padding-left: 32px;
    }
}

/* ノートPC（1024px〜1279px） */
@media (min-width: 1024px) {
    .container {
        padding-right: 48px;
        padding-left: 48px;
    }

    .pc {
        display: block;
    }

    .sp {
        display: none;
    }
}

/* ノートPC標準（1280px〜）：max-width で中央寄せ＋余白 */
@media (min-width: 1280px) {
    .container {
        padding-right: 40px;
        padding-left: 40px;
    }
}

/* 大型ディスプレイ（1440px〜） */
@media (min-width: 1440px) {
    .container {
        max-width: 1360px;
        padding-right: 48px;
        padding-left: 48px;
    }
}

/* =============================================
   メインヘッダー
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0C68AB;
    /* ハードコードでフォールバック保証 */
    background: var(--color-navy, #0C68AB);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.3s, box-shadow 0.3s;
}

/* スクロール時：より濃いネイビーに変化（半透明なし＝背景透けなし） */
.site-header.is-scrolled {
    background: #094f85;
    background: var(--color-navy-dark, #094f85);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px;
}

/* =============================================
   ロゴ
   ============================================= */
.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.site-logo a:hover {
    opacity: 0.85;
    color: var(--color-white);
}

.site-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.site-logo a:hover .site-logo-mark {
    background: rgba(255, 255, 255, 0.18);
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.site-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-logo img {
    height: 40px;
    width: auto;
}

/* =============================================
   グローバルナビ（PCのみ）
   ============================================= */
.global-nav {
    display: none;
}

/* モバイルでは非表示 */

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

.nav-list>li>a {
    display: block;
    color: #ffffff;
    /* 完全不透明の白：背景色に関わらず確実に見える */
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ホバーアンダーライン */
.nav-list>li>a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-list>li>a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.nav-list>li>a:hover::after {
    transform: scaleX(1);
}

.nav-list>li.current-menu-item>a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.nav-list>li.current-menu-item>a::after {
    transform: scaleX(1);
}

/* =============================================
   右アクションエリア
   ============================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    position: relative;
    text-decoration: none;
}

.header-action-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.header-action-label {
    display: none;
    /* モバイルでは非表示 */
    font-size: 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* カートバッジ */
.cart-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    border: 2px solid var(--color-navy);
    transition: transform 0.2s;
}

.cart-badge--hidden {
    display: none;
}

.header-cart:hover .cart-badge {
    transform: scale(1.15);
}


/* 店舗移転のお知らせ*/
.relocation-info {
    text-align: center;
    padding: 30px 40px;
}

/* タイトル部分 */
.relocation-title {
    color: #d41b1b;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    border: none;
}

/* 本文テキスト全体 */
.relocation-body p {
    line-height: 1.8;
    /* 行間を広げて読みやすく */
    /* margin-bottom: 1.5em; */
}

/* 中央の重要情報エリア */
.relocation-details {
    margin: 15px 0;
    padding: 15px 0;
    /* border-top: 1px solid #eee;    上下の区切り線もごく薄く 
    border-bottom: 1px solid #eee;*/
}

/* 太字のラベル（■移転日 など） */
.relocation-details strong {
    color: #000;
    display: inline-block;
    margin-bottom: 5px;
}

/* 下部の補足メッセージ */
.relocation-note {
    font-size: 0.9rem;
    margin-bottom: 0 !important;
    /* 最後の余白を消す */
}

/* Googleカレンダー（レスポンシブ対応） */
.relocation-calendar {
    width: min(800px, 100%);
    aspect-ratio: 800 / 600;
    margin: 1.5em auto 0;
}

.relocation-calendar iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* スマホ対応：文字サイズを微調整 */
@media (max-width: 768px) {
    .relocation-info {
        padding: 20px 15px;
    }

    .relocation-title {
        font-size: 1.15rem;
    }
}



/* =============================================
   Aboutページ
   ============================================= */

/* イントロ */
.ab-intro {
    padding: 56px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 56px;
}

.ab-intro-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-navy);
    font-weight: 700;
    margin-bottom: 20px;
}

.ab-intro-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.55;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.ab-intro-heading strong {
    color: var(--color-navy);
}

.ab-intro-text {
    font-size: 14px;
    line-height: 1.95;
    color: #555;
    margin: 0 auto 32px;
}

.ab-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ab-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-navy);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
}

.ab-badge::before {
    content: '✓';
    font-size: 11px;
}

/* 強みカード */
.ab-features {
    margin-bottom: 56px;
}

.ab-section-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-navy);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.ab-section-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 6px;
}

.ab-section-sub {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-bottom: 32px;
}

.ab-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.ab-feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-navy);
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}

.ab-feature-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.ab-feature-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-navy);
    opacity: 0.45;
    margin-bottom: 10px;
}

.ab-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.ab-feature-text {
    font-size: 14px;
    line-height: 1.85;
    color: #555;
}

/* メーカー直営 */
.ab-maker {
    background: var(--color-navy);
    border-radius: 14px;
    padding: 44px 32px;
    margin-bottom: 56px;
    color: var(--color-white);
}

.ab-maker-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 16px;
}

.ab-maker-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.55;
    margin-bottom: 20px;
}

.ab-maker-text {
    font-size: 14px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
}

.ab-maker-text:last-child {
    margin-bottom: 0;
}

.ab-maker-text strong {
    color: var(--color-white);
}

/* 取扱商品 */
.ab-lineup {
    margin-bottom: 56px;
}

.ab-lineup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ab-lineup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-gray);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 18px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
}

.ab-lineup-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

/* CTA */
.ab-cta {
    text-align: center;
    padding: 52px 24px;
    background: var(--color-gray);
    border-radius: 14px;
    border: 1px solid var(--color-border);
}

.ab-cta-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 12px;
}

.ab-cta-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* アクセスマップ */
.ab-map {
    margin-top: 56px;
}

.ab-map-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 12px;
    display: block;
    margin-top: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ab-map-address {
    margin-top: 14px;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .ab-intro-heading {
        font-size: 34px;
    }

    .ab-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ab-maker {
        padding: 56px 52px;
    }

    .ab-maker-heading {
        font-size: 24px;
    }

    .ab-lineup-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ab-cta-heading {
        font-size: 22px;
    }

    .ab-map-frame {
        aspect-ratio: 21 / 9;
    }
}









/* =============================================
   ハンバーガー（モバイルのみ）
   ============================================= */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger-line {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* =============================================
   モバイルドロワー（左スライドイン）
   ============================================= */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: #063a5e;
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-drawer.is-open {
    transform: translateX(0);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.4);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
}

.mobile-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.mobile-drawer-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list>li>a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s, color 0.15s, padding-left 0.2s;
    position: relative;
}

.mobile-nav-list>li>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-navy-light);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.2s;
}

.mobile-nav-list>li>a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    padding-left: 28px;
}

.mobile-nav-list>li>a:hover::before {
    transform: scaleY(1);
}

.mobile-nav-list>li.current-menu-item>a {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-list>li.current-menu-item>a::before {
    transform: scaleY(1);
}

.mobile-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.mobile-drawer-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

/* オーバーレイ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 199;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-nav-overlay.is-visible {
    display: block;
}

/* =============================================
   フッター
   ============================================= */
.site-footer {
    background: #063a5e;
    /* ネイビーより少し深い */
    color: rgba(255, 255, 255, 0.75);
    margin-top: 80px;
}

/* --- フッター下部（コピーライトバー） --- */
.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    order: 2;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 16px;
    order: 1;
}

.footer-bottom-links li a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom-links li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   共通レイアウト
   ============================================= */
.home .site-main {
    margin-top: 0;
}

.site-main {
    min-height: 60vh;
    margin-top: 2rem;
}

.page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-navy);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-navy);
    margin: 10px auto 0;
}

/* =============================================
   TOPページ — ヒーロー
   ============================================= */
.hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: var(--color-white);
    padding: 48px 16px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

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

.hero-sub {
    font-size: 13px;
    letter-spacing: 0.12em;
    opacity: 0.8;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-btn {
    min-width: 160px;
    text-align: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* =============================================
   TOPページ — カテゴリバナー
   ============================================= */
.category-section {
    padding: 48px 0;
    background: var(--color-gray);
}

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

.category-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    color: var(--color-navy);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    color: var(--color-navy);
}

.category-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.category-card-name {
    font-size: 15px;
    font-weight: 700;
}

/* =============================================
   商品グリッド（共通）
   ============================================= */
.products-section {
    padding: 56px 0;
}

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

.products-grid--top {
    max-width: 100%;
}

.product-card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.product-card-link {
    color: inherit;
    display: block;
}

.product-card-link:hover {
    color: inherit;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--color-gray);
}

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

.product-card:hover .product-img {
    transform: scale(1.04);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-placeholder::after {
    content: '📷';
    font-size: 32px;
    opacity: 0.3;
}

/* バッジ */
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-white);
}

.badge-sale {
    background: var(--color-red);
}

.badge-featured {
    background: var(--color-navy);
}

.product-card-body {
    padding: 12px;
    flex: 1;
    min-height: 100px;
    /* 2行分＋アルファの余裕を持たせる */
}

.product-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
}

.product-card-footer {
    padding: 0 12px 12px;
}

.view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

/* =============================================
   安心ポイント
   ============================================= */
.trust-section {
    padding: 48px 0;
    background: var(--color-navy);
    color: var(--color-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.trust-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.trust-item h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.6;
}

/* =============================================
   商品一覧（archive-product）
   ============================================= */
.archive-product {
    padding: 0;
}

.archive-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 2rem;
}

/* サイドバーフィルター */
.archive-sidebar {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.filter-section {
    margin-bottom: 24px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}

.filter-list {
    list-style: none;
}

.filter-list li {
    border-bottom: 1px solid var(--color-gray);
}

.filter-list li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 4px;
    color: var(--color-text);
    font-size: 13px;
    transition: color 0.2s;
}

.filter-list li a:hover,
.filter-list li.current a {
    color: var(--color-navy);
    font-weight: 700;
}

.filter-count {
    color: #999;
    font-size: 12px;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.price-range input {
    flex: 1;
    min-width: 0;
    padding: 6px 8px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 13px;
}

.btn-filter {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 13px;
}

/* アーカイブヘッダー */
.archive-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.archive-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
}

.archive-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.result-count {
    font-size: 13px;
    color: #666;
}

/* ページネーション */
.archive-pagination {
    margin-top: 40px;
    text-align: center;
}

.woocommerce-pagination {
    margin-top: 40px;
    
}

.woocommerce nav.woocommerce-pagination ul {
	border: none !important;
}

.no-products-found {
    text-align: center;
    padding: 48px 24px;
}

.no-products-found p {
    color: #666;
    margin-bottom: 16px;
}

/* =============================================
   商品詳細（single-product）
   ============================================= */
.product-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.product-images {
    width: 100%;
}

.product-summary {}

.product-cats {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.4;
    margin-bottom: 16px;
}

.product-price-wrap {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.product-short-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

/* サイズガイドアコーディオン */
.size-guide-accordion {
    margin-top: 20px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--color-gray);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
    text-align: left;
}

.accordion-icon {
    font-size: 18px;
    transition: transform 0.2s;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    padding: 16px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.size-table th,
.size-table td {
    padding: 8px 10px;
    border: 1px solid var(--color-border);
    text-align: center;
}

.size-table th {
    background: var(--color-navy);
    color: var(--color-white);
}

.size-table tr:nth-child(even) td {
    background: var(--color-gray);
}

.size-note {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

/* 安心バッジ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.trust-badge {
    font-size: 12px;
    background: var(--color-gray);
    border-radius: 4px;
    padding: 6px 10px;
    color: var(--color-navy);
}

/* 商品タブ */
.product-tabs {
    margin-bottom: 48px;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--color-navy);
    margin-bottom: 0;
    overflow-x: auto;
}

.tab-btn {
    padding: 12px 20px;
    border: none;
    background: var(--color-gray);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: #555;
    border-radius: 4px 4px 0 0;
    transition: background 0.2s, color 0.2s;
}

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

.tab-content {
    padding: 24px;
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 6px 6px;
    line-height: 1.8;
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
}

.tab-content pre {
    white-space: pre-wrap;
    word-break: break-word;
}

.tab-content h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

.tab-content ul {
    padding-left: 20px;
}

.tab-content ul li {
    margin-bottom: 6px;
}

/* 関連商品 */
.related-products {
    margin-top: 48px;
}

/* =============================================
   カートページ
   ============================================= */
.cart-page {
    padding: 32px 0;
}

.cart-table-wrap {
    overflow-x: auto;
    margin-bottom: 32px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.cart-table th,
.cart-table td {
    padding: 12px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: middle;
}

.cart-table th {
    background: var(--color-gray);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
}

.cart-col-thumbnail {
    width: 80px;
}

.cart-col-thumbnail img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-navy);
}

.cart-item-name:hover {
    text-decoration: underline;
}

.remove-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    color: #999;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.remove-item:hover {
    background: var(--color-red);
    color: var(--color-white);
}

/* クーポン・カートアクション */
.cart-actions {
    padding: 16px 12px;
}

.coupon-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.coupon-form label {
    font-size: 13px;
    font-weight: 700;
    width: 100%;
}

.coupon-form input {
    flex: 1;
    min-width: 160px;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
}

/* カート合計 */
.cart-collaterals {
    display: flex;
    justify-content: flex-end;
}

.cart-totals-wrap {
    background: var(--color-gray);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
}

.cart-totals-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.cart-totals {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-totals th,
.cart-totals td {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.cart-totals th {
    font-weight: 500;
    text-align: left;
}

.cart-totals td {
    text-align: right;
    font-weight: 700;
}

.order-total th,
.order-total td {
    font-size: 18px;
    border-bottom: none;
    padding-top: 16px;
}

.cart-checkout-btn .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
}

/* カート空 */
.cart-empty-page {
    text-align: center;
    padding: 80px 24px;
}

.cart-empty-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.cart-empty-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

/* =============================================
   チェックアウト
   ============================================= */
.checkout-page {
    padding: 32px 0;
}

.checkout-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.checkout-section {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.checkout-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gray);
}

.checkout-summary {
    background: var(--color-gray);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.checkout-summary h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

/* =============================================
   注文完了ページ
   ============================================= */
.thankyou-page {
    padding: 48px 0;
}

.thankyou-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.thankyou-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.thankyou-email-notice {
    font-size: 14px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.order-summary-box {
    background: var(--color-gray);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.order-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
    font-size: 14px;
}

.order-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.order-meta-row dt {
    font-weight: 500;
    color: #666;
}

.order-meta-row dd {
    font-weight: 700;
}

.order-total-row dt,
.order-total-row dd {
    font-size: 17px;
    color: var(--color-navy);
}

.order-items {
    text-align: left;
    margin-bottom: 32px;
}

.order-items h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.order-items-table th,
.order-items-table td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.order-items-table th {
    background: var(--color-gray);
    font-weight: 700;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.guest-register-notice {
    background: var(--color-gray);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 8px;
    text-align: left;
}

.guest-register-notice h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.guest-register-notice p {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

/* =============================================
   マイページ
   ============================================= */
.myaccount-page {
    padding: 32px 0;
}

.myaccount-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.myaccount-nav {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.myaccount-nav-title {
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
    margin: 0;
}

.myaccount-nav-list {
    list-style: none;
}

.myaccount-nav-item {
    border-bottom: 1px solid var(--color-border);
}

.myaccount-nav-item:last-child {
    border-bottom: none;
}

.myaccount-nav-item a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--color-text);
    transition: background 0.2s;
}

.myaccount-nav-item a:hover,
.myaccount-nav-item.is-active a {
    background: var(--color-gray);
    color: var(--color-navy);
    font-weight: 700;
}

.myaccount-content {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
}

/* 注文一覧 */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.orders-table th,
.orders-table td {
    padding: 12px;
    border-bottom: 1px solid var(--color-border);
    font-size: 13px;
    white-space: nowrap;
}

.orders-table th {
    background: var(--color-gray);
    font-weight: 700;
    color: var(--color-navy);
    text-align: left;
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.status-processing {
    background: #fff3cd;
    color: #856404;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12px;
}

.orders-pagination {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.orders-empty {
    text-align: center;
    padding: 40px;
}

.orders-empty p {
    color: #666;
    margin-bottom: 16px;
}

/* ログイン・登録フォーム */
.login-register-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.login-col,
.register-col {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
}

.login-col h2,
.register-col h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

/* =============================================
   キャンセルページ
   ============================================= */
.page-cancel {
    padding: 64px 0;
}

.cancel-box {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 12px;
    padding: 40px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cancel-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.cancel-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 12px;
}

.cancel-message {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

.cancel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.cancel-note {
    font-size: 13px;
    color: #888;
}

.cancel-note a {
    color: var(--color-navy);
    text-decoration: underline;
}

/* =============================================
   パンくずリスト
   ============================================= */
.woocommerce-breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
}

.woocommerce-breadcrumb a {
    color: var(--color-navy);
}

.woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

/* =============================================
   ノーティス（WooCommerce通知）
   ============================================= */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.woocommerce-message {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.woocommerce-info {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}

.woocommerce-error {
    background: #f8d7da;
    border-left: 4px solid var(--color-red);
    color: #721c24;
}

/* =============================================
   タブレット・デスクトップ対応
   ============================================= */
@media (min-width: 768px) {

    body {
        font-size: 15px;
    }

    /* ヘッダー */
    .hamburger {
        display: none;
    }

    .global-nav {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: center;
    }

    .header-action-label {
        display: block;
    }

    .header-action-btn {
        padding: 6px 12px;
        gap: 3px;
    }

    .cart-badge {
        top: 0;
        right: 2px;
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-copy {
        order: 1;
    }

    .footer-bottom-links {
        order: 2;
        justify-content: flex-end;
    }

    /* ヒーロー */
    .hero {
        padding: 80px 32px;
    }

    .hero-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-content {
        text-align: left;
        max-width: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-image-placeholder {
        max-width: 360px;
    }

    /* カテゴリ */
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 商品グリッド */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* 安心ポイント */
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 商品一覧 */
    .archive-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .archive-sidebar {
        width: 220px;
        flex-shrink: 0;
        position: sticky;
        top: 80px;
    }

    .archive-main {
        flex: 1;
    }

    .archive-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* 商品詳細 */
    .product-detail-layout {
        flex-direction: row;
        gap: 48px;
    }

    .product-images {
        width: 50%;
    }

    .product-summary {
        flex: 1;
    }

    /* チェックアウト */
    .checkout-layout {
        flex-direction: row;
        gap: 32px;
        align-items: flex-start;
    }

    .checkout-form-col {
        flex: 1;
    }

    .checkout-summary-col {
        width: 360px;
        flex-shrink: 0;
        position: sticky;
        top: 80px;
    }

    /* マイページ */
    .myaccount-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .myaccount-nav {
        width: 220px;
        flex-shrink: 0;
        position: sticky;
        top: 80px;
    }

    .myaccount-content {
        flex: 1;
    }

    /* ログイン・登録 */
    .login-register-layout {
        flex-direction: row;
    }

    .login-col,
    .register-col {
        flex: 1;
    }

    /* 注文完了 */
    .thankyou-actions {
        flex-direction: row;
        justify-content: center;
    }

    /* サイズ */
    .page-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .products-grid {
        gap: 28px;
    }
}

/* =============================================
   ヒーロースライダー
   ============================================= */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--color-navy);
    user-select: none;
}


.hero-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    height: 260px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 画像未設置時のプレースホルダーグラデーション */
.hero-slide--1 {
    background-color: #0C68AB;
}

.hero-slide--2 {
    background-color: #094f85;
}

.hero-slide--3 {
    background-color: #1a7fc4;
}

.hero-slide-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 20px;
    color: #0C68AB;
    text-align: center；
}

.hero-slide-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    opacity: 0.85;
    margin-bottom: 8px;
}

.hero-slide-title {
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-slide-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #f8f9fa;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.hero-slide-btn:hover {
    background: var(--color-gray);
}

/* 矢印ボタン */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    cursor: pointer;
    transition: background 0.2s;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.45);
}

.hero-prev {
    left: 10px;
}

.hero-next {
    right: 10px;
}

/* ドットインジケーター */
.hero-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.hero-dot.is-active {
    background: var(--color-white);
    transform: scale(1.35);
}

@media (min-width: 768px) {
    .hero-slide {
        height: 550px;
    }

    .hero-slide-caption {
        padding: 48px 72px;
    }

    .hero-slide-title {
        font-size: 44px !important;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
    }

    .hero-prev {
        left: 20px;
    }

    .hero-next {
        right: 20px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

/* =============================================
   お問い合わせページ（Contact Form 7）
   ============================================= */

/* ページ共通 */
.entry-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 32px 0 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-navy);
}

.entry-content {
    /*max-width: 720px;*/
    margin: 0 auto;
    padding-bottom: 64px;
    line-height: 1.8;
}

/* CF7 ラッパー */
.wpcf7 {
    margin-top: 8px;
}

/* セクション見出し（■ お客様情報 など） */
.wpcf7-form p>strong:first-child:only-child,
.wpcf7-form h3 {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
    background: var(--color-gray);
    border-left: 4px solid var(--color-navy);
    padding: 8px 12px;
    margin: 28px 0 0;
    border-radius: 0 4px 4px 0;
}

/* フォーム各行（<p>ラッパー） */
.wpcf7-form>p {
    margin-bottom: 16px;
}

/* ラベル */
.wpcf7-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 5px;
}

/* 必須マーク */
.wpcf7-form .wpcf7--required,
.wpcf7-form abbr[title="required"] {
    color: var(--color-red);
    font-style: normal;
    margin-left: 3px;
}

/* テキスト・メール・電話・数値 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="url"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* セレクト */
.wpcf7-form-control-wrap:has(select) {
    position: relative;
    display: block;
}

.wpcf7-form-control-wrap:has(select)::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-text);
    pointer-events: none;
}

.wpcf7-form select {
    width: 100%;
    padding: 10px 36px 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-white);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* テキストエリア */
.wpcf7-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-white);
    min-height: 150px;
    resize: vertical;
    line-height: 1.7;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* フォーカス */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(12, 104, 171, 0.12);
}

/* ファイルアップロード */
.wpcf7-form input[type="file"] {
    width: 100%;
    padding: 8px 0;
    font-size: 13px;
    color: var(--color-text);
    cursor: pointer;
}

/* バリデーションエラー時 */
.wpcf7-not-valid {
    border-color: var(--color-red) !important;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1) !important;
}

.wpcf7-not-valid-tip {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--color-red);
}

/* 送信後レスポンス */
.wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    border: none !important;
}

.wpcf7-form.sent .wpcf7-response-output {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50 !important;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
    background: #fdecea;
    color: #c62828;
    border-left: 4px solid var(--color-red) !important;
}

/* 個人情報同意チェックボックス */
.wpcf7-acceptance .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}

.wpcf7-acceptance input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--color-navy);
}

.wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 13px;
    line-height: 1.7;
}

/* 送信ボタン */
.wpcf7-submit {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 28px auto 0;
    padding: 14px 32px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.wpcf7-submit:hover {
    background: var(--color-navy-light);
}

.wpcf7-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 送信中スピナー */
.wpcf7-spinner {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

/* 身長・体重など横並びフィールド用 */
.wpcf7-form .field-inline {
    display: flex;
    gap: 16px;
}

.wpcf7-form .field-inline>span {
    flex: 1;
}

@media (min-width: 768px) {
    .entry-title {
        font-size: 26px;
    }
}

/* =============================================
   プライバシーポリシーページ
   ============================================= */

/* ヒーローバナー */
.pp-hero {
    background: var(--color-gray);
    color: var(--color-text);
    padding: 36px 16px;
    text-align: center;
}

.pp-hero-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: 0.05em;
}

/* コンテンツラッパー */
.pp-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 0 80px;
}

/* 目次 */
.pp-toc {
    background: #f0f7ff;
    border: 1px solid rgba(12, 104, 171, 0.18);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 44px;
}

.pp-toc-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.pp-toc-heading::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 14px;
    background: var(--color-navy);
    border-radius: 2px;
    flex-shrink: 0;
}

.pp-toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

.pp-toc-list li a {
    display: block;
    font-size: 13px;
    color: var(--color-navy);
    padding: 5px 4px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s, padding-left 0.15s;
    border-radius: 3px;
}

.pp-toc-list li a:hover {
    color: var(--color-navy-light);
    padding-left: 8px;
}

/* イントロ文 */
.pp-intro {
    font-size: 14px;
    line-height: 1.95;
    color: #555;
    margin-bottom: 40px;
    padding: 20px 24px;
    background: var(--color-gray);
    border-radius: 8px;
}

/* セクションカード */
.pp-section {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s;
}

.pp-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pp-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: linear-gradient(to right, #f0f7ff 0%, var(--color-white) 100%);
    border-bottom: 1px solid var(--color-border);
}

.pp-section-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    letter-spacing: 0;
}

.pp-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
    line-height: 1.4;
}

.pp-section-body {
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.9;
    color: #444;
}

.pp-section-body p {
    margin-bottom: 12px;
}

.pp-section-body p:last-child,
.pp-section-body ol:last-child {
    margin-bottom: 0;
}

.pp-section-body ol {
    padding-left: 22px;
    margin-bottom: 12px;
}

.pp-section-body ol li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.pp-section-body ol ol {
    margin-top: 8px;
    margin-bottom: 4px;
}

/* お問い合わせボックス */
.pp-contact-box {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    color: var(--color-white);
    border-radius: 10px;
    padding: 28px 28px 24px;
    margin-top: 40px;
}

.pp-contact-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.pp-contact-box-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    flex-shrink: 0;
}

.pp-contact-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 14px;
}

.pp-contact-info {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.pp-contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.pp-contact-info a:hover {
    color: var(--color-white);
}

/* 末尾 */
.pp-closing {
    text-align: right;
    font-size: 13px;
    color: #999;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 600px) {
    .pp-toc-list {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2px 24px;
    }
}

@media (min-width: 768px) {
    .pp-wrap {
        padding: 56px 0 100px;
    }

    .pp-section-header {
        padding: 18px 28px;
    }

    .pp-section-body {
        padding: 22px 28px;
    }

    .pp-toc {
        padding: 28px 32px;
    }
}

/* =============================================
   特定商取引法ページ
   ============================================= */

.tk-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tk-table tr {
    border-bottom: 1px solid var(--color-border);
}

.tk-table tr:last-child {
    border-bottom: none;
}

.tk-table th {
    background: linear-gradient(to right, #f0f7ff 0%, #f8fbff 100%);
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
    vertical-align: top;
    width: 200px;
    white-space: nowrap;
}

.tk-table td {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.85;
    color: #444;
    vertical-align: top;
}

/* モバイル：縦積み */
@media (max-width: 599px) {

    .tk-table,
    .tk-table tbody,
    .tk-table tr,
    .tk-table th,
    .tk-table td {
        display: block;
        width: 100%;
    }

    .tk-table th {
        padding-bottom: 6px;
        border-bottom: none;
        white-space: normal;
        font-size: 13px;
    }

    .tk-table td {
        padding-top: 4px;
        padding-bottom: 16px;
    }
}