/* ========================================
   メインスタイルシート
   ======================================== */

/* ========================================
   CSS Reset - モダンブラウザ対応
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}

a {
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

a:focus {
    outline: none;
}

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset {
    border: none;
}

legend {
    padding: 0;
}

/* フォーカス表示の改善 */
:focus-visible {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* スクリーンリーダー用のテキスト */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 印刷時の調整 */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    a, a:visited {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    
    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    
    thead {
        display: table-header-group;
    }
    
    tr, img {
        page-break-inside: avoid;
    }
    
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
    
    h2, h3 {
        page-break-after: avoid;
    }
}

/* ========================================
   共通スタイル設定
   ======================================== */

/* CSS変数 - デザインシステム */
:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f0a62d;
    --accent-color: #00b69c;
    --link-color: #0066cc;
    --text-color: #333;
    --text-light: #666;
    --background-color: #fff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
}

/* 基本フォント設定 */
html body {
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    padding-top: 170px !important; /* base.cssのリセットCSSを上書き */
}

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

/* レイアウト - セクション */
.section {
    padding: 80px 0;
}
.section-sm {
    padding: 60px 0;
}
.section-lg {
    padding: 100px 0;
}

/* タイポグラフィ - タイトル */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}
.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
}

/* 共通タイトルスタイル - 集中タイトル */
.concentration-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 64px;
}
.concentration-title {
    font-weight: 900;
    font-size: 40px;
    color: #333333;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    position: relative;
}
.concentration-title-icon {
    position: absolute;
    top: -40px;
    left: -70px;
    width: 64px;
    aspect-ratio: 1 / 1;
}
.concentration-title-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.concentration-title-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.concentration-subtitle {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    line-height: 1;
}
.concentration-main-title {
    font-weight: 900;
    font-size: 40px;
    color: #333333;
    line-height: 1;
}
@media (max-width: 1200px) {
    .concentration-title {
        font-size: 32px;
    }
    .concentration-subtitle {
        font-size: 18px;
    }
    .concentration-main-title {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .concentration-title-wrapper {
        margin-top: 60px;
        margin-bottom: 40px;
    }
    .concentration-title {
        font-size: 24px;
    }
    .concentration-subtitle {
        font-size: 16px;
    }
    .concentration-main-title {
        font-size: 24px;
    }
    .concentration-title-icon {
        width: 48px;
        top: -30px;
        left: -50px;
    }
}
@media (max-width: 480px) {
    .concentration-title-wrapper {
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .concentration-title {
        font-size: 20px;
    }
    .concentration-subtitle {
        font-size: 14px;
    }
    .concentration-main-title {
        font-size: 20px;
    }
    .concentration-title-icon {
        width: 40px;
        top: -25px;
        left: -40px;
    }
}

/* コンポーネント - 価格テーブル */
.pricing-table {
    border-radius: 10px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table-header {
    background: #ffffff;
    display: flex;
    flex: 1;
    gap: 5px;
}

.pricing-header-cell {
    padding: 8px 5px;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    flex: 1;
}

.pricing-header-room {
    background: #42a5f6;
}
.pricing-header-service {
    background: #428bca;
}
.pricing-header-time {
    background: #8189ed;
}
.pricing-header-price {
    background: #428bca;
}

.pricing-table-body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pricing-row {
    display: flex;
    gap: 5px;
}

.pricing-row-alt {
    background: #f0f0f0;
}

.pricing-cell {
    padding: 20px 10px;
    font-weight: 500;
    font-size: 24px;
    color: #333333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.pricing-cell-service {
    text-align: left;
    color: #333333;
    font-weight: 400;
    justify-content: flex-start;
}
.pricing-cell-price {
    font-weight: 700;
    color: #428bca;
    text-align: right;
    justify-content: flex-end;
}
.pricing-table-notes {
    margin-top: -40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-table-notes p {
    color: #666666;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

/* 価格テーブル - レスポンシブデザイン */
@media (max-width: 1200px) {
    .pricing-table {
        padding: 30px;
    }
    .pricing-header-cell {
        font-size: 20px;
    }
    .pricing-cell {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-table {
        padding: 10px;
        overflow-x: auto;
    }
    .pricing-header-cell {
        font-size: 18px;
    }
    .pricing-cell {
        font-size: 18px;
        padding: 10px 5px;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        padding: 15px;
        overflow-x: auto;
    }
    .pricing-header-cell {
        font-size: 13px;
    }
    .pricing-cell {
        font-size: 16px;
        padding: 10px 3px;
    }
}

/* コンポーネント - 作業内容 */
   .service-included-list {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-included-list .service-included-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

.service-included-list .service-included-image {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-included-list .service-included-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-included-list .service-included-badge {
    background: rgba(66, 165, 246, 0.9);
    color: #ffffff;
    padding: 8px 5px;
    border-radius: 0 0 20px 20px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

/* 作業内容 - レスポンシブデザイン */
@media (max-width: 1200px) {
    .service-included-list {
        flex-wrap: wrap;
        gap: 20px;
    }
    .service-included-list .service-included-item {
        width: 140px;
    }
    .service-included-list .service-included-badge {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .service-included-list {
        gap: 20px;
    }
    .service-included-list .service-included-item {
        width: 120px;
    }
    .service-included-list .service-included-badge {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .service-included-list {
        gap: 15px;
    }
    .service-included-list .service-included-item {
        width: 100px;
    }
    .service-included-list .service-included-badge {
        font-size: 10px;
    }
}

/* コンポーネント - ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 56px;
    width: fit-content;
}

.btn-primary,
a.btn-primary {
    background: linear-gradient(135deg, #42a5f6 0%, #42a5f6 100%);
    border: none;
    border-bottom: 3px solid #1976d2;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    min-height: auto;
    box-shadow: 0 4px 12px rgba(66, 165, 246, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 3px;
    text-decoration: none;
}
a.btn-primary:link,
a.btn-primary:visited {
    color: #ffffff;
    text-decoration: none;
}
.btn-primary:hover,
a.btn-primary:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1976d2 100%);
    border-bottom: 3px solid #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 165, 246, 0.4);
    margin-bottom: 3px;
    color: #ffffff;
    text-decoration: none;
}

.btn-primary:active,
a.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(66, 165, 246, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}
.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    min-height: 60px;
}
.btn-primary.btn-large {
    padding: 20px 48px;
    font-size: 20px;
}
.btn-secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #f8fafc 100%);
    border: 1px solid #cbd5e1;
    border-bottom: 3px solid #cbd5e1;
    color: #475569;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    min-height: auto;
    box-shadow: 0 2px 8px rgba(148, 163, 184, 0.15);
    position: relative;
    overflow: hidden;
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #f1f5f9 100%);
    border-color: #94a3b8;
    border-bottom: 3px solid #94a3b8;
    color: #334155;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(148, 163, 184, 0.25);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(148, 163, 184, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-secondary:hover::before {
    left: 100%;
}
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
}
/* ボタン - レスポンシブデザイン */
@media (max-width: 1200px) {
    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 12px 24px;
    }
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
        min-height: 56px;
    }
    .btn-primary.btn-large {
        padding: 18px 40px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 50px;
    }
    .btn-primary,
    .btn-secondary {
        font-size: 13px;
        padding: 10px 20px;
    }
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 52px;
    }
    .btn-primary.btn-large {
        padding: 16px 32px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 46px;
    }
    .btn-primary,
    .btn-secondary {
        font-size: 12px;
        padding: 8px 16px;
    }
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 48px;
    }
    .btn-primary.btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}


/* コンポーネント - カード */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}
.card-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}
.card-body {
    padding: 24px;
}
.card-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: #f8f9fa;
}

/* レイアウト - グリッド */
.grid {
    display: grid;
    gap: 30px;
}
.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* レイアウト - フレックス */
.flex {
    display: flex;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-column {
    display: flex;
    flex-direction: column;
}

/* ユーティリティ - テキスト */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-primary {
    color: var(--primary-color);
}
.text-secondary {
    color: var(--secondary-color);
}
.text-accent {
    color: var(--accent-color);
}
.text-light {
    color: var(--text-light);
}
.text-bold {
    font-weight: 700;
}
.text-lg {
    font-size: 1.25rem;
}
.text-xl {
    font-size: 1.5rem;
}
.text-sm {
    font-size: 0.8125rem;
}
.text-2xl {
    font-size: 2rem;
}

/* ユーティリティ - マージン・パディング */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* カテゴリーフィルター（共通） */
.category-filter {
    margin-bottom: 3em;
    padding: 1.5em;
    background-color: #f8f9fa;
    border-radius: 8px;
}
.filter-title {
    font-size: 1.2em;
    margin-bottom: 1em;
    color: #333;
}
.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    list-style: none;
    margin: 0;
    padding: 0;
}
.filter-link {
    background-color: #fff;
    color: #007bff;
    padding: 0.5em 1em;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid #007bff;
    transition: all 0.2s;
}
.filter-link:hover,
.filter-link.active {
    background-color: #007bff;
    color: #fff;
}
@media (max-width: 768px) {
    .filter-list {
        justify-content: center;
        gap: 25px 10px;
    }
}

/* レスポンシブ用ユーティリティ */
.for_sp {
    display: none;
}

@media (max-width: 768px) {
    .for_sp {
        display: inline;
    }
}

/* SP用改行タグ */
.br-sp {
    display: none;
}

@media (max-width: 768px) {
    .br-sp {
        display: block;
    }
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    html body {
        padding-top: 140px !important; /* base.cssのリセットCSSを上書き */
    }
}
@media (max-width: 768px) {
    html body {
        padding-top: 60px !important; /* タブレット用ヘッダー高さ - base.cssのリセットCSSを上書き */
    }
    .container {
        padding: 0 15px;
    }
    .container-wide {
        padding: 0 20px;
    }
    .section {
        padding: 60px 0;
    }
    .section-sm {
        padding: 40px 0;
    }
    .section-lg {
        padding: 80px 0;
    }
    .grid {
        gap: 20px;
    }
    .card-header,
    .card-body,
    .card-footer {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    html body {
        padding-top: 50px !important; /* base.cssのリセットCSSを上書き */
    }
    .container {
        padding: 0 10px;
    }
    .container-wide {
        padding: 0 15px;
    }
    .section {
        padding: 40px 0;
    }
    .section-sm {
        padding: 30px 0;
    }
    .section-lg {
        padding: 60px 0;
    }
    .grid {
        gap: 15px;
    }
    .card-header,
    .card-body,
    .card-footer {
        padding: 16px;
    }
}


/* ========================================
   ヘッダー・ナビゲーションスタイル設定
   ======================================== */
/* ヘッダー・ナビゲーションラッパー */
.header-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* ヘッダー */
.header {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 1001;
    height: 110px;
    transition: height 0.3s ease;
}
.header .header-container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.header.scrolled {
    height: 80px;
}

/* ロゴ */
.header .logo {
    flex-shrink: 0;
}
.header .logo a {
    display: block;
    text-decoration: none;
}
.header .logo-img {
    width: 304px;
    aspect-ratio: 2109/311;
    object-fit: contain;
}

/* 右側コンテンツ */
.header .header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* 問い合わせボタン群 */
.header .contact-buttons {
    display: flex;
    gap: 20px;
}

.header .contact-button {
    position: relative;
    width: min(220px, 18.3vw);
    aspect-ratio: 220/58;
    cursor: pointer;
    transition: transform 0.3s ease;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.header .contact-button:hover {
    transform: none;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.header .button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.header .web-button .button-bg {
    background: linear-gradient(180deg, #e74c5d 0%, #e74c5d 100%);
    box-shadow: 0 3px 0 #c0392b, 0 6px 15px rgba(231, 76, 93, 0.3);
}
.header .line-button .button-bg {
    background: linear-gradient(180deg, #34a853 0%, #34a853 100%);
    box-shadow: 0 3px 0 #2d8f47, 0 6px 15px rgba(52, 168, 83, 0.3);
}
.header .web-button:hover .button-bg {
    box-shadow: 0 2px 0 #c0392b, 0 8px 20px rgba(231, 76, 93, 0.4);
    transform: translateY(1px);
}
.header .line-button:hover .button-bg {
    box-shadow: 0 2px 0 #2d8f47, 0 8px 20px rgba(52, 168, 83, 0.4);
    transform: translateY(1px);
}
.header .web-button:active .button-bg {
    box-shadow: 0 1px 0 #c0392b, 0 2px 8px rgba(231, 76, 93, 0.2);
    transform: translateY(2px);
}
.header .line-button:active .button-bg {
    box-shadow: 0 1px 0 #2d8f47, 0 2px 8px rgba(52, 168, 83, 0.2);
    transform: translateY(2px);
}
.header .contact-button:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.header .button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 16px;
    gap: 6px;
}
.header .button-icon {
    width: min(32px, 2.6vw);
    aspect-ratio: 1/1;
    object-fit: contain;
}
.header .button-text {
    color: #ffffff;
    font-size: min(16px, 1.3vw);
    font-weight: 700;
    white-space: nowrap;
}

/* 電話番号と受付時間 */
.header .phone-info {
    text-align: center;
    width: min(312px, 26vw);
    flex-shrink: 0;
}
.header .time-text {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}
.header .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: -7px;
    margin-bottom: -7px;
}
.header .phone-icon {
    width: min(40px, 3.3vw);
    aspect-ratio: 1/1;
    object-fit: contain;
}
.header .phone-text {
    font-size: min(32px, 2.6vw);
    font-weight: 900;
    color: #333;
    white-space: nowrap;
    line-height: 1;
}
.header .note-text {
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    line-height: 0.8;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .header {
        height: 90px;
    }
    .header.scrolled {
        height: 70px;
    }
    .header .header-right {
        gap: 20px;
    }
    .header .header-container {
        padding: 0 20px;
    }
    .header .logo-img {
        width: min(304px, 25vw);
    }
    .header .phone-info {
        width: min(311px, 25vw);
    }
    .header .phone-text {
        font-size: min(32px, 2.4vw);
    }
}

@media (max-width: 768px) {
    .header {
        height: 60px;
        padding: 0 0;
    }
    .header.scrolled {
        height: 60px;
    }
    .header .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 0 10px;
    }
    .header .logo-img {
        width: 200px;
    }
    .header .header-right {
        width: 100%;
        gap: 15px;
    }
    .header .contact-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .header .contact-button {
        width: 100%;
        max-width: 240px;
    }
    .header .button-text {
        font-size: 12px;
    }
    .header .phone-info {
        width: 100%;
    }
    .header .phone-text {
        font-size: 20px;
    }
    .header .time-text,
    .header .note-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 50px;
    }
    .header.scrolled {
        height: 50px;
    }
    .header .header-container {
        gap: 5px;
    }
    .header .logo-img {
        width: 160px;
    }
    .header .contact-button {
        width: 100%;
        max-width: 200px;
    }
    .header .button-text {
        font-size: 10px;
    }
    .header .phone-text {
        font-size: 18px;
    }
    .header .time-text,
    .header .note-text {
        font-size: 10px;
    }
}

/* アニメーション */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInDown 0.6s ease;
}

/* ホバー効果の強化 */
.header .contact-button:hover .button-bg {
    transform: scale(1.02);
}

/* フォーカス状態のアクセシビリティ */
.header .contact-button:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* スクロール時のヘッダー効果 */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* グローバルナビゲーション ====================================================== */
.global-nav {
    position: relative;
    background: rgba(245, 245, 245, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 60px;
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    z-index: 999;
    transition: height 0.3s ease, opacity 0.3s ease;
}
.global-nav.scrolled {
    height: 40px;
    opacity: 0.8;
}
.global-nav.scrolled:hover {
    height: 50px;
    opacity: 1;
}
.nav-container {
    max-width: 1728px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    justify-content: center;
}
.nav-menu a {
    display: flex;
    height: 100%;
    align-items: center;
}
.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.nav-link:hover {
    color: #2c5aa0;
}
.nav-separator {
    color: #333;
    font-size: 20px;
    margin: 0 8px;
    user-select: none;
}

/* ドロップダウンメニュー */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown .dropdown-toggle {
    position: relative;
    padding-right: 20px;
}
.nav-dropdown .dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(-10px);
    z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown .dropdown-item {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.nav-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
    color: #2c5aa0;
}
.nav-dropdown .dropdown-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.nav-dropdown .dropdown-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* ハンバーガーメニューボタン */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    position: static;
    right: auto;
    margin-left: 4px;
    margin-right: -5px;
}
.hamburger-line {
    width: 16px;
    height: 1.5px;
    background: #333;
    margin: 1.5px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* モバイルナビメニュー */
.mobile-nav {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(100, 100, 100, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-top: 30px;
    z-index: 999;
}
.mobile-nav.active {
    display: block;
}
.mobile-nav-menu {
    list-style: none;
    margin: 20px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 20px;
    border: 1px solid rgba(224, 224, 224, 0.8);
}
.mobile-nav-item {
    border-bottom: 1px solid #e0e0e0;
}
.mobile-nav-item:last-child {
    border-bottom: none;
}
.mobile-nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 15px;
    transition: background-color 0.3s ease;
}
.mobile-nav-link:hover {
    background-color: #e8e8e8;
    color: #2c5aa0;
}

/* モバイル階層メニュー */
.mobile-nav-parent {
    position: relative;
}
.mobile-nav-toggle {
    position: relative;
    padding-right: 40px;
}
.mobile-nav-toggle::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}
.mobile-nav-parent.active .mobile-nav-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}
.mobile-nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #e8e8e8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-nav-parent.active .mobile-nav-submenu {
    max-height: 300px;
}
.mobile-nav-subitem {
    border-bottom: 1px solid #d0d0d0;
}
.mobile-nav-subitem:last-child {
    border-bottom: none;
}
.mobile-nav-sublink {
    display: block;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 15px 12px 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.mobile-nav-sublink:hover {
    background-color: #d8d8d8;
    color: #2c5aa0;
}

/* モバイル版アイコンブロック - デフォルトで非表示 */
.mobile-contact-blocks {
    display: none;
}

/* グローバルナビのレスポンシブデザイン */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0px;
    }
    .global-nav{
        height: 50px;
    }
    .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .global-nav {
        height: 0;
        overflow: hidden;
        border-bottom: none;
    }
    .global-nav.scrolled {
        height: 0;
        opacity: 1;
    }
    .nav-container {
        padding: 0;
        height: 0;
        overflow: hidden;
    }
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    .header-right {
        order: 2;
        flex-shrink: 1;
        display: flex;
        justify-content: flex-end;
        min-width: 0;
    }
    .header .desktop-buttons,
    .header .desktop-phone {
        display: none;
    }
    .mobile-contact-blocks {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-shrink: 1;
        min-width: 0;
    }
    .contact-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 66px;
        height: 60px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    .contact-block:hover {
        transform: scale(1.1);
    }
    .line-block {
        background: linear-gradient(135deg, #00C851, #00A041);
    }
    .mail-block {
        background: linear-gradient(135deg, #FF9500, #FF7A00);
    }
    .phone-block {
        background: linear-gradient(135deg, #FF3B30, #D70015);
    }
    .block-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
        filter: brightness(0) invert(1);
    }
    .block-text {
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
    }
    /* モバイル版ハンバーガーメニュー */
    .hamburger-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    .global-nav {
        height: 0;
        overflow: hidden;
        border-bottom: none;
    }
    .global-nav.scrolled {
        height: 0;
        opacity: 1;
    }
    .nav-container {
        padding: 0;
        height: 0;
        overflow: hidden;
    }
    .contact-block {
        width: 60px;
        height: 50px;
    }
    .block-icon {
        width: 20px;
        height: 20px;
    }
    .block-text {
        font-size: 9px;
    }
}

/* ========================================
   フッタースタイル設定
   ======================================== */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 30px;
}
.footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
}

/* 左カラム - 会社情報 */
.footer .footer-company {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer .footer-logo {
    margin-bottom: 20px;
}
.footer .footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* 拠点情報 - フッター全体幅 */
.footer .footer-offices-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 40px;
}
.footer .footer-offices-wrapper .footer-container {
    display: block;
}
.footer .footer-offices {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 20px;
}
.footer .footer-office {
    margin-bottom: 0;
}
.footer .footer-office-title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.4;
}
.footer .footer-office-address {
    font-size: 11px;
    color: #fff;
    line-height: 1.5;
}

/* コピーライト */
.footer .footer-copyright-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 0;
    margin-top: 0;
}
.footer .footer-copyright-wrapper .footer-container {
    display: block;
    text-align: center;
}
.footer .footer-copyright {
    font-size: 12px;
    color: #fff;
    margin-top: 0;
}

/* 中央カラム - サイトマップ */
.footer .footer-sitemap {
    display: flex;
    flex-direction: column;
}
.footer .footer-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.footer .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}
.footer .footer-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer .footer-nav-link:hover {
    color: #F0A62D;
}

/* 右カラム - コンタクト */
.footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer .footer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer .footer-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease;
}
.footer .footer-contact-btn:hover {
    transform: translateY(-2px);
}
.footer .footer-contact-btn.line-btn {
    background: #00B69C;
    color: #fff;
}
.footer .footer-contact-btn.mail-btn {
    background: #F0A62D;
    color: #fff;
}
.footer .footer-contact-btn-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}
.footer .footer-phone {
    margin-top: 20px;
}
.footer .footer-phone-number {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}
.footer .footer-phone-time {
    font-size: 16px;
    color: #fff;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    .footer .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    .footer .footer-copyright {
        text-align: center;
    }
    .footer .footer-sitemap {
        order: 1;
    }
    .footer .footer-contact {
        order: 2;
    }
    .footer .footer-company {
        order: 3;
    }
    .footer .footer-offices-wrapper {
        padding: 20px 0;
        margin-top: 30px;
    }
    .footer .footer-offices {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 15px;
    }
    .footer .footer-copyright-wrapper {
        padding: 15px 0 0;
    }
    .footer .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 20px;
    }
    .footer .footer-contact-buttons {
        flex-direction: row;
        gap: 8px;
    }
    .footer .footer-contact-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    .footer .footer-container {
        gap: 30px;
        padding: 0 10px;
    }
    .footer .footer-sitemap {
        order: 1;
    }
    .footer .footer-contact {
        order: 2;
    }
    .footer .footer-company {
        order: 3;
    }
    .footer .footer-offices-wrapper {
        padding: 15px 0;
        margin-top: 20px;
    }
    .footer .footer-offices {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .footer .footer-office-title {
        font-size: 11px;
    }
    .footer .footer-office-address {
        font-size: 10px;
    }
    .footer .footer-copyright-wrapper {
        padding: 10px 0 0;
    }
    .footer .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .footer .footer-contact-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .footer .footer-contact-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ========================================
   メインビジュアル
   ======================================== */
.main-visual {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.main-visual .container-wide {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}
.hero-banner {
    display: block;
    width: 100%;
    aspect-ratio: 1600 / 666;
    margin: 0;
    padding: 0;
}
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1600 / 666;
    margin: 0;
    padding: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    /* メインビジュアル - タブレット */
    .main-visual {
        margin-top: 0;
    }
    .hero-banner {
        aspect-ratio: 900 / 393;
    }
    .hero-image {
        aspect-ratio: 900 / 393;
    }
}
@media (max-width: 480px) {
    /* メインビジュアル - モバイル */
    .main-visual {
        margin-top: 0;
    }
    .hero-banner {
        aspect-ratio: 720 / 1166;
    }
    .hero-image {
        aspect-ratio: 720 / 1166;
    }
}

/* ========================================
   共通CTAセクション
   ======================================== */
.common-cta {
    background: #E6F4F1;
    padding: 60px 0;
    position: relative;
    overflow: visible;
}
.common-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}
.common-cta .cta-top {
    background: transparent;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.common-cta .cta-top .container-wide {
    padding: 0;
}
.common-cta .cta-top-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
.common-cta .cta-staff-img {
    width: 220px;
    aspect-ratio: 220 / 160;
    object-fit: contain;
}
.common-cta .cta-title-wrapper {
    flex: 1;
    text-align: center;
}
.common-cta .cta-title-free {
    color: #E06C47;
}
.common-cta .cta-bottom {
    background: transparent;
    padding: 20px 0 0;
    width: 100%;
}
.common-cta .cta-bottom .container-wide {
    background: #ffffff;
    padding: 40px 60px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
}
.common-cta .cta-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.common-cta .cta-title {
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 0;
    color: #333333;
    line-height: 1.4;
}
.common-cta .cta-title-free {
    color: #E06C47;
}
.common-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}
.common-cta .cta-button {
    position: relative;
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 320px;
    height: 64px;
    transform: translateY(0);
}
.common-cta .cta-button .button-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.common-cta .cta-button .button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
    padding: 0 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.common-cta .cta-button .button-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    /* animation: iconPulse 2s ease-in-out infinite; */
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.common-cta .cta-button .button-text {
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* LINEボタン */
.common-cta .cta-button.line-button .button-bg {
    background: linear-gradient(180deg, #00b69c 0%, #009d86 100%);
    box-shadow: 0 4px 8px rgba(0, 182, 156, 0.3);
}
.common-cta .cta-button.line-button:hover {
    transform: translateY(-3px) scale(1.02);
}
.common-cta .cta-button.line-button:hover .button-bg {
    background: linear-gradient(180deg, #00c4a8 0%, #00a88a 100%);
    box-shadow: 0 8px 20px rgba(0, 182, 156, 0.5);
    transform: scale(1.05);
}
.common-cta .cta-button.line-button:hover .button-content {
    transform: translateY(-1px);
}
.common-cta .cta-button.line-button:hover .button-icon {
    transform: scale(1.3) rotate(15deg) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: none;
}
.common-cta .cta-button.line-button:hover .button-text {
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.common-cta .cta-button.line-button:active {
    transform: translateY(-1px) scale(0.98);
}
.common-cta .cta-button.line-button:active .button-bg {
    background: linear-gradient(180deg, #009d86 0%, #008a73 100%);
    box-shadow: 0 2px 4px rgba(0, 182, 156, 0.2);
    transform: scale(0.95);
}
/* WEBボタン */
.common-cta .cta-button.web-button .button-bg {
    background: linear-gradient(180deg, #f0a62d 0%, #ee9c15 100%);
    box-shadow: 0 4px 8px rgba(240, 166, 45, 0.3);
}
.common-cta .cta-button.web-button:hover {
    transform: translateY(-3px) scale(1.02);
}
.common-cta .cta-button.web-button:hover .button-bg {
    background: linear-gradient(180deg, #f2b13a 0%, #f0a62d 100%);
    box-shadow: 0 8px 20px rgba(240, 166, 45, 0.5);
    transform: scale(1.05);
}
.common-cta .cta-button.web-button:hover .button-content {
    transform: translateY(-1px);
}
.common-cta .cta-button.web-button:hover .button-icon {
    transform: scale(1.3) rotate(-15deg) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: none;
}
.common-cta .cta-button.web-button:hover .button-text {
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.common-cta .cta-button.web-button:active {
    transform: translateY(-1px) scale(0.98);
}
.common-cta .cta-button.web-button:active .button-bg {
    background: linear-gradient(180deg, #ee9c15 0%, #d88a0f 100%);
    box-shadow: 0 2px 4px rgba(240, 166, 45, 0.2);
    transform: scale(0.95);
}
.common-cta .cta-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.common-cta .cta-phone-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.common-cta .cta-phone-number {
    display: flex;
    align-items: center;
    gap: 15px;
}
.common-cta .cta-phone-icon {
    width: 80px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.common-cta .cta-phone-number:hover .cta-phone-icon {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(0, 119, 195, 0.3));
}
.common-cta .cta-phone-text {
    font-weight: 900;
    font-size: 64px;
    color: #333333;
    line-height: 1;
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
}

.common-cta .cta-phone-text:hover {
    color: #0077c3;
    transform: scale(1.05) translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 119, 195, 0.3);
}

.common-cta .cta-phone-text:active {
    transform: scale(0.98) translateY(1px);
    color: #005a9e;
}
.common-cta .cta-reception-time {
    display: flex;
    align-items: center;
    gap: 8px;
}
.common-cta .cta-time-text {
    font-weight: 700;
    font-size: 18px;
    color: #333333;
}
.common-cta .cta-badges {
    display: flex;
    gap: 5px;
}
.common-cta .cta-badge {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 1.2px;
}
.common-cta .cta-badge-red {
    background: #f35b6c;
}
.common-cta .cta-badge-orange {
    background: #f0a62d;
}
.common-cta .cta-phone-note {
    font-size: 13px;
    color: #333333;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .common-cta {
        padding: 50px 0 0;
    }
    .common-cta .cta-bottom {
        padding: 50px 0;
    }
    .common-cta .cta-bottom .container-wide {
        max-width: 1000px;
    }
    .common-cta .cta-top-content{
        margin-top: -30px;
    }
    .common-cta .cta-staff-img {
        width: 200px;
    }
    .common-cta .cta-title {
        font-size: 28px;
    }
    .common-cta .cta-button {
        min-width: 280px;
        height: 56px;
    }
    .common-cta .cta-button .button-text {
        font-size: 20px;
    }
    .common-cta .cta-phone-text {
        font-size: min(56px, 4.7vw);
    }
    .common-cta .cta-phone-icon {
        width: min(60px, 5vw);
    }
    .common-cta .cta-badge {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .common-cta {
        padding: 60px 0 0;
    }
    .common-cta .cta-bottom {
        padding: 40px 0;
    }
    .common-cta .cta-bottom .container-wide {
        padding: 30px 20px;
    }
    .common-cta .cta-title-wrapper {
        text-align: center;
    }
    .common-cta .cta-staff-img {
        width: 180px;
    }
    .common-cta .cta-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
    .common-cta .cta-title {
        font-size: 24px;
        margin-bottom: 0;
    }
    .common-cta .cta-phone {
        align-items: center;
    }
    .common-cta .cta-phone-text {
        align-items: center;
    }
    .common-cta .cta-reception-time {
        align-items: center;
    }
    .common-cta .cta-button {
        min-width: 280px;
        height: 50px;
    }
    .common-cta .cta-button .button-text {
        font-size: 18px;
    }
    .common-cta .cta-phone-info {
        flex-direction: column;
        gap: 15px;
    }
    .common-cta .cta-phone-text {
        font-size: min(48px, 6.3vw);
    }
    .common-cta .cta-phone-icon {
        width: min(60px, 7.8vw);
    }
    .common-cta .cta-time-text {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .common-cta .cta-bottom {
        padding: 30px 10px;
    }
    .common-cta .cta-bottom .container-wide {
        padding: 20px 5px;
    }
    .common-cta .cta-top-content {
        gap: 10px;
    }
    .common-cta .cta-staff-img {
        width: 120px;
    }
    .common-cta .cta-title {
        font-size: 20px;
        margin-bottom: 0;
    }
    .common-cta .cta-buttons {
        gap: 5px;
    }
    .common-cta .cta-button {
        min-width: 260px;
        height: 45px;
    }
    .common-cta .cta-button .button-text {
        font-size: 16px;
    }
    .common-cta .cta-phone-text {
        font-size: min(40px, 8.3vw);
    }
    .common-cta .cta-phone-icon {
        width: min(50px, 10.4vw);
    }
    .common-cta .cta-time-text {
        font-size: 16px;
    }
    .common-cta .cta-badge {
        font-size: 12px;
    }
}

/* ========================================
   プロセスセクション - ゴミ屋敷片付けまでの流れ
   ======================================== */
.process-section {
    background: #00AAFF;
    padding: 128px 0;
    position: relative;
}
.process-section .process-title {
    font-weight: 900;
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    margin: 0 0 64px 0;
    line-height: 1;
}
.process-section .process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.process-section .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}
.process-section .step-label {
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin: 0 0 -10px;
}
.process-section .step-icon {
    width: 160px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-section .step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.process-section .step-title {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1;
}
.process-section .step-description {
    font-size: min(16px, 15px);
    color: #ffffff;
    text-align: center;
    line-height: 2;
    margin: 0;
}

/* プロセスセクション - レスポンシブデザイン */
@media (max-width: 1200px) {
    .process-section {
        padding: 80px 0;
    }
    .process-section .process-title {
        font-size: 28px;
        color: #ffffff;
    }
    .process-section .step-icon {
        width: 140px;
    }
    .process-section .step-label {
        font-size: 16px;
        color: #ffffff;
    }
    .process-section .step-title {
        font-size: 18px;
        color: #ffffff;
    }
    .process-section .step-description {
        font-size: 14px;
        color: #ffffff;
    }
}
@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    .process-section .process-title {
        font-size: 24px;
        color: #ffffff;
        margin-bottom: 40px;
    }
    .process-section .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        align-items: start;
    }
    .process-section .process-step {
        max-width: none;
        width: 100%;
    }
    .process-section .step-icon {
        width: min(160px, 20.8vw);
    }
    .process-section .step-label {
        font-size: 18px;
        color: #ffffff;
    }
    .process-section .step-title {
        font-size: 16px;
        color: #ffffff;
    }
    .process-section .step-description {
        font-size: 13px;
        color: #ffffff;
    }
}
@media (max-width: 480px) {
    .process-section {
        padding: 40px 0;
    }
    .process-section .process-title {
        font-size: 20px;
        color: #ffffff;
        margin-bottom: 30px;
    }
    .process-section .process-steps {
        gap: 25px;
    }
    .process-section .process-step {
        max-width: none;
        gap: 10px;
    }
    .process-section .step-label {
        font-size: 16px;
        color: #ffffff;
    }
    .process-section .step-icon {
        width: min(140px, 29.2vw);
    }
    .process-section .step-title {
        font-size: 14px;
        color: #ffffff;
    }
    .process-section .step-description {
        font-size: 12px;
        color: #ffffff;
    }
}


/* ========================================
   作業事例セクション - Case Studies
   ======================================== */
.case-studies-section {
    background: #ffffff;
    padding: 20px 0;
    position: relative;
}

/* 作業事例一覧（グリッド表示用） */
.case-studies-container {
    position: relative;
    width: 100%;
}
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* 一覧ではカードのスケール/不透明度を抑制 */
.case-studies-container .case-study-card {
    opacity: 1;
    transform: none;
}

.case-studies-section .case-studies-description {
    font-size: 20px;
    color: #333333;
    text-align: center;
    line-height: 2;
    margin: 0 0 64px 0;
}

.case-studies-section .case-studies-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.case-studies-section .case-studies-swiper {
    overflow: visible;
    padding: 0 50px;
}

.case-study-card {
    background: #ecf7f5;
    border-radius: 16px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.swiper-slide-active .case-study-card {
    opacity: 1;
    transform: scale(1);
}

.case-study-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.case-study-customer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.customer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.customer-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customer-location {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    line-height: 1;
}

.customer-purpose {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    line-height: 1;
}

.case-study-tags {
    display: flex;
    gap: 8px;
    align-items: center;
}

.case-tag {
    background: #00b69c;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.case-study-title {
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    text-align: center;
    margin: 0;
    line-height: 1;
}

.case-study-content {
    font-size: 16px;
    color: #333333;
    text-align: left;
    line-height: 2;
    margin: 0;
}

.case-study-images {
    display: flex;
    gap: 32px;
    align-items: center;
}

.case-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.case-image-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
}

.case-image-label {
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    text-align: center;
    width: 100%;
}

.case-study-pricing {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pricing-details {
    display: flex;
    gap: 8px;
    flex: 1;
}

.pricing-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pricing-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ffffff;
}

.pricing-label {
    background: #00a3ec;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 12px;
    text-align: center;
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.pricing-value {
    background: #52c3f1;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 12px;
    text-align: center;
    width: 100%;
    border-radius: 0 0 8px 8px;
}

.pricing-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    min-width: 256px;
}

.pricing-total-label {
    background: #00a3ec;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 12px;
    text-align: center;
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.pricing-total-value {
    background: #52c3f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 12px;
    width: 100%;
    border-radius: 0 0 8px 8px;
}

.pricing-amount {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.pricing-unit {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.case-study-items {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.items-title {
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    margin: 0;
    line-height: 1;
}

.items-description {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}


/* Swiper.js カスタマイズ */
.case-studies-section .swiper-pagination {
    position: relative;
    margin-top: 48px;
}

.case-studies-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.case-studies-section .swiper-pagination-bullet-active {
    background: #00b69c;
    transform: scale(1.2);
}

.case-studies-section .swiper-button-next,
.case-studies-section .swiper-button-prev {
    color: #00b69c;
    width: 44px;
    height: 44px;
    margin-top: -22px;
}

.case-studies-section .swiper-button-next:after,
.case-studies-section .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.case-studies-section .swiper-button-next {
    right: 20px;
}

.case-studies-section .swiper-button-prev {
    left: 20px;
}

/* 作業事例セクション - レスポンシブデザイン */
@media (max-width: 1200px) {
    .case-studies-section {
        padding: 20px 0;
    }
    .case-studies-section .case-studies-description {
        font-size: 18px;
    }
    .case-studies-section .case-studies-swiper {
        padding: 0 40px;
    }
    .case-study-card {
        padding: 48px;
    }
    
    .case-studies-section .swiper-button-next,
    .case-studies-section .swiper-button-prev {
        display: none;
    }
    .case-study-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .case-study-tags {
        flex-wrap: wrap;
    }
    .case-study-images {
        gap: 24px;
    }
    .case-image-img {
        height: 240px;
    }
    .case-study-pricing {
        gap: 16px;
    }
    .pricing-details {
        width: 100%;
    }
    .pricing-total {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .case-studies-section {
        padding: 20px 0;
    }
    .case-studies-section .case-studies-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .case-studies-section .case-studies-swiper {
        padding: 0 20px;
    }
    .case-study-card {
        padding: 32px;
        gap: 24px;
        opacity: 1;
        transform: scale(1);
    }
    
    .case-studies-section .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
        margin: 0 8px;
    }
    .case-study-header {
        gap: 16px;
    }
    .case-study-customer {
        gap: 16px;
    }
    .customer-avatar {
        width: 64px;
        height: 64px;
    }
    .customer-location {
        font-size: 16px;
    }
    .customer-purpose {
        font-size: 14px;
    }
    .case-tag {
        font-size: 14px;
        padding: 4px 12px;
    }
    .case-study-title {
        font-size: 20px;
    }
    .case-study-content {
        font-size: 14px;
    }
    .case-study-images {
        flex-direction: column;
        gap: 16px;
    }
    .case-image-img {
        height: 200px;
    }
    .case-image-label {
        font-size: 16px;
    }
    .case-study-pricing {
        flex-direction: column;
        gap: 12px;
    }
    .pricing-details {
        flex-direction: column;
        gap: 5px;
    }
    .pricing-item {
        flex-direction: row;
        align-items: center;
    }
    .pricing-item:not(:last-child)::after {
        display: none;
    }
    .pricing-label {
        flex: 1;
        border-radius: 8px 0 0 8px;
        padding: 8px 16px;
    }
    .pricing-value {
        flex: 1;
        border-radius: 0 8px 8px 0;
        padding: 8px 16px;
        font-size: 14px;
    }
    .pricing-total {
        width: 100%;
    }
    .pricing-total-label {
        padding: 12px 16px;
    }
    .pricing-total-value {
        padding: 12px 16px;
    }
    .case-studies-section .pricing-amount {
        font-size: 24px;
    }
    .case-studies-section .pricing-unit {
        font-size: 14px;
    }
    .case-studies-section .case-study-items {
        padding: 16px;
    }
    .case-studies-section .items-title {
        font-size: 14px;
    }
    .case-studies-section .items-description {
        font-size: 14px;
    }
    .case-studies-section .pagination-dot {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .case-studies-section {
        padding: 20px 0;
    }
    .case-studies-section .case-studies-title-wrapper {
        margin-bottom: 30px;
    }
    .case-studies-section .case-studies-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .case-studies-section .case-studies-swiper {
        padding: 0;
    }
    .case-studies-section .case-study-card {
        padding: 16px;
        gap: 20px;
        opacity: 1;
        transform: scale(1);
    }
    
    .case-studies-section .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        margin: 0 6px;
    }
    .case-studies-section .case-study-header {
        gap: 12px;
    }
    .case-studies-section .case-study-customer {
        gap: 12px;
    }
    .case-studies-section .customer-avatar {
        width: 56px;
        height: 56px;
    }
    .case-studies-section .customer-location {
        font-size: 14px;
    }
    .case-studies-section .customer-purpose {
        font-size: 12px;
    }
    .case-studies-section .case-tag {
        font-size: 12px;
        padding: 3px 8px;
    }
    .case-studies-section .case-study-title {
        font-size: 18px;
    }
    .case-studies-section .case-study-content {
        font-size: 13px;
    }
    .case-studies-section .case-image-img {
        height: 160px;
    }
    .case-studies-section .case-image-label {
        font-size: 14px;
    }
    .case-studies-section .pricing-label {
        font-size: 14px;
        padding: 5px 12px;
    }
    .case-studies-section .pricing-value {
        font-size: 14px;
        padding: 5px 12px;
    }
    .case-studies-section .pricing-total-label {
        font-size: 14px;
        padding: 10px 12px;
    }
    .case-studies-section .pricing-total-value {
        padding: 10px 12px;
    }
    .case-studies-section .pricing-amount {
        font-size: 20px;
    }
    .case-studies-section .pricing-unit {
        font-size: 12px;
    }
    .case-studies-section .case-study-items {
        padding: 12px;
    }
    .case-studies-section .items-title {
        font-size: 13px;
    }
    .case-studies-section .items-description {
        font-size: 13px;
    }
    .case-studies-section .pagination-dot {
        width: 16px;
        height: 16px;
    }
}


/* ========================================
   よくあるご質問セクション - FAQ
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.faq-section .faq-question {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-section .faq-question:hover {
    background: #f8f9fa;
}

.faq-section .faq-q {
    background: #00a3ec;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-right: 16px;
    flex-shrink: 0;
}

.faq-section .faq-text {
    flex: 1;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.faq-section .faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-section .faq-toggle-icon {
    font-size: 20px;
    font-weight: 700;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-section .faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-section .faq-item.active .faq-toggle {
    background: #00a3ec;
}

.faq-section .faq-item.active .faq-toggle-icon {
    color: #fff;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    border-top: 1px solid transparent;
    transition: max-height 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px 24px 24px;
    border-top-color: #e9ecef;
}

.faq-section .faq-a {
    background: #f35b6c;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.faq-section .faq-answer-content {
    flex: 1;
}

.faq-section .faq-answer-content p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* レスポンシブ - よくあるご質問 */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
.faq-section .faq-question {
        padding: 20px;
    }
.faq-section .faq-text {
        font-size: 16px;
    }
.faq-section .faq-q, .faq-section .faq-a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
.faq-section .faq-toggle {
        width: 28px;
        height: 28px;
    }
.faq-section .faq-toggle-icon {
        font-size: 18px;
    }
.faq-section .faq-answer {
        padding: 0 20px;
    }
.faq-section .faq-item.active .faq-answer {
        padding: 16px 20px 20px;
    }
.faq-section .faq-answer-content p {
        font-size: 14px;
    }
}


/* ========================================
   コラムセクション - Column
   ======================================== */
.column-section {
    padding: 80px 0;
    background: #fff;
}

.column-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.column-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.column-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.column-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.column-item-link:hover .column-item {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.column-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.column-item-link:hover .column-img {
    transform: scale(1.05);
}

.column-content {
    padding: 24px;
}

.column-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.column-category {
    background: #00a3ec;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
}

.column-date {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.column-title-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.column-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.column-link {
    color: #00a3ec;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.column-link:hover {
    color: #0088cc;
}

.column-link::after {
    content: "→";
    font-size: 12px;
    transition: transform 0.3s ease;
}

.column-link:hover::after {
    transform: translateX(4px);
}

.column-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* レスポンシブ - コラムセクション */
@media (max-width: 768px) {
    .column-section {
        padding: 60px 0;
    }
    .column-list {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 30px;
    }
    .column-image {
        height: 180px;
    }
    .column-content {
        padding: 20px;
    }
    .column-title-text {
        font-size: 16px;
    }
    .column-excerpt {
        font-size: 13px;
    }
    .column-link {
        font-size: 13px;
    }
}


/* ========================================
   ページタイトルセクション
   ======================================== */
   .page-title-section {
    background: url('../img/title_bg.webp') center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.page-title-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.page-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
/* レスポンシブ - ページタイトルセクション */
@media (max-width: 768px) {
    .page-title-section {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-title-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
}

/* ========================================
   パンくずセクション
   ======================================== */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 10px 0;
}
.breadcrumb-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}
.breadcrumb-item {
    display: flex;
    align-items: center;
}
.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin: 0 8px;
    color: #666;
    font-weight: 500;
}
.breadcrumb-item a {
    color: #00a3ec;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
    color: #0088cc;
    text-decoration: underline;
}
.breadcrumb-item:last-child {
    color: #333;
    font-weight: 500;
}
/* レスポンシブ - パンくずセクション */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 8px 0;
    }
    .breadcrumb-list {
        font-size: 13px;
    }
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
    }
}

/* ========================================
   運営会社情報ページ
   ======================================== */

.company-section,
.offices-section,
.business-section,
.licenses-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.company-header,
.offices-header,
.business-header,
.licenses-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.company-title,
.offices-title,
.business-title,
.licenses-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* 会社情報グリッド */
.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.company-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.phone-link {
    color: #00a3ec;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #0088cc;
    text-decoration: underline;
}

.phone-note {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

/* 営業所グリッド */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.office-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ccc;
}

.office-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.office-address {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* 事業内容リスト */
.business-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.business-item {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 許可証・登録番号グリッド */
.licenses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.license-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.license-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.license-value {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.license-detail {
    margin-bottom: 0.25rem;
}

.license-detail:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .company-section,
    .offices-section,
    .business-section,
    .licenses-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .company-title,
    .offices-title,
    .business-title,
    .licenses-title {
        font-size: 1.3rem;
    }
    
    .company-info-grid,
    .offices-grid,
    .business-list,
    .licenses-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .office-item,
    .license-item {
        padding: 1.25rem;
    }
    
    .business-item {
        padding: 0.875rem 1.25rem;
    }
}

/* ========================================
   料金プランセクションスタイル（共通）
   ======================================== */
.pricing-section .pricing-plans {
    margin-bottom: 60px;
}
.pricing-section .pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-section .pricing-plan-card {
    background: #fff;
    border: 2px solid #00AAFF;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}
.pricing-section .pricing-plan-card:hover {
    box-shadow: 0 4px 12px rgba(0, 170, 255, 0.15);
}
.pricing-section .pricing-plan-badge {
    background: #00AAFF;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
    display: block;
    margin: 0;
    border-radius: 0;
}
.pricing-section .pricing-plan-content {
    padding: 15px 15px 0 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pricing-section .pricing-plan-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-section .pricing-plan-icon-img {
    width: 130%;
    height: 130%;
    object-fit: contain;
}
.pricing-section .pricing-plan-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 12px 0;
    text-align: left;
}
.pricing-section .pricing-plan-price-wrapper {
    margin-bottom: 12px;
}
.pricing-section .pricing-plan-original-price {
    font-size: 14px;
    color: #999;
    margin: 0 0 8px 0;
}
.pricing-section .pricing-plan-original-amount {
    text-decoration: line-through;
}
.pricing-section .pricing-plan-discount-badge {
    background: #4caf50;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 8px;
}
.pricing-section .pricing-plan-discount-price {
    font-size: 32px;
    font-weight: 900;
    color: #e53935;
    margin: 0;
    line-height: 1.2;
}
.pricing-section .pricing-plan-tax {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
.pricing-section .pricing-plan-note {
    font-size: 12px;
    color: #666;
    margin: 8px 0 0 0;
    line-height: 1.5;
    text-align: left;
}
.pricing-section .pricing-plan-buttons {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-top: auto;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -2px;
}
.pricing-section .pricing-plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex: 1;
}
.pricing-section .pricing-plan-button-web {
    background: #e53935;
    color: #fff;
    border-radius: 0 0 0 12px;
}
.pricing-section .pricing-plan-button-web:hover {
    background: #c62828;
}
.pricing-section .pricing-plan-button-phone {
    background: #ff9800;
    color: #fff;
    border-radius: 0 0 12px 0;
}
.pricing-section .pricing-plan-button-phone:hover {
    background: #f57c00;
}
.pricing-section .pricing-plan-button-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .pricing-section .pricing-plans-grid {
        gap: 24px;
    }
    .pricing-section .pricing-plan-card {
        width: 100%;
        max-width: 320px;
    }
}
@media (max-width: 768px) {
    .pricing-section .pricing-plans {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    .pricing-section .pricing-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .pricing-section .pricing-plan-card {
        width: 100%;
        max-width: 320px;
    }
    .pricing-section .pricing-plan-content {
        padding: 12px 12px 0 12px;
    }
    .pricing-section .pricing-plan-buttons {
        margin-left: -12px;
        margin-right: -12px;
    }
    .pricing-section .pricing-plan-icon {
        width: 90px;
        height: 90px;
        margin: 0 auto;
    }
    .pricing-section .pricing-plan-icon-img {
        width: 130%;
        height: 130%;
    }
    .pricing-section .pricing-plan-discount-price {
        font-size: 28px;
    }
}
@media (max-width: 480px) {
    .pricing-section .pricing-plans {
        margin-bottom: 30px;
        padding: 0;
    }
    .pricing-section .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-section .pricing-plan-card {
        width: 100%;
        max-width: 320px;
    }
    .pricing-section .pricing-plan-content {
        padding: 10px 10px 0 10px;
    }
    .pricing-section .pricing-plan-buttons {
        margin-left: -10px;
        margin-right: -10px;
    }
    .pricing-section .pricing-plan-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    .pricing-section .pricing-plan-icon-img {
        width: 130%;
        height: 130%;
    }
    .pricing-section .pricing-plan-price-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3px 10px;
    }
    .pricing-section .pricing-plan-discount-badge {
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 0;
    }
    .pricing-section .pricing-plan-discount-price {
        font-size: 24px;
        margin: 0;
    }
    .pricing-section .pricing-plan-original-price {
        width: 100%;
        flex-basis: 100%;
        margin-bottom: 0;
    }
    .pricing-section .pricing-plan-original-price + .pricing-plan-discount-badge {
        margin-top: 4px;
    }
    .pricing-section .pricing-plan-discount-badge + .pricing-plan-discount-price {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}
/* ========================================
   ビフォーアフター(Before/After)カード
   ======================================== */
.ba-box {
    width: 1150px;
    padding: 40px;
    margin: 30px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}
@media all and (max-width: 1250px) {
    .ba-box {
        width: calc(90% - 20px);
        padding: 30px;
        margin: 20px auto;
        border-radius: 10px;
    }
}
@media all and (max-width: 767px) {
    .ba-box {
        width: calc(90% - 20px);
        padding: 10px;
        margin: 20px auto;
        border-radius: 10px;
    }
}

/* ba-box-info */
.ba-box-info {
    display: flex;
    justify-content: space-between;
}
.ba-box-info-personal {
    display: flex;
    align-items: center;
}
.ba-box-info-personal p {
    margin-left: 20px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
}
.ba-box-info-add {
    text-align: right;
}
.ba-box-info-add p {
    font-size: 16px;
}
.ba-box-info-add ul {
    margin: 0;
    padding: 0;
}
.ba-box-info-add ul li {
    min-width: 100px;
    margin-left: 10px;
    padding: 0 20px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    background: #6994CC;
}
.ba-box-info-add ul li.ba-person {
    background: #83BAE6;
}
.ba-box-info-add ul li.ba-type {
    background: #F4F1E2;
    color: #3D3D3D;
}
@media all and (max-width: 767px) {
    .ba-box-info {
        display: block;
    }
    .ba-box-info-personal p {
        font-size: 16px;
        margin-left: 10px;
    }
    .ba-box-info-personal img,
    .ba-avatar img {
        width: 70px;
        height: 70px;
        object-fit: cover;
    }
    .ba-box-info-add {
        text-align: left;
    }
    .ba-box-info-add p {
        font-size: 12px;
    }
    .ba-box-info-add ul li {
        min-width: auto;
        margin-left: 0;
        margin-right: 3px;
        padding: 0 10px;
        font-size: 13px;
    }
}

/* ba-box-pic */
.ba-box-pic {
    display: flex;
    margin: 20px -40px;
    padding: 20px 40px 10px;
    background: #E6F4F1;
}
.ba-box-pic ul {
    position: relative;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.ba-box-pic ul li {
    position: relative;
    display: inline-block;
    margin: 0 30px 0 0;
    padding: 0;
    width: 300px;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
}
.ba-box-pic ul li img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}
.ba-box-pic ul::after {
    content: "";
    position: absolute;
    top: 80px;
    left: 278px;
    width: 78px;
    height: 78px;
    background: url(/assets/img/ico_arrow03.svg) no-repeat;
}
@media all and (max-width: 1250px) {
    .ba-box-pic {
        margin: 20px -30px;
        padding: 20px 10px 10px;
    }
}
@media all and (max-width: 767px) {
    .ba-box-pic {
        display: block;
        margin: 20px -10px;
        padding: 20px 10px 10px;
    }
    .ba-box-pic ul li {
        display: inline-block;
        margin: 0;
        width: 49%;
    }
    .ba-box-pic ul::after {
        top: 38%;
        left: calc(50% - 27px);
        width: 50px;
        height: 50px;
        background-size: 50px 50px;
    }
}

/* comment */
.ba-box .cus-comment {
    margin-top: 30px;
    line-height: 1.8;
}
.ba-box .cus-comment .cus-comment-ttl {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #154788;
}
.ba-box .cus-comment p {
    font-size: 16px;
}
.ba-box .staff-comment {
    margin: 20px 0 0;
    padding: 20px;
    background: #F4F1E2;
    font-size: 16px;
    border-radius: 20px;
    line-height: 1.8;
}
.ba-box .staff-comment .staff-comment-ttl {
    font-size: 18px;
    font-weight: 700;
}
@media all and (max-width: 767px) {
    .ba-box .cus-comment {
        padding: 10px;
    }
    .ba-box .cus-comment .cus-comment-ttl {
        font-size: 24px;
    }
}

/* plan price */
.ba-box .plan-price {
    margin: 32px 0 24px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
}
.ba-box .plan-price .price-pack-table,
.ba-box .plan-price .price-total-table {
    border-collapse: separate;
    border-spacing: 0;
    min-width: 220px;
    background: #3cc0f7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ba-box .plan-price .price-pack-table th,
.ba-box .plan-price .price-total-table th {
    background: #00a3e9;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    padding: 5px 20px;
    text-align: center;
}
.ba-box .plan-price .price-pack-table td,
.ba-box .plan-price .price-total-table td {
    background: #55c8f9;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
}
.ba-box .plan-price .price-pack-table {
    width: 420px;
    max-width: 100%;
}
.ba-box .plan-price .price-total-table {
    width: 220px;
    max-width: 100%;
}
.ba-box .plan-price .price-pack-table-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.ba-box .plan-price .price-equal {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    color: #888;
    height: 100%;
    min-width: 40px;
    user-select: none;
}
.ba-box .ba-items {
    padding: 20px;
    background: #E6F4F1;
    border-radius: 8px;
}
.ba-box .ba-items-ttl {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
@media (max-width: 900px) {
    .ba-box .plan-price {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .ba-box .plan-price .price-pack-table,
    .ba-box .plan-price .price-total-table {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
    .ba-box .plan-price .price-pack-table th,
    .ba-box .plan-price .price-total-table th {
        padding: 5px 10px;
    }
    .ba-box .plan-price .price-pack-table td,
    .ba-box .plan-price .price-total-table td {
        padding: 10px 10px;
    }
    .ba-box .plan-price .price-pack-table-wrap {
        flex-direction: column;
        gap: 12px;
    }
    .ba-box .plan-price .price-equal {
        display: none;
    }
}

/* ========================================
   共通タイトルスタイル (pricing-title-wrapper)
   ======================================== */
.pricing-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.pricing-title-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pricing-title-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.pricing-title {
    font-size: 40px;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1.2;
}
.pricing-title-highlight {
    color: #006AFF;
    font-weight: 900;
}
.pricing-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .pricing-title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .pricing-title-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .pricing-title {
        font-size: 28px;
    }
    .pricing-description {
        font-size: 14px;
        line-height: 1.7;
    }
}
@media (max-width: 480px) {
    .pricing-title {
        font-size: 24px;
    }
    .pricing-description {
        font-size: 13px;
    }
}

/* ba-box-info アバター画像 */
.ba-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* ========================================
   ページネーション (Pagination)
   ======================================== */
.pagination {
    text-align: center;
    margin-top: 3em;
}

/* WordPressのページネーションh2を非表示 */
.pagination .screen-reader-text,
.pagination h2 {
    display: none;
}

.pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 8px;
}

.pagination li {
    display: inline-block;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
    min-width: 40px;
    text-align: center;
}

.pagination .page-numbers:hover {
    border-color: #007bff;
    color: #007bff;
}

.pagination .page-numbers.current {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: bold;
}

.pagination .page-numbers.dots {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: default;
}

.pagination .page-numbers.dots:hover {
    border: none;
    color: #999;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .pagination ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    
    .pagination .page-numbers {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 36px;
    }
}

/* ========================================
   お客様の声カードスタイル - Voice Card Styles
   ======================================== */

/* お客様の声一覧ページ用の2カラムレイアウト */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.voice-grid .voice-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.voice-grid .voice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.voice-grid .voice-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.voice-grid .voice-avatar {
    flex-shrink: 0;
}
.voice-grid .voice-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.voice-grid .voice-info {
    flex: 1;
}
.voice-grid .voice-location-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.voice-grid .voice-location {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}
.voice-grid .voice-rating {
    display: flex;
    gap: 2px;
}
.voice-grid .voice-rating-img {
    width: 16px;
    height: 16px;
}
.voice-grid .voice-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}
.voice-grid .voice-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.voice-grid .voice-tag {
    background: #f0f8ff;
    color: #0066cc;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
.voice-grid .voice-content {
    color: #555;
    line-height: 1.6;
}
.voice-grid .voice-content p {
    margin: 0 0 0.5rem 0;
}
.voice-grid .voice-content p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .voice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .voice-grid .voice-card {
        padding: 1.25rem;
    }
    .voice-grid .voice-header {
        gap: 0.75rem;
    }
    .voice-grid .voice-avatar-img {
        width: 50px;
        height: 50px;
    }
    .voice-grid .voice-title {
        font-size: 1rem;
    }
}

/* ========================================
   お客様の声フィルター
   ======================================== */

.voice-filter {
    display: flex;
    justify-content: center;
    align-items: center;
}
.voice-filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.voice-filter-btn {
    padding: 12px 24px;
    background: #fff;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}
.voice-filter-btn:hover {
    background: #f5f5f5;
    border-color: #0066cc;
    color: #0066cc;
}
.voice-filter-btn.active {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .voice-filter-buttons {
        gap: 0.5rem;
    }
    .voice-filter-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

