/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --col-primary: #2a2a2a;
    --col-secondary: #8b7355;
    --col-accent: #e07b4c;

    --col-text-main: #2a2a2a;
    --col-text-sub: #5c5c5c;

    /* 背景色：温かみのあるクリーム系 */
    --col-bg-body: #faf6f1;
    --col-bg-white: #fffcf7;

    --font-main: 'Zen Maru Gothic', sans-serif;

    --radius-l: 20px;
    --radius-m: 12px;
    --shadow-soft: 0 4px 20px rgba(139, 115, 85, 0.08);
    --shadow-hover: 0 8px 30px rgba(139, 115, 85, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-main);
    background-color: var(--col-bg-body);
    color: var(--col-text-main);
    line-height: 2.0;
    font-size: 16px;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.5; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; border-radius: var(--radius-m); }

.sp-only { display: block; }
.pc-only { display: none; }
@media (min-width: 768px) {
    .sp-only { display: none; }
    .pc-only { display: block; }
}

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 40px; font-size: 1.1rem; font-weight: 700; border-radius: 100px;
    background-color: var(--col-accent); color: #fff;
    box-shadow: 0 4px 15px rgba(224, 123, 76, 0.35); border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-3px); background-color: #c96a3d; }
.btn i { margin-right: 8px; }

.btn-secondary {
    background-color: rgba(255,255,255,0.95); color: var(--col-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-secondary:hover { background-color: #fff; }

.btn-outline {
    display: inline-flex; align-items: center; padding: 12px 30px;
    font-size: 0.95rem; font-weight: 700; border-radius: 100px;
    border: 2px solid var(--col-primary); color: var(--col-primary); background: #fff;
}
.btn-outline:hover { background-color: var(--col-primary); color: #fff; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block; font-size: 0.9rem; color: var(--col-secondary);
    font-weight: 700; letter-spacing: 0.1em; margin-bottom: 8px; text-transform: uppercase;
}
.section-label-ja {
    display: block; font-size: 1.4rem; color: var(--col-primary);
    font-weight: 700; letter-spacing: 0.15em; margin-bottom: 6px;
}
.section-title { font-size: 2.2rem; color: var(--col-primary); }
.section-title::after { content: "●"; display: block; color: var(--col-accent); font-size: 12px; margin-top: 10px; }

/* Header */
.header {
    padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1rem; font-weight: 700; color: var(--col-primary); display: flex; align-items: center; gap: 8px; z-index: 1001; white-space: nowrap; }
.logo-img { height: 35px; width: auto; border-radius: 0; }
.logo-text { display: inline; }
.logo-text .logo-text-sub::before { content: " "; }
@media (min-width: 768px) { .logo { font-size: 1.4rem; gap: 10px; } .logo-img { height: 44px; } }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 8px; z-index: 1001; }
.header-social { display: flex; gap: 6px; }
.header-social a {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; color: var(--col-primary);
    font-size: 1.1rem; transition: color 0.2s, transform 0.2s;
}
.header-social a:hover { color: var(--col-secondary); transform: scale(1.1); }
@media (min-width: 768px) {
    .header-right { gap: 12px; }
    .header-social { gap: 8px; }
    .header-social a { width: 36px; height: 36px; font-size: 1.25rem; }
}
/* Header Phone (PC only) */
.header-phone {
    display: none;
}
@media (min-width: 768px) {
    .header-phone {
        display: flex; align-items: center; gap: 8px;
        font-size: 0.95rem; font-weight: 600; color: var(--col-primary);
        background: #fff;
        padding: 8px 16px;
        border-radius: 100px;
        border: 1px solid #ddd;
        transition: all 0.2s;
    }
    .header-phone i { color: var(--col-secondary); font-size: 0.85rem; }
    .header-phone-hours {
        font-size: 0.75rem; font-weight: 500; color: var(--col-text-sub);
        border-left: 1px solid #ddd; padding-left: 8px;
    }
    .header-phone:hover {
        border-color: var(--col-secondary);
        background: #faf6f1;
    }
}

/* Hamburger */
.hamburger { display: block; position: relative; z-index: 1001; width: 44px; height: 44px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background-color: var(--col-primary); position: absolute; left: 10px; transition: 0.3s; }
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile Nav - Dropdown */
.nav-mobile {
    position: fixed; top: 60px; left: 0; width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 1000;
}
.nav-mobile.active { max-height: 400px; padding: 15px 0; }
.nav-mobile-list { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.nav-mobile-item { opacity: 0; transform: translateY(-10px); transition: 0.3s; }
.nav-mobile.active .nav-mobile-item { opacity: 1; transform: translateY(0); }
/* Delay */
.nav-mobile.active .nav-mobile-item:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.active .nav-mobile-item:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile.active .nav-mobile-item:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.active .nav-mobile-item:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile.active .nav-mobile-item:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile-link {
    display: block; font-size: 1rem; font-weight: 600; color: var(--col-primary);
    padding: 12px 30px; border-radius: var(--radius-m);
    transition: background-color 0.2s;
}
.nav-mobile-link:hover { background-color: rgba(45, 106, 79, 0.08); }
.nav-mobile-link.nav-contact {
    font-size: 0.9rem; font-weight: 500; color: #666;
    border-top: 1px solid #eee; padding-top: 15px; margin-top: 10px;
}
.nav-mobile-link.nav-contact:hover { background-color: transparent; color: var(--col-primary); }

/* KV / Hero */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; padding: 80px 20px;
}
.hero-content { text-align: left; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; border-radius: 0;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(250, 246, 241, 0.3) 0%, rgba(139, 115, 85, 0.4) 100%);
    z-index: 1;
}
.hero-inner {
    position: relative; z-index: 2; max-width: 900px;
    display: flex; flex-direction: column; align-items: center;
}
.hero-content h1 {
    font-size: 2rem; margin-bottom: 20px; color: var(--col-primary); line-height: 1.5;
    text-shadow: 0 2px 15px rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .hero-content h1 { font-size: 3.2rem; margin-bottom: 24px; } }
.hero-content h1 span { background: linear-gradient(transparent 60%, rgba(224, 123, 76, 0.35) 60%); padding: 0 4px; }
.hero-lead {
    font-size: 1.1rem; margin-bottom: 32px; color: var(--col-text-main);
    text-shadow: 0 0 15px rgba(255,255,255,0.8), 0 0 25px rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .hero-lead { font-size: 1.3rem; margin-bottom: 40px; } }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; justify-content: flex-start; }
.hero-social { display: flex; gap: 15px; margin-top: 25px; }
.hero-social a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: rgba(255,255,255,0.9); color: var(--col-primary);
    border-radius: 50%; font-size: 1.3rem; transition: all 0.3s;
}
.hero-social a:hover { background: #fff; transform: scale(1.1); }
.hero-contact-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 20px; font-size: 0.9rem; color: var(--col-primary);
    opacity: 0.8; transition: opacity 0.2s;
}
.hero-contact-link:hover { opacity: 1; text-decoration: underline; }
.hero-contact-link i { font-size: 0.85rem; }
.hero-badge-area {
    position: absolute; bottom: 30px; right: 30px; z-index: 3;
    display: flex; align-items: center; gap: 15px;
}
@media (min-width: 768px) { .hero-badge-area { bottom: 40px; right: 40px; gap: 20px; } }
.hero-badge-area .hero-social { margin-top: 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.95); padding: 14px; border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hero-badge:hover { transform: translateY(-3px); box-shadow: 0 14px 45px rgba(0,0,0,0.25); }
@media (min-width: 768px) {
    .hero-badge { gap: 15px; padding: 14px; border-radius: 18px; }
}
.badge-icon {
    width: 44px; height: 44px; background: #f5efe6; color: var(--col-accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
@media (min-width: 768px) { .badge-icon { width: 50px; height: 50px; font-size: 1.4rem; } }
.badge-text { font-size: 0.85rem; font-weight: 700; line-height: 1.3; color: var(--col-primary); }
@media (min-width: 768px) { .badge-text { font-size: 0.9rem; } }
.badge-link {
    display: block; margin-top: 4px; font-size: 0.75rem; font-weight: 500;
    color: var(--col-secondary); opacity: 0.9;
}
.badge-link i { font-size: 0.65rem; margin-left: 2px; }

/* News */
.news { padding: 60px 0; }
.news-container {
    max-width: 900px; margin: 0 auto; background: #fff; padding: 40px;
    border-radius: var(--radius-l); box-shadow: var(--shadow-soft);
}
.news-header {
    display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px;
    border-bottom: 2px solid #f2f4f6; padding-bottom: 15px;
}
.news-item {
    display: flex; flex-direction: column; padding: 15px 0; border-bottom: 1px solid #f2f4f6; transition: all 0.3s;
}
.news-item:hover { background-color: #fafafa; transform: translateX(5px); }
@media (min-width: 768px) { .news-item { flex-direction: row; align-items: center; gap: 20px; } }
.news-date { font-family: monospace; color: #999; font-size: 0.9rem; }
.news-cat { font-size: 0.75rem; padding: 2px 10px; border-radius: 20px; background-color: var(--col-secondary); color: #fff; font-weight: 700; }
.news-title { font-weight: 500; color: var(--col-text-main); }

/* Philosophy */
.mission { padding: 60px 0; }
.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%); /* Slight warm tint */
    padding: 80px 30px;
    border-radius: var(--radius-l);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff; /* Inner white border effect */
}
.mission-card::before {
    content: '\f10d'; /* quote-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: var(--col-accent);
    opacity: 0.15;
    line-height: 1;
}
.mission-card::after {
    content: '\f10e'; /* quote-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 6rem;
    color: var(--col-accent);
    opacity: 0.15;
    line-height: 1;
}
.mission-card > * {
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
    .mission-card { padding: 60px 20px; }
    .mission-card::before, .mission-card::after { font-size: 4rem; opacity: 0.1; }
}
.mission-title { font-size: 1.8rem; margin-bottom: 32px; color: var(--col-primary); }

/* Features */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
    background: #fff; padding: 40px 24px; border-radius: 24px; text-align: center;
    box-shadow: var(--shadow-soft); transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card h3 { margin-bottom: 15px; }
.feature-icon-box {
    width: 80px; height: 80px; background: #f5efe6; color: var(--col-primary);
    border-radius: 30px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 24px;
}

/* Staff & Company */
.section-bg-light {
    background-color: #f5efe6; padding: 100px 0; border-radius: 0 80px 0 80px;
}
.staff-profile {
    display: flex; flex-direction: column; gap: 30px;
    background: rgba(255,255,255,0.9); padding: 40px; border-radius: var(--radius-m);
    margin-bottom: 40px; box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .staff-profile { flex-direction: row; align-items: center; } }
.staff-img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; }
.info-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    background: #fff; border-radius: var(--radius-m); overflow: hidden;
}
.info-table th, .info-table td { padding: 16px 24px; border-bottom: 1px solid #f2f4f6; text-align: left; }
.info-table th { background: #fafafa; color: var(--col-primary); width: 30%; }
@media (max-width: 600px) {
    .info-table th, .info-table td { display: block; width: 100%; }
    .info-table th { color: var(--col-secondary); background: #fff; padding-bottom: 5px; }
}

/* Contact */
.contact-section { padding: 80px 0; }
.contact-card {
    background: #fff; border-radius: 40px; overflow: hidden;
    box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-card { grid-template-columns: 40% 60%; } }
.contact-info { background: linear-gradient(135deg, #d35400 0%, #f5b971 100%); color: #fff; padding: 60px 40px; }
.phone-number { font-size: 2.2rem; font-weight: 700; }
.contact-form-wrapper { padding: 60px 40px; }
.form-control {
    width: 100%; padding: 16px; border: 2px solid #ddd; border-radius: 12px;
    font-size: 1rem; margin-bottom: 24px; background: #fcfcfc;
}
.form-control:focus { outline: none; border-color: var(--col-secondary); background: #fff; }
textarea.form-control { min-height: 120px; resize: none; overflow: hidden; line-height: 1.6; }

/* =========================================
   Price Page Styles
   ========================================= */

.price-section {
    margin-bottom: 60px;
}

/* ヘッダーボックス（介護・医療の区切り） */
.price-header-box {
    padding: 20px;
    border-radius: var(--radius-m) var(--radius-m) 0 0;
    color: #fff;
    text-align: center;
}
.price-header-box h2 { font-size: 1.4rem; margin-bottom: 5px; }
.price-header-box p { font-size: 0.9rem; opacity: 0.9; }

/* 色分け */
.bg-green { background-color: var(--col-secondary); }
.bg-orange { background-color: var(--col-accent); }
.bg-gray { background-color: #7f8c8d; }

/* 料金カード本体 */
.price-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 0 0 var(--radius-m) var(--radius-m);
    box-shadow: var(--shadow-soft);
}

.price-card-title {
    font-size: 1.2rem;
    color: var(--col-primary);
    border-left: 5px solid var(--col-primary);
    padding-left: 15px;
    margin-bottom: 10px;
}
.price-note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

/* リスト型レイアウト (DL/DT/DD) */
.price-list {
    border-top: 1px solid #eee;
}
.price-row {
    display: flex;
    flex-direction: column; /* スマホは縦積み */
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}
/* PC以上は横並び */
@media (min-width: 600px) {
    .price-row {
        flex-direction: row;
        align-items: center;
    }
}

.price-row dt {
    font-weight: 700;
    color: var(--col-primary);
    margin-bottom: 5px;
    min-width: 150px; /* PCでの項目幅 */
}
@media (min-width: 600px) {
    .price-row dt { margin-bottom: 0; }
}

.price-row dd {
    flex: 1;
}

.price-label {
    display: inline-block;
    background: #eee;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 5px;
}
.price-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--col-text-main);
}

/* 加算などの補足エリア */
.price-addons {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}
.price-addons h4 {
    font-size: 1rem;
    color: var(--col-text-main);
    margin-bottom: 10px;
}
.price-addons ul {
    list-style: disc;
    margin-left: 20px;
    font-size: 0.95rem;
}
.small-text {
    font-size: 0.85rem;
    color: #666;
}

/* Page Header */
.page-header {
    padding: 120px 20px 60px; text-align: center; background: #fff;
}
.page-header p { margin-top: 20px; color: #666; }

/* Greeting Section */
.greeting-section { margin-bottom: 60px; }
.greeting-card {
    background: #fff; border-radius: var(--radius-l); padding: 40px;
    box-shadow: var(--shadow-soft); overflow: hidden;
}
.greeting-card--primary { border-top: 5px solid var(--col-primary); }
.greeting-card--accent { border-top: 5px solid var(--col-accent); }
.greeting-header { margin-bottom: 30px; }
.greeting-header h2 { font-size: 1.5rem; color: var(--col-primary); margin-top: 8px; }
.greeting-content { display: flex; flex-direction: column; gap: 30px; }
@media (min-width: 768px) { .greeting-content { flex-direction: row; align-items: flex-start; } }
.greeting-photo { text-align: center; flex-shrink: 0; }
.greeting-photo img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.greeting-photo img.manager-photo { object-position: center 20%; }
.greeting-name { text-align: center; }
.greeting-role {
    display: inline-block; background: var(--col-primary); color: #fff;
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; margin-bottom: 8px;
}
.greeting-card--accent .greeting-role { background: var(--col-accent); }
.greeting-name p { font-size: 1.1rem; font-weight: 700; color: var(--col-primary); }
.greeting-text { flex: 1; }
.greeting-text p { margin-bottom: 1em; }
.greeting-lead {
    font-size: 1.1rem; font-weight: 700; color: var(--col-primary);
    background: #f5efe6; padding: 20px; border-radius: var(--radius-m); margin-bottom: 20px;
}
.greeting-philosophy {
    font-size: 1.2rem; font-weight: 700; color: var(--col-accent);
    text-align: center; padding: 20px 0; line-height: 1.8;
}
.greeting-link {
    margin-top: 20px; padding-top: 20px; border-top: 1px solid #eee; text-align: right;
}
.greeting-link a {
    font-size: 0.9rem; color: var(--col-secondary); font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
}
.greeting-link a:hover { color: var(--col-accent); }
.greeting-link a i { font-size: 0.8rem; transition: transform 0.2s; }
.greeting-link a:hover i { transform: translateX(3px); }

/* Activity List */
.activity-list { display: flex; flex-direction: column; gap: 20px; }
.activity-item {
    display: flex; gap: 20px; background: #fff; padding: 30px;
    border-radius: var(--radius-m); box-shadow: var(--shadow-soft);
}
.activity-icon {
    width: 60px; height: 60px; background: var(--col-accent); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.activity-content h3 { font-size: 1.2rem; color: var(--col-primary); margin-bottom: 10px; }
.activity-content p { font-size: 0.95rem; color: var(--col-text-sub); }

/* Simple Card */
.simple-card {
    background: #fff; border-radius: var(--radius-m); box-shadow: var(--shadow-soft);
}

/* Service Category */
.service-categories {
    display: grid; grid-template-columns: 1fr; gap: 30px;
}
@media (min-width: 900px) { .service-categories { grid-template-columns: 1fr 1fr; } }
.service-category {
    background: #fff; border-radius: var(--radius-l); overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.service-category-header {
    height: 140px; background-size: cover; background-position: center top;
    position: relative; display: flex; align-items: flex-end; padding: 20px;
}
@media (min-width: 900px) { .service-category-header { height: 200px; } }
.service-category-title {
    position: relative; color: #fff; font-size: 1.3rem; font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.service-category-body { padding: 20px; }
.service-category-list { list-style: none; padding: 0; margin: 0; }
.service-category-list li {
    padding: 10px 0; border-bottom: 1px solid #eee;
    display: flex; align-items: center; gap: 10px; font-size: 0.95rem;
}
.service-category-list li:last-child { border-bottom: none; }
.service-category-list li i { color: var(--col-secondary); font-size: 0.9rem; }

/* Flow List */
.flow-list { display: flex; flex-direction: column; gap: 20px; }
.flow-item {
    display: flex; gap: 20px; background: #fff; padding: 30px;
    border-radius: var(--radius-m); box-shadow: var(--shadow-soft);
}
.flow-number {
    width: 50px; height: 50px; background: var(--col-accent); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 700; flex-shrink: 0;
}
.flow-content h4 { font-size: 1.1rem; color: var(--col-primary); margin-bottom: 8px; }
.flow-content p { font-size: 0.95rem; color: var(--col-text-sub); }

/* PDF Link */
.pdf-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--col-text-sub); font-size: 0.9rem; padding: 10px 20px;
    border: 1px solid #ddd; border-radius: 8px; transition: all 0.3s;
}
.pdf-link:hover { background: #f5f5f5; color: var(--col-primary); }
.pdf-link i { color: #e74c3c; }

/* Business List */
.business-list {
    list-style: none; padding: 0; margin: 0;
}
.business-list li {
    padding: 5px 0; padding-left: 1.2em; position: relative; font-size: 0.9rem;
}
.business-list li::before {
    content: "・"; position: absolute; left: 0; color: var(--col-secondary);
}

/* CTA Section */
.cta-section { margin-top: 40px; }
.cta-card {
    background: linear-gradient(135deg, var(--col-primary) 0%, #3a3a3a 100%);
    color: #fff; padding: 50px 40px; border-radius: var(--radius-l); text-align: center;
}
.cta-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.cta-card > p { opacity: 0.9; margin-bottom: 30px; }
.cta-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; }
@media (min-width: 768px) { .cta-buttons { flex-direction: row; justify-content: center; } }
.cta-tel {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; color: var(--col-primary); padding: 16px 30px;
    border-radius: 100px; font-size: 1.2rem; font-weight: 700;
}
.cta-tel i { color: var(--col-accent); }
.cta-note { font-size: 0.85rem; opacity: 0.7; margin-top: 20px; }

/* Page Navigation Cards */
.page-nav-section { padding: 80px 0; background: #fff; }
.page-nav-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .page-nav-grid { grid-template-columns: repeat(2, 1fr); } }
.page-nav-card {
    display: block; background: var(--col-bg-body); border-radius: var(--radius-l);
    padding: 40px 30px; position: relative; overflow: hidden;
    box-shadow: var(--shadow-soft); transition: all 0.3s ease;
}
.page-nav-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.page-nav-icon {
    width: 60px; height: 60px; background: var(--col-accent); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}
.page-nav-label {
    display: inline-block; font-size: 0.8rem; color: var(--col-secondary);
    font-weight: 700; letter-spacing: 0.1em; margin-bottom: 8px;
}
.page-nav-content h3 { font-size: 1.5rem; color: var(--col-primary); margin-bottom: 10px; }
.page-nav-content > p { color: var(--col-text-sub); font-size: 0.95rem; margin-bottom: 20px; }
.page-nav-list { margin-bottom: 20px; }
.page-nav-list li {
    padding: 8px 0; font-size: 0.9rem; color: var(--col-text-main);
    border-bottom: 1px dashed #ddd;
}
.page-nav-list li i { color: var(--col-secondary); margin-right: 10px; font-size: 0.8rem; }
.page-nav-arrow {
    position: absolute; bottom: 30px; right: 30px;
    width: 50px; height: 50px; background: var(--col-primary); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; transition: all 0.3s ease;
}
.page-nav-card:hover .page-nav-arrow { background: var(--col-accent); transform: translateX(5px); }

/* Next Page Section */
.next-page-section { padding: 80px 0; background: #fff; }
.next-page-header { text-align: center; margin-bottom: 30px; }
.next-page-header p { color: var(--col-text-sub); margin-top: 10px; }
.next-page-section .page-nav-card { max-width: 500px; margin: 0 auto; }

/* Page Bottom Navigation */
.page-bottom-nav { padding: 0 0 60px; background: var(--col-bg-body); }
.page-bottom-nav-card {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, #fff 0%, #f5efe8 100%); color: var(--col-text-main); padding: 35px 40px;
    border-radius: var(--radius-m); border-left: 6px solid var(--col-secondary);
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.12); transition: all 0.3s ease;
}
.page-bottom-nav-card:hover { transform: translateX(8px); box-shadow: 0 6px 25px rgba(139, 115, 85, 0.2); }
.page-bottom-nav-content .section-label { color: var(--col-secondary); font-weight: 700; }
.page-bottom-nav-content h3 { font-size: 1.4rem; margin: 8px 0 10px; color: var(--col-primary); }
.page-bottom-nav-content p { font-size: 0.9rem; color: var(--col-text-sub); }
.page-bottom-nav-arrow {
    width: 55px; height: 55px; background: var(--col-secondary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0; transition: all 0.3s ease; color: #fff;
}
.page-bottom-nav-card:hover .page-bottom-nav-arrow { background: var(--col-accent); transform: scale(1.1); }

/* Footer */
.footer { background: var(--col-bg-body); padding: 60px 0 0; border-top: 1px solid #e0e0e0; }
.footer-inner {
    display: flex; flex-direction: column; align-items: center; gap: 30px;
    text-align: center; padding-bottom: 40px;
}
.footer-brand { line-height: 1.8; }
.footer-logo { height: 50px; width: auto; display: inline-block; margin-bottom: 12px; border-radius: 0; }
.footer-name { font-weight: 700; color: var(--col-primary); font-size: 1.1rem; }
.footer-contact { line-height: 1.8; font-size: 0.9rem; color: var(--col-text-sub); }
.footer-nav { display: flex; flex-direction: row; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.9rem; color: var(--col-text-main); font-weight: 500; }
.footer-nav a:hover { color: var(--col-accent); }
.footer-nav-divider { color: var(--col-text-sub); font-size: 0.8rem; }
@media (max-width: 767px) {
    .footer-nav { gap: 8px 10px; }
    .footer-nav-divider:last-of-type { display: none; }
    .footer-nav a:last-child { flex-basis: 100%; text-align: center; }
}
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 1.5rem; color: var(--col-text-sub); }
.footer-social a:hover { color: var(--col-accent); }
.footer-bottom {
    border-top: 1px solid #e0e0e0; padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: #999; }

/* Mission Message Responsive */
.mission-message {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--col-primary);
    white-space: nowrap; /* 強制的に折り返しを禁止 */
    margin-bottom: 24px;
}
.mission-message span { background: linear-gradient(transparent 60%, rgba(224, 123, 76, 0.35) 60%); padding: 0 4px; }
@media (max-width: 768px) {
    .mission-message {
        font-size: 4.8vw; /* 画面幅に応じて文字サイズを可変にする */
        line-height: 1.8;
        white-space: normal;
    }
}

/* Utility for white button */
.btn-white-bg { background-color: #fff; }


/* Mobile Fixed Phone Bar */
.mobile-phone-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.mobile-phone-bar i {
    font-size: 1.2rem;
    color: var(--col-accent);
}
.mobile-phone-bar-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--col-primary);
}
.mobile-phone-bar-hours {
    font-size: 0.75rem;
    color: var(--col-text-sub);
    border-left: 1px solid #ddd;
    padding-left: 12px;
}
@media (min-width: 768px) {
    .mobile-phone-bar { display: none; }
}
/* Add bottom padding to body for mobile phone bar */
@media (max-width: 767px) {
    body { padding-bottom: 60px; }
}
