/**
 * ふとん乾燥サービスLP - モバイルファースト最適化版
 * 静的HTML版 - スマホ表示を最優先
 */

/* ==========================================================================
   リセット & ベーススタイル
   ========================================================================== */

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px; /* モバイル基準 */
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

/* ==========================================================================
   共通クラス - モバイル最適化
   ========================================================================== */

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px; /* モバイル標準パディング */
    margin: 0 auto;
}

.section-title {
    font-size: 1.6rem; /* モバイルサイズ */
    font-weight: 900;
    text-align: center;
    color: #1a5490;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 24px; /* タップしやすいサイズ */
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%; /* モバイルは全幅 */
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #1a5490;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-reservation {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-reservation:hover,
.btn-reservation:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* ==========================================================================
   赤い上部バー - チラシ風
   ========================================================================== */

.top-catchphrase {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    padding: 12px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* ==========================================================================
   ヘッダー - モバイル最適化
   ========================================================================== */

.header {
    background: #fff;
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    position: relative;
    padding: 0 45px;
}

/* ハンバーガーメニューボタン */
.hamburger-menu {
    position: absolute;
    left: 5px;
    top: 3px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 6px;
    z-index: 101;
}

.hamburger-menu span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #1a5490;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ナビゲーションメニュー */
.nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 99;
    overflow-y: auto;
}
    overflow-y: auto;
}

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

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

.nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-link {
    display: block;
    padding: 16px 20px;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-link:active {
    background: #f8f9fa;
    color: #1a5490;
}

.site-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1a5490;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
}

.site-title span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
    opacity: 0.9;
}

.company-name {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 4px;
    font-weight: 500;
}

.header-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}

.btn-header {
    padding: 8px 12px;
    font-size: 0.8rem;
    background: #ffc107;
    color: #1a5490;
    border-radius: 25px;
    font-weight: 700;
    flex: 1;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
    max-width: 150px;
    white-space: nowrap;
}

.btn-header.btn-reservation,
.header-buttons .btn-reservation {
    background: #28a745;
    color: #fff;
    flex: 1;
    max-width: 150px;
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* ==========================================================================
   チラシ画像セクション - トップに配置
   ========================================================================== */

.flyer-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.flyer-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.flyer-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   ヒーローセクション - モバイル最適化
   ========================================================================== */

.hero {
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    padding: 40px 0 50px;
    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 10px;
}

.feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #1a5490;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.feature-item span {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.5;
    flex: 1;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    font-size: 1.2rem;
    padding: 16px 32px;
}

.hero-cta-sub {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==========================================================================
   乾燥車動画セクション - モバイル最適化
   ========================================================================== */

.video-section {
    padding: 50px 0;
    background: #fff;
}

.video-description {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin: 1rem auto 2rem;
    line-height: 1.8;
    max-width: 600px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a5490;
}

.video-feature-item i {
    font-size: 2rem;
    color: #1a5490;
    min-width: 40px;
    text-align: center;
}

.video-feature-item p {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* ==========================================================================
   問題提起セクション - モバイル最適化（目立つデザイン）
   ========================================================================== */

.problems {
    padding: 50px 0;
    background: #f8f9fa;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.problem-card {
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.2);
    text-align: center;
    border: 3px solid #ff6b6b;
    transition: all 0.3s ease;
}

.problem-card:active {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.3);
}

.problem-icon {
    margin-bottom: 1.5rem;
}

.problem-icon i {
    font-size: 4rem;
    color: #ff6b6b;
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.3));
}

.problem-card h3 {
    font-size: 1.4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.3;
}

.problem-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
}

.problems-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.problems-cta h3 {
    font-size: 1.3rem;
    color: #1a5490;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.problems-cta p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ==========================================================================
   選ばれる理由セクション
   ========================================================================== */

.reasons {
    padding: 50px 0;
    background: #fff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.reason-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reason-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   サービス詳細セクション
   ========================================================================== */

.details {
    padding: 50px 0;
    background: #f8f9fa;
}

.details-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.detail-item {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.detail-item h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 700;
}

.detail-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   ビフォーアフターセクション - モバイル最適化
   ========================================================================== */

.before-after {
    padding: 50px 0;
    background: #fff;
}

.before-after-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.before-after-item {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.before-after-item h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.before-after-item h3 i {
    margin-right: 8px;
    color: #ffc107;
}

.comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.comparison-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.before-label {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
}

.after-label {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.comparison-arrow {
    text-align: center;
    font-size: 2rem;
    color: #1a5490;
    transform: rotate(90deg); /* モバイルは縦向き矢印 */
}

/* 画像の下の数値表示 - 大きく目立つように */
.comparison-result {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(26, 84, 144, 0.3);
    border: 4px solid #ffc107;
}

.comparison-result.weight {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.result-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #ffc107;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.result-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.comparison-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

.before-after-summary {
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
}

.before-after-summary h3 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
}

.before-after-summary h3 i {
    margin-right: 8px;
    color: #ffc107;
}

.before-after-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.before-after-summary li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.before-after-summary li:last-child {
    border-bottom: none;
}

.before-after-summary li i {
    color: #ffc107;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.before-after-summary strong {
    font-weight: 700;
}

/* ==========================================================================
   エビデンスセクション - モバイル最適化
   ========================================================================== */

.evidence {
    padding: 50px 0;
    background: #fff;
}

.evidence-block {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.evidence-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1a5490;
}

.evidence-header i {
    font-size: 1.8rem;
    color: #1a5490;
}

.evidence-header h3 {
    font-size: 1.2rem;
    color: #1a5490;
    font-weight: 700;
    line-height: 1.3;
}

.evidence-header.warning {
    border-bottom-color: #ff6b6b;
}

.evidence-header.warning i {
    color: #ff6b6b;
}

.evidence-header.warning h3 {
    color: #ff6b6b;
}

.evidence-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.evidence-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.evidence-text strong {
    color: #1a5490;
    font-weight: 700;
}

.evidence-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid #1a5490;
}

.data-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.data-box p {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* 比較グリッド - モバイル */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.comparison-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.warning-icon {
    background: #fff5f5;
    color: #ff6b6b;
}

.comparison-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.comparison-item p {
    color: #666;
    line-height: 1.7;
    text-align: center;
    font-size: 0.9rem;
}

.comparison-item strong {
    color: #ff6b6b;
}

/* 比較テーブル - モバイル最適化 */
.comparison-table {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow-x: auto; /* 横スクロール対応 */
}

.comparison-table h3 {
    font-size: 1.2rem;
    color: #1a5490;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem; /* モバイルサイズ */
    min-width: 500px; /* 横スクロール用の最小幅 */
}

.comparison-table thead {
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
}

.comparison-table th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 700;
}

.comparison-table td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

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

.warning-bg {
    background: #ff6b6b !important;
}

.success-bg {
    background: #28a745 !important;
}

.warning-text {
    color: #ff6b6b;
    font-weight: 600;
}

.success-text {
    color: #28a745;
    font-weight: 600;
}

.comparison-table strong {
    font-weight: 900;
}

/* 結論ボックス - モバイル */
.evidence-conclusion {
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
}

.evidence-conclusion h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.evidence-conclusion p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ==========================================================================
   料金プランセクション - モバイル最適化
   ========================================================================== */

.pricing {
    padding: 50px 0;
    background: #f8f9fa;
}

/* 料金表画像 */
.price-table-image {
    margin: 2rem 0;
    text-align: center;
}

.price-table-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.price-box {
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
}

.price-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.unit {
    font-size: 1rem;
}

.price-note {
    font-size: 0.85rem;
    opacity: 0.9;
}

.price-minimum {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.price-examples {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.price-examples h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* 料金例カード */
.price-example-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.example-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.example-card.featured {
    border: 3px solid #28a745;
    background: linear-gradient(135deg, #fff 0%, #f0f9f4 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.example-header i {
    font-size: 2rem;
    color: #1a5490;
}

.example-card.featured .example-header i {
    color: #28a745;
}

.example-quantity {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.example-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.breakdown-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.breakdown-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.tax-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #999;
    margin-left: 4px;
}

.breakdown-plus {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    margin: 0.5rem 0;
}

/* 計算式 */
.calculation-formula {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1a5490;
    font-weight: 600;
    margin-top: -0.5rem;
}

.calculation-formula i {
    font-size: 1rem;
    color: #1a5490;
}

.calculation-formula.free-formula {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #28a745;
    margin-top: -0.5rem;
}

.calculation-formula.free-formula i {
    color: #28a745;
}

.breakdown-item.free {
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
}

.free-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.free-badge {
    background: #28a745;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.breakdown-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1a5490 50%, transparent 100%);
    margin: 0.5rem 0;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    border-radius: 10px;
    color: #fff;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 700;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 900;
}

.highlight-total {
    color: #ffc107;
}

.price-note-text {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    padding: 1rem;
    background: #fff5e6;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.price-note-text i {
    color: #ffc107;
    margin-right: 6px;
}

/* 出張料金情報セクション */
.travel-fee-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.travel-fee-box,
.free-travel-box {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 3px solid #1a5490;
}

.free-travel-box {
    border-color: #28a745;
    background: linear-gradient(135deg, #fff 0%, #f0f9f4 100%);
}

.travel-fee-box i {
    font-size: 3rem;
    color: #1a5490;
    min-width: 60px;
    text-align: center;
}

.free-travel-box i {
    font-size: 3rem;
    color: #28a745;
    min-width: 60px;
    text-align: center;
}

.travel-fee-details h3,
.free-travel-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.free-travel-details h3 {
    color: #28a745;
}

.travel-fee-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #1a5490;
    margin: 0.5rem 0;
}

.tax-note {
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 0.3rem;
}

.minimum-order {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.5rem;
}

.highlight {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
}

.free-condition {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin: 0.5rem 0;
}

.highlight-price {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: 900;
}

.free-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.price-examples .note {
    font-size: 0.85rem;
    color: #999;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   ターゲット施設セクション
   ========================================================================== */

.target-facilities {
    padding: 50px 0;
    background: #fff;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    gap: 1.5rem;
    margin-top: 2rem;
}

.facility-card {
    background: #f8f9fa;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.facility-card:hover,
.facility-card:active {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.2);
    border-color: #1a5490;
}

.facility-card i {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
}

.facility-card span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 700;
    display: block;
    line-height: 1.4;
}

.facilities {
    padding: 50px 0;
    background: #fff;
}

.facility-item {
    background: #f8f9fa;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.facility-item:active {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.facility-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.facility-item h3 {
    font-size: 0.95rem;
    color: #333;
    font-weight: 700;
}

/* ==========================================================================
   FAQセクション - モバイル最適化
   ========================================================================== */

.faq {
    padding: 50px 0;
    background: #f8f9fa;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a5490;
    transition: all 0.3s ease;
}

.faq-question:active {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #ffc107;
    font-size: 1.2rem;
}

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

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

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

.faq-answer p {
    padding: 1rem 1.2rem;
    color: #666;
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ==========================================================================
   注意事項セクション - モバイル最適化
   ========================================================================== */

.notes-section {
    padding: 50px 0;
    background: #fff;
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff5e6;
    border-left: 4px solid #ffc107;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.note-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: #ffc107;
    color: #1a5490;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.note-text {
    flex: 1;
}

.note-text p {
    color: #333;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.note-detail {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ==========================================================================
   CTAセクション - モバイル最適化
   ========================================================================== */

.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cta-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-section .btn-primary {
    background: #ffc107;
    color: #1a5490;
    font-size: 1.2rem;
    padding: 16px 32px;
}

.cta-section .btn-reservation {
    background: #fff;
    color: #28a745;
    font-size: 1.2rem;
    padding: 16px 32px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-hours {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-address {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.cta-address .map-link-cta {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-address .map-link-cta:hover,
.cta-address .map-link-cta:active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-address i {
    margin-right: 5px;
    color: #ffc107;
}

/* ==========================================================================
   お問い合わせセクション - モバイル最適化
   ========================================================================== */

.contact {
    padding: 50px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.5rem;
}

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

.info-item i {
    color: #1a5490;
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: #333;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.info-item span,
.info-item a {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-item a:active {
    color: #1a5490;
}

.map-link {
    color: #1a5490 !important;
    text-decoration: underline;
    font-weight: 600;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
}

.required {
    color: #ff6b6b;
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    line-height: 1.6;
}

/* ==========================================================================
   フッター - モバイル最適化
   ========================================================================== */

.footer {
    background: #1a5490;
    color: #fff;
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo-img {
    max-width: 250px;
    width: 80%;
    height: auto;
    display: inline-block;
}

.footer-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.company-name-footer {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-info a:active {
    color: #ffc107;
}

.footer-info .map-link {
    color: #ffc107;
    text-decoration: none;
    background: rgba(255, 193, 7, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.footer-info .map-link:hover,
.footer-info .map-link:active {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}

.footer-info .map-link i {
    margin-right: 5px;
}

/* フッターのメールボタン */
.footer-email-button {
    margin-top: 1.5rem;
}

.btn-email {
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1a5490 0%, #2874b8 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
    transition: all 0.3s ease;
}

.btn-email:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.4);
}

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

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ==========================================================================
   フローティングCTAボタン - モバイル最適化
   ========================================================================== */

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #ffc107;
    color: #1a5490;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.5);
    z-index: 999;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

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

.floating-cta:active {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6);
}

/* アニメーション */
.floating-cta::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #ffc107;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ==========================================================================
   フェードインアニメーション
   ========================================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================================================
   タブレット対応 (768px以上)
   ========================================================================== */

@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        width: auto;
        padding: 14px 32px;
    }
    
    .site-title {
        font-size: 2.2rem;
    }
    
    .header-buttons {
        width: auto;
        gap: 12px;
    }
    
    .btn-header,
    .header-buttons .btn-reservation {
        max-width: 180px;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    /* ハンバーガーメニュー - タブレット以上は非表示 */
    .hamburger-menu {
        display: none;
    }
    
    /* ナビゲーションメニュー - タブレット以上は横並び */
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        display: block;
    }
    
    .nav-list {
        display: flex;
        gap: 10px;
    }
    
    .nav-list li {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 5px;
    }
    
    .nav-link:hover {
        background: #f8f9fa;
        color: #1a5490;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    /* タブレット以上でヘッダーボタンを非表示 */
    .header-buttons {
        display: none;
    }
    
    /* チラシ画像 - タブレット */
    .flyer-section {
        padding: 30px 0;
    }
    
    .flyer-image-wrapper {
        max-width: 800px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 動画セクション - タブレット */
    .video-description {
        font-size: 1.1rem;
    }
    
    .video-features {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .video-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        flex: 1;
        max-width: 250px;
    }
    
    .video-feature-item i {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 2rem;
    }
    
    .feature-item i {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 2.5rem;
    }
    
    .feature-item span {
        font-size: 1.2rem;
    }
    
    .problems-grid,
    .details-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 問題提起カード - タブレット */
    .problem-card {
        padding: 3rem 2rem;
    }
    
    .problem-icon i {
        font-size: 5rem;
        margin-bottom: 2rem;
    }
    
    .problem-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .problem-card p {
        font-size: 1.1rem;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .facility-card {
        padding: 2.5rem 1.5rem;
    }
    
    .facility-card i {
        width: 90px;
        height: 90px;
        font-size: 2.8rem;
    }
    
    .facility-card span {
        font-size: 1.2rem;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: auto;
    }
    
    /* ビフォーアフター - タブレット */
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison {
        flex-direction: row;
        align-items: center;
    }
    
    .comparison-arrow {
        transform: rotate(0deg); /* タブレット以上は横向き矢印 */
        font-size: 2rem;
    }
    
    /* 数値表示 - タブレット向けサイズアップ */
    .result-number {
        font-size: 5rem;
    }
    
    .result-text {
        font-size: 2rem;
    }
    
    .comparison-result {
        padding: 2rem;
        border: 5px solid #ffc107;
    }
    
    /* 注意事項 - タブレット */
    .note-item {
        padding: 2rem;
    }
    
    .note-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .note-text p {
        font-size: 1rem;
    }
    
    /* 出張料金 - タブレット */
    .travel-fee-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .travel-fee-box i,
    .free-travel-box i {
        font-size: 3.5rem;
    }
    
    /* 料金例カード - タブレット */
    .price-example-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .example-header i {
        font-size: 2.5rem;
    }
    
    .example-quantity {
        font-size: 1.4rem;
    }
    
    .calculation-formula {
        font-size: 1rem;
    }
    
    .calculation-formula i {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   PC対応 (992px以上)
   ========================================================================== */

@media (min-width: 992px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .site-title {
        font-size: 2.5rem;
        text-align: left;
    }
    
    /* PC以上でもヘッダーボタンを非表示 */
    .header-buttons {
        display: none;
    }
    
    /* ナビゲーションメニュー - PC */
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 1rem;
    }
    
    /* フッターメールボタン - PC */
    .btn-email {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    /* チラシ画像 - PC */
    .flyer-section {
        padding: 40px 0;
    }
    
    .flyer-image-wrapper {
        max-width: 900px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-features {
        max-width: 700px;
    }
    
    .feature-item {
        padding: 2rem 2.5rem;
    }
    
    .feature-item i {
        width: 90px;
        height: 90px;
        min-width: 90px;
        font-size: 2.8rem;
    }
    
    /* 動画セクション - PC */
    .video-description {
        font-size: 1.2rem;
    }
    
    .video-features {
        gap: 2rem;
    }
    
    .video-feature-item {
        padding: 2.5rem 2rem;
        max-width: 280px;
    }
    
    .video-feature-item i {
        font-size: 3rem;
    }
    
    .video-feature-item p {
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 1.3rem;
    }
    
    .problems-grid,
    .details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* 問題提起カード - PC */
    .problem-card {
        padding: 3.5rem 2.5rem;
    }
    
    .problem-icon i {
        font-size: 6rem;
        margin-bottom: 2.5rem;
    }
    
    .problem-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .problem-card p {
        font-size: 1.2rem;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reason-item {
        flex-direction: row;
        text-align: left;
    }
    
    .reason-number {
        margin: 0;
    }
    
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .facility-card {
        padding: 3rem 2rem;
    }
    
    .facility-card i {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .facility-card span {
        font-size: 1.3rem;
    }
    
    .floating-cta {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        bottom: 30px;
        right: 30px;
    }
    
    /* ビフォーアフター - PC */
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .comparison-image img {
        transition: transform 0.3s ease;
    }
    
    .comparison-image:hover img {
        transform: scale(1.05);
    }
    
    /* 数値表示 - PC向けさらに大きく */
    .result-number {
        font-size: 6rem;
    }
    
    .result-text {
        font-size: 2.5rem;
    }
    
    .comparison-result {
        padding: 2.5rem;
        border: 6px solid #ffc107;
    }
    
    /* 注意事項 - PC */
    .note-item {
        padding: 2.5rem;
    }
    
    .note-icon {
        min-width: 60px;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .note-text p {
        font-size: 1.1rem;
    }
    
    /* 出張料金 - PC */
    .travel-fee-box,
    .free-travel-box {
        padding: 2.5rem 2rem;
    }
    
    .travel-fee-box i,
    .free-travel-box i {
        font-size: 4rem;
        min-width: 70px;
    }
    
    .travel-fee-details h3,
    .free-travel-details h3 {
        font-size: 1.4rem;
    }
    
    .travel-fee-amount {
        font-size: 2.5rem;
    }
    
    .free-condition {
        font-size: 1.5rem;
    }
    
    /* 料金例カード - PC */
    .example-header i {
        font-size: 3rem;
    }
    
    .example-quantity {
        font-size: 1.6rem;
    }
    
    .breakdown-amount {
        font-size: 1.5rem;
    }
    
    .total-amount {
        font-size: 2rem;
    }
    
    .calculation-formula {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .calculation-formula i {
        font-size: 1.2rem;
    }
    
    .footer-logo-img {
        max-width: 300px;
    }
}
