/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本スタイル（編集風・足もみイメージ） */
body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    line-height: 1.75;
    color: #333;
    background-color: #faf8f5;
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 50, 50, 0.04) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ヘッダー */
header {
    background: linear-gradient(135deg, #471818, #943232);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }
    .header-content > div:first-child {
        flex: 1;
        min-width: 0;
    }
    nav {
        flex-shrink: 0;
    }
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* バナー画像のレスポンシブ対応 */
.banner-logo {
    display: block;
    height: auto;
    width: 95%;
    max-width: 95%;
}

@media (max-width: 768px) {
    .banner-logo { 
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
}

.tagline {
    color: white;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

/* デフォルトでは閉じるボタンは非表示（PC表示用） */
.nav-close { display: none; }
/* ハンバーガーとモバイルメニュー */
.nav-toggle { display: none; }
.nav-menu { display: flex; }

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.5);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        padding: 10px 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: fixed;
        top: 12px;
        right: 16px;
        z-index: 1100;
    }
    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.8);
    }
    .nav-toggle::before {
        content: "☰";
        font-size: 24px;
        line-height: 1;
    }
    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(71,24,24,0.85);
        backdrop-filter: blur(2px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1000;
    }
    .nav-menu.show { display: flex; }
    .nav-menu a { font-size: 20px; }
    .nav-close {
        display: block;
        position: absolute;
        top: 16px;
        right: 16px;
        background: rgba(255,255,255,0.15);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 8px;
        font-size: 24px;
        line-height: 1;
        padding: 6px 10px;
    }
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ヘッダー内サイト内検索 */
.header-search {
    margin-left: auto;
    margin-right: 12px;
}
@media (max-width: 768px) {
    .header-search { margin-right: 8px; }
}
.header-search-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 18px;
    text-decoration: none;
    line-height: 1;
}
.header-search-open:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.8);
    color: #fff;
}
.header-search-open:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* サイト内検索オーバーレイ */
#site-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(71, 24, 24, 0.92);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 20px;
    overflow-y: auto;
}
#site-search-overlay[hidden] { display: none; }

.site-search-box {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.site-search-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}
.site-search-close:hover {
    background: rgba(255,255,255,0.3);
}

#site-search-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 18px;
    border: 2px solid #e0d8d8;
    border-radius: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
}
#site-search-input:focus {
    outline: none;
    border-color: #943232;
}

#site-search-results {
    max-height: 320px;
    overflow-y: auto;
}
.site-search-result-item {
    display: block;
    padding: 12px 16px;
    color: #471818;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}
.site-search-result-item:hover {
    background: rgba(148, 50, 50, 0.08);
    color: #943232;
}
.site-search-no-result {
    color: #666;
    padding: 16px 0;
    margin: 0;
}

/* ヒーローセクション（編集風・足もみのやわらかいモチーフ） */
.hero {
    background: linear-gradient(160deg, rgba(71,24,24,0.75) 0%, rgba(148,50,50,0.7) 50%, rgba(71,24,24,0.8) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="hbg" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%23fbeaea"/><stop offset="100%25" style="stop-color:%23f0e0e0"/></linearGradient></defs><rect width="1200" height="600" fill="url(%23hbg)"/><circle cx="180" cy="120" r="60" fill="%23943232" opacity="0.08"/><circle cx="320" cy="280" r="45" fill="%23471818" opacity="0.06"/><circle cx="880" cy="180" r="70" fill="%23CF4747" opacity="0.07"/><circle cx="1000" cy="380" r="50" fill="%23943232" opacity="0.06"/><circle cx="500" cy="400" r="40" fill="%23471818" opacity="0.05"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px;
    text-align: center;
    color: white;
}

.hero-en {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 15px;
    margin-bottom: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.hero p {
    font-size: 18px;
    margin-bottom: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #CF4747;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(207,71,71,0.3);
}

.cta-button:hover {
    background: #943232;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(148,50,50,0.4);
}

/* 商品ページ：公式サイトへのCTA */
.product-cta-box {
    margin-top: 32px;
    padding: 28px 32px;
    background: rgba(255, 249, 249, 0.9);
    border: 2px solid rgba(148, 50, 50, 0.2);
    border-radius: 12px;
    text-align: center;
}
.product-cta-lead {
    font-size: 16px;
    font-weight: 600;
    color: #471818;
    margin-bottom: 16px;
}
.product-cta-note {
    font-size: 13px;
    color: #666;
    margin-top: 12px;
    margin-bottom: 0;
}
.product-note {
    padding: 20px 24px;
    background: #f8f4f4;
    border-left: 4px solid #943232;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
}
.product-note h4 { margin-bottom: 10px; color: #471818; font-size: 15px; }
.product-note p { margin: 0; }

/* 商品ページ：CSソックス画像グリッド */
.product-hero-image {
    text-align: center;
    margin: 28px 0 36px;
}
.product-hero-image .about-main-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    object-fit: contain;
}
.product-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 36px 0;
}
.product-images-grid img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: block;
    object-fit: cover;
}
.product-images-grid img:only-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .product-images-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.services {
    padding: 88px 0 100px;
    background: #fffbfb;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(148, 50, 50, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(207, 71, 71, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}
.menu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(71,24,24,0.12);
}

.menu-table th, .menu-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f3dede;
    vertical-align: top;
}

.menu-table thead th {
    background: linear-gradient(135deg, #471818, #943232);
    color: #fff;
    position: sticky;
    top: 0;
}

.menu-table tbody tr:nth-child(even) {
    background: #fff9f9;
}

.menu-table tbody tr:hover {
    background: #fdecec;
    transition: background 0.25s ease;
}

.table-container {
    background: #fff6f6;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #f3dede;
}
.menu-detail-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.price-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #CF4747;
    color: #fff;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.price-col { display: grid; gap: 8px; }
.price-badge {
    background: linear-gradient(135deg, #943232, #CF4747);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(148,50,50,0.25);
}
.price-badge strong { font-weight: 900; }
.price-stack { display: flex; flex-wrap: wrap; gap: 8px; }
.price-chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff6f6;
    color: #471818;
    border: 1px solid #f0d0d0;
    font-weight: 700;
}

/* メニュー行のサムネイル */
.menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.menu-thumb {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(71,24,24,0.15);
    border: 2px solid #fff;
}

.menu-title {
    font-weight: 700;
    color: #471818;
}

.menu-title a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #f0d0d0;
    color: #943232;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(71, 24, 24, 0.12);
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.menu-title a::after {
    content: '→';
    font-size: 0.85rem;
}

.menu-title a:hover {
    background: #943232;
    color: #fff;
    box-shadow: 0 6px 18px rgba(71, 24, 24, 0.22);
    transform: translateY(-1px);
}

.menu-title a:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(71, 24, 24, 0.18);
}

.menu-desc {
    line-height: 1.9;
}

.lead-line {
    display: inline-block;
    font-weight: 900;
    color: #943232;
    background: #fff0f0;
    padding: 4px 8px;
    border-radius: 6px;
}

/* オプション表記と注意書き */
.option-badge {
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff0f0;
    color: #943232;
    border: 1px solid #f3dede;
    font-size: 12px;
    font-weight: 800;
}
.option-note { color: #943232; }

@media (max-width: 720px) {
    .menu-table thead { display: none; }
    .menu-table, .menu-table tbody, .menu-table tr, .menu-table td { display: block; width: 100%; }
    .menu-table tr { margin-bottom: 16px; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(71,24,24,0.08); }
    .menu-table td { border: none; border-bottom: 1px solid #f3dede; }
    .menu-table td:last-child { border-bottom: none; }
    .menu-table td::before { content: attr(data-label); display: block; font-size: 12px; color: #943232; font-weight: 700; margin-bottom: 4px; }
}

@media (min-width: 721px) {
    .menu-table td:nth-child(1) { width: 32%; }
    .menu-table td:nth-child(2) { width: 48%; }
    .menu-table td:nth-child(3) { width: 20%; text-align: right; }
    .menu-item { gap: 14px; }
}

@media (max-width: 480px) {
    .menu-thumb { width: 80px; height: 80px; }
    .price-chip { font-size: 14px; }
}

/* 編集風：セクションラベル（英語・小文字）＋見出し */
.section-label {
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #943232;
    opacity: 0.85;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-size: clamp(26px, 4vw, 34px);
    margin-bottom: 48px;
    color: #471818;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-title::after {
    content: '';
    width: 48px;
    height: 2px;
    background: #943232;
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    opacity: 0.8;
}

.services .section-title::before {
    content: '';
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
    position: relative;
}

/* サービスカード：ベントウ風・タイトル訴求を強く・アイキャッチ付き */
.service-card {
    display: block;
    background: #fff;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid #943232;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f8f4f4;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

/* 講座アイキャッチ：顔が中心に来るように表示 */
.service-card-img-course img {
    object-position: center 30%;
}

.service-card:hover .service-card-img img {
    transform: scale(1.03);
}

.service-card-accent,
.service-card-title,
.service-card-desc,
.service-card-cta {
    padding-left: 22px;
    padding-right: 22px;
}

.service-card-accent {
    padding-top: 18px;
}

.service-card:hover {
    background: rgba(255, 249, 249, 0.6);
    border-color: rgba(148, 50, 50, 0.12);
    border-left-color: #943232;
    box-shadow: 0 4px 12px rgba(71, 24, 24, 0.06);
}

.service-card:focus-visible {
    outline: 2px solid #943232;
    outline-offset: 2px;
}

.service-card-accent {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #943232;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #471818;
    margin: 0 0 10px 0;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.service-card:hover .service-card-title {
    color: #943232;
}

.service-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.service-card-cta {
    padding-bottom: 22px;
}

.service-card-cta {
    font-size: 13px;
    font-weight: 600;
    color: #943232;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-card-cta::after {
    content: '→';
    font-weight: 400;
    transition: transform 0.2s ease;
}

.service-card:hover .service-card-cta::after {
    transform: translateX(3px);
}

.service-note {
    margin-top: 44px;
    padding: 24px 28px;
    background: rgba(255, 249, 249, 0.9);
    border-left: 3px solid #943232;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(71, 24, 24, 0.06);
}

.service-note p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* アバウトセクション（編集風・余白） */
.about {
    padding: 88px 0 96px;
    background: #fff8f8;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* PC：画像と文章を2カラムで横並び */
.about-two-col {
    display: block;
}

@media (min-width: 900px) {
    .about-two-col {
        display: grid;
        grid-template-columns: 0.45fr 1fr;
        gap: 40px;
        align-items: center;
    }
    .about-image-section {
        margin: 0;
    }
    .about-main-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: min(420px, 70vh);
        object-fit: cover;
        border-radius: 12px;
    }
}

@media (max-width: 899px) {
    .about-two-col .about-image-section {
        margin: 20px 0;
    }
}

.about-header {
    text-align: center;
    margin-bottom: 20px;
}

.about-image-section {
    text-align: center;
    margin: 30px 0;
}

.about-image-trigger {
    display: block;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.about-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: contain;
}

.about-image-trigger:hover .about-main-image {
    opacity: 0.92;
}

.about-text {
    max-width: 100%;
}

.about-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #943232;
    text-align: center;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #943232;
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

/* 画像拡大ライトボックス */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox:not([hidden]) {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.about-image {
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: white;
}

/* コンタクトセクション */
.contact {
    padding: 88px 0 96px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}
.maps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.map-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.map-title {
    font-size: 18px;
    color: #943232;
    margin-bottom: 10px;
}

/* Googleマップをレスポンシブに */
.map-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info {
    background: linear-gradient(135deg, #fdecec, #fff6f6);
    padding: 40px;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: #CF4747;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #943232;
}

.contact-details p {
    color: #666;
}

.map-placeholder {
    background: linear-gradient(135deg, #CF4747, #943232);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* フッター */
footer {
    background: #471818;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p, .footer-section li {
    color: #f1d6d6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #f1d6d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}
.footer-booking-note {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.footer-booking-note a {
    text-decoration: underline;
}
.footer-voice-note {
    font-size: 0.85rem;
    opacity: 0.95;
    margin-top: 4px;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid #CF4747;
    padding-top: 20px;
    color: #f1d6d6;
}

/* 講座ナビゲーション */
.course-navigation {
    padding: 60px 0;
    background: white;
}

.menu-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-category h3 {
    font-size: 24px;
    color: #943232;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #CF4747;
    padding-bottom: 10px;
}

.course-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fff6f6, #fdecec);
    border: 2px solid #f3dede;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.course-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: #CF4747;
}

.course-link-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #943232, #CF4747);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.course-link-text h4 {
    font-size: 18px;
    color: #471818;
    margin-bottom: 5px;
}

.course-link-text p {
    color: #666;
    font-size: 14px;
}

/* 相談会セクション */
.consultation-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.consultation-section.foot-consultation {
    background: #f0f8f0;
}

.consultation-hero {
    text-align: center;
    margin-bottom: 50px;
}

.consultation-hero-content h3 {
    font-size: 28px;
    color: #471818;
    margin-bottom: 15px;
    line-height: 1.4;
}

.consultation-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.consultation-process {
    margin-bottom: 40px;
}

.consultation-process h4 {
    font-size: 20px;
    color: #943232;
    margin-bottom: 30px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #943232, #CF4747);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 16px;
    color: #471818;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.foot-concerns {
    margin-bottom: 40px;
}

.foot-concerns h4 {
    font-size: 20px;
    color: #943232;
    margin-bottom: 30px;
    text-align: center;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.concern-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.concern-item:hover {
    transform: translateY(-4px);
}

.concern-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.concern-item h5 {
    font-size: 16px;
    color: #471818;
    margin: 0;
}

.consultation-info-box {
    background: linear-gradient(135deg, #fff0f0, #fff6f6);
    border: 2px solid #f3dede;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.consultation-info-header {
    text-align: center;
    margin-bottom: 30px;
}

.consultation-info-header h4 {
    font-size: 18px;
    color: #471818;
    margin-bottom: 10px;
}

.consultation-description {
    color: #666;
    font-size: 16px;
}

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

.consultation-price {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.consultation-duration {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.consultation-amount {
    font-size: 24px;
    font-weight: 900;
    color: #CF4747;
}

@media (max-width: 768px) {
    .menu-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-price {
        flex-direction: column;
        gap: 10px;
    }
}

/* 当サロンについてセクション */
.about-image-section {
    text-align: center;
    margin: 40px 0;
}

.about-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
}

.about-details {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-details h3 {
    font-size: 28px;
    color: #943232;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 900;
}

.about-description {
    text-align: center;
    margin-bottom: 40px;
}

.about-description p {
    font-size: 16px;
    color: #471818;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.feature-item:nth-child(1) {
    border-top: 4px solid #f3dede;
}

.feature-item:nth-child(2) {
    border-top: 4px solid #f3dede;
}

.feature-item:nth-child(3) {
    border-top: 4px solid #e8f5e8;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-content h4 {
    font-size: 20px;
    color: #471818;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* コンセプトセクション */
.concept-section {
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #fff0f0, #fff6f6);
    border-radius: 20px;
}

.concept-image-section {
    text-align: center;
    margin-bottom: 40px;
}

.concept-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.concept-image:hover {
    transform: scale(1.02);
}

.concept-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.concept-intro {
    text-align: center;
    margin-bottom: 40px;
}

.concept-intro h4 {
    font-size: 24px;
    color: #943232;
    margin-bottom: 10px;
    font-weight: 900;
}

.concept-description {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.concept-pillars-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pillar-text {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.pillar-text-1 {
    border-top: 4px solid #f3dede;
}

.pillar-text-2 {
    border-top: 4px solid #f3dede;
}

.pillar-text-3 {
    border-top: 4px solid #e8f5e8;
}

.pillar-text-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pillar-text-content h5 {
    font-size: 20px;
    color: #471818;
    margin-bottom: 15px;
    font-weight: 700;
}

.pillar-text-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.concept-conclusion-text {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.concept-conclusion-text p {
    font-size: 18px;
    color: #471818;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
}

.concept-header {
    text-align: center;
    margin-bottom: 40px;
}

.concept-header h3 {
    font-size: 28px;
    color: #943232;
    margin-bottom: 10px;
    font-weight: 900;
}

.concept-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.concept-diagram {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-center {
    margin-bottom: 30px;
}

.health-heart {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #CF4747, #943232);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 20px rgba(207, 71, 71, 0.3);
    position: relative;
}

.health-heart::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #CF4747, #943232);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.2; }
}

.concept-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.pillar {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.pillar-1 {
    border-top: 4px solid #f3dede;
}

.pillar-2 {
    border-top: 4px solid #f3dede;
}

.pillar-3 {
    border-top: 4px solid #e8f5e8;
}

.pillar-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.pillar h4 {
    font-size: 18px;
    color: #471818;
    margin-bottom: 10px;
    font-weight: 700;
}

.pillar p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.concept-conclusion {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.concept-conclusion p {
    font-size: 16px;
    color: #471818;
    font-weight: 500;
    line-height: 1.6;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .concept-pillars {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .concept-pillars-text {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .health-heart {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }
    
    .health-heart::before {
        width: 120px;
        height: 120px;
    }
    
    .concept-header h3 {
        font-size: 24px;
    }
    
    .concept-subtitle {
        font-size: 16px;
    }
    
    .concept-intro h4 {
        font-size: 20px;
    }
    
    .concept-description {
        font-size: 16px;
    }
    
    .pillar-text {
        padding: 20px;
    }
    
    .pillar-text-icon {
        font-size: 40px;
    }
    
    .pillar-text-content h5 {
        font-size: 18px;
    }
    
    .pillar-text-content p {
        font-size: 14px;
    }
    
    .concept-conclusion-text p {
        font-size: 16px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-details {
        padding: 30px 20px;
    }
    
    .about-details h3 {
        font-size: 24px;
    }
    
    .about-description p {
        font-size: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        font-size: 40px;
    }
    
    .feature-content h4 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
}

/* お客様の声カテゴリセクション */
.testimonial-category {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.testimonial-category:last-child {
    margin-bottom: 0;
}

/* お客様の声セクションの下余白（Instagram・LINEカラムとの間） */
.testimonials + .sns-cta-wrapper {
    margin-top: 5rem;
}

.category-title {
    font-size: 28px;
    color: #943232;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #CF4747;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #CF4747;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .testimonial-category {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .category-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* お客様の声カード（個別表示） */
/* お客様の声：ジャンル分け */
.testimonial-category {
    margin-top: 2.5rem;
}
.testimonial-category:first-of-type {
    margin-top: 0;
}
.testimonial-category-title {
    font-size: 1.25rem;
    color: #943232;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(148, 50, 50, 0.25);
}
.testimonial-category .testimonials-grid {
    margin-top: 0;
}
.testimonial-category-empty {
    grid-column: 1 / -1;
    color: #888;
    font-size: 0.95rem;
    padding: 1.5rem;
    text-align: center;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonials .container > .testimonial-category:first-of-type .testimonials-grid {
    margin-top: 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 15px;
    color: #943232;
    font-weight: bold;
}

.author-icon {
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    border: 2px solid #CF4747;
}

.author-info {
    font-size: 15px;
    color: #943232;
    font-weight: bold;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
        min-height: auto;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
    
    .author-icon {
        font-size: 20px;
        width: 28px;
        height: 28px;
    }
    
    .author-info {
        font-size: 14px;
    }
}

/* 当サロンについての新しいスタイル */
.about-subtitle {
    font-size: 1.3rem;
    color: #CF4747;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
    font-style: italic;
}

.about-conclusion {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #CF4747;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-conclusion {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

/* 学びのルーツ・地球儀（MapLibre GL JS Globe Projection） */
.globe-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f6f0 0%, #e8e6e0 100%);
}
.globe-lead {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #555;
}
.globe-card {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 2px solid rgba(148, 50, 50, 0.12);
    background: #030314;
}
.globe-container {
    width: 100%;
    height: 480px;
    min-height: 360px;
    position: relative;
    background: #030314;
}
.globe-container .maplibregl-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.globe-container .maplibregl-canvas-container {
    border-radius: 18px 18px 0 0;
}
.globe-legend {
    margin: 0;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #fff;
    background: #1a1a2e;
    text-align: center;
}
.globe-cta {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #555;
}
.globe-cta a {
    color: #943232;
    font-weight: bold;
    text-decoration: none;
}
.globe-cta a:hover {
    text-decoration: underline;
}

/* AI-SEO対策: FAQセクション */
.faq-section {
    padding: 88px 0 96px;
    background: #faf8f5;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #943232;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.faq-line-button {
    margin-top: 15px;
    text-align: center;
}

.faq-line-button a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.faq-line-button a:hover {
    transform: scale(1.05);
}

/* AI-SEO対策: ブログセクション */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #CF4747;
    transition: transform 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.blog-item h3 {
    color: #943232;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-item p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item,
    .blog-item {
        padding: 25px;
    }
    
    .faq-item h3,
    .blog-item h3 {
        font-size: 18px;
    }
}

/* インスタグラムフォローアピールセクション */
/* Instagram・LINE をPCで2カラムに */
.sns-cta-wrapper {
    display: block;
    margin-top: 4rem;
}

@media (min-width: 900px) {
    .sns-cta-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
    .sns-cta-wrapper .instagram-section,
    .sns-cta-wrapper .line-section {
        display: flex;
        flex-direction: column;
        padding: 60px 0;
    }
    .sns-cta-wrapper .instagram-section .container,
    .sns-cta-wrapper .line-section .container {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .sns-cta-wrapper .instagram-content,
    .sns-cta-wrapper .line-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.instagram-section {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.instagram-content {
    max-width: 800px;
    margin: 0 auto;
}

.instagram-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.instagram-description {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.instagram-button-container {
    margin-bottom: 15px;
}

.instagram-button {
    display: inline-block;
    background: white;
    color: #E4405F;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f8f8;
}

.instagram-note {
    font-size: 14px;
    opacity: 0.9;
}

/* LINEお友達追加セクション */
.line-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00C300 0%, #00A000 100%);
    color: white;
}

.line-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.line-content .section-title {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.line-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.line-button-container {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.line-button-container a {
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.line-button-container a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.line-note {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
    font-style: italic;
}

/* LINEボタンエリアの強調 */
.line-button-container::before {
    content: "📱";
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.line-button-container::after {
    content: "タップして友だち追加";
    display: block;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
    opacity: 0.9;
    font-weight: bold;
}

@media (max-width: 768px) {
    .line-content .section-title {
        font-size: 24px;
    }
    
    .line-description {
        font-size: 16px;
    }
    
    .line-section {
        padding: 60px 0;
    }
    
    .line-button-container {
        padding: 15px;
        margin: 20px 0;
    }
    
    .line-button-container::before {
        font-size: 20px;
    }
    
    .line-button-container::after {
        font-size: 11px;
    }
}

/* 小さなLINEボタン（お問い合わせ欄用） */
.line-button-small {
    margin-top: 15px;
}

.line-button-small a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.line-button-small a:hover {
    transform: scale(1.05);
}

.contact-item .line-button-small img {
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ホットペッパービューティー CTA（LINEセクション内） */
.hotpepper-cta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
}
.hotpepper-cta-text {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}
.hotpepper-banner-link {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.hotpepper-banner-link:hover {
    transform: scale(1.03);
    opacity: 0.95;
}
.hotpepper-banner {
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}
/* お問い合わせ欄内のホットペッパー（小さめバナー） */
.hotpepper-cta-inline {
    margin-top: 0.75rem;
    margin-bottom: 0;
}
.hotpepper-banner-link-inline {
    display: inline-block;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}
.hotpepper-banner-link-inline:hover {
    opacity: 0.9;
}
.hotpepper-banner-link-inline img {
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    vertical-align: middle;
}

/* チラシアイキャッチセクション */
.course-flyer-section {
    padding: 40px 0;
    background: white;
}

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

.main-flyer {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    border: 3px solid #f3dede;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-flyer:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .main-flyer {
        max-width: 90%;
        border-radius: 12px;
    }
}

/* 講座詳細セクション */
.course-details {
    padding: 80px 0;
    background: #fff6f6;
}

.course-details.molecular-nutrition {
    background: #f0f8f0;
}

.course-hero {
    text-align: center;
    margin-bottom: 50px;
}

.course-hero-content h3 {
    font-size: 28px;
    color: #471818;
    margin-bottom: 15px;
    line-height: 1.4;
}

.course-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.symptoms-section {
    margin-bottom: 40px;
}

.symptoms-section h4 {
    font-size: 20px;
    color: #943232;
    margin-bottom: 20px;
    text-align: center;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.symptom-item {
    background: #CF4747;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.recommendation-section {
    margin-bottom: 40px;
}

.recommendation-section h4 {
    font-size: 20px;
    color: #943232;
    margin-bottom: 20px;
    text-align: center;
}

.recommendation-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.recommendation-list li {
    background: white;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 4px solid #CF4747;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.course-info-box {
    background: linear-gradient(135deg, #fff0f0, #fff6f6);
    border: 2px solid #f3dede;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.course-info-header {
    text-align: center;
    margin-bottom: 30px;
}

.course-info-header h4 {
    font-size: 18px;
    color: #471818;
    margin-bottom: 10px;
}

.course-description {
    color: #666;
    font-size: 16px;
}

.schedule-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.schedule h5, .pricing h5 {
    font-size: 16px;
    color: #943232;
    margin-bottom: 10px;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-slot {
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #f0d0d0;
}

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

.price-option {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f0d0d0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-type {
    font-weight: 700;
    color: #471818;
}

.price-amount {
    font-size: 20px;
    font-weight: 900;
    color: #CF4747;
}

.price-note {
    font-size: 12px;
    color: #666;
}

.starter-set {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #f0d0d0;
}

.starter-set h4 {
    font-size: 18px;
    color: #943232;
    margin-bottom: 10px;
}

.starter-price {
    font-size: 24px;
    font-weight: 900;
    color: #CF4747;
    margin-bottom: 10px;
}

.starter-contents p {
    color: #666;
    font-size: 14px;
}

/* 分子栄養学講座専用スタイル */
.before-after-section {
    margin-bottom: 40px;
}

.before-after-section h4 {
    font-size: 20px;
    color: #943232;
    margin-bottom: 20px;
    text-align: center;
}

.before-symptoms {
    max-width: 600px;
    margin: 0 auto 20px;
    list-style: none;
    padding: 0;
}

.before-symptoms li {
    background: white;
    padding: 12px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 4px solid #943232;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #666;
}

.resolution {
    text-align: center;
    background: linear-gradient(135deg, #943232, #CF4747);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 600px;
}

.resolution p {
    margin: 0;
    font-size: 18px;
}

.course-materials {
    color: #CF4747 !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

.option-course {
    background: #f0f8f0 !important;
    border-color: #4caf50 !important;
}

.option-course .price-type {
    color: #2e7d32 !important;
}

.option-course .price-amount {
    color: #4caf50 !important;
}

.wooden-stick-note {
    color: #CF4747 !important;
    font-weight: 600 !important;
    margin-top: 8px !important;
}

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

.course-flyer {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 2px solid #f3dede;
}

@media (max-width: 768px) {
    .course-flyer {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .course-hero-content h3 {
        font-size: 24px;
    }
    
    .symptoms-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .schedule-pricing {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }
    .header-content > div:first-child {
        flex: 1;
        min-width: 0;
    }
    nav {
        flex-shrink: 0;
    }


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

    .hero p {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .service-card-accent,
    .service-card-title,
    .service-card-desc,
    .service-card-cta {
        padding-left: 18px;
        padding-right: 18px;
    }
    .service-card-accent { padding-top: 14px; }
    .service-card-cta { padding-bottom: 18px; }

    .service-card-accent {
        font-size: 14px;
    }

    .service-card-title {
        font-size: 20px;
        font-weight: 800;
    }

    .service-card-desc {
        font-size: 13px;
    }

    .service-note {
        margin-top: 40px;
        padding: 20px;
    }

    .about-content {
        gap: 30px;
    }
    
    .about-header h2 {
        font-size: 28px;
    }
    
    .about-main-image {
        max-width: 90%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .maps-grid { grid-template-columns: 1fr; }

    .contact-info { padding: 24px; }
    .contact-item { align-items: flex-start; }
    .contact-details p { word-break: break-word; }
    .map-container { padding-top: 62%; min-height: 320px; }
}

/* 講座ページ用スタイル */
.course-section {
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 2px solid #f0f0f0;
}

.course-section:last-child {
    border-bottom: none;
}

.course-index {
    margin-top: 10px;
    margin-bottom: 40px;
}

.course-index-lead {
    margin: 0 0 20px;
    color: #555;
    font-size: 0.98rem;
}

.course-index-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.course-index-card {
    display: block;
    padding: 18px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff8f6 0%, #ffecec 40%, #fff9f9 100%);
    border: 1px solid #f0b8b8;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease, transform 0.12s ease, border-color 0.2s ease, background 0.2s ease;
}

.course-index-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: #cf7474;
    background: linear-gradient(135deg, #ffe9e3 0%, #ffd5d5 40%, #fff5f5 100%);
}

.course-index-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #943232;
    margin-bottom: 4px;
}

.course-index-title {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #471818;
}

.course-index-summary {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .course-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .course-index-grid {
        grid-template-columns: 1fr;
    }
}

.course-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.course-icon {
    font-size: 40px;
}

.course-header h3 {
    font-size: 28px;
    color: #471818;
    margin: 0;
}

.course-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.course-content.course-content--text-only {
    max-width: 720px;
}

.course-content.course-content--text-only .course-details {
    max-width: 720px;
    margin: 0 auto;
}

.course-details {
    padding: 0;
    background: transparent;
    max-width: 760px;
    margin: 0 auto;
}

.course-details h4 {
    font-size: 22px;
    color: #943232;
    margin-top: 0;
    margin-bottom: 20px;
}

.course-details p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 講座詳細ページ共通レイアウト */
.course-detail-nav {
    margin-bottom: 32px;
    border-bottom: 1px solid #f0dede;
    padding-bottom: 8px;
}

.course-detail-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.course-detail-nav a {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff9f9;
    border: 1px solid #f3dede;
    font-size: 0.85rem;
    color: #943232;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.course-detail-nav a:hover {
    background: #943232;
    border-color: #943232;
    color: #fff;
}

.course-detail-section {
    margin-bottom: 24px;
    padding: 20px 22px 18px;
    border-radius: 12px;
    background: #ffffff;
}

.course-details .course-detail-section:nth-of-type(even) {
    background: #f7f7f7;
}

.course-detail-section h3 {
    font-size: 1.1rem;
    color: #471818;
    margin: 0 0 10px;
}

.course-detail-section ul {
    padding-left: 1.2rem;
    margin: 0 0 10px;
}

.course-detail-section li {
    margin-bottom: 6px;
}

/* 小顔整体ページ用 ビフォーアフター＋お客様の声 */
.face-testimonials {
    padding: 60px 0;
    background: #f8f6f0;
}

.face-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}
@media (max-width: 640px) {
    .face-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.face-testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.face-images figure {
    margin: 0;
}

.face-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.face-images figcaption {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #666;
}

.face-voice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.face-voice-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.face-voice-summary {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.face-voice-meta {
    font-size: 0.8rem;
    color: #943232;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 0;
}

/* 台湾式足つぼページ：料金前のお客様の声 */
.foot-voice-section {
    padding: 60px 0;
    background: #fffbfb;
}
.foot-voice-lead {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}
.foot-voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
    margin-top: 24px;
}
@media (max-width: 768px) {
    .foot-voice-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.foot-voice-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    padding: 20px;
    border: 1px solid rgba(148, 50, 50, 0.08);
}
.foot-voice-figure {
    margin: 0 0 16px 0;
    border-radius: 10px;
    overflow: hidden;
}
.foot-voice-figure img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.foot-voice-text {
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    margin: 0 0 12px 0;
}
.foot-voice-meta {
    font-size: 13px;
    color: #943232;
    font-weight: 600;
    margin: 0;
}
.foot-voice-grid .foot-voice-card:only-child {
    grid-column: 1 / -1;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
/* ご夫婦セット：写真＋アンケートの2枚を横並び */
.foot-voice-couple-set .foot-voice-card {
    max-width: 900px;
}
.foot-voice-two-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    .foot-voice-two-images {
        grid-template-columns: 1fr;
    }
}
.foot-voice-two-images .foot-voice-figure {
    margin: 0;
}
.foot-voice-two-images .foot-voice-figure figcaption {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    text-align: center;
}
.foot-voice-section.course-detail-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(148, 50, 50, 0.12);
}
.foot-voice-section .section-label {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}
.foot-voice-section .section-title {
    margin-bottom: 12px;
}

.face-beforeafter-banner {
    background: #f0ece4;
    padding: 40px 0;
}

.face-beforeafter-inner {
    display: flex;
    justify-content: center;
}

.face-beforeafter-inner .about-main-image {
    max-width: 640px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.course-benefits {
    margin: 30px 0;
    padding: 25px;
    background: #fff9f9;
    border-radius: 8px;
}

.course-benefits h4 {
    font-size: 20px;
    color: #471818;
    margin-top: 0;
    margin-bottom: 15px;
}

.course-kit {
    margin: 30px 0;
    padding: 25px;
    background: #f8f8f8;
    border-radius: 8px;
}

.course-kit h4 {
    font-size: 20px;
    color: #471818;
    margin-top: 0;
    margin-bottom: 20px;
}

.kit-items {
    display: grid;
    gap: 20px;
}

.kit-item {
    padding: 15px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #943232;
}

.kit-item h5 {
    font-size: 18px;
    color: #471818;
    margin-top: 0;
    margin-bottom: 10px;
}

.kit-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.kit-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.testimonial-box {
    margin: 30px 0;
    padding: 25px;
    background: #fff9f9;
    border-radius: 8px;
    border-left: 4px solid #943232;
}

.testimonial-box h4 {
    font-size: 20px;
    color: #471818;
    margin-top: 0;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 3px solid #943232;
}

.testimonial-note {
    font-size: 14px;
    color: #666;
    margin: 0;
    text-align: right;
}

.course-link {
    margin-top: 20px;
}

.course-link a {
    color: #943232;
    text-decoration: underline;
    font-weight: 500;
}

.course-link a:hover {
    color: #471818;
}

.course-video {
    margin-top: 20px;
}

.course-video iframe {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* 講座詳細ページ レイアウト最適化（PC時2カラム） */
@media (min-width: 960px) {
    .course-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .course-content.course-content--text-only {
        flex-direction: column;
        align-items: center;
    }

    .about-image-section {
        flex: 0 0 40%;
        max-width: 420px;
    }

    .about-image-section .about-main-image {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    .course-details {
        flex: 1;
        max-width: 680px;
        margin: 0 0 0 32px;
    }
}

.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #943232, #cf7474);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(148, 50, 50, 0.35);
    border: none;
    gap: 8px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.button-link::before {
    content: '←';
    font-size: 0.9rem;
}

.button-link:hover {
    background: linear-gradient(135deg, #7a2525, #b85e5e);
    box-shadow: 0 10px 24px rgba(148, 50, 50, 0.45);
    transform: translateY(-1px);
}

.button-link:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(148, 50, 50, 0.35);
}

.course-switch-links {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.85rem;
}

.course-switch-label {
    color: #471818;
    font-weight: 600;
    margin-right: 6px;
    font-size: 0.92rem;
}

.button-link-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #943232;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e0c7c7;
    transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

.button-link-secondary:hover {
    background: #943232;
    color: #fff;
    box-shadow: 0 4px 12px rgba(148, 50, 50, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .course-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .course-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .course-header h3 {
        font-size: 24px;
    }
    
    .course-details h4 {
        font-size: 20px;
    }
    
    .kit-items {
        grid-template-columns: 1fr;
    }
} 