/* ============================================
   ニセコ鍼灸 - 日本語版スタイルシート
   デザイン: 明るく、プロフェッショナル、親しみやすい
   カラー: シアン＆パープル系
   ============================================ */

:root {
    --primary-color: #00b1cb;        /* Cyan/Turquoise */
    --primary-light: #33c1d8;
    --primary-dark: #008fa8;
    --accent-color: #3d00d4;         /* Purple accent */
    --accent-light: #6a33e0;
    --secondary-color: #666666;      /* Medium gray */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #dddddd;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
}

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

/* ============================================
   ナビゲーション
   ============================================ */

.navbar {
    background: transparent !important;
    backdrop-filter: none;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

/* About/Servicesページのみグレー背景 */
body.about-page .navbar,
body.services-page .navbar {
    background: linear-gradient(to bottom, #9b9b9b 0%, #9b9b9b 70px, transparent 70px) !important;
    max-height: 90px;
    overflow: visible;
}

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

.nav-brand h1 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.nav-brand .tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.logo {
    height: 120px !important;
    width: auto;
    display: block;
    transition: transform 0.3s;
    object-fit: cover;
    object-position: center bottom;
    margin-top: -30px;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-top: -30px;
}

.nav-menu a {
    text-decoration: none;
    color: white !important;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

/* 全ページで同じナビゲーションスタイル - 削除（不要） */

.nav-menu a:hover,
.nav-menu a.active {
    color: white !important;
    opacity: 0.8;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 600;
}

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

.lang-switch {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.lang-switch:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(61, 0, 212, 0.05);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    margin-top: -30px;
}

/* ============================================
   ヒーローセクション
   ============================================ */

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 100%);
    overflow: hidden;
}

.hero-fullscreen {
    height: 100vh !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-acupuncture.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(135, 206, 235, 0.1), transparent);
}

.hero-fullscreen::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-dark);
    padding: 0 20px;
    margin-top: 25vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.35;
}

.mobile-br {
    display: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    color: var(--text-medium);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
}

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

.btn-hero:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 0, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

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

/* ============================================
   セクション共通
   ============================================ */

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

/* ============================================
   特徴セクション
   ============================================ */

.features {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(61, 0, 212, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 177, 203, 0.2);
}

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

.feature-card p {
    color: var(--text-medium);
    line-height: 1.9;
}

/* ============================================
   サービス概要
   ============================================ */

.services-overview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.2);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(61, 0, 212, 0.3);
    border-color: var(--accent-light);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 107, 157, 0.2), transparent);
}

.service-content {
    padding: 2.5rem;
}

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

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

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

.service-list li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.service-list i {
    color: var(--primary-color);
    margin-right: 0.7rem;
    font-size: 1.1rem;
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: 600;
}

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

/* ============================================
   対応症状
   ============================================ */

.conditions {
    background: var(--bg-light);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.condition-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.condition-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.condition-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.condition-item span {
    color: var(--text-dark);
    font-weight: 600;
}

.conditions-cta {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-top: 2.5rem;
    font-weight: 500;
}

/* ============================================
   お問い合わせ情報
   ============================================ */

.contact-info {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
}

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

.contact-card h3 i {
    margin-right: 0.5rem;
}

.contact-card p {
    color: var(--text-dark);
    line-height: 1.9;
    font-weight: 500;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   CTA予約
   ============================================ */

.cta-booking {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-booking h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-booking p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    font-weight: 600;
}

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

/* ============================================
   フッター
   ============================================ */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   ページヘッダー（サービス・About）
   ============================================ */

/* 全ページで統一されたナビゲーションスタイル（白背景なし、白文字） */

.page-header {
    background: linear-gradient(135deg, #E0F7FA 0%, #F0F9FF 100%);
    color: var(--text-dark);
    text-align: center;
    padding: 5rem 0 4rem;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* ============================================
   サービス詳細ページ
   ============================================ */

.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    border: 2px solid var(--border-color);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--border-color);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.service-detail-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.service-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    font-weight: 500;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.service-detail-content p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.symptom-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: var(--bg-light);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.symptom-item:hover {
    border-color: var(--primary-color);
}

.symptom-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.treatment-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

.flow-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}

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

.flow-step p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.recommendations {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.recommendation-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    align-items: start;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.recommendation-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.recommendation-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.recommendation-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.recommendation-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1.2rem;
    background: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.benefits-list li:hover {
    background: var(--border-color);
    transform: translateX(10px);
}

.beauty-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.beauty-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.beauty-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.beauty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}

.beauty-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.beauty-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: var(--primary-color);
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.pricing-info {
    background: var(--bg-light);
    padding: 4rem 0;
}

.pricing-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.2);
    border: 2px solid var(--border-color);
}

.pricing-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.pricing-card p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.about-intro {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

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

.profile-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 5rem;
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.4);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.credentials {
    background: var(--bg-light);
    padding: 4rem 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.credential-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.credential-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.25);
}

.credential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}

.credential-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.credential-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.credential-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ============================================
   Timeline Section
   ============================================ */

.timeline {
    background: var(--white);
    padding: 5rem 0;
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Noto Serif JP', serif;
    text-align: right;
    padding-top: 0.3rem;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -1.65rem;
    top: 0.9rem;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 177, 203, 0.1);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 177, 203, 0.2);
}

.timeline-content p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-dark);
}

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

@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        padding-left: 50px;
    }
    
    .timeline-year {
        width: auto;
        text-align: left;
        font-size: 1.5rem;
    }
    
    .timeline-year::after {
        left: -30px;
        right: auto;
        top: 0.5rem;
    }
    
    .timeline-content {
        padding: 1.2rem 1.5rem;
    }
}

.specialties {
    padding: 4rem 0;
    background: var(--white);
}

.specialty-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.specialty-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 35px rgba(255, 107, 157, 0.2);
}

.specialty-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

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

.specialty-card p {
    color: var(--text-medium);
    line-height: 1.9;
}

.philosophy-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.philosophy-content-box {
    display: grid;
    gap: 2.5rem;
}

.philosophy-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.philosophy-item:hover {
    border-color: var(--primary-color);
}

.philosophy-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.philosophy-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.philosophy-item p {
    color: var(--text-medium);
    line-height: 1.9;
}

.message-section {
    padding: 4rem 0;
}

.message-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3.5rem;
    border-radius: 25px;
    border: 2px solid var(--border-color);
}

.message-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 800;
}

.message-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.message-signature {
    text-align: right;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

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

/* ============================================
   Google レビューセクション
   ============================================ */

.google-reviews {
    background: var(--white);
    padding: 5rem 0;
}

.google-reviews .section-title {
    color: var(--text-dark);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 1.8rem;
}

.rating-count {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(61, 0, 212, 0.2);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.reviewer-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #fbbc04;
    font-size: 1rem;
}

.review-text {
    color: var(--text-medium);
    line-height: 1.8;
    margin-top: 1rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    transition: all 0.3s;
}

/* ============================================
   Blog Section
   ============================================ */

.blog-section {
    padding: 5rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-link:hover {
    color: var(--accent-color);
    gap: 0.8rem;
}

.blog-link i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   Google Map Section
   ============================================ */

.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}
}

.google-badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 177, 203, 0.2);
}

.google-badge i {
    font-size: 1.2rem;
}

.google-icon {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-reviews {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(61, 0, 212, 0.3);
}

.btn-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61, 0, 212, 0.5);
}

/* ============================================
   Mobile Fixed Bottom Bar
   ============================================ */

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
}

.mobile-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.bottom-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    gap: 0.6rem;
    font-size: 1.1rem;
    border: none;
}

.bottom-bar-btn i {
    font-size: 1.8rem;
}

.bottom-bar-btn span {
    font-size: 1.1rem;
}

.bottom-bar-booking {
    background: #9b9b9b;
    color: var(--white);
}

.bottom-bar-booking:active {
    background: #888888;
}

.bottom-bar-line {
    background: #06C755;
    color: var(--white);
}

.bottom-bar-line:active {
    background: #05b34c;
}

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

@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: grid;
    }

    body {
        padding-bottom: 80px;
    }
    .logo {
        height: 120px !important;
        margin-top: -25px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        margin-top: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
        margin-top: -20px;
    }

    .hero-fullscreen {
        margin-top: 0 !important;
        padding-top: 0 !important;
        background-attachment: scroll !important;
    }

    .mobile-br {
        display: inline;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .features-grid,
    .services-grid,
    .credentials-grid,
    .specialty-cards {
        grid-template-columns: 1fr;
    }
}

/* タブレット用レイアウト */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}