/* ===================================
   基本設定
   =================================== */
html {
    scroll-behavior: smooth;
}

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

:root {
    /* カラーパレット */
    --primary-color: #2d5f3f;
    --primary-light: #4a8a5f;
    --primary-dark: #1a3a28;
    --secondary-color: #7fa84e;
    --accent-color: #f5a623;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
}

body {
    font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* ===================================
   ヘッダー
   =================================== */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 30px 0;
    box-shadow: var(--shadow-md);
}

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

.site-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.site-title i {
    font-size: 2.2rem;
}

.site-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 400;
}

/* ===================================
   ヒーローセクション
   =================================== */
.hero {
    background-image: url('../images/hero-bg.jpg');
    background-color: #2d5a3d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(26, 60, 36, 0.88) 0%, rgba(30, 70, 42, 0.78) 40%, rgba(20, 50, 30, 0.72) 100%);
    z-index: 1;
}

/* 浮遊パーティクル */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: float-particle 12s infinite ease-in-out;
}

.hero-particles span:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.hero-particles span:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
    width: 8px;
    height: 8px;
}

.hero-particles span:nth-child(3) {
    top: 30%;
    left: 55%;
    animation-delay: 4s;
    animation-duration: 16s;
    width: 4px;
    height: 4px;
}

.hero-particles span:nth-child(4) {
    top: 75%;
    left: 25%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.hero-particles span:nth-child(5) {
    top: 45%;
    left: 90%;
    animation-delay: 3s;
    animation-duration: 13s;
    width: 5px;
    height: 5px;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
    }

    25% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-10px) translateX(-10px);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0.6;
    }
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* バッジライン */
.hero-badge-line {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-year-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f5a623 0%, #e0951e 100%) !important;
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4) !important;
    border: none !important;
    margin: 0 !important;
    width: auto !important;
    text-shadow: none !important;
}

.hero-area-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* タイトル */
.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.35;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.85;
    margin-bottom: 8px;
    text-transform: none;
}

.hero-title-main {
    display: block;
}

.hero-title-main em {
    font-style: normal;
    font-size: 1.3em;
    color: #f5a623;
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 36px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.sp-only {
    display: none;
}

/* 数値スタッツ */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 20px 10px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.hero-stat-number small {
    font-size: 0.6em;
    font-weight: 600;
}

.hero-stat-label {
    font-size: 0.78rem;
    opacity: 0.75;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* CTAボタン */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.hero-cta-btn:hover::after {
    left: 100%;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
}

.hero-cta-btn i {
    font-size: 1rem;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #f5a623 0%, #e68a0a 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #e68a0a 0%, #d47a00 100%);
    box-shadow: 0 6px 28px rgba(245, 166, 35, 0.55);
    color: #fff;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* 信頼バッジ */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 0.8rem;
    opacity: 0.65;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
}

.hero-trust i {
    font-size: 0.75rem;
}

/* ===================================
   セクション共通
   =================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===================================
   導入部
   =================================== */
.intro {
    background: var(--bg-cream);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   業者選びのポイント
   =================================== */
.points {
    background: var(--bg-white);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.point-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.point-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.point-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.point-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   ランキングセクション
   =================================== */
.ranking {
    background: var(--bg-light);
}

/* 比較表 */
.comparison-table-wrapper {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.table-scroll {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

.comparison-table th {
    padding: 15px;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.comparison-table td small {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

.comparison-table tbody tr:hover {
    background: var(--bg-cream);
}

.highlight-row {
    background: #fff8e6 !important;
    font-weight: 600;
}

.company-name {
    font-weight: 600;
    color: var(--primary-color);
    text-align: left !important;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.star {
    color: var(--accent-color);
    font-size: 1rem;
}

.score {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.price-range {
    padding: 5px 12px;
    background: var(--bg-cream);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* 業者カード */
.company-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ランクバッジ */
.rank-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.rank-number {
    font-size: 1.8rem;
    line-height: 1;
}

.rank-label {
    font-size: 0.75rem;
}

.rank-1-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    width: 80px;
    height: 80px;
    top: -20px;
}

.rank-1 {
    border-color: var(--gold);
    background: linear-gradient(to bottom, #fffdf5 0%, white 100%);
}

.rank-2-badge {
    background: linear-gradient(135deg, var(--silver) 0%, #e8e8e8 100%);
}

.rank-3-badge {
    background: linear-gradient(135deg, var(--bronze) 0%, #e39e6b 100%);
}

.rank-4-badge {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
}

.rank-5-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #9bc175 100%);
}

/* 業者ヘッダー */
.company-header {
    margin-bottom: 30px;
}

.company-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.company-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.recommended-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.company-location {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 統計情報 */
.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-cream);
    border-radius: 12px;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* 説明・特徴 */
.company-description {
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
    color: var(--text-dark);
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--primary-light);
    font-size: 1.1rem;
}

.feature-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 強み */
.company-strengths {
    margin-bottom: 30px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.strength-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.strength-item:hover {
    transform: scale(1.05);
    background: var(--bg-cream);
}

.strength-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 10px;
    display: block;
}

.strength-item p {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* 引用 */
.company-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
}

.company-quote i {
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 10px;
}

.company-quote p {
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
}

/* CTA */
.company-cta {
    margin-top: 30px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #9bc175 100%);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #9bc175 0%, var(--secondary-color) 100%);
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 50px;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   FAQ
   =================================== */
.faq {
    background: var(--bg-white);
}

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

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

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

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: var(--bg-light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question i.fa-question-circle {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* 施工事例ギャラリー */
.company-gallery {
    margin: 30px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ===================================
   まとめ
   =================================== */
.summary {
    background: var(--bg-cream);
}

.summary-content {
    max-width: 900px;
    margin: 0 auto;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.summary-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--gold);
    margin-bottom: 40px;
}

.summary-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.summary-box-title i {
    color: var(--gold);
    font-size: 1.8rem;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.summary-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.8;
    color: var(--text-dark);
}

.summary-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-light);
    font-size: 1.2rem;
}

.summary-note {
    background: var(--bg-cream);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-dark);
}

.summary-cta {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 12px;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.other-options {
    margin-top: 30px;
}

.other-options-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.other-options-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* その他のおすすめ */
.other-recommendations {
    margin-top: 40px;
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
}

.other-recommendations-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.other-recommendations-title i {
    color: var(--secondary-color);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    background: var(--bg-cream);
    transform: translateX(5px);
}

.recommendation-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    flex: 1;
}

.recommendation-arrow {
    font-size: 1.2rem;
    color: var(--primary-light);
    font-weight: 700;
}

.recommendation-link {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    padding: 8px 20px;
    background: white;
    border-radius: 6px;
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.recommendation-link:hover {
    background: var(--primary-light);
    color: white;
    transform: scale(1.05);
}

/* ===================================
   コラムセクション
   =================================== */
.columns {
    background: var(--bg-white);
}

.columns .section-subtitle {
    margin-bottom: 30px;
}

/* カテゴリフィルター */
.column-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.column-filter-btn {
    padding: 10px 22px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--bg-white);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.column-filter-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
    background: var(--bg-cream);
}

.column-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* コラムグリッド */
.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* コラムカード */
.column-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.column-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.column-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.column-card.hidden {
    display: none;
}

.column-card-header {
    padding: 22px 22px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.column-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.column-card-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.column-card-tag.tag-popular {
    background: #fff3e0;
    color: #e65100;
}

.column-card-tag.tag-area {
    background: #e8f5e9;
    color: #2e7d32;
}

.column-card-tag.tag-season {
    background: #e3f2fd;
    color: #1565c0;
}

.column-card-tag.tag-lifestyle {
    background: #fce4ec;
    color: #c62828;
}

.column-card-tag.tag-pro {
    background: #f3e5f5;
    color: #6a1b9a;
}

.column-card-body {
    padding: 15px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.column-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.column-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 15px;
}

.column-card-readmore {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.column-card-readmore i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.column-card:hover .column-card-readmore {
    color: var(--primary-light);
}

.column-card:hover .column-card-readmore i {
    transform: translateX(4px);
}

/* コラムモーダル */
.column-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    overflow-y: auto;
    backdrop-filter: blur(4px);
}

.column-modal-overlay.active {
    display: flex;
}

.column-modal {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.column-modal-close {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px;
    background: white;
    border-radius: 16px 16px 0 0;
    z-index: 10;
}

.column-modal-close button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-modal-close button:hover {
    background: var(--primary-color);
    color: white;
}

.column-modal-content {
    padding: 0 40px 40px;
}

.column-modal-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.column-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.5;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.column-modal-body {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-dark);
}

.column-modal-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--secondary-color);
}

.column-modal-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.column-modal-body p {
    margin-bottom: 15px;
}

.column-modal-body ul,
.column-modal-body ol {
    margin: 10px 0 15px 20px;
    line-height: 2;
}

.column-modal-body li {
    margin-bottom: 5px;
}

.column-modal-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.column-modal-body a {
    color: var(--primary-light);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.column-modal-body a:hover {
    color: var(--primary-color);
}

.column-modal-body .htg-link-box {
    background: linear-gradient(135deg, #f0f7f2 0%, #e8f0ea 100%);
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    padding: 20px 25px;
    margin: 25px 0;
    text-align: center;
}

.column-modal-body .htg-link-box p {
    margin-bottom: 12px;
    font-weight: 500;
}

.column-modal-body .htg-link-box a {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.column-modal-body .htg-link-box a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* ===================================
   フッター
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 50px 0 30px;
}

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

.footer-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-subtext {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.footer-links {
    margin: 16px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   レスポンシブ対応
   =================================== */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.5rem;
    }

    .site-subtitle {
        font-size: 0.9rem;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .hero-badge-line {
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-year-badge,
    .hero-area-badge {
        font-size: 0.78rem !important;
        padding: 6px 16px !important;
    }

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

    .hero-title-accent {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

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

    .sp-only {
        display: inline;
    }

    .hero-stats {
        max-width: 100%;
        padding: 16px 8px;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

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

    .hero-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    section {
        padding: 50px 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

    .comparison-table-wrapper {
        padding: 20px;
    }

    .company-card {
        padding: 25px;
    }

    .rank-badge {
        width: 50px;
        height: 50px;
        top: -10px;
        left: 20px;
    }

    .rank-number {
        font-size: 1.4rem;
    }

    .rank-1-badge {
        width: 60px;
        height: 60px;
        top: -15px;
    }

    .company-title {
        font-size: 1.4rem;
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .gallery-grid img {
        height: 250px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 15px 35px;
    }

    .summary-box {
        padding: 25px;
    }

    .summary-box-title {
        font-size: 1.2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

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

    .recommendation-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .recommendation-arrow {
        display: none;
    }

    .recommendation-link {
        width: 100%;
        text-align: center;
    }

    .column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .column-modal-content {
        padding: 0 25px 30px;
    }

    .column-modal-title {
        font-size: 1.3rem;
    }

    .column-modal-body h3 {
        font-size: 1.1rem;
    }

    .column-filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-year-badge {
        font-size: 0.9rem !important;
        padding: 8px 24px !important;
        letter-spacing: 1px !important;
    }

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

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

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

    .company-title {
        font-size: 1.2rem;
    }

    .company-stats {
        padding: 20px;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .feature-list li {
        padding-left: 25px;
        font-size: 0.95rem;
    }

    .company-quote {
        padding: 20px;
    }

    .gallery-grid img {
        height: 200px;
    }

    .recommendation-label {
        font-size: 0.9rem;
    }

    .recommendation-link {
        font-size: 0.95rem;
        padding: 10px 18px;
    }

    .column-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .column-card-title {
        font-size: 0.95rem;
    }

    .column-modal {
        border-radius: 12px;
    }

    .column-modal-content {
        padding: 0 20px 25px;
    }

    .column-modal-title {
        font-size: 1.2rem;
    }

    .column-modal-body {
        font-size: 0.95rem;
    }

    .column-modal-overlay {
        padding: 20px 10px;
    }
}

/* ===================================
   著者情報（E-E-A-T）
   =================================== */
.author-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.author-card {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.author-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.author-name {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 6px;
}

.author-credential {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.author-credential i {
    margin-right: 4px;
}

.author-bio {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.author-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.expertise-tag {
    background: #e8f5e9;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.author-update {
    color: #888;
    font-size: 0.85rem;
}

.author-update i {
    margin-right: 4px;
}

/* ===================================
   お問い合わせフォーム
   =================================== */
.contact {
    padding: 60px 0;
    background: #fff;
}

.contact-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 6px;
    width: 16px;
}

.required {
    color: #e53935;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

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

.form-privacy {
    margin: 20px 0 24px;
}

.form-privacy label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.form-submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.form-submit-btn:hover {
    background: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 142, 60, 0.4);
}

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

.form-result {
    margin-top: 16px;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.form-result.success {
    background: #e8f5e9;
    color: var(--primary-color);
}

.form-result.error {
    background: #ffebee;
    color: #e53935;
}

@media (max-width: 768px) {
    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .author-expertise {
        justify-content: center;
    }

    .contact-form {
        padding: 24px 16px;
    }
}

/* ===================================
   アニメーション
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}