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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =====================================
   コンテナ・レイアウト
===================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.section-cta {
    text-align: center;
    margin-top: 24px;
}

/* =====================================
   ボタンスタイル
===================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    gap: 8px;
    min-height: 48px;
    white-space: nowrap;
}

.btn-primary {
    background-color: #4299e1;
    color: #ffffff;
    border: 2px solid #4299e1;
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.2);
}

.btn-primary:hover {
    background-color: rgba(66, 153, 225, 0.8);
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.4);
}

.btn-orange {
    background-color: #FF8C00;
    color: #ffffff;
    border: 2px solid #FF8C00;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
}

.btn-orange:hover {
    background-color: #E67E00;
    border-color: #E67E00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #4299e1;
    border: 2px solid #4299e1;
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.1);
}

.btn-outline:hover {
    background-color: rgba(66, 153, 225, 0.9);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
    border-color: #4299e1;
}

.btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
}

/* =====================================
   ヘッダー
===================================== */
.header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

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

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin: -16px 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.logo-sub {
    font-size: 0.75rem;
    color: #718096;
    margin-top: -2px;
}

.desktop-nav {
    display: none;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4299e1;
}

/* ハンバーガーメニュー */
.mobile-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 4px;
    box-sizing: border-box;
}

.mobile-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #4a5568;
    transition: all 0.3s ease;
}

.mobile-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 999;
}

.mobile-nav.active {
    max-height: 400px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 20px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    overflow-y: auto !important;
    display: block !important;
    background-color: #ffffff !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #4a5568;
    border-bottom: 1px solid #f7fafc;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.mobile-nav-link:hover {
    color: #4299e1;
    padding-left: 8px;
    background-color: #f7fafc;
}

/* =====================================
   ヒーローセクション
===================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

/* Hero Mosaic Layout */
.hero-mosaic {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    opacity: 0.9;
}

.mosaic-item {
    overflow: hidden;
    position: relative;
}

.mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mosaic-item:hover .mosaic-img {
    transform: scale(1.1);
}

/* Mosaic Grid Positioning - Dynamic Layout */
.mosaic-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.mosaic-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.mosaic-3 {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.mosaic-2 .mosaic-img {
    object-position: center center;
}

.mosaic-3 .mosaic-img {
    object-position: left center;
}

.mosaic-4 {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
}

.mosaic-5 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.mosaic-6 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.mosaic-7 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.mosaic-8 {
    grid-column: 4 / 5;
    grid-row: 3 / 4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(66, 153, 225, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0 40px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0.95;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6), 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.hero-lead {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 24px;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6), 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.price-highlight {
    font-size: 1.3em;
    font-weight: 700;
    color: #68d391;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7), 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.currency {
    font-size: 0.8em;
    opacity: 0.9;
}

.hero-trust-points {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.95;
}

.trust-point i {
    color: #68d391;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-contact-buttons .btn {
    min-width: 180px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 24px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-contact-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 3px 8px rgba(0, 0, 0, 0.3);
}

.hero-secondary-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* =====================================
   お悩みセクション（暗色背景・赤文字）
===================================== */
.problems {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #ffffff;
}

.problems .section-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.problems .section-title .highlight-red {
    color: #fc8181;
}

.problems .section-subtitle {
    color: #cbd5e0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 36px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(252, 129, 129, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 0;
}

.problem-item:hover {
    border-color: #fc8181;
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.problem-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.problem-content {
    flex: 1;
    min-width: 0;
}

.problem-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fc8181;
    margin-bottom: 12px;
    line-height: 1.3;
}

.problem-text {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

/* デスクトップでは改行を非表示 */
.mobile-br {
    display: none;
}

/* スマホではデスクトップ用改行を非表示 */
.desktop-br {
    display: inline;
}

/* デスクトップのみ表示 */
.desktop-only {
    display: inline;
}

/* =====================================
   解決セクション（明るい背景）
===================================== */
.solutions {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
}

.solutions-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 16px;
}

.solutions-description p {
    color: #22543d;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.solutions .section-title {
    color: #22543d;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.solutions .section-subtitle {
    color: #68d391;
    font-weight: 500;
}

.solutions-cta-text {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 24px;
}

.solutions-cta-text p {
    color: #22543d;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 40px;
    background: #ffffff;
    border: 2px solid #68d391;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 0;
}

.solution-item:hover {
    border-color: #38a169;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(56, 161, 105, 0.15);
}

.solution-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border-radius: 50%;
    border: 3px solid #68d391;
}

.solution-icon .svg-icon {
    width: 80%;
    height: 80%;
    filter: drop-shadow(0 2px 6px rgba(104, 211, 145, 0.3));
}

.solution-content {
    flex: 1;
    min-width: 0;
}

.solution-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #22543d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-text {
    color: #2f855a;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* =====================================
   サービスフローセクション
===================================== */
.service-cards-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* 上段：1-3番目のカード */
.service-row-top {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
}

/* 下段：4-5番目のカードを中央に配置 */
.service-row-bottom {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
}

.service-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    width: 420px;
    max-width: 420px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
}

.service-card-bg {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* 整理整頓画像の位置調整 */
.service-bg-img[alt="整理整頓"] {
    object-position: left center;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.service-card-content {
    flex: 1;
    padding: 32px 20px 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card-text {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0px;
    flex: 1;
}

.service-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-btn:not(.secondary) {
    background-color: #4299e1;
    color: #ffffff;
    border: 2px solid #4299e1;
    box-shadow: 0 2px 6px rgba(66, 153, 225, 0.2);
}

.service-btn:not(.secondary):hover {
    background-color: rgba(66, 153, 225, 0.8);
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 153, 225, 0.4);
}

.service-btn.secondary {
    background-color: transparent;
    color: #4299e1;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(66, 153, 225, 0.1);
}

.service-btn.secondary:hover {
    background-color: rgba(66, 153, 225, 0.1);
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 153, 225, 0.2);
}

/* Optional Services */
.optional-services {
    margin: 60px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 8px;
}

.optional-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.optional-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4299e1, #63b3ed);
    border-radius: 2px;
}

.optional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.optional-item {
    background-color: #ffffff;
    padding: 20px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.optional-item:hover {
    transform: translateY(-3px);
    border-color: #4299e1;
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
}

.optional-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #4299e1, #63b3ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.3s ease;
}

.optional-item:hover .optional-icon {
    transform: scale(1.1);
}

.optional-icon i {
    font-size: 24px;
    color: #ffffff;
}

.optional-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
    line-height: 1.4;
}

.optional-price {
    font-size: 0.85rem;
    color: #e53e3e;
    font-weight: 600;
    margin: 0;
    background-color: #fed7d7;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 8px;
}

.usage-note {
    text-align: center;
    background-color: #ebf8ff;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 60px;
    border-left: 4px solid #4299e1;
}

.usage-note i {
    color: #4299e1;
    margin-right: 8px;
}

.flow-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 32px;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.flow-step {
    text-align: center;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.flow-number {
    width: 48px;
    height: 48px;
    background-color: #4299e1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.flow-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 8px;
}

.flow-step p {
    color: #4a5568;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* =====================================
   料金セクション
===================================== */
.pricing {
    background-color: #f7fafc;
}

.pricing-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.base-rate {
    text-align: center;
    background-color: #ffffff;
    padding: 40px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.rate-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
}

.rate-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.currency-symbol {
    font-size: 1.2rem;
    color: #718096;
}

.price-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4299e1;
}

.price-unit {
    font-size: 1.1rem;
    color: #4a5568;
}

.price-note {
    font-size: 0.9rem;
    color: #718096;
    margin-left: 8px;
}

.transportation-fee {
    background-color: #ffffff;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.fee-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    text-align: center;
}

.fee-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: #f7fafc;
    border-radius: 4px;
}

.fee-item .area {
    font-weight: 500;
    color: #4a5568;
}

.fee-item .fee {
    font-weight: 700;
    color: #4299e1;
}

.fee-item small {
    font-size: 0.8rem;
    color: #718096;
}

.examples-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 32px;
}

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

.example-card {
    background-color: #ffffff;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.example-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    text-align: center;
}

.example-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #4a5568;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
    font-weight: 700;
}

.total-price {
    color: #4299e1;
    font-size: 1.1rem;
}

.cancel-policy {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.policy-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
    text-align: center;
}

.policy-content {
    display: flex;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
}

.policy-item:first-child i {
    color: #68d391;
}

.policy-item:last-child i {
    color: #f6ad55;
}

/* =====================================
   品質セクション
===================================== */

/* Quality Section - No top padding */
.quality.section {
    padding-top: 0;
}

/* Quality Photo Slider */
.quality-slider {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
}

.slider-track {
    display: flex;
    width: calc(400px * 12); /* 9枚 + 3枚複製 = 12枚 */
    height: 100%;
    animation: slide 45s linear infinite;
}

.slide {
    width: 400px;
    height: 200px;
    flex-shrink: 0;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 整理整頓画像の位置調整 */
.slider-img[alt="整理整頓サービス"] {
    object-position: left center;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 9)); /* 9枚分移動 */
    }
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .quality-slider {
        height: 150px;
    }
    
    .slider-track {
        width: calc(300px * 12);
        animation: slide-mobile 40s linear infinite;
    }
    
    .slide {
        width: 300px;
        height: 150px;
    }
    
    @keyframes slide-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 9));
        }
    }
}

@media (max-width: 480px) {
    .quality-slider {
        height: 120px;
    }
    
    .slider-track {
        width: calc(250px * 12);
        animation: slide-small 35s linear infinite;
    }
    
    .slide {
        width: 250px;
        height: 120px;
    }
    
    @keyframes slide-small {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 9));
        }
    }
}
.quality-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px 0;
    max-width: 1100px;
    margin: 0 auto 32px;
}

.quality-row-top {
    margin-top: -12px;
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.quality-row-bottom {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

.quality-point {
    text-align: center;
    padding: 20px 16px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 320px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.quality-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    margin: 0 auto 16px;
}

.quality-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.quality-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.3;
    margin: 0;
}

/* =====================================
   エリア・言語セクション
===================================== */
.area-language {
    background-color: #f7fafc;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.area-column {
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.area-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
    text-align: center;
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f7fafc;
    border-radius: 4px;
}

.area-item i {
    color: #4299e1;
}

.area-examples h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.examples-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.example-tag {
    padding: 6px 12px;
    background-color: #ebf8ff;
    color: #2b6cb0;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.language-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.language-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.language-item i {
    color: #4299e1;
    font-size: 1.2rem;
    margin-top: 4px;
}

.language-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 6px;
}

.language-text p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =====================================
   会社概要セクション
===================================== */
.company-overview {
    background-color: #fafafa;
}

.overview-content {
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.company-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-table th {
    background-color: #f8f9fa;
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    color: #1a365d;
    border-bottom: 1px solid #e2e8f0;
    width: 150px;
    vertical-align: top;
}

.company-table td {
    padding: 16px 24px;
    color: #4a5568;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

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

/* =====================================
   お問い合わせセクション
===================================== */
.contact {
    background-color: #ffffff;
}

.contact-notice {
    text-align: center;
    background-color: #ebf8ff;
    padding: 16px;
    border-radius: 4px;
    margin: 0 auto 40px;
    border-left: 4px solid #4299e1;
    max-width: 800px;
}

.contact-notice i {
    color: #4299e1;
    margin-right: 8px;
}

.quick-contacts {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 350px;
    justify-content: flex-start;
}

.quick-contact:hover {
    background-color: rgba(235, 248, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.15);
}

.quick-contact i {
    font-size: 1.5rem;
}

.quick-contact.phone i {
    color: #68d391;
}

.quick-contact.email i {
    color: #4299e1;
}

.quick-contact.line i {
    color: #06c755;
}

.contact-label {
    font-size: 0.85rem;
    color: #718096;
    display: block;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a365d;
    display: block;
}

/* フォームスタイル */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.half-width {
    grid-column: span 1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 8px;
}

.required {
    color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
}

.checkbox-group,
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.checkbox-item:hover,
.radio-item:hover {
    background-color: #edf2f7;
}

.checkbox-item input,
.radio-item input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

/* FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 32px;
}

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

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #1a365d;
    background-color: #f7fafc;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #edf2f7;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #4299e1;
}

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

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

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

.faq-answer p {
    padding: 20px;
    color: #4a5568;
    line-height: 1.6;
}

/* 専属運転サービス */
.chauffeur-teaser {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f7fafc;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.chauffeur-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 24px;
}

.chauffeur-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 16px;
}

.chauffeur-plan {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.chauffeur-plan h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4299e1;
}

.plan-price small {
    font-size: 0.8rem;
    color: #718096;
}

.plan-desc {
    font-size: 0.85rem;
    color: #4a5568;
}

.chauffeur-note {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

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

/* =====================================
   固定モバイルCTA
===================================== */
.fixed-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    z-index: 999;
    padding: 12px;
    gap: 8px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.mobile-cta-btn:hover {
    background-color: rgba(247, 250, 252, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.1);
}

.mobile-cta-btn i {
    font-size: 1.2rem;
}

.mobile-cta-btn.phone i {
    color: #68d391;
}

.mobile-cta-btn.line i {
    color: #06c755;
}

.mobile-cta-btn.email i {
    color: #4299e1;
}

/* =====================================
   フッター
===================================== */
.footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-company {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #4299e1;
}

.footer-mission {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-address {
    margin-bottom: 12px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #cbd5e0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4299e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.85rem;
}

/* =====================================
   レスポンシブ対応
===================================== */
/* タブレット */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-hamburger {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

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

    .fixed-mobile-cta {
        display: none;
    }

    .contact-form {
        padding: 60px;
    }

    .section {
        padding: 80px 0;
    }
    
    .quality.section {
        padding-top: 0;
        padding-bottom: 40px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .service-row-top {
        gap: 20px;
    }
    
    .service-row-bottom {
        gap: 20px;
    }
    
    .service-card {
        width: 360px;
        max-width: 360px;
        flex: none;
    }

    /* 品質セクションのタブレット対応 */
    .quality-points {
        gap: 16px;
        padding: 20px 0;
        max-width: 850px;
        margin-bottom: 24px;
    }
    
    .quality-row-top {
        margin-top: -12px;
        gap: 16px;
    }
    
    .quality-row-bottom {
        gap: 16px;
    }
    
    .quality-point {
        width: 260px;
        min-height: 120px;
        padding: 18px 16px;
    }

    /* 料金例グリッドのタブレット対応 */
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1023px) {
    .problems-grid {
        gap: 32px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .problem-item {
        gap: 20px;
        padding: 28px 24px;
    }
    
    .problem-text {
        font-size: 0.9rem;
    }
    
    .solutions-grid {
        gap: 28px;
        max-width: 100%;
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .solution-item {
        gap: 24px;
        padding: 32px;
    }
    
    .solution-text {
        font-size: 1rem;
    }
}

/* デスクトップ - 中画面 */
@media (min-width: 1024px) and (max-width: 1399px) {
    .problems-grid {
        max-width: 1200px;
        gap: 40px;
    }
    
    .problem-item {
        gap: 24px;
        padding: 32px 28px;
    }
    
    .problem-text {
        font-size: 0.95rem;
    }
    
    .solutions-grid {
        max-width: 1200px;
        gap: 32px;
    }
    
    .solution-item {
        gap: 28px;
        padding: 36px 32px;
    }
    
    .solution-text {
        font-size: 1.05rem;
    }
}

/* デスクトップ */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-content {
        padding: 120px 0 80px;
    }

    .services-grid {
        gap: 80px;
    }

    .area-grid {
        gap: 80px;
    }

    .pricing-main {
        gap: 60px;
    }

    .chauffeur-plans {
        gap: 40px;
    }
}

/* デスクトップ - 大画面 */
@media (min-width: 1400px) {
    .problems-grid {
        gap: 48px;
        max-width: 1600px;
    }
    
    .problem-item {
        gap: 32px;
        padding: 36px 40px;
    }
    
    .problem-text {
        font-size: 1.05rem;
    }
    
    .solutions-grid {
        gap: 40px;
        max-width: 1600px;
    }
    
    .solution-item {
        gap: 36px;
        padding: 44px;
    }
    
    .solution-text {
        font-size: 1.15rem;
    }
}

/* スマートフォン縦向き */
@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* セクション余白の調整（グルーピング化） */
    .section {
        padding: 48px 0;
    }
    
    .problems {
        padding: 56px 0;
    }
    
    .solutions {
        padding: 56px 0;
    }
    
    .service-flow {
        padding: 56px 0;
    }
    
    .pricing {
        padding: 56px 0;
    }
    
    .quality {
        padding: 56px 0;
    }
    
    .area-language {
        padding: 56px 0;
    }
    
    .company-overview {
        padding: 56px 0;
    }
    
    .contact {
        padding: 56px 0 100px;
    }
    
    /* セクション見出しの調整 */
    .section-header {
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .header {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 0;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .header-content {
        padding: 16px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 12px;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .logo-img {
        height: 60px;
        margin: -16px 0;
    }
    
    .logo-text {
        font-size: 1.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mobile-hamburger {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        margin-right: 0;
        padding: 8px;
    }
    
    .mobile-hamburger span {
        width: 22px;
    }
    
    .mobile-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        margin-top: 60px;
        min-height: 70vh;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 60px 20px 40px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.45;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: break-word;
        max-width: 100%;
        margin-bottom: 14px;
    }
    
    .hero-title br {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
    
    .hero-lead {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    /* Hero Mosaic - Mobile */
    .hero-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 0;
    }
    
    .mosaic-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .mosaic-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .mosaic-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .mosaic-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .mosaic-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .mosaic-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .mosaic-7 {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    
    .mosaic-8 {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }

    .hero-contact-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-contact-buttons .btn {
        width: 100%;
        min-width: auto;
        font-size: 1rem;
        padding: 14px 20px;
    }
    
    .btn {
        font-size: 0.95rem;
        padding: 14px 28px;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 16px 28px;
    }
    
    .section-cta {
        margin-top: 28px;
    }

    .service-flow .section-title {
        font-size: 1.5rem;
    }
    
    .service-row-top,
    .service-row-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .service-card {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    
    .service-card-content {
        padding-top: 20px;
    }
    
    .service-card-title {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    
    .service-card-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-cards-grid {
        margin-bottom: 0;
    }

    /* Optional Services - Mobile */
    .optional-services {
        margin: 0 0 36px;
        padding: 32px 20px;
    }

    .optional-title {
        font-size: 1.3rem;
        margin-bottom: 28px;
    }

    .optional-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 0;
    }

    .optional-item {
        padding: 18px 14px;
    }

    .optional-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .optional-icon i {
        font-size: 20px;
    }

    .optional-name {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .usage-note {
        margin-bottom: 44px;
        font-size: 0.9rem;
    }
    
    .flow-title {
        font-size: 1.3rem;
        margin-bottom: 28px;
    }
    
    .flow-step h4 {
        font-size: 1rem;
    }
    
    .flow-step p {
        font-size: 0.9rem;
    }

    .pricing .section-title {
        font-size: 1.5rem;
    }
    
    .pricing-main {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 44px;
    }
    
    .base-rate {
        background-color: transparent;
        padding: 0;
        border: none;
    }
    
    .rate-title {
        font-size: 1.1rem;
    }
    
    .fee-title {
        font-size: 1rem;
    }
    
    .examples-title {
        font-size: 1.3rem;
        margin-bottom: 28px;
    }
    
    .examples-grid {
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .example-card h4 {
        font-size: 1rem;
    }
    
    .policy-title {
        font-size: 1rem;
    }
    
    .rate-display {
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .price-note {
        text-align: center;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .price-number {
        font-size: 2.2rem;
    }
    
    .currency-symbol {
        font-size: 1rem;
    }
    
    .price-unit {
        font-size: 0.95rem;
    }

    .area-language .section-title {
        font-size: 1.5rem;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 0;
    }
    
    .area-title {
        font-size: 1.2rem;
    }
    
    .area-item span,
    .language-text p {
        font-size: 0.9rem;
    }

    .company-overview .section-title {
        font-size: 1.5rem;
    }
    
    .contact .section-title {
        font-size: 1.5rem;
    }
    
    .chauffeur-title {
        font-size: 1.2rem;
    }
    
    .chauffeur-plans {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-title {
        font-size: 1.3rem;
        margin-bottom: 28px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 18px 16px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding: 18px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    /* 品質セクションのモバイル対応 */
    .quality .section-title {
        font-size: 1.5rem;
    }
    
    .quality-points {
        gap: 16px;
        padding: 20px 0;
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .quality-row-top,
    .quality-row-bottom {
        margin-top: -12px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .quality-point {
        width: 100%;
        max-width: 360px;
        min-height: 100px;
        padding: 20px 16px;
    }

    .quality-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .quality-icon i {
        font-size: 1.3rem;
    }

    .quality-title {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .checkbox-group,
    .radio-group {
        grid-template-columns: 1fr;
    }

    .policy-content {
        flex-direction: column;
        align-items: center;
    }

    .quick-contacts {
        flex-direction: column;
        align-items: center;
    }

    .quick-contact {
        width: 100%;
        max-width: 350px;
    }

    /* お悩み・解決セクションのモバイル対応 */
    .problems .section-title {
        font-size: 1.6rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0;
    }

    .problem-item {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 16px;
        align-items: center;
    }
    
    .problem-content {
        text-align: center;
        width: 100%;
    }
    
    .problem-title {
        text-align: center;
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    /* スマホでは改行を表示 */
    .mobile-br {
        display: block;
    }
    
    /* スマホではデスクトップ用改行を非表示 */
    .desktop-br {
        display: none;
    }
    
    /* モバイルではデスクトップ専用要素を非表示 */
    .desktop-only {
        display: none;
    }
    
    .problem-text {
        font-size: 0.95rem;
        line-height: 1.65;
        text-align: center;
    }

    .problem-icon,
    .solution-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto;
    }

    .solutions .section-title {
        font-size: 1.6rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-item {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
        gap: 18px;
        align-items: center;
    }
    
    .solution-content {
        text-align: center;
        width: 100%;
    }
    
    .solution-title {
        text-align: center;
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .solution-text {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .solution-icon {
        width: 80px;
        height: 80px;
    }

    /* 解決セクション説明文のモバイル対応 */
    .solutions-description {
        margin-bottom: 24px;
    }
    
    .solutions-description p {
        font-size: 0.95rem;
        padding: 0;
        line-height: 1.7;
    }

    .solutions-cta-text {
        margin: 32px auto 24px;
        padding: 0;
    }

    .solutions-cta-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* モバイル版で固定CTAの余白確保 */
    .contact {
        padding-bottom: 100px;
    }

    /* 会社概要テーブルのモバイル対応 */
    .overview-content {
        padding: 0;
    }

    .company-table {
        max-width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .company-table th {
        width: 100px;
        padding: 14px 12px;
        font-size: 0.9rem;
        background-color: rgba(248, 249, 250, 0.9);
    }

    .company-table td {
        padding: 14px 12px;
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    /* お問い合わせフォームのモバイル対応 */
    .contact-form {
        padding: 32px 20px;
    }
    
    .contact-notice {
        margin-bottom: 32px;
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .quick-contacts {
        margin-bottom: 48px;
    }
    
    .quick-contact {
        padding: 18px;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        margin-bottom: 48px;
    }
    
    .faq-section {
        margin-bottom: 48px;
    }

    /* 専属運転ボタンのモバイル対応 */
    .chauffeur-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 16px;
    }

    .chauffeur-cta .btn-outline {
        width: 100%;
        max-width: 350px;
        padding: 16px 24px;
        font-size: 0.8rem;
        white-space: normal;
        line-height: 1.5;
        text-align: center;
        word-break: keep-all;
    }
}

/* 極小画面 */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .container {
        padding: 0 16px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* セクション余白の調整 */
    .section {
        padding: 40px 0;
    }
    
    .problems {
        padding: 48px 0;
    }
    
    .solutions {
        padding: 48px 0;
    }
    
    .service-flow {
        padding: 48px 0;
    }
    
    .pricing {
        padding: 48px 0;
    }
    
    .quality {
        padding: 48px 0;
    }
    
    .area-language {
        padding: 48px 0;
    }
    
    .company-overview {
        padding: 48px 0;
    }
    
    .contact {
        padding: 48px 0 100px;
    }
    
    /* セクション見出しの調整 */
    .section-header {
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .header {
        padding: 0 !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    
    .header-content {
        padding: 12px 12px !important;
        gap: 8px !important;
    }
    
    .logo-text {
        font-size: 1.2rem !important;
    }
    
    .logo-sub {
        font-size: 0.7rem !important;
    }
    
    .mobile-hamburger {
        width: 36px !important;
        height: 36px !important;
        padding: 6px !important;
    }
    
    .mobile-hamburger span {
        width: 20px !important;
    }
    
    .mobile-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px) !important;
    }
    
    .mobile-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px) !important;
    }

    .hero {
        margin-top: 56px;
        min-height: 70vh;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-content {
        max-width: 100% !important;
        padding: 50px 16px 30px !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.45 !important;
        white-space: normal !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        margin-bottom: 12px !important;
    }
    
    .hero-title br {
        display: block !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 12px !important;
    }
    
    .hero-lead {
        font-size: 1rem !important;
        margin-bottom: 24px !important;
    }
    
    .hero-contact-buttons .btn {
        font-size: 0.95rem !important;
        padding: 13px 18px !important;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 13px 24px;
    }
    
    .btn-large {
        font-size: 0.95rem;
        padding: 15px 24px;
    }
    
    .section-cta {
        margin-top: 24px;
    }

    /* Hero Mosaic - Small Mobile */
    .hero-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 0;
    }
    
    .mosaic-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .mosaic-2 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .mosaic-3 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .mosaic-4 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .mosaic-5 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .mosaic-6, .mosaic-7, .mosaic-8 {
        display: none; /* Simplified layout for small screens */
    }

    .hero-trust-points {
        flex-direction: column;
        gap: 12px;
    }
    
    /* お悩みセクション - 極小画面 */
    .problems .section-title {
        font-size: 1.5rem;
    }
    
    .problems-grid {
        gap: 16px;
    }
    
    .problem-item {
        align-items: center !important;
        text-align: center !important;
        padding: 24px 16px;
    }
    
    .problem-content {
        text-align: center !important;
        width: 100% !important;
    }
    
    .problem-title {
        text-align: center !important;
        font-size: 1rem;
    }
    
    /* 極小画面でも改行を表示 */
    .mobile-br {
        display: block !important;
    }
    
    /* 極小画面でもデスクトップ用改行を非表示 */
    .desktop-br {
        display: none !important;
    }
    
    /* 極小画面でもデスクトップ専用要素を非表示 */
    .desktop-only {
        display: none !important;
    }
    
    .problem-text {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
        text-align: center !important;
    }
    
    /* 解決セクション - 極小画面 */
    .solutions .section-title {
        font-size: 1.5rem;
    }
    
    .solutions-grid {
        gap: 16px;
    }
    
    .solution-item {
        align-items: center !important;
        text-align: center !important;
        padding: 28px 16px;
    }
    
    .solution-content {
        text-align: center !important;
        width: 100% !important;
    }
    
    .solution-title {
        text-align: center !important;
        font-size: 1.1rem;
    }
    
    .solution-text {
        text-align: center !important;
        font-size: 0.9rem;
    }
    
    .solutions-description p {
        font-size: 0.9rem;
    }
    
    .solutions-cta-text {
        margin: 28px auto 20px;
    }
    
    .solutions-cta-text p {
        font-size: 0.9rem;
    }
    
    /* サービスフローセクション - 極小画面 */
    .service-flow .section-title {
        font-size: 1.4rem;
    }
    
    .service-card-content {
        padding-top: 16px;
    }
    
    .service-card-title {
        font-size: 1.15rem;
    }
    
    .service-card-text {
        font-size: 0.8rem;
    }
    
    .service-cards-grid {
        margin-bottom: 0;
    }
    
    .optional-services {
        margin: 0 0 32px;
        padding: 28px 16px;
    }
    
    .optional-title {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    /* Optional Services - Small Mobile */
    .optional-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .optional-item {
        padding: 20px 16px;
    }

    .optional-name {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .optional-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .usage-note {
        margin-bottom: 36px;
        font-size: 0.85rem;
    }
    
    .flow-title {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
    
    .flow-step h4 {
        font-size: 0.95rem;
    }
    
    .flow-step p {
        font-size: 0.85rem;
    }
    
    /* 料金セクション - 極小画面 */
    .pricing .section-title {
        font-size: 1.4rem;
    }
    
    .base-rate {
        background-color: transparent;
        padding: 0;
        border: none;
    }
    
    .rate-title {
        font-size: 1.05rem;
    }
    
    .fee-title {
        font-size: 0.95rem;
    }
    
    .examples-title {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .example-card h4 {
        font-size: 0.95rem;
    }
    
    .policy-title {
        font-size: 0.95rem;
    }
    
    /* 品質セクション - 極小画面 */
    .quality .section-title {
        font-size: 1.4rem;
    }
    
    .quality-title {
        font-size: 0.85rem;
    }
    
    /* エリア・言語セクション - 極小画面 */
    .area-language .section-title {
        font-size: 1.4rem;
    }
    
    .area-title {
        font-size: 1.1rem;
    }
    
    /* 会社概要セクション - 極小画面 */
    .company-overview .section-title {
        font-size: 1.4rem;
    }
    
    /* お問い合わせセクション - 極小画面 */
    .contact .section-title {
        font-size: 1.4rem;
    }
    
    .faq-title {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 16px 14px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        padding: 16px 14px;
    }
    
    .chauffeur-title {
        font-size: 1.15rem;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }

    .flow-grid {
        grid-template-columns: 1fr;
    }
    
    /* 会社概要テーブル - 極小画面 */
    .overview-content {
        padding: 0;
    }

    .company-table {
        max-width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(226, 232, 240, 0.8);
    }

    .company-table th {
        width: 90px;
        padding: 12px 10px;
        font-size: 0.85rem;
        background-color: rgba(248, 249, 250, 0.9);
    }

    .company-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    /* お問い合わせフォーム - 極小画面 */
    .contact-form {
        padding: 28px 18px;
    }
    
    .contact-notice {
        margin-bottom: 28px;
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .quick-contacts {
        margin-bottom: 40px;
    }
    
    .quick-contact {
        padding: 16px;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    .contact-form-container {
        margin-bottom: 40px;
    }
    
    .faq-section {
        margin-bottom: 40px;
    }

    .rate-display {
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    
    .price-note {
        text-align: center;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .price-number {
        font-size: 2rem;
    }
    
    .currency-symbol {
        font-size: 0.9rem;
    }
    
    .price-unit {
        font-size: 0.85rem;
    }
}
