/* ==========================================
   せんり訪問マッサージ - スタイルシート
   Version: 1.5.2
   Last Updated: 2026-01-04 13:30
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* ==========================================
   カラー変数
   ========================================== */
:root {
    --primary-color: #4A6FA5;        /* ミディアムブルー（信頼感） */
    --primary-dark: #1A2B4A;         /* ダークネイビー */
    --primary-light: #E8F1F8;        /* 淺い水色 */
    --secondary-color: #8BA8C7;      /* ライトブルー（親しみやすさ） */
    --secondary-light: #F0F5FA;
    --accent-color: #5A8AB8;         /* アクセントブルー（安心感） */
    --text-color: #1A2B4A;
    --text-light: #4A5A6A;
    --border-color: #D0DDE8;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow: rgba(26, 43, 74, 0.1);
}

/* ==========================================
   共通クラス
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* アニメーション用クラス */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.subtitle-note {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 184, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* バッジ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 2px 8px var(--shadow);
    margin-right: 10px;
    margin-bottom: 10px;
}

.badge i {
    margin-right: 6px;
    color: var(--accent-color);
}

/* ==========================================
   ヘッダー
   ========================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(26, 43, 74, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(74, 111, 165, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 旧バナーロゴスタイル（予備） */
.logo-banner {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-banner {
    opacity: 0.8;
}

/* 旧ロゴスタイル（予備） */
.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-image {
    transform: rotate(180deg);
}

.logo i {
    font-size: 1.8rem;
    margin-right: 10px;
    color: var(--accent-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav a {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-color);
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: var(--primary-color);
}

.btn-contact {
    padding: 10px 24px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
}

.btn-contact:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--primary-dark);
}

/* モバイルメニュー表示時のスタイル */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(26, 43, 74, 0.15);
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
        font-size: 1rem;
    }

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

    .nav a::after {
        display: none;
    }

    .btn-contact {
        border-radius: 8px;
        margin-top: 10px;
    }
}

/* ==========================================
   ファーストビュー
   ========================================== */
.hero {
    background: linear-gradient(135deg, #F8FBFF 0%, var(--white) 100%);
    padding: 60px 0 80px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(74, 111, 165, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-banner {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-banner-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(74, 111, 165, 0.15));
}

/* 旧バッジスタイル（予備） */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title br {
    display: block;
}

@media (max-width: 768px) {
    .hero-title br {
        display: none;
    }
}

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

.hero-title .highlight {
    color: var(--primary-color);
    background: linear-gradient(transparent 60%, var(--secondary-light) 60%);
    padding: 0 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-greeting {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-top: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    background: var(--white);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(74, 111, 165, 0.08);
    border-left: 4px solid var(--primary-color);
}

.hero-greeting p {
    margin-bottom: 1.5rem;
}

.hero-greeting p:last-child {
    margin-bottom: 0;
}

.hero-greeting strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 旧CTAスタイル（予備） */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-note i {
    color: var(--accent-color);
    margin-right: 5px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(74, 111, 165, 0.2);
    transition: transform 0.3s ease;
}

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

/* ==========================================
   こんなお悩みありませんか？
   ========================================== */
.concerns {
    padding: 80px 0;
    background: var(--white);
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.concern-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.concern-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.concern-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(74, 111, 165, 0.3);
}

.concern-card:hover::after {
    opacity: 0.1;
}

.concern-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.concern-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.concern-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.concerns-solution {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 15px;
    margin-top: 3rem;
}

.solution-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.solution-text i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ==========================================
   訪問マッサージとは？
   ========================================== */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-description {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.about-description h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.about-description h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.about-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-description strong {
    color: var(--primary-color);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: start;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    min-width: 60px;
}

.feature-text h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   せんり訪問マッサージの特徴
   ========================================== */
.clinic-features {
    padding: 80px 0;
    background: var(--white);
}

.feature-highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-highlight {
    width: 100%;
}

.feature-highlight-content {
    background: linear-gradient(135deg, var(--primary-light), var(--white));
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: start;
    box-shadow: 0 10px 40px var(--shadow);
    height: 100%;
}

.feature-highlight-icon {
    font-size: 5rem;
    color: var(--primary-color);
    min-width: 100px;
    text-align: center;
}

.feature-highlight-image {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

.feature-highlight-image .feature-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(74, 111, 165, 0.2);
    transition: transform 0.3s ease;
}

.feature-highlight-image .feature-image:hover {
    transform: scale(1.05);
}

.feature-highlight-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-highlight-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.feature-highlight-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 1.5rem;
}

.feature-points li {
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-color);
    box-shadow: 0 2px 8px var(--shadow);
}

.feature-points i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.feature-note {
    margin-top: 1.5rem;
    padding: 12px 16px;
    background: var(--secondary-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-note i {
    color: var(--primary-color);
}

/* ==========================================
   選ばれる3つの理由
   ========================================== */
.reasons {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.reason-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.reason-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.reason-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.4);
}

.reason-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.reason-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   サービスの効果
   ========================================== */
.effects {
    padding: 80px 0;
    background: var(--bg-light);
}

.effects-image-container {
    text-align: center;
    margin-bottom: 3rem;
}

.effects-image {
    max-width: 700px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(74, 111, 165, 0.2);
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.effect-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.effect-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.effect-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.effect-card h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.effect-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   対象となる方
   ========================================== */
.target {
    padding: 80px 0;
    background: var(--white);
}

.target-conditions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 2rem;
}

.condition-group {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.condition-group h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.condition-group h3 i {
    margin-right: 10px;
}

.condition-list {
    display: grid;
    gap: 12px;
}

.condition-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: var(--text-color);
}

.condition-list i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.target-note {
    background: var(--primary-light);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: start;
    gap: 15px;
}

.target-note i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.target-note p {
    color: var(--text-color);
    line-height: 1.7;
}

/* ==========================================
   比較表
   ========================================== */
.comparison {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison-table-wrapper {
    overflow-x: visible;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.highlight-column {
    background: var(--secondary-light) !important;
    font-weight: 600;
    color: var(--text-color) !important;
}

.badge-insurance,
.badge-insurance-alt {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-insurance {
    background: var(--primary-color);
    color: var(--white);
}

.badge-insurance-alt {
    background: var(--accent-color);
    color: var(--white);
}

.comparison-note {
    background: linear-gradient(135deg, var(--accent-color), #45A049);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: start;
    gap: 15px;
}

.comparison-note i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.comparison-note p {
    line-height: 1.7;
}

.comparison-clinic-note {
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    margin-top: 2rem;
    display: flex;
    gap: 30px;
    align-items: start;
    box-shadow: 0 8px 25px var(--shadow);
}

.clinic-note-icon {
    font-size: 4rem;
    color: var(--primary-color);
    min-width: 80px;
    text-align: center;
}

.clinic-note-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.clinic-note-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.9;
}

.clinic-note-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================
   ご利用の流れ
   ========================================== */
.flow {
    padding: 80px 0;
    background: var(--white);
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.flow-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.flow-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.step-highlight {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.step-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.flow-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
}

.flow-cta-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ==========================================
   料金について
   ========================================== */
.price {
    padding: 80px 0;
    background: var(--bg-light);
}

.price-overview {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.price-card-single {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--primary-color);
    max-width: 500px;
    width: 100%;
}

.price-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--primary-color);
}

.price-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-amount {
    margin-bottom: 1rem;
}

.price-amount-simple {
    margin: 2rem 0;
}

.price-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-average {
    font-size: 1.1rem;
    color: var(--text-light);
}

.price-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-left: 5px;
}

.price-range {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.price-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.price-description-large {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1rem;
}

.price-note-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.price-note-bottom p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.price-details,
.price-simulation,
.price-benefits {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.price-details h3,
.price-simulation h3,
.price-benefits h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.price-details h3 i,
.price-simulation h3 i,
.price-benefits h3 i {
    margin-right: 10px;
}

.price-list {
    margin-top: 1rem;
}

.price-list li {
    padding: 10px 0;
    display: flex;
    align-items: start;
}

.price-list i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

.price-note {
    margin-top: 1.5rem;
    padding: 15px;
    background: var(--primary-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.simulation-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 1.5rem;
}

.simulation-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.simulation-card h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.simulation-calc p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.simulation-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.benefits-list li {
    padding: 12px 0;
    display: flex;
    align-items: start;
}

.benefits-list i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.price-contact {
    text-align: center;
    padding: 30px;
    background: var(--secondary-light);
    border-radius: 10px;
}

.price-contact p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* ==========================================
   お客様の声
   ========================================== */
.voice {
    padding: 80px 0;
    background: var(--white);
}

.satisfaction-rate {
    text-align: center;
    margin-bottom: 3rem;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 15px;
}

.rate-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rate-number span {
    font-size: 3rem;
}

.rate-text {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-top: 1rem;
}

.voice-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.voice-tab {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-tab:hover,
.voice-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.voice-content {
    display: none;
}

.voice-content.active {
    display: block;
}

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

.voice-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.voice-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-5px);
}

.voice-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.voice-profile i {
    font-size: 3rem;
    color: var(--primary-color);
}

.voice-profile h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.voice-condition {
    font-size: 0.9rem;
    color: var(--text-light);
}

.voice-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ==========================================
   よくある質問
   ========================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question span {
    display: flex;
    align-items: center;
}

.faq-question i.fa-question-circle {
    color: var(--accent-color);
    margin-right: 12px;
}

.faq-question i.fa-chevron-down {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-color);
    line-height: 1.8;
}

/* ==========================================
   施術師紹介
   ========================================== */
.therapist {
    padding: 80px 0;
    background: var(--white);
}

.therapist-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.therapist-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.therapist-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.therapist-feature .feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.therapist-feature h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.therapist-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.therapist-commitment {
    background: var(--primary-light);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
}

.therapist-commitment h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.therapist-commitment h3 i {
    margin-right: 10px;
}

.commitment-list li {
    padding: 12px 0;
    display: flex;
    align-items: start;
    color: var(--text-color);
}

.commitment-list i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 1.2rem;
}

/* ==========================================
   訪問エリア
   ========================================== */
.area {
    padding: 80px 0;
    background: var(--bg-light);
}

.area-map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 2rem;
}

.area-map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.area-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.map-credit {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.75rem;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    margin: 0;
}

.area-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area-center {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    display: flex;
    align-items: start;
    gap: 15px;
}

.area-center i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.area-center h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.area-center p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.area-cities {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.area-cities h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.area-cities h3 i {
    margin-right: 8px;
}

.area-cities-text {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
}

.area-note {
    background: var(--secondary-light);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: start;
    gap: 15px;
}

.area-note i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 3px;
}

.area-note p {
    color: var(--text-color);
    line-height: 1.7;
}

/* ==========================================
   お問い合わせ
   ========================================== */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 3rem;
}

.contact-method {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.method-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.phone-number a {
    color: var(--primary-color);
}

.phone-number a:hover {
    color: var(--primary-dark);
}

.phone-hours {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.method-note {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* フォーム */
.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.required {
    color: #F44336;
    font-size: 0.85rem;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* ==========================================
   プライバシーポリシー
   ========================================== */
.privacy-policy {
    padding: 80px 0;
    background: var(--bg-light);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.privacy-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    padding: 20px;
    background: var(--primary-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

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

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--secondary-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-benefits {
    background: var(--primary-light);
    padding: 40px;
    border-radius: 15px;
}

.contact-benefits h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-benefits h3 i {
    margin-right: 10px;
}

/* ==========================================
   会社情報
   ========================================== */
.company {
    padding: 80px 0;
    background: var(--bg-light);
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.company-table {
    width: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

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

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

.company-table th,
.company-table td {
    padding: 20px 30px;
    text-align: left;
}

.company-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-color);
    width: 180px;
}

.company-table td {
    color: var(--text-color);
}

.company-table a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================
   フッター
   ========================================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

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

/* 旧フッターロゴスタイル（予備） */
.footer-logo .logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
}

.footer-logo i {
    font-size: 1.8rem;
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   レスポンシブデザイン
   ========================================== */

@media (max-width: 1024px) {
    /* ヘッダーナビゲーション - タブレット */
    .logo-text {
        font-size: 1.3rem;
    }

    .logo-banner {
        height: 65px;
    }

    .nav {
        gap: 1.2rem;
    }
    
    .nav a {
        font-size: 0.82rem;
    }

    .btn-contact {
        padding: 8px 18px;
        font-size: 0.82rem;
    }

    .hero {
        padding: 60px 0 60px;
    }

    .hero-content {
        gap: 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-greeting {
        padding: 1.5rem;
        font-size: 0.98rem;
    }

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    /* ヘッダー */
    .header {
        padding: 0.8rem 0;
    }

    .logo-text {
        font-size: 1.15rem;
        letter-spacing: 0.01em;
    }

    .logo-banner {
        height: 55px;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* ファーストビュー */
    .hero {
        padding: 50px 0 40px;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-banner {
        justify-content: center;
    }

    .hero-banner-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.6;
        text-align: center;
    }

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

    .hero-greeting {
        font-size: 0.95rem;
        line-height: 1.9;
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .hero-greeting p {
        margin-bottom: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    /* グリッドレイアウト */
    .concerns-grid,
    .reasons-grid,
    .voice-grid {
        grid-template-columns: 1fr;
    }

    /* 特徴セクション */
    .feature-highlight-content {
        flex-direction: column;
        padding: 30px;
    }

    .feature-highlight-icon {
        font-size: 3.5rem;
    }

    .feature-highlight-image {
        min-width: 100%;
        max-width: 100%;
    }

    .feature-highlight-image .feature-image {
        height: 250px;
    }

    .feature-points {
        grid-template-columns: 1fr;
    }

    /* 比較表の注釈 */
    .comparison-clinic-note {
        flex-direction: column;
        padding: 25px;
    }

    .clinic-note-icon {
        font-size: 3rem;
    }

    .effects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .effects-image {
        height: 300px;
    }

    .target-conditions,
    .area-content,
    .simulation-examples {
        grid-template-columns: 1fr;
    }
    
    .price-card-single {
        padding: 30px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* テーブル */
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .company-table th {
        width: 120px;
    }

    .company-table th,
    .company-table td {
        padding: 15px 20px;
    }

    /* エリア */
    .area-map-container {
        grid-template-columns: 1fr;
    }
    
    .area-map {
        height: 400px;
    }

    /* フッター */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo .logo-banner {
        height: 35px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* プライバシーポリシー */
    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }

    .therapist-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .effects-grid {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 1.8rem;
    }

    .area-map {
        height: 350px;
    }

    .rate-number {
        font-size: 3.5rem;
    }

    .rate-number span {
        font-size: 2rem;
    }

    .voice-tabs {
        flex-direction: column;
    }

    .voice-tab {
        width: 100%;
    }
}

/* ==========================================
   ユーティリティクラス
   ========================================== */
.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

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

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }