/* リセット & 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Crimson+Text:wght@400;600&display=swap');

/* ヘッダー */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header-cta-btn {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 111, 165, 0.3);
    background: #4a6fa5;
}

body {
    font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: #333333;
    font-weight: 400;
    letter-spacing: -0.01em;
    background: #ffffff;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* モバイル用改行を非表示（デスクトップ） */
.mobile-br {
    display: none;
}

/* 価格表示の切り替え */
.mobile-price {
    display: none;
}
.desktop-price {
    display: inline;
}

/* ファーストビュー */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background-image: url('images/hero-bg.jpeg'); */
    background-image: url('images/old-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

/* 下半分にグラデーションオーバーレイを追加 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(30, 58, 95, 0.7) 70%,
        rgba(30, 58, 95, 0.9) 85%,
        rgba(30, 58, 95, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 420px 30px 20px 20px;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 4.2em;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #ffffff;
    position: relative;
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Crimson Text', 'Noto Sans JP', serif;
    font-size: 1.5em;
    margin-bottom: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
    font-style: italic;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 100px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: subtle-pulse 3s ease-in-out infinite;
}

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

.price-badge:hover::before {
    left: 100%;
}

.price-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 56px rgba(212, 175, 55, 0.4);
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a70 100%);
    color: white;
    padding: 24px 56px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.2em;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 24px 48px rgba(30, 58, 95, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 32px 64px rgba(30, 58, 95, 0.35);
    background: linear-gradient(135deg, #4a6fa5 0%, #3a5a8a 100%);
}

/* セクション共通 */
.section {
    padding: 60px 20px;
    background: #ffffff;
}

.bg-gray {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.section-title {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    text-align: center;
    font-size: 2.6em;
    margin-bottom: 80px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #1e3a5f;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    border-radius: 1px;
}

/* サービス紹介 */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    margin-top: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.feature-card p {
    color: #666666;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 111, 165, 0.15);
    border-color: #4a6fa5;
}

.feature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 32px;
}

.feature-title {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.3em;
    margin-bottom: 16px;
    color: #1e3a5f;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* 比較表 */
.comparison-intro {
    text-align: center;
    margin-bottom: 24px;
}

.comparison-intro p {
    font-size: 0.95em;
    color: #666666;
    font-weight: 400;
    margin: 0;
}

.column-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.recommended-badge {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.dental-column {
    background: #fafafa !important;
    color: #666666;
}

.self-column, 
.self-cell {
    background: rgba(212, 175, 55, 0.05) !important;
    color: #1e3a5f;
    font-weight: 600;
    border-left: 3px solid #d4af37 !important;
    border-right: 3px solid #d4af37 !important;
    position: relative;
}

.comparison-table thead tr th.self-column {
    background: rgba(212, 175, 55, 0.1) !important;
    border-top: 3px solid #d4af37 !important;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.comparison-table tbody tr:first-child .self-cell {
    /* 削除: 最初の行の青い線は不要 */
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:last-child .self-cell {
    border-bottom: 3px solid #d4af37 !important;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 8px;
}

.comparison-content.target-audience {
    gap: 4px;
    align-items: center;
}

.main-text {
    font-weight: 500;
    margin-bottom: 4px;
}

.detail-badge {
    font-size: 0.9em;
    padding: 6px 12px;
    border-radius: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.detail-badge.safe {
    background: rgba(74, 111, 165, 0.1);
    color: #4a6fa5;
}

.detail-badge.benefit {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.detail-badge.warning {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.detail-badge.expensive {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.detail-badge.neutral {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.target-audience {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.audience-item {
    font-size: 0.95em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    text-align: left;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.audience-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #94a3b8;
    font-weight: bold;
}

.audience-item.recommend {
    color: #1e3a5f;
    font-weight: 500;
}

.audience-item.recommend::before {
    color: #d4af37;
}

.item-label {
    background: #f5f5f5 !important;
    font-weight: 600 !important;
    color: #1e3a5f !important;
    width: 120px;
    max-width: 120px;
    border-right: 1px solid #e0e0e0;
}

.dental-cell {
    background: rgba(250, 250, 250, 0.5);
}

.self-cell {
    background: rgba(212, 175, 55, 0.05);
    font-weight: 500;
}
.comparison-table {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 80px auto;
    max-width: 900px;
    overflow-x: auto;
    border: 1px solid #e0e0e0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th {
    background: #f5f5f5;
    padding: 18px 16px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
    color: #1e3a5f;
    font-size: 0.95em;
    letter-spacing: -0.01em;
}

.comparison-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    color: #666666;
    font-size: 0.9em;
}


/* 施術の流れ - フローレイアウト */
.process-flow {
    background: #f5f5f5;
}

.process-flow-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Timeline styles */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* 青い縦線を削除 */

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    isolation: isolate;
}

.timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.timeline-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-right: 40px;
    margin-left: 0;
}

.timeline-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #111;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
    align-items: flex-start;
}

.timeline-image {
    width: 40%;
    height: 200px;
    flex-shrink: 0;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: block;
}

/* solution-bottle.jpg専用のサイズ調整 */
.timeline-image img[src*="solution-bottle.jpg"] {
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}

.timeline-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-text h3 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.6em;
    color: #2c4a70;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.timeline-text h3 .step-time {
    background: rgba(30, 58, 95, 0.08);
    color: #1e3a5f;
    border: 1px solid #2c4a70;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.55em;
    font-weight: 600;
    margin-left: auto;
    flex-shrink: 0;
}

.timeline-text p {
    font-size: 0.95em;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.process-flow-container::before {
    content: '';
    position: absolute;
    left: 64px;
    top: 72px;
    bottom: 80px;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(102, 126, 234, 0.3) 0%, 
        rgba(102, 126, 234, 1) 20%, 
        rgba(102, 126, 234, 1) 80%, 
        rgba(102, 126, 234, 0.3) 100%
    );
    border-radius: 2px;
    z-index: 0;
    transform: translateX(-2px);
}

.flow-step {
    display: flex;
    align-items: center;
    margin-bottom: 64px;
    position: relative;
    background: white;
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    isolation: isolate;
}

.flow-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(148, 163, 184, 0.2);
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(118, 75, 162, 0.05) 100%
    );
    border-radius: 30px;
    z-index: -1;
}

.flow-step-number {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    margin-right: 40px;
    margin-left: 0;
}


.flow-step-number .number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.flow-step-number .number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.flow-step-image {
    flex-shrink: 0;
    width: 45%;
    margin-right: 40px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.05);
}

.flow-step:hover .step-image {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.15) saturate(1.3);
}

.flow-step-content {
    flex: 1;
    padding: 10px 0;
}

.step-title {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.5em;
    color: #fbbf24;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.step-description {
    line-height: 1.7;
    color: #a3a3a3;
    margin-bottom: 24px;
    font-size: 1em;
    font-weight: 400;
}

.step-time {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85em;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.1);
}

.process-total-time {
    margin-top: 96px;
}

.time-breakdown {
    max-width: 1200px;
    margin: 0 auto;
}

.time-title {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    text-align: center;
    font-size: 2.1em;
    color: #1e3a5f;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.time-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #a3a3a3;
    margin-bottom: 64px;
    font-weight: 400;
}

.time-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.time-card {
    background: #ffffff;
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.time-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.time-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.time-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.time-card.regular-time {
    border: 2px solid #d4af37;
    background: #ffffff;
}

.time-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.time-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.time-badge.first {
    background: rgba(30, 58, 95, 0.05);
    color: #666666;
}

.time-badge.regular {
    background: rgba(30, 58, 95, 0.08);
    color: #2c4a70;
}

.time-duration {
    font-size: 2.8em;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.time-highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #111;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8em;
    font-weight: 600;
    display: inline-block;
}

.time-breakdown-detail {
    margin-bottom: 32px;
    background: rgba(25, 25, 25, 0.6);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.breakdown-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.breakdown-time {
    font-weight: 600;
    color: #2c4a70;
    font-size: 0.9em;
    background: rgba(30, 58, 95, 0.08);
    padding: 4px 12px;
    border-radius: 8px;
}

.breakdown-desc {
    color: #666666;
    font-size: 0.9em;
}

.time-benefits {
    margin-bottom: 32px;
}

.time-benefits h4 {
    font-size: 1.1em;
    color: #1e3a5f;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9em;
    color: #666666;
    padding: 8px 0;
}

.benefit-icon {
    font-size: 1.2em;
}

.time-comparison-note {
    text-align: center;
    padding: 16px;
    background: rgba(30, 58, 95, 0.05);
    border-radius: 12px;
    border: 1px solid #2c4a70;
}

.time-comparison-note p {
    margin: 0;
    font-size: 0.9em;
    color: #2c4a70;
    line-height: 1.4;
}

.highlight-text {
    color: #dc2626;
    font-weight: 700;
}

.convenience-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.convenience-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(30, 58, 95, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 95, 0.15);
}

.conv-icon {
    font-size: 1.5em;
}

.conv-text {
    flex: 1;
    font-size: 0.9em;
    color: #2c4a70;
    line-height: 1.4;
}

.time-summary {
    text-align: center;
}

.summary-card {
    background: #ffffff;
    color: #333333;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.summary-card h4 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.summary-points {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.summary-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.point-number {
    font-size: 1.8em;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 16px;
    letter-spacing: -0.01em;
}

.point-text {
    font-size: 0.9em;
    opacity: 0.9;
    font-weight: 500;
}

/* 料金プラン */
.plan-intro {
    text-align: center;
    margin-bottom: 24px;
}

.plan-intro p {
    font-size: 1.1em;
    color: #374151;
    font-weight: 400;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-name {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin: 0;
}

.plan-type-badge {
    font-size: 0.75em;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.plan-type-badge.starter {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.plan-type-badge.best {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.plan-type-badge.premium {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
}

.price-badge-container {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

.price-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75em;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
    white-space: nowrap;
}

.price-detail {
    text-align: center;
    font-size: 0.9em;
    color: #374151;
    margin-bottom: 24px;
    font-weight: 500;
}

.plan-description {
    text-align: center;
    margin-bottom: 24px;
    padding: 8px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.target-user {
    font-size: 0.95em;
    color: #0f172a;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.price-spacer {
    height: 32px;
    display: block;
}

.plan-benefits {
    margin-bottom: 24px;
    flex: 1;
}

.plan-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-benefits ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #666666;
}

.plan-benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c4a70;
    font-weight: bold;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #666666;
}

.benefit-item.highlight {
    color: #2c4a70;
    font-weight: 600;
}

.benefit-icon {
    font-size: 0.9em;
    color: #16a34a;
    font-weight: bold;
}

.benefit-item.highlight .benefit-icon {
    color: #f59e0b;
}

.recommended-for {
    background: #fafafa;
    padding: 20px 16px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-top: auto;
}

.recommended-for h4 {
    font-size: 0.9em;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.recommended-for ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recommended-for li {
    font-size: 0.85em;
    color: #374151;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.recommended-for li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #94a3b8;
    font-weight: bold;
}

.plan-comparison {
    margin-top: 64px;
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.plan-comparison h3 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.3em;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.comparison-guide {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.guide-frequency {
    font-size: 0.9em;
    color: #374151;
    font-weight: 500;
}

.guide-arrow {
    color: #94a3b8;
    font-weight: bold;
}

.guide-recommendation {
    font-size: 0.9em;
    color: #0f172a;
    font-weight: 600;
}

/* スタンダードvsプレミアム比較 */
.plan-type-comparison {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.plan-type-comparison h3 {
    text-align: center;
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.8em;
    color: #1e3a5f;
    margin-bottom: 32px;
    font-weight: 600;
    position: relative;
    padding-bottom: 16px;
}

.plan-type-comparison h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #2c4a70;
}

.plan-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.plan-type-card {
    background: #fafbfc;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e8e8e8;
    position: relative;
    transition: all 0.3s ease;
}

.plan-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(30, 58, 95, 0.1);
}

.plan-type-card.premium {
    border: 2px solid #2c4a70;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.08);
}

.premium-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #2c4a70 0%, #1e3a5f 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

.plan-type-card h4 {
    font-size: 1.3em;
    color: #1e3a5f;
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
}

.plan-type-price {
    font-size: 1.8em;
    color: #2c4a70;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.plan-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-type-features li {
    color: #666666;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    font-size: 0.9em;
    line-height: 1.5;
}

.plan-type-features li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #999999;
    font-weight: bold;
}

.plan-type-features li.highlight {
    color: #2c4a70;
    font-weight: 500;
}

.premium-benefit {
    margin-top: 16px;
    padding: 12px;
    background: #f0f4f8;
    border-radius: 8px;
    border: none;
    color: #666666;
    font-size: 0.85em;
    line-height: 1.6;
}

/* 料金カードグリッド */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 540px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
    border-color: #d4af37;
}

.pricing-card.popular {
    border: 2px solid #d4af37;
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, #fffef5 0%, #fffdf0 100%);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85em;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.price {
    font-size: 2.8em;
    color: #1e3a5f;
    font-weight: 700;
    margin: 16px 0;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
}

.price-unit {
    font-size: 0.5em;
    color: #666666;
    font-weight: 500;
    margin-left: 4px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.price-unit::before {
    content: '税込';
    font-size: 0.5em;
    position: absolute;
    top: -10px;
    white-space: nowrap;
    color: #999999;
}

/* スタンダード・プレミアム価格表示 */
.price-standard, .price-premium {
    font-size: 0.8em;
    display: inline-flex;
    align-items: baseline;
    margin: 4px 0;
}

.price-standard {
    color: #666666;
}

.price-premium {
    color: #2c4a70;
    font-weight: 600;
}

.price-standard::before {
    content: 'スタンダード: ';
    font-size: 0.7em;
    color: #737373;
}

.price-premium::before {
    content: 'プレミアム: ';
    font-size: 0.7em;
    color: #a3a3a3;
}

.premium-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
}

/* ビフォーアフター */
.before-after {
    max-width: 900px;
    margin: 0 auto;
}

.ba-caption {
    text-align: center;
    margin-bottom: 24px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.95em;
    color: #475569;
    font-weight: 500;
}

.ba-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ba-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-image .ba-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 12px;
}

.ba-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.ba-label {
    position: static;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
    text-align: center;
    margin-bottom: 12px;
    display: inline-block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.ba-img {
    transition: transform 0.4s ease;
}

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

/* After画像を特別に拡大 */
.ba-image:nth-child(2) .ba-img {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.ba-image:nth-child(2):hover .ba-img {
    transform: scale(1.12);
}

/* After用の特別なバッジスタイル */
.ba-image:nth-child(2) .ba-label {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.disclaimer {
    text-align: center;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    color: #374151;
    font-style: italic;
    margin: 16px 0 0 0;
}

/* 施術時間と効果的な通い方 */
.timeline-phases {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.timeline-phase {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-phase:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.timeline-phase.start-phase {
    position: relative;
    overflow: hidden;
}

.timeline-phase.start-phase::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
        rgba(59, 130, 246, 0.2) 100%
    );
    border-radius: 2px;
}

.timeline-phase.start-phase::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #3b82f6;
    opacity: 0.6;
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.timeline-phase.maintenance-phase {
    border-left: none;
}

.phase-header {
    margin-bottom: 24px;
}

.phase-title {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.start-phase .phase-title {
    color: #3b82f6;
}

.maintenance-phase .phase-title {
    color: #10b981;
}

.phase-duration {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.95em;
    color: #374151;
    font-weight: 500;
}

.phase-description {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.phase-schedule {
    background: rgba(248, 250, 252, 0.8);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.schedule-frequency {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.05em;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.schedule-note {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #374151;
    line-height: 1.6;
}

.visit-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 48px 0;
}

.visit-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.visit-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.visit-type {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.initial-visit .visit-type {
    color: #3b82f6;
}

.follow-up-visit .visit-type {
    color: #10b981;
}

.time-breakdown {
    margin-bottom: 16px;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.95em;
}

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

.time-label {
    color: #374151;
}

.time-value {
    color: #0f172a;
    font-weight: 500;
}

.visit-benefits {
    margin-top: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #475569;
}

.benefit-item::before {
    content: '✓';
    color: #10b981;
    font-weight: 600;
    margin-right: 8px;
    margin-top: 2px;
}

.convenience-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 32px;
    border-radius: 16px;
    margin: 48px 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.convenience-title {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.3em;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.convenience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.convenience-item {
    text-align: center;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.convenience-icon {
    font-size: 2em;
    margin-bottom: 8px;
    display: block;
}

.convenience-text {
    font-size: 0.9em;
    color: #374151;
    font-weight: 500;
}

/* 施術プロセス画像 */
.treatment-process-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 48px auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.process-image-container {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.process-image {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid rgba(59, 130, 246, 0.1);
}

.process-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.image-label {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    color: #374151;
    margin-top: 12px;
    padding: 8px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.process-arrow {
    font-size: 1.5em;
    color: #3b82f6;
    font-weight: bold;
    margin: 0 8px;
}

/* 新しいタイムライン構造 */
.schedule-timeline {
    max-width: 1000px;
    margin: 48px auto;
}

.timeline-phase.single-phase {
    max-width: 100%;
    margin: 0 auto;
}

.timeline-phase {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.timeline-phase:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.timeline-phase.start-phase {
    position: relative;
    overflow: hidden;
}

.timeline-phase.start-phase::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
        rgba(59, 130, 246, 0.2) 100%
    );
    border-radius: 2px;
}

.timeline-phase.start-phase::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #3b82f6;
    opacity: 0.6;
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.timeline-phase.maintenance-phase {
    border-left: none;
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    gap: 16px;
}

.phase-icon {
    font-size: 2.5em;
}

.phase-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.phase-info {
    text-align: center;
}

.phase-info h4 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.start-phase .phase-info h4 {
    color: #3b82f6;
}

.maintenance-phase .phase-info h4 {
    color: #10b981;
}

.phase-subtitle {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.95em;
    color: #374151;
    margin: 0;
    font-weight: 500;
}

.visit-schedule {
    margin-bottom: 24px;
    text-align: center;
}

.schedule-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.frequency {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #0f172a;
    background: rgba(248, 250, 252, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.total {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #374151;
    font-weight: 500;
}

.maintenance-info {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* 時間カード */
.time-breakdown-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex-grow: 1;
}

.time-card {
    background: #fafbfc;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.time-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card-image-section {
    margin: -20px -20px 16px -20px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    height: 60px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.time-card:hover .card-image {
    transform: scale(1.05);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    min-height: auto;
    padding: 24px 32px 0;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
}

.visit-type {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
}

.duration {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: #3b82f6;
    text-align: center;
}

.highlight-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

.highlight-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.first-visit-badge {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.time-breakdown-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 16px 16px;
    padding: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    border: 1px solid rgba(226, 232, 240, 0.4);
}

.time-breakdown-mini span {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.time-breakdown-mini span:first-child {
    color: #475569;
    font-weight: 500;
}

.time-breakdown-mini span span {
    font-size: 1.2em;
    font-weight: 700;
    color: #3b82f6;
}

.visit-benefits {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 8px; */
    padding: 16px;
}

.visit-benefits p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #374151;
    margin: 0;
    line-height: 1.4;
    padding: 8px 12px 8px 16px;
    background: linear-gradient(90deg, 
        rgba(16, 185, 129, 0.08) 0%, 
        rgba(248, 250, 252, 0.8) 10%
    );
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.visit-benefits p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(16, 185, 129, 0.3) 0%,
        rgba(16, 185, 129, 0.8) 50%,
        rgba(16, 185, 129, 0.3) 100%
    );
    border-radius: 2px;
}

.visit-benefits p:hover {
    background: white;
    transform: translateX(2px);
}

/* メンテナンス期間の特別スタイル */
.maintenance-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.95em;
    color: #374151;
    padding: 12px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.benefit-icon {
    font-size: 1.2em;
}

/* 便利さまとめ */
.convenience-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 32px;
    border-radius: 16px;
    margin: 48px 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.convenience-summary h4 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.3em;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

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

.convenience-item {
    text-align: center;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.conv-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 12px;
}

.conv-text {
    font-size: 0.9em;
    color: #374151;
    line-height: 1.5;
}

.conv-text strong {
    color: #0f172a;
    font-weight: 600;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .treatment-process-visual {
        flex-direction: column;
        gap: 16px;
        margin: 32px auto;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.2em;
    }
    
    .process-image {
        width: 150px;
        height: 120px;
    }
    
    .timeline-phase {
        padding: 16px;
    }
    
    .phase-details {
        padding: 0;
    }
    
    .visit-schedule {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .schedule-info {
        font-size: 0.85em;
        gap: 8px;
    }
    
    .time-breakdown-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .time-card {
        padding: 0;
    }
    
    .time-card-image {
        height: 150px;
    }
    
    .card-header {
        padding: 12px 16px 0;
        margin-bottom: 12px;
    }
    
    .time-breakdown-mini {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px 12px;
        margin: 0 12px;
        font-size: 0.8em;
    }
    
    .visit-benefits {
        padding: 12px 16px 16px;
        font-size: 0.8em;
    }
    
    .visit-benefits p {
        margin-bottom: 4px;
    }
    
    .time-breakdown-mini span {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .convenience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card-header {
        min-height: auto;
    }
    
    .phase-header {
        text-align: center;
        gap: 8px;
    }
    
    .phase-icon {
        font-size: 2em;
    }
    
    .schedule-info {
        flex-direction: column;
        gap: 8px;
    }
}

/* FAQ */
.faq-section {
    background: #f8f9fa;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.1);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto;
}

/* 実際の効果セクション背景 */
.results-section {
    background: #f5f5f5;
}

/* 料金プラン背景 */
.pricing-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.1);
    z-index: 1;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.12);
    border-color: #2c4a70;
}

.faq-question {
    padding: 20px 24px 20px 56px;
    background: transparent;
    font-weight: 600;
    font-size: 1.05em;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c4a70;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background: #f5f7fa;
}

.faq-question::before {
    content: 'Q';
    position: absolute;
    left: 20px;
    color: #2c4a70;
    font-size: 1.2em;
    font-weight: 700;
}

.faq-answer {
    padding: 0 24px 20px 56px;
    position: relative;
    display: none;
    color: #666666;
    font-size: 0.95em;
    line-height: 1.8;
    background: #fafbfc;
    border-top: 1px solid #f0f0f0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer::before {
    content: 'A';
    position: absolute;
    left: 20px;
    top: 16px;
    color: #1e3a5f;
    font-size: 1.2em;
    font-weight: 700;
}

/* アクセス */
.store-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 64px;
    height: 500px;
}

.store-main-image {
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.store-image-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.store-main-image:hover .store-image-large {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 58, 95, 0.9));
    color: white;
    padding: 32px 24px 24px;
}

.image-overlay h3 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.image-overlay p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1em;
    opacity: 0.9;
    margin: 0;
}

.store-sub-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: white;
}

.store-image-small {
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.store-sub-image:hover .store-image-small {
    transform: scale(1.03);
}

.image-caption {
    padding: 16px;
    background: white;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-caption h4 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.1em;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.image-caption p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    color: #374151;
    margin: 0;
}

.store-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: white;
    display: flex;
    flex-direction: column;
}

.map-container {
    height: 70%;
    position: relative;
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.1) brightness(1.05);
    transition: filter 0.3s ease;
}

.store-map:hover .map-container iframe {
    filter: grayscale(0%) contrast(1.2) brightness(1.1);
}

.map-info {
    padding: 16px;
    background: white;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h4 {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.map-info p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.8em;
    color: #374151;
    margin: 0;
}

.access-info {
    background: #ffffff;
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.access-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.15);
}

.access-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.access-label {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 0.75em;
    color: #374151;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.access-value {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #0f172a;
    line-height: 1.5;
    font-weight: 500;
}

.phone-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* 施術できない方の条件 */
.caution-intro {
    text-align: center;
    margin-bottom: 40px;
}

.caution-intro p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.95em;
    color: #666666;
    font-weight: 400;
    margin: 0;
    line-height: 1.7;
}

.caution-list {
    max-width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.caution-item {
    background: #f5f7fa;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #4a6fa5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.caution-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(74, 111, 165, 0.15);
}

.caution-icon {
    font-size: 1.2em;
    flex-shrink: 0;
    line-height: 1;
    color: #4a6fa5;
}

.caution-content {
    flex: 1;
}

.caution-content h3 {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1em;
    color: #666666;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.caution-note {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.8em;
    color: #ef4444;
    font-weight: 500;
    margin-bottom: 6px;
    opacity: 0.8;
}

.caution-description {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.caution-contact {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.contact-box {
    color: #a3a3a3;
    text-align: center;
    max-width: 320px;
}

.contact-box h4 {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1.05em;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fbbf24;
    line-height: 1.3;
}

.contact-box p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #a3a3a3;
    margin-bottom: 12px;
    line-height: 1.4;
}

.contact-phone {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: #111;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    padding: 12px 24px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 10px;
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all 0.2s ease;
    display: inline-block;
    letter-spacing: 0.02em;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.contact-phone:hover {
    background: #4a6fa5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 111, 165, 0.3);
}

.open-date {
    text-align: center;
    margin-top: 30px;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2em;
}

/* フッターCTA */
.footer-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4a70 100%);
    padding: 120px 20px;
    text-align: center;
    color: white;
    border-top: 1px solid #e0e0e0;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-cta h2 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 2.6em;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.price-badge-footer {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #111;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.cta-button-footer {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #111;
    padding: 20px 48px;
    font-size: 1.1em;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.cta-button-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(74, 111, 165, 0.3);
    background: #4a6fa5;
}

.hotpepper-note {
    margin-top: 20px;
    opacity: 0.9;
}

/* Copyright */
.copyright {
    background: #1e3a5f;
    color: #a0a0a0;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* ヘッダーのモバイル対応 */
    .site-header {
        padding: 8px 0;
    }
    
    .header-content {
        padding: 0 16px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .header-cta-btn {
        font-size: 0.85em;
        padding: 8px 16px;
    }
    
    /* ヒーロー背景画像のモバイル対応 */
    .hero {
        margin-top: 48px;
        background-image: url('images/old-hero-bg-sp.jpg');
        background-size: 120%;
        background-position: center top;
        min-height: auto;
        height: auto;
        padding-bottom: 40px;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: 0;
        right: 0;
        padding: 300px 0 30px 0;
        margin: 0;
        width: 100%;
        z-index: 2;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 280px,
            rgba(30, 58, 95, 0.6) 300px,
            rgba(30, 58, 95, 0.85) 350px,
            rgba(30, 58, 95, 0.95) 100%
        );
    }

    
    .hero h1 {
        font-size: 2em;
        line-height: 1.1;
        margin: 0 0 15px 0 !important;
        padding: 0 15px;
        color: white;
    }
    
    .hero-subtitle {
        font-size: 0.95em;
        margin: 0 0 20px 0 !important;
        padding: 0 15px;
        color: white;
    }
    
    .price-badge {
        font-size: 0.9em;
        padding: 8px 16px;
        margin: 0 15px 20px 15px !important;
        display: inline-block;
    }
    
    .hero br {
        display: none;
    }
    
    .hero .mobile-br {
        display: inline;
    }
    
    /* feature-cardのパディングを縮小 */
    .feature-card {
        padding: 16px;
    }
    
    /* 価格表示の切り替え */
    .mobile-price {
        display: inline;
    }
    .desktop-price {
        display: none;
    }
    
    /* target-audienceの余白調整 */
    .comparison-content.target-audience {
        gap: 2px;
        padding: 0;
    }
    
    .target-audience .audience-item {
        margin: 0;
        padding: 2px 4px;
        font-size: 0.7em;
    }
    
    /* 比較表内のモバイル改行を表示 */
    .comparison-table .mobile-br {
        display: inline;
    }
    
    .hero .cta-button {
        font-size: 0.85em;
        padding: 14px 28px 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        margin: 10px 15px 15px 15px !important;
    }
    
    /* コースの違いを横スクロールに */
    .plan-type-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 12px 20px 20px;
        margin: 0 -20px;
        scroll-padding-left: 20px;
    }
    
    .plan-type-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 260px;
        margin-top: 20px;
        padding: 32px 20px 24px;
    }
    
    .plan-type-card.premium {
        position: relative;
    }
    
    .plan-type-card.premium .premium-label {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    /* 料金プランカードを手動スクロール */
    .pricing-cards {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 20px 20px;
        margin: 30px -20px;
        grid-template-columns: none !important;
    }
    
    .pricing-card {
        flex: 0 0 90%;
        scroll-snap-align: center;
        min-width: 280px;
        box-sizing: border-box;
        min-height: auto;
        padding: 20px 16px;
        margin-top: 14px;
    }
    
    .pricing-card .plan-header {
        margin-bottom: 4px;
    }
    
    .pricing-card .plan-name {
        font-size: 1.2em;
        margin-bottom: 6px;
        font-weight: 600;
    }
    
    .pricing-card .price {
        margin: 10px 0;
        text-align: center;
    }
    
    .pricing-card .price-standard,
    .pricing-card .price-premium {
        font-size: 0.7em;
        display: block !important;
        margin: 4px 0;
        width: 100%;
        clear: both;
    }
    
    .pricing-card .price-standard {
        margin-bottom: 10px !important;
    }
    
    .pricing-card .price-standard::before {
        content: 'スタンダード';
        font-size: 0.7em;
        color: #666;
        display: block;
        margin-bottom: 4px;
    }
    
    .pricing-card .price-premium::before {
        content: 'プレミアム';
        font-size: 0.7em;
        color: #666;
        display: block;
        margin-bottom: 4px;
    }
    
    .pricing-card .price-unit {
        font-size: 0.9em;
    }
    
    .pricing-card .price-badge-container {
        min-height: 24px;
        margin-bottom: 8px;
    }
    
    .pricing-card .price-badge {
        font-size: 0.75em;
        padding: 4px 10px;
        display: inline-block;
    }
    
    .pricing-card .plan-description {
        margin-bottom: 10px;
    }
    
    .pricing-card .plan-description p {
        font-size: 0.85em;
        margin: 0;
        line-height: 1.5;
        color: #555;
    }
    
    .pricing-card .plan-benefits {
        margin-bottom: 10px;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .pricing-card .plan-benefits ul {
        margin: 0;
        padding-left: 18px;
    }
    
    .pricing-card .plan-benefits li {
        font-size: 0.82em;
        margin-bottom: 4px;
        line-height: 1.5;
    }
    
    .pricing-card .recommended-for {
        padding: 10px;
        margin-top: auto;
        background: #fff8e6;
        border-radius: 8px;
    }
    
    .pricing-card .recommended-for h4 {
        font-size: 0.8em;
        margin-bottom: 6px;
        color: #d4af37;
        font-weight: 600;
    }
    
    .pricing-card .recommended-for li {
        font-size: 0.75em;
        margin-bottom: 3px;
        line-height: 1.5;
        color: #666;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .popular-badge {
        font-size: 0.75em;
        padding: 4px 10px;
        top: -12px;
    }
    
    /* アクセス情報テーブルのpadding縮小 */
    .store-info-table td {
        padding: 6px 8px;
        font-size: 0.85em;
    }
    
    .store-info-table .category-header {
        padding: 8px;
        font-size: 0.9em;
    }
    
    .store-info-table .info-label {
        padding: 6px 8px;
        font-size: 0.8em;
    }
    
    .store-info-table .info-value {
        padding: 6px 8px;
        font-size: 0.8em;
    }
    
    /* 比較表の調整 */
    .comparison-table {
        margin: 40px auto;
        font-size: 0.85em;
    }
    
    .comparison-table table {
        min-width: auto;
    }
    
    .comparison-table th {
        padding: 8px 4px;
        font-size: 0.85em;
        position: relative;
    }
    
    .comparison-table th.self-column {
        padding-top: 20px;
    }
    
    .comparison-table .recommended-badge {
        position: absolute;
        top: 2px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.65em;
        padding: 3px 8px;
        z-index: 10;
    }
    
    .comparison-table .column-header {
        display: block;
        margin-top: 8px;
    }
    
    .comparison-table td {
        padding: 6px 4px;
        font-size: 0.82em;
    }
    
    .comparison-table td:first-child {
        width: 25%;
        min-width: 80px;
    }
    
    .comparison-table td:nth-child(2) {
        width: 40%;
    }
    
    .comparison-table td:nth-child(3) {
        width: 35%;
    }
    
    .item-label {
        font-size: 0.8em;
    }
    
    .main-text {
        font-size: 0.85em;
    }
    
    .detail-badge {
        font-size: 0.7em;
        padding: 3px 6px;
    }
    
    .audience-item {
        font-size: 0.75em;
        padding: 4px 8px;
    }
    
    /* ヒーローセクションのグラデーション調整 */
    .hero::before {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 60%,
            rgba(30, 58, 95, 0.8) 80%,
            rgba(30, 58, 95, 0.95) 100%
        );
    }
    
    .hero h1 {
        font-size: 2.8em;
        line-height: 1.2;
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 40px;
    }
    
    .price-badge {
        font-size: 1.1em;
        padding: 14px 28px;
        margin-bottom: 40px;
    }
    
    .cta-button {
        font-size: 1em;
        padding: 18px 40px;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .ba-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .ba-description {
        margin-bottom: 32px;
        padding: 20px 24px;
    }
    
    .ba-description strong {
        font-size: 1em;
    }
    
    .store-images {
        grid-template-columns: 1fr;
    }
    
    /* 施術の流れ - モバイル対応 */
    .process-flow-container::before {
        left: 50%;
        transform: translateX(-50%);
        top: 60px;
    }
    
    /* Timeline - モバイル対応 */
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .timeline-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .timeline-icon span {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .timeline-content {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .timeline-image {
        width: 100%;
        height: 180px;
        margin-bottom: 20px;
    }
    
    .timeline-image img {
        width: 100%;
    }
    
    .timeline-text {
        padding-right: 0;
    }
    
    .timeline-text h3 {
        font-size: 1.1em;
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    .timeline-text h3 .step-time {
        font-size: 0.6em;
        padding: 4px 10px;
        margin-left: 8px;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .flow-step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .flow-step-number .number {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .flow-step-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step-image {
        height: 180px;
    }
    
    .step-title {
        font-size: 1.5em;
    }
    
    .step-description {
        font-size: 1em;
    }
    
    .time-comparison {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .time-card {
        padding: 12px 18px;
    }
    
    .summary-points {
        flex-direction: column;
        gap: 24px;
    }
    
    .convenience-features {
        gap: 12px;
    }
    
    .convenience-item {
        padding: 12px;
    }
    
    .time-title {
        font-size: 1.6em;
    }
    
    /* 既に上で定義済み */
    
    /* 既に上で定義済み */
    
    .pricing-cards::-webkit-scrollbar {
        height: 6px;
    }
    
    .pricing-cards::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 3px;
    }
    
    .pricing-cards::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
        border-radius: 3px;
    }
    
    .comparison-guide {
        flex-direction: column;
        gap: 16px;
    }
    
    .guide-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .comparison-content {
        align-items: center;
    }
    
    .target-audience {
        align-items: center;
    }
    
    .plan-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .store-visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
        gap: 20px;
    }
    
    .store-main-image {
        grid-row: auto;
        height: 250px;
    }
    
    .store-sub-image {
        height: 200px;
    }
    
    .store-map {
        height: 250px;
    }
    
    .access-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .access-info {
        padding: 28px 20px;
    }
    
    .caution-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .caution-item {
        flex-direction: column;
        text-align: center;
        padding: 14px 12px;
    }
    
    .caution-icon {
        margin-bottom: 16px;
        margin-right: 0;
    }
    
    .contact-box {
        padding: 24px 28px;
    }
    
    .contact-phone {
        font-size: 1.2em;
        padding: 10px 20px;
    }
    
    .cta-button,
    .cta-button-footer {
        padding: 15px 40px;
        font-size: 1.1em;
    }
    
    /* フッターセクションのモバイル対応 */
    .footer-cta {
        padding: 60px 20px 40px;
    }
    
    .footer-cta h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 0.95em;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .price-badge-footer {
        font-size: 0.95em;
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    
    .cta-button-footer {
        font-size: 0.9em;
        padding: 14px 24px;
    }
    
    .copyright {
        padding: 12px;
        font-size: 0.75em;
    }
}

/* プライベート空間セクション */

.private-space-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 100%;
}

.private-space-text {
    flex: 1;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.private-space-text h4 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.3em;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.private-space-text p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #374151;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.private-space-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.private-space-features li {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    color: #374151;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.private-space-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.private-space-image {
    flex: 1.2;
    height: 100%;
    overflow: hidden;
}

.private-room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.private-space-section:hover .private-room-image {
    transform: scale(1.05);
}

/* マップセクション */

.map-section-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 100%;
}

.map-section-text {
    flex: 1;
    padding: 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-section-text h4 {
    font-family: 'Playfair Display', 'Noto Sans JP', serif;
    font-size: 1.3em;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.map-section-text p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    color: #374151;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.access-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.access-features li {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    color: #374151;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.access-features li::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 0.9em;
}

.map-section-map {
    flex: 1.2;
    height: 100%;
}

.map-section-map .map-container {
    height: 100%;
}

/* レスポンシブ対応 - 新しいレイアウト */
@media (max-width: 768px) {
    /* モバイル用: 上から順に表示 */
    .store-images {
        display: block;
        width: 100%;
    }
    
    .store-main-image,
    .store-sub-image,
    .store-map {
        display: block;
        width: 100%;
        margin-bottom: 30px;
        height: auto;
        position: static;
        z-index: auto;
    }
    
    /* モバイルで「姫路駅から徒歩3分」を非表示 */
    .image-overlay {
        display: none;
    }
    
    .private-space-content,
    .map-section-content {
        display: block;
        width: 100%;
    }
    
    .private-space-text {
        display: block;
        padding: 20px;
        background: white;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .private-space-image {
        display: block;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    
    .private-space-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .map-section-text {
        display: block;
        padding: 20px;
        background: white;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .map-section-map {
        display: block;
        width: 100%;
        height: 250px;
    }
    
    .map-section-map iframe {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        border: none;
    }
    
    .store-info-table {
        font-size: 0.9em;
    }
    
    .info-label {
        width: 35%;
        padding: 12px 16px;
        font-size: 0.85em;
    }
    
    .info-value {
        padding: 12px 16px;
        font-size: 0.85em;
    }
    
    .category-header {
        padding: 12px 16px;
        font-size: 1.1em;
    }
}

/* 店舗情報テーブル */
.store-info-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

.category-row {
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f7fa 100%);
}

.category-header {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #1e3a5f;
    padding: 14px 16px;
    text-align: center;
    border-top: 2px solid #d4af37;
    border-bottom: 1px solid #e0e0e0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.category-row:first-child .category-header {
    border-top: none;
}

.info-label {
    background: #fafbfc;
    font-weight: 600;
    color: #666666;
    padding: 14px 16px;
    width: 28%;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    font-size: 0.9em;
    vertical-align: top;
}

.info-value {
    color: #333333;
    padding: 14px 16px;
    border-bottom: 1px solid #e8e8e8;
    line-height: 1.6;
    font-size: 0.9em;
    vertical-align: top;
    background: #ffffff;
}

.phone-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.phone-link:hover {
    color: #fcd34d;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}
    
    /* 既に上で定義済み */
    
    .access-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .access-label {
        margin-bottom: 5px;
    }
}