/*
Theme Name: SERUM Child
Theme URI: https://tcd-theme.com/tcd096/
Template: serum_tcd096
Author: TCD
Author URI: https://tcd-theme.com/
Description: WordPress theme "SERUM" is a template with the image of a dermatology clinic, featuring side icon buttons and a post type that allows you to organize the subjects of treatment. CTAs can also be easily set up.
Version: 2.7.1748809546
Updated: 2025-06-02 05:25:46
*/
/* 診療内容ページ専用CSS - デフォルトpost_row活用版 */
/* 生成日: 2025年6月2日 */
/* 用途: 内科・生活習慣病・健康診断・美容注射の診療内容表示 */
/* カラーパレット: ナチュラル・メディカルグリーン */

/* === リセット・ベース === */
.medical-subjects-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.medical-subjects-container {
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
}

/* === メインコンテナ === */
.medical-subjects-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f7fafc;
}

/* === セクションタイトル === */
.medical-subjects-title {
    text-align: center;
    margin-bottom: 60px;
}

.medical-subjects-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.medical-subjects-title .subtitle {
    font-size: 16px;
    color: #4a7c59;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* === 診療カテゴリーセクション === */
.medical-category-section {
    margin-bottom: 48px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
}

.category-header::before {
    content: "✚";
    color: #4a7c59;
    font-size: 28px;
    font-weight: bold;
}

/* === post_col の余白調整のみ（デフォルトの動作を維持） === */
.medical-subjects-container .post_col {
    margin-bottom: 20px;
}

/* === 診療カード === */
.medical-card {
    background: white;
    border-radius: 12px;
    border: 2px solid #e8f4f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    min-height: 280px;
    height: 100%;
}

.medical-card:hover {
    border-color: #4a7c59;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.15);
    transform: translateY(-2px);
}

/* === カードアイコンエリア === */
.card-icon-area {
    background: #f0f8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 20px;
}

.card-icon-area img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* === カードコンテンツエリア === */
.card-content {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.card-title-en {
    font-size: 11px;
    color: #62a059;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    margin-bottom: 16px;
}

/* === 診療項目リスト（常に2列表示） === */
.medical-items-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    flex: 1;
}

.medical-item {
    background: #f7fafc;
    border: 1px solid #e8f4f0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    color: #4a5568;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.medical-item:hover {
    background: #4a7c59;
    color: white;
    border-color: #4a7c59;
}

/* === 自由診療セクション === */
.private-medical-section .category-header {
    color: #2d3748;
}

.private-medical-section .category-header::before {
    content: "💎";
    color: #7ba05b;
}

.private-medical-section .medical-card {
    border-color: #e8f5e8;
}

.private-medical-section .medical-card:hover {
    border-color: #7ba05b;
    box-shadow: 0 8px 25px rgba(123, 160, 91, 0.15);
}

.private-medical-section .card-icon-area {
    background: #f0f9f0;
}

.private-medical-section .medical-item {
    background: #f8fcf8;
    border-color: #e8f5e8;
}

.private-medical-section .medical-item:hover {
    background: #7ba05b;
    border-color: #7ba05b;
}

/* === サブカテゴリー === */
.medical-subcategory {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e8f4f0;
}

.subcategory-title {
    font-size: 14px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

/* === レスポンシブ調整（デフォルトpost_rowと併用） === */
@media (min-width: 769px) {

    /* PC表示時のアイコンエリア拡大 */
    .card-icon-area {
        min-width: 120px;
    }

    .card-icon-area img {
        width: 50px;
        height: 50px;
    }

    /* PC表示の項目サイズ */
    .medical-item {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .medical-subjects-main {
        padding: 30px 15px;
    }

    .medical-subjects-title h2 {
        font-size: 28px;
    }

    .category-header {
        font-size: 20px;
    }

    .card-content {
        padding: 16px 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .medical-card {
        min-height: 240px;
    }

    /* モバイルでも診療項目は2列維持 */
    .medical-item {
        font-size: 11px;
        padding: 6px 8px;
    }
}

@media (max-width: 480px) {
    .medical-subjects-title h2 {
        font-size: 24px;
    }

    .category-header {
        font-size: 18px;
    }

    .card-title {
        font-size: 16px;
    }

    .medical-card {
        flex-direction: column;
        min-height: auto;
    }

    .card-icon-area {
        min-width: auto;
        padding: 16px;
    }

    /* 超小画面でも診療項目は2列維持、さらに小さく */
    .medical-item {
        font-size: 10px;
        padding: 5px 6px;
    }
}

/* === アニメーション === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.medical-card {
    animation: fadeInUp 0.6s ease forwards;
}

.post_col:nth-child(2) .medical-card {
    animation-delay: 0.1s;
}

.medical-category-section:nth-child(2) .medical-card {
    animation-delay: 0.2s;
}

.medical-category-section:nth-child(2) .post_col:nth-child(2) .medical-card {
    animation-delay: 0.3s;
}





/* クリニックヒーローセクション専用CSS - 完全版 */
/* 生成日: 2025年6月2日 */
/* 用途: 3ポイント紹介＋クリニック情報表示 */
/* カラーパレット: ナチュラル・メディカルグリーン */

/* === リセット・ベース === */
.clinic-hero-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.clinic-hero-container {
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
}

/* === メインコンテナ === */
.clinic-hero-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f7fafc;
}

/* === post_col の余白調整（デフォルトの動作を維持） === */
.clinic-hero-container .post_col {
    margin-bottom: 20px;
}

/* === 左カラム：ポイントセクション === */
.clinic-points-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.1);
    height: 100%;
    width: 100%;
}

.clinic-points-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
    width: 100%;
}

.clinic-point-item {
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: row !important;
}

.point-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #4a7c59;
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
}

.point-label {
    font-size: 9px;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.point-num {
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    line-height: 1;
}

.point-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-top: 8px;
}

/* ポイント説明文（小さめテキスト） */
.point-description {
    font-size: 13px;
    font-weight: 400;
    color: #4a5568;
    margin-top: 6px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* === 右カラム：クリニック情報セクション === */
.clinic-info-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.clinic-logo-area {
    margin-bottom: 20px;
}

.clinic-logo {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
}

.clinic-department {
    display: inline-block;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #4a7c59;
    border: 2px solid #4a7c59;
    border-radius: 6px;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    margin-right: 8px;
}

.clinic-phone-section {
    margin-bottom: 20px;
}

.phone-label {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 8px;
    font-weight: 500;
}

.phone-number {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-number::before {
    content: "📞";
    font-size: 24px;
}

.phone-number:hover {
    color: #4a7c59;
    transition: color 0.3s ease;
}

.clinic-buttons {
    width: 100%;
    max-width: 300px;
}

.appointment-btn {
    width: 100%;
    padding: 16px 24px;
    background: #4a7c59;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-sizing: border-box;
}

.appointment-btn::before {
    content: "📅";
    font-size: 20px;
}

.appointment-btn:hover {
    background: #62a059;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.3);
}

.online-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4a7c59;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid #4a7c59;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.online-guide-link::before {
    content: "🛡️";
    font-size: 16px;
}

.online-guide-link:hover {
    background: #4a7c59;
    color: white;
}

/* === レスポンシブ調整 === */
@media (min-width: 769px) {

    /* PC表示時の調整 */
    .point-number {
        width: 60px;
        height: 60px;
    }

    .point-num {
        font-size: 24px;
    }

    .point-text {
        font-size: 22px;
        margin-top: 12px;
    }

    .point-description {
        font-size: 14px;
        margin-top: 8px;
    }

    .clinic-points-section,
    .clinic-info-section {
        padding: 50px 40px;
    }

    /* PC表示時の高さ揃え */
    .clinic-hero-container .post_row {
        display: flex;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .clinic-hero-main {
        padding: 30px 15px;
    }

    .clinic-points-section,
    .clinic-info-section {
        padding: 30px 20px;
    }

    .clinic-points-list {
        gap: 24px;
    }

    .point-text {
        font-size: 16px;
    }

    .point-description {
        font-size: 12px;
    }

    .phone-number {
        font-size: 24px;
    }

    .appointment-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .clinic-department {
        font-size: 14px;
        padding: 6px 16px;
        margin-bottom: 8px;
        margin-right: 4px;
    }
}

@media (max-width: 480px) {

    .clinic-points-section,
    .clinic-info-section {
        padding: 20px 16px;
    }

    .point-text {
        font-size: 15px;
    }

    .point-description {
        font-size: 11px;
    }

    .phone-number {
        font-size: 20px;
        flex-direction: column;
        gap: 4px;
    }

    .clinic-logo {
        width: 100px;
    }

    .clinic-department {
        font-size: 12px;
        padding: 4px 12px;
        display: block;
        margin-bottom: 6px;
        margin-right: 0;
    }
}

/* === アニメーション === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.clinic-points-section,
.clinic-info-section {
    animation: fadeInUp 0.8s ease forwards;
}

.clinic-info-section {
    animation-delay: 0.2s;
}

.clinic-point-item {
    animation: fadeInUp 0.6s ease forwards;
}

.clinic-point-item:nth-child(2) {
    animation-delay: 0.1s;
}

.clinic-point-item:nth-child(3) {
    animation-delay: 0.2s;
}




/* 池袋東口まめクリニック 診療時間表 - スタイル */
/* 生成日: 2025年6月10日 */
.clinic-hours-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Yu Gothic', '游ゴシック', 'Meiryo', 'メイリオ', sans-serif;
    background: #f7fafc;
}

/* タイトル */
.clinic-hours-title-section {
    text-align: center;
    margin-bottom: 40px;
}

.clinic-hours-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
}

.clinic-hours-subtitle {
    font-size: 14px;
    color: #62a059;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

.clinic-hours-title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4a7c59, #7ba05b);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* メインコンテナ */
.clinic-hours-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* 診療時間カード共通 */
.clinic-hours-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.1);
    border: 1px solid #e2e8f0;
}

/* カードヘッダー共通 */
.clinic-hours-header {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
}

.clinic-hours-header.weekday-header {
    background: linear-gradient(135deg, #edf2f7, #f7fafc);
}

.clinic-hours-header.weekend-header {
    background: linear-gradient(135deg, #fef5e7, #fed7aa);
}

/* 曜日コンテナ */
.clinic-hours-days-container {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.clinic-hours-days-container.weekend {
    max-width: 60%;
    margin: 0 auto;
}

.clinic-hours-day-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clinic-hours-day-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.clinic-hours-day-circle.weekday {
    background: #4a7c59;
}

.clinic-hours-day-circle.holiday {
    background: #e53e3e;
}

/* タイムライン */
.clinic-hours-timeline-container {
    position: relative;
}

.clinic-hours-timeline-labels {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
}

.time-label {
    position: absolute;
    color: #718096;
    font-size: 12px;
    font-weight: 500;
}

.clinic-hours-blocks-container {
    margin-left: 70px;
    position: relative;
    height: 288px;
}

/* 診療時間ブロック共通 */
.clinic-hours-block {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
}

/* 平日の診療時間ブロック */
.clinic-hours-block.common-am {
    top: 24px;
    left: 0;
    right: 0;
    height: 96px;
    background: linear-gradient(135deg, #62a059, #7ba05b);
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(98, 160, 89, 0.3);
}

.clinic-hours-block.weekday-pm {
    font-size: 11px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(74, 124, 89, 0.3);
    line-height: 1.2;
}

.clinic-hours-block.mon {
    top: 156px;
    left: 0;
    width: 20%;
    height: 132px;
    background: linear-gradient(135deg, #4a7c59, #62a059);
}

.clinic-hours-block.tue {
    top: 216px;
    left: 20%;
    width: 20%;
    height: 72px;
    background: linear-gradient(135deg, #7ba05b, #62a059);
}

.clinic-hours-block.wed {
    top: 168px;
    left: 40%;
    width: 20%;
    height: 96px;
    background: linear-gradient(135deg, #4a7c59, #7ba05b);
}

.clinic-hours-block.thu {
    top: 168px;
    left: 60%;
    width: 20%;
    height: 96px;
    background: linear-gradient(135deg, #62a059, #4a7c59);
}

.clinic-hours-block.fri {
    top: 168px;
    left: 80%;
    width: 20%;
    height: 96px;
    background: linear-gradient(135deg, #7ba05b, #62a059);
}

/* 土日祝の診療時間ブロック */
.clinic-hours-block.holiday-am {
    top: 24px;
    left: 0;
    right: 0;
    height: 72px;
    background: linear-gradient(135deg, #e53e3e, #ff6b6b);
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.clinic-hours-block.holiday-pm {
    top: 120px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, #ff6b6b, #e53e3e);
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

/* 注意事項 */
.clinic-hours-notes {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.08);
    border: 1px solid #e2e8f0;
}

.clinic-hours-notes-text {
    color: #4a5568;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* レスポンシブ対応 (Tablet) */
@media (max-width: 768px) {
    .clinic-hours-main-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .clinic-hours-title {
        font-size: 24px;
    }

    .clinic-hours-card {
        padding: 20px;
    }

    .clinic-hours-day-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* レスポンシブ対応 (Mobile) */
@media (max-width: 480px) {
    .clinic-hours-wrapper {
        padding: 15px;
    }

    .clinic-hours-timeline-labels {
        width: 50px;
    }

    .clinic-hours-blocks-container {
        margin-left: 60px;
    }

    .time-label {
        font-size: 10px;
    }

    .clinic-hours-block.common-am,
    .clinic-hours-block.holiday-am,
    .clinic-hours-block.holiday-pm {
        font-size: 14px;
    }

    .clinic-hours-block.weekday-pm {
        font-size: 9px;
    }

    .clinic-hours-day-circle {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}


/* 池袋東口まめクリニック アレルギー検査記事 専用CSS - 競合回避バージョン */
/* 生成日: 2025年6月16日 */
/* 用途: 入園・入学時アレルギー検査記事ページ */
/* カラーパレット: ナチュラル・メディカル */

/* === リセット・ベース === */
:root {
    /* メイン */
    --mameclinic-allergy-2025-primary: #4a7c59;
    --mameclinic-allergy-2025-secondary: #62a059;
    --mameclinic-allergy-2025-accent: #7ba05b;

    /* 背景 */
    --mameclinic-allergy-2025-bg-primary: #f7fafc;
    --mameclinic-allergy-2025-bg-secondary: #edf2f7;

    /* UI要素 */
    --mameclinic-allergy-2025-text: #2d3748;
    --mameclinic-allergy-2025-cta: #e53e3e;
    --mameclinic-allergy-2025-link: #62a059;

    /* グラデーション */
    --mameclinic-allergy-2025-gradient-1: linear-gradient(135deg, #4a7c59 0%, #62a059 50%, #7ba05b 100%);
    --mameclinic-allergy-2025-gradient-2: linear-gradient(45deg, #f7fafc 0%, #edf2f7 100%);
    --mameclinic-allergy-2025-gradient-cta: linear-gradient(135deg, #e53e3e 0%, #ff6b6b 100%);
}

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

.mameclinic-allergy-2025-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--mameclinic-allergy-2025-bg-primary);
    font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", "Meiryo", sans-serif;
    line-height: 1.7;
    color: var(--mameclinic-allergy-2025-text);
    overflow-x: hidden;
}

/* === レイアウト === */
.mameclinic-allergy-2025-hero {
    background: var(--mameclinic-allergy-2025-gradient-1);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mameclinic-allergy-2025-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: mameclinic-allergy-2025-float 6s ease-in-out infinite;
}

.mameclinic-allergy-2025-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.mameclinic-allergy-2025-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mameclinic-allergy-2025-hero-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.mameclinic-allergy-2025-section {
    padding: 60px 20px;
    margin: 40px 0;
}

.mameclinic-allergy-2025-section:nth-child(even) {
    background: var(--mameclinic-allergy-2025-bg-secondary);
}

.mameclinic-allergy-2025-section-title {
    font-size: 2rem;
    color: var(--mameclinic-allergy-2025-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.mameclinic-allergy-2025-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--mameclinic-allergy-2025-gradient-1);
    border-radius: 2px;
}

/* === コンポーネント === */
.mameclinic-allergy-2025-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* 手続き詳細セクション用 */
.mameclinic-allergy-2025-procedure-overview {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05) 0%, rgba(98, 160, 89, 0.05) 100%);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 6px solid var(--mameclinic-allergy-2025-primary);
}

.mameclinic-allergy-2025-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mameclinic-allergy-2025-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mameclinic-allergy-2025-step-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(74, 124, 89, 0.1);
    border: 2px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mameclinic-allergy-2025-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(74, 124, 89, 0.15);
    border-color: var(--mameclinic-allergy-2025-accent);
}

.mameclinic-allergy-2025-step-number {
    background: var(--mameclinic-allergy-2025-gradient-1);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.mameclinic-allergy-2025-step-card h4 {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mameclinic-allergy-2025-facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.mameclinic-allergy-2025-facility-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.1);
    border-left: 4px solid var(--mameclinic-allergy-2025-secondary);
}

.mameclinic-allergy-2025-facility-card h4 {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mameclinic-allergy-2025-notice-box {
    background: var(--mameclinic-allergy-2025-bg-secondary);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid var(--mameclinic-allergy-2025-accent);
}

/* 給食対応セクション用 */
.mameclinic-allergy-2025-principle-box {
    background: var(--mameclinic-allergy-2025-gradient-1);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.mameclinic-allergy-2025-reason-grid {
    margin: 40px 0;
}

.mameclinic-allergy-2025-reason-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.08);
    border-left: 4px solid var(--mameclinic-allergy-2025-accent);
    transition: all 0.3s ease;
}

.mameclinic-allergy-2025-reason-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.12);
}

.mameclinic-allergy-2025-reason-icon {
    font-size: 2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.mameclinic-allergy-2025-reason-content h4 {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mameclinic-allergy-2025-seasoning-info {
    background: var(--mameclinic-allergy-2025-bg-secondary);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.mameclinic-allergy-2025-seasoning-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.1);
}

.mameclinic-allergy-2025-seasoning-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.mameclinic-allergy-2025-seasoning-row:hover {
    background-color: rgba(74, 124, 89, 0.05);
}

.mameclinic-allergy-2025-seasoning-row:last-child {
    border-bottom: none;
}

.mameclinic-allergy-2025-allergen {
    background: var(--mameclinic-allergy-2025-primary);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.mameclinic-allergy-2025-seasoning-list {
    padding: 15px 20px;
    background: white;
    display: flex;
    align-items: center;
}

.mameclinic-allergy-2025-warning-box {
    background: rgba(229, 62, 62, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--mameclinic-allergy-2025-cta);
    margin-top: 30px;
}

/* 注意点セクション用 */
.mameclinic-allergy-2025-attention-intro {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05) 0%, rgba(98, 160, 89, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.mameclinic-allergy-2025-attention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.mameclinic-allergy-2025-attention-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(74, 124, 89, 0.1);
    border-top: 4px solid var(--mameclinic-allergy-2025-accent);
    transition: all 0.3s ease;
}

.mameclinic-allergy-2025-attention-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(74, 124, 89, 0.15);
}

.mameclinic-allergy-2025-attention-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    display: block;
}

.mameclinic-allergy-2025-attention-card h4 {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.mameclinic-allergy-2025-attention-card ul {
    list-style: none;
    padding: 0;
}

.mameclinic-allergy-2025-attention-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.mameclinic-allergy-2025-attention-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mameclinic-allergy-2025-accent);
    font-weight: 600;
}

.mameclinic-allergy-2025-cooperation-box {
    background: linear-gradient(135deg, #7ba05b 0%, #62a059 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
}

/* 管理指導表セクション用 */
.mameclinic-allergy-2025-guideline-overview {
    margin-bottom: 40px;
}

.mameclinic-allergy-2025-guideline-intro {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.1);
    border-left: 6px solid var(--mameclinic-allergy-2025-primary);
}

.mameclinic-allergy-2025-guideline-intro h3 {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mameclinic-allergy-2025-historical-note {
    background: rgba(74, 124, 89, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.mameclinic-allergy-2025-review-opportunity {
    background: var(--mameclinic-allergy-2025-bg-secondary);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.mameclinic-allergy-2025-benefits-list {
    margin: 25px 0;
}

.mameclinic-allergy-2025-benefit-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.1);
}

.mameclinic-allergy-2025-benefit-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.mameclinic-allergy-2025-conclusion-box {
    background: var(--mameclinic-allergy-2025-gradient-1);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
}

.mameclinic-allergy-2025-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.mameclinic-allergy-2025-point-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(74, 124, 89, 0.1);
    border: 2px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mameclinic-allergy-2025-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(74, 124, 89, 0.15);
    border-color: var(--mameclinic-allergy-2025-accent);
}

.mameclinic-allergy-2025-point-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--mameclinic-allergy-2025-gradient-1);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.mameclinic-allergy-2025-point-card h4 {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.1rem;
    margin: 10px 0 15px;
    font-weight: 600;
}

.mameclinic-allergy-2025-interview-points {
    background: var(--mameclinic-allergy-2025-bg-secondary);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.mameclinic-allergy-2025-interview-intro {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.1);
}

.mameclinic-allergy-2025-interview-examples {
    margin-top: 30px;
}

.mameclinic-allergy-2025-example-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 6px 24px rgba(74, 124, 89, 0.1);
    border-left: 6px solid var(--mameclinic-allergy-2025-accent);
}

.mameclinic-allergy-2025-example-item h4 {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mameclinic-allergy-2025-example-box {
    background: rgba(74, 124, 89, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid var(--mameclinic-allergy-2025-secondary);
}

.mameclinic-allergy-2025-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(74, 124, 89, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 124, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.mameclinic-allergy-2025-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--mameclinic-allergy-2025-gradient-1);
}

.mameclinic-allergy-2025-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(74, 124, 89, 0.2);
}

.mameclinic-allergy-2025-card-icon {
    width: 60px;
    height: 60px;
    background: var(--mameclinic-allergy-2025-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    overflow: hidden;
}

.mameclinic-allergy-2025-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mameclinic-allergy-2025-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mameclinic-allergy-2025-primary);
    text-align: center;
    margin-bottom: 15px;
}

.mameclinic-allergy-2025-card-text {
    text-align: center;
    line-height: 1.6;
}

.mameclinic-allergy-2025-problem-list {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    border-left: 6px solid var(--mameclinic-allergy-2025-cta);
}

.mameclinic-allergy-2025-problem-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(229, 62, 62, 0.05);
    border-radius: 8px;
}

.mameclinic-allergy-2025-problem-icon {
    width: 80px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.mameclinic-allergy-2025-problem-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.mameclinic-allergy-2025-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.mameclinic-allergy-2025-solution-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.1);
    border: 2px solid var(--mameclinic-allergy-2025-accent);
    transition: all 0.3s ease;
}

.mameclinic-allergy-2025-solution-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.2);
}

.mameclinic-allergy-2025-solution-number {
    width: 40px;
    height: 40px;
    background: var(--mameclinic-allergy-2025-gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 600;
}

.mameclinic-allergy-2025-cta-section {
    background: var(--mameclinic-allergy-2025-gradient-1);
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.mameclinic-allergy-2025-cta-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.mameclinic-allergy-2025-cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.mameclinic-allergy-2025-cta-button {
    display: inline-block;
    background: var(--mameclinic-allergy-2025-gradient-cta);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(229, 62, 62, 0.3);
    border: 2px solid transparent;
}

.mameclinic-allergy-2025-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(229, 62, 62, 0.4);
    border-color: white;
}

.mameclinic-allergy-2025-feature-highlight {
    background: linear-gradient(135deg, #7ba05b 0%, #62a059 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
}

.mameclinic-allergy-2025-feature-highlight::before {
    content: '✓';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--mameclinic-allergy-2025-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.mameclinic-allergy-2025-insurance-info {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(98, 160, 89, 0.1) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--mameclinic-allergy-2025-accent);
    margin: 30px 0;
}

.mameclinic-allergy-2025-insurance-title {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.mameclinic-allergy-2025-timeline {
    position: relative;
    margin: 40px 0;
}

.mameclinic-allergy-2025-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--mameclinic-allergy-2025-gradient-1);
}

.mameclinic-allergy-2025-timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}

.mameclinic-allergy-2025-timeline-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--mameclinic-allergy-2025-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.mameclinic-allergy-2025-timeline-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.1);
}

.mameclinic-allergy-2025-related-links {
    background: var(--mameclinic-allergy-2025-bg-secondary);
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
}

.mameclinic-allergy-2025-related-title {
    color: var(--mameclinic-allergy-2025-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.mameclinic-allergy-2025-related-link {
    display: block;
    background: white;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--mameclinic-allergy-2025-text);
    border-left: 4px solid var(--mameclinic-allergy-2025-accent);
    transition: all 0.3s ease;
}

.mameclinic-allergy-2025-related-link:hover {
    background: var(--mameclinic-allergy-2025-accent);
    color: white;
    transform: translateX(5px);
}

/* === アニメーション === */
@keyframes mameclinic-allergy-2025-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes mameclinic-allergy-2025-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.mameclinic-allergy-2025-animate-pulse {
    animation: mameclinic-allergy-2025-pulse 2s ease-in-out infinite;
}

/* === レスポンシブ === */
@media (max-width: 768px) {
    .mameclinic-allergy-2025-hero {
        padding: 60px 15px;
    }

    .mameclinic-allergy-2025-hero-title {
        font-size: 1.8rem;
    }

    .mameclinic-allergy-2025-section {
        padding: 40px 15px;
    }

    .mameclinic-allergy-2025-section-title {
        font-size: 1.5rem;
    }

    .mameclinic-allergy-2025-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mameclinic-allergy-2025-solution-grid {
        grid-template-columns: 1fr;
    }

    .mameclinic-allergy-2025-cta-title {
        font-size: 1.5rem;
    }

    .mameclinic-allergy-2025-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .mameclinic-allergy-2025-timeline {
        margin-left: 20px;
    }

    .mameclinic-allergy-2025-timeline-item {
        padding-left: 60px;
    }

    /* 新しく追加されたコンテンツのレスポンシブ対応 */
    .mameclinic-allergy-2025-step-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mameclinic-allergy-2025-facility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mameclinic-allergy-2025-reason-item {
        flex-direction: column;
        text-align: center;
    }

    .mameclinic-allergy-2025-reason-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .mameclinic-allergy-2025-seasoning-row {
        grid-template-columns: 1fr;
    }

    .mameclinic-allergy-2025-allergen {
        border-radius: 8px 8px 0 0;
    }

    .mameclinic-allergy-2025-seasoning-list {
        border-radius: 0 0 8px 8px;
        border-top: 1px solid #eee;
    }

    .mameclinic-allergy-2025-attention-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mameclinic-allergy-2025-points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mameclinic-allergy-2025-procedure-overview,
    .mameclinic-allergy-2025-seasoning-info,
    .mameclinic-allergy-2025-review-opportunity,
    .mameclinic-allergy-2025-interview-points {
        padding: 25px 20px;
    }

    .mameclinic-allergy-2025-problem-icon {
        width: 70px;
        height: 50px;
        margin-right: 18px;
    }
}

@media (max-width: 480px) {
    .mameclinic-allergy-2025-hero-title {
        font-size: 1.5rem;
    }

    .mameclinic-allergy-2025-hero-subtitle {
        font-size: 1rem;
    }

    .mameclinic-allergy-2025-hero-highlight {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* 小画面での追加対応 */
    .mameclinic-allergy-2025-step-card,
    .mameclinic-allergy-2025-point-card,
    .mameclinic-allergy-2025-attention-card {
        padding: 20px 15px;
    }

    .mameclinic-allergy-2025-reason-icon,
    .mameclinic-allergy-2025-attention-icon {
        font-size: 1.8rem;
    }

    .mameclinic-allergy-2025-problem-icon {
        width: 60px;
        height: 45px;
        margin-right: 15px;
    }

    .mameclinic-allergy-2025-procedure-overview,
    .mameclinic-allergy-2025-seasoning-info,
    .mameclinic-allergy-2025-review-opportunity,
    .mameclinic-allergy-2025-interview-points {
        padding: 20px 15px;
    }

    .mameclinic-allergy-2025-example-item {
        padding: 20px 15px;
    }

    .mameclinic-allergy-2025-section-title {
        font-size: 1.3rem;
    }
}

/* 池袋東口まめクリニック学割ワクチン 専用CSS - 競合回避バージョン */
/* 生成日: 2025年7月1日 */
/* 用途: 学割ワクチン接種・抗体検査LP */
/* カラーパレット: バナー連動（メディカルブルー & フレンドリーオレンジ） */

/* === リセット・ベース === */
:root {
    /* メインカラー（バナー連動） */
    --primary-color: #4A90E2;
    /* バナーの青 */
    --secondary-color: #8AB4F8;
    /* 明るい青 */
    --accent-color: #d2e3fc;
    /* ソフトな青 */
    --cta-color: #ff8c42;
    /* バナーのオレンジ */
    --cta-color-dark: #f57c31;
    /* やや濃いオレンジ */

    /* 背景カラー */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    /* ごく薄いグレー */
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);

    /* サポートカラー */
    --text-color: #333745;
    /* ダークグレー（やや青み） */
    --text-light: #5a6175;
    /* ライトグレー */
    --success-color: #2ed573;
    --warning-color: #ffa502;

    /* グラデーション */
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #8AB4F8 100%);
    --gradient-cta: linear-gradient(135deg, #ff8c42 0%, #ffae73 100%);
    --gradient-hero: linear-gradient(135deg, rgba(74, 144, 226, 0.95) 0%, rgba(138, 180, 248, 0.9) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', '游ゴシック', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-gradient);
    scroll-behavior: smooth;
}

/* === レイアウト === */
.mameclinic-lp-vaccine-container {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
}

.mameclinic-lp-vaccine-section {
    padding: 80px 20px;
    position: relative;
}

.mameclinic-lp-vaccine-container-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* === ヒーローセクション === */
.mameclinic-lp-vaccine-hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mameclinic-lp-vaccine-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.15)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="15" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="25" cy="70" r="2.5" fill="rgba(255,255,255,0.12)"/></svg>');
    animation: sparkle 15s ease-in-out infinite;
}

.mameclinic-lp-vaccine-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.mameclinic-lp-vaccine-hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
}

.mameclinic-lp-vaccine-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: slideInDown 0.8s ease-out;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.mameclinic-lp-vaccine-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mameclinic-lp-vaccine-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 600;
    animation: slideInUp 0.8s ease-out 0.4s both;
    line-height: 1.5;
}

/* ★★★ START: ver6の価格デザインCSS ★★★ */
.mameclinic-lp-vaccine-price-highlight {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin: 35px auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.8s ease-out 0.6s both;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    max-width: 400px;
    overflow: hidden;
}

.mameclinic-lp-vaccine-price-example-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.mameclinic-lp-vaccine-price-example-content {
    padding: 25px;
    text-align: center;
}

.mameclinic-lp-vaccine-price-example-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.mameclinic-lp-vaccine-price-original-large {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.mameclinic-lp-vaccine-price-arrow {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cta-color);
    margin: 8px 0;
    display: block;
}

.mameclinic-lp-vaccine-price-student-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cta-color-dark);
    margin: 5px 0;
    line-height: 1.2;
}

.mameclinic-lp-vaccine-price-savings {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed var(--accent-color);
}

/* ★★★ END: ver6の価格デザインCSS ★★★ */
/* === CTAボタン === */
.mameclinic-lp-vaccine-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cta);
    color: white;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
    margin: 12px;
    animation: slideInUp 0.8s ease-out 0.8s both;
    border: 2px solid transparent;
}

.mameclinic-lp-vaccine-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.mameclinic-lp-vaccine-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
}

.mameclinic-lp-vaccine-cta:hover::before {
    left: 100%;
}

.mameclinic-lp-vaccine-cta-secondary {
    background: var(--bg-secondary);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.2);
}

.mameclinic-lp-vaccine-cta-secondary:hover {
    background: white;
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.3);
    color: var(--primary-color);
}

/* === セクション共通 === */
.mameclinic-lp-vaccine-section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    line-height: 1.2;
}

.mameclinic-lp-vaccine-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* === 価格表 === */
.mameclinic-lp-vaccine-pricing {
    background: transparent;
    position: relative;
}

.mameclinic-lp-vaccine-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="30" r="1" fill="rgba(74,144,226,0.1)"/><circle cx="90" cy="70" r="1.5" fill="rgba(138,180,248,0.08)"/><circle cx="70" cy="20" r="0.8" fill="rgba(210,227,252,0.12)"/></svg>');
    z-index: 1;
}

.mameclinic-lp-vaccine-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.mameclinic-lp-vaccine-pricing-card {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(74, 144, 226, 0.15);
    position: relative;
    overflow: hidden;
}

.mameclinic-lp-vaccine-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.mameclinic-lp-vaccine-pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(74, 144, 226, 0.2);
    border-color: var(--secondary-color);
}

.mameclinic-lp-vaccine-pricing-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
    text-align: center;
}

/* === 価格表 === */
.mameclinic-lp-vaccine-table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
    /* 自動レイアウトに変更 */
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
    font-size: 0.9rem;
    /* フォントサイズを小さく */
}

/* ワードプレスのデフォルトテーブルクラスをオーバーライド */
.mameclinic-lp-vaccine-table.has-fixed-layout {
    table-layout: auto !important;
}

/* ワードプレス固有のスタイルオーバーライド */
.wp-block-table .mameclinic-lp-vaccine-table,
.wp-block-table .mameclinic-lp-vaccine-table.has-fixed-layout {
    table-layout: auto !important;
    width: 100% !important;
    max-width: 100% !important;
}

.mameclinic-lp-vaccine-table th,
.mameclinic-lp-vaccine-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(74, 144, 226, 0.15);
    vertical-align: middle;
}

.mameclinic-lp-vaccine-table th {
    background: var(--gradient-primary) !important;
    font-weight: 700 !important;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.mameclinic-lp-vaccine-table tr:nth-child(even) {
    background: rgba(74, 144, 226, 0.05);
}

.mameclinic-lp-vaccine-table tr:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.mameclinic-lp-vaccine-price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.mameclinic-lp-vaccine-price-student {
    color: var(--cta-color-dark);
    font-weight: 800;
    font-size: 1.2rem;
}

.mameclinic-lp-vaccine-discount {
    background: var(--gradient-cta);
    color: white;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 12px;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3);
    animation: pulse 2s infinite;
    white-space: nowrap;
    /* テキストが折り返さないようにする */
}

/* === 特徴セクション === */
.mameclinic-lp-vaccine-features {
    background: transparent;
}

.mameclinic-lp-vaccine-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.mameclinic-lp-vaccine-feature-card {
    background: var(--gradient-card);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.15);
    position: relative;
    overflow: hidden;
}

.mameclinic-lp-vaccine-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mameclinic-lp-vaccine-feature-card:hover::before {
    opacity: 1;
}

.mameclinic-lp-vaccine-feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2);
}

.mameclinic-lp-vaccine-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 2;
}

.mameclinic-lp-vaccine-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.mameclinic-lp-vaccine-feature-card p {
    line-height: 1.7;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* === 疾患説明セクション === */
.mameclinic-lp-vaccine-diseases {
    background: transparent;
}

.mameclinic-lp-vaccine-disease-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.mameclinic-lp-vaccine-disease-card {
    background: var(--gradient-card);
    border-radius: 18px;
    padding: 28px;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.mameclinic-lp-vaccine-disease-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mameclinic-lp-vaccine-disease-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.18);
    border-left-width: 8px;
}

.mameclinic-lp-vaccine-disease-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 18px;
}

.mameclinic-lp-vaccine-disease-info {
    margin-bottom: 12px;
    line-height: 1.6;
}

.mameclinic-lp-vaccine-disease-label {
    font-weight: 700;
    color: var(--secondary-color);
}

/* B型肝炎カードのレイアウトを常に上下にするための専用スタイル */
.disease-card--vertical-content .mameclinic-lp-vaccine-disease-content {
    flex-direction: column;
    align-items: center;
    /* コンテンツを中央揃えにする */
    gap: 15px;
}

/* 常に画像を上にする */
.disease-card--vertical-content .mameclinic-lp-vaccine-disease-image {
    order: -1;
}

/* テキスト部分が中央に寄るように調整 */
.disease-card--vertical-content .mameclinic-lp-vaccine-disease-text {
    width: 100%;
    text-align: left;
}


/* === よくある質問 === */
.mameclinic-lp-vaccine-faq {
    background: transparent;
}

.mameclinic-lp-vaccine-faq-item {
    background: var(--gradient-card);
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.1);
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.mameclinic-lp-vaccine-faq-question {
    padding: 25px;
    background: rgba(74, 144, 226, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
    font-weight: 700;
    position: relative;
    color: var(--text-color);
}

.mameclinic-lp-vaccine-faq-question:hover {
    background: rgba(74, 144, 226, 0.1);
    border-left-width: 8px;
}

.mameclinic-lp-vaccine-faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.mameclinic-lp-vaccine-faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.mameclinic-lp-vaccine-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.mameclinic-lp-vaccine-faq-answer.active {
    padding: 25px;
    max-height: 300px;
}

/* === アクセス・予約セクション === */
.mameclinic-lp-vaccine-contact {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mameclinic-lp-vaccine-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="85" cy="75" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="10" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>');
}

.mameclinic-lp-vaccine-contact .mameclinic-lp-vaccine-section-title {
    color: white;
}

.mameclinic-lp-vaccine-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.mameclinic-lp-vaccine-contact-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mameclinic-lp-vaccine-contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mameclinic-lp-vaccine-contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.mameclinic-lp-vaccine-contact-item p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* === 特別価格ハイライト === */
.mameclinic-lp-vaccine-special-offer {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: 24px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
    border: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.mameclinic-lp-vaccine-special-offer::before {
    content: '🎓';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.mameclinic-lp-vaccine-special-offer h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 30px 0 20px;
    font-weight: 800;
}

/* === アニメーション === */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.mameclinic-lp-vaccine-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mameclinic-lp-vaccine-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === レスポンシブ === */
@media (max-width: 768px) {
    .mameclinic-lp-vaccine-section {
        padding: 60px 15px;
    }

    .mameclinic-lp-vaccine-hero {
        min-height: 85vh;
    }

    .mameclinic-lp-vaccine-pricing-grid,
    .mameclinic-lp-vaccine-features-grid {
        /* スマートフォン表示では1列に */
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mameclinic-lp-vaccine-table {
        font-size: 0.9rem;
    }

    .mameclinic-lp-vaccine-table th,
    .mameclinic-lp-vaccine-table td {
        padding: 12px 10px;
    }

    .mameclinic-lp-vaccine-cta {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .mameclinic-lp-vaccine-pricing-card {
        padding: 25px;
    }

    .mameclinic-lp-vaccine-feature-card {
        padding: 25px;
    }

    .mameclinic-lp-vaccine-disease-card {
        padding: 20px;
    }

    /* 診療時間表のレスポンシブ */
    .mameclinic-lp-vaccine-schedule-card {
        padding: 25px;
    }

    .schedule-day,
    .schedule-time {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .mameclinic-lp-vaccine-map-container iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .mameclinic-lp-vaccine-hero {
        padding: 40px 15px;
        min-height: 80vh;
    }

    .mameclinic-lp-vaccine-hero-title {
        font-size: 2rem;
    }

    .mameclinic-lp-vaccine-hero-subtitle {
        font-size: 1.1rem;
    }

    .mameclinic-lp-vaccine-price-highlight {
        padding: 20px 25px;
    }

    .mameclinic-lp-vaccine-price-text {
        font-size: 1.5rem;
    }

    .mameclinic-lp-vaccine-section {
        padding: 40px 15px;
    }

    .mameclinic-lp-vaccine-cta {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 8px;
    }

    .mameclinic-lp-vaccine-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .mameclinic-lp-vaccine-price-cell {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px;
    }

    .mameclinic-lp-vaccine-price-cell .mameclinic-lp-vaccine-discount {
        margin-left: 0 !important;
        align-self: center;
    }
}

/* === アクセシビリティ === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === フローティングボタン === */
.mameclinic-lp-vaccine-floating-btn {
    position: fixed;
    bottom: 80px;
    right: 25px;
    z-index: 1000;
    background: var(--gradient-cta);
    color: white;
    padding: 10px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.4);
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.mameclinic-lp-vaccine-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(255, 140, 66, 0.6);
}

/* ★★★ START: シェアボタンのCSS ★★★ */
.mameclinic-lp-vaccine-floating-share-btn {
    position: fixed;
    bottom: 80px;
    left: 25px;
    z-index: 1000;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mameclinic-lp-vaccine-floating-share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(74, 144, 226, 0.6);
}

/* ★★★ END: シェアボタンのCSS ★★★ */

/* === 診療時間表のCSS === */
.mameclinic-lp-vaccine-schedule-container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.mameclinic-lp-vaccine-schedule-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.15);
    max-width: 600px;
    width: 100%;
}

.mameclinic-lp-vaccine-schedule-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.2s ease;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:hover:not(.schedule-header) {
    background: rgba(74, 144, 226, 0.05);
}

.schedule-header {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
}

.schedule-day,
.schedule-time {
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.schedule-row:nth-child(even):not(.schedule-header) {
    background: rgba(74, 144, 226, 0.02);
}

.weekend {
    background: rgba(255, 140, 66, 0.05) !important;
}

.weekend .schedule-day {
    color: var(--cta-color-dark);
    font-weight: 700;
}

/* === GoogleMapのCSS === */
.mameclinic-lp-vaccine-map-container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.1);
}

.mameclinic-lp-vaccine-map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* === 追加デザイン要素 === */
.mameclinic-lp-vaccine-separator {
    width: 200px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 60px auto;
    border-radius: 2px;
}

.mameclinic-lp-vaccine-highlight-text {
    color: white;
    background: var(--gradient-cta);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 800;
    display: inline-block;
}

.mameclinic-lp-vaccine-icon-text {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.mameclinic-lp-vaccine-benefit-badge {
    background: linear-gradient(135deg, #ffae73 0%, #ff8c42 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin: 5px;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
    border: 2px solid #ff8c42;
}

.mameclinic-lp-vaccine-hero-subtitle {
    color: white;
}

/* 【追加】：マップリンク用スタイル */
.mameclinic-lp-vaccine-map-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.mameclinic-lp-vaccine-map-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mameclinic-lp-vaccine-map-link:hover::after {
    content: '🗺️ タップで地図を表示';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInTooltip 0.3s ease forwards;
}

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* 【追加】：疾患カード画像対応 */
.mameclinic-lp-vaccine-disease-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mameclinic-lp-vaccine-disease-text {
    flex: 1;
    min-width: 0;
    /* フレックスアイテムの縮小を許可 */
}

.mameclinic-lp-vaccine-disease-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
    position: relative;
}

.mameclinic-lp-vaccine-disease-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.mameclinic-lp-vaccine-disease-image:hover .mameclinic-lp-vaccine-disease-img {
    transform: scale(1.05);
}

/* 画像にオーバーレイ効果 */
.mameclinic-lp-vaccine-disease-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(210, 227, 252, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mameclinic-lp-vaccine-disease-image:hover::after {
    opacity: 1;
}

/* 【追加】：フローセクション */
.mameclinic-lp-vaccine-flow-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mameclinic-lp-vaccine-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gradient-card);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.15);
    position: relative;
}

.mameclinic-lp-vaccine-flow-number {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.mameclinic-lp-vaccine-flow-content {
    flex: 1;
    min-width: 0;
}

.mameclinic-lp-vaccine-flow-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mameclinic-lp-vaccine-flow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mameclinic-lp-vaccine-flow-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-color);
}

.mameclinic-lp-vaccine-flow-step::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 45px;
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
}

.mameclinic-lp-vaccine-flow-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .mameclinic-lp-vaccine-flow-step {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mameclinic-lp-vaccine-flow-number {
        align-self: center;
    }

    .mameclinic-lp-vaccine-flow-step::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 【追加】：検査結果セクション */
.mameclinic-lp-vaccine-result-section {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 16px;
    margin-top: 25px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}

.mameclinic-lp-vaccine-result-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mameclinic-lp-vaccine-result-text {
    flex: 1;
    min-width: 0;
}

.mameclinic-lp-vaccine-result-image {
    flex-shrink: 0;
    width: 150px;
    position: relative;
}

.mameclinic-lp-vaccine-result-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.mameclinic-lp-vaccine-result-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.mameclinic-lp-vaccine-result-caption {
    text-align: center;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 8px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
}

/* 画像拡大モーダル効果（オプション） */
.mameclinic-lp-vaccine-result-img {
    cursor: pointer;
}

.mameclinic-lp-vaccine-result-img:hover {
    cursor: zoom-in;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .mameclinic-lp-vaccine-disease-content {
        flex-direction: column;
        gap: 15px;
    }

    .mameclinic-lp-vaccine-disease-image {
        width: 100px;
        height: 100px;
        align-self: center;
        order: -1;
        /* 画像を上に移動 */
    }

    .mameclinic-lp-vaccine-map-link:hover::after {
        content: '📍 タップで地図へ';
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .mameclinic-lp-vaccine-result-content {
        flex-direction: column;
        gap: 15px;
    }

    .mameclinic-lp-vaccine-result-image {
        width: 120px;
        align-self: center;
    }

    .mameclinic-lp-vaccine-result-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .mameclinic-lp-vaccine-disease-image {
        width: 80px;
        height: 80px;
    }

    .mameclinic-lp-vaccine-result-image {
        width: 100px;
    }

    .mameclinic-lp-vaccine-result-caption {
        font-size: 0.7rem;
    }

    .mameclinic-lp-vaccine-result-section {
        padding: 15px;
    }

    .mameclinic-lp-vaccine-share-menu {
        left: 15px;
        bottom: 80px;
        min-width: 140px;
    }

    .share-option {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

.mameclinic-lp-vaccine-share-menu {
    position: fixed;
    bottom: 140px;
    left: 25px;
    z-index: 999;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 5px;
    min-width: 160px;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.share-option {
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    background: rgba(74, 144, 226, 0.05);
}

.share-option:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* シェアボタンにカーソルポインターを追加 */
.mameclinic-lp-vaccine-floating-share-btn {
    cursor: pointer;
}