/* ========================================
   基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #556B2F; /* 深緑 (森、木々) */
    --secondary-color: #465826; /* さらに濃い緑 */
    --accent-color: #f5c71a; /* 山吹色 (稲穂、光) */
    --text-color: #111111; /* ダークブラウン (土、木) */
    --text-light: #6f6551; /* 少し明るい茶色 */
    --bg-color: #f0efeb; /* 生成り色 (ナチュラル感) */
    --bg-light: #F8F6ED; /* 少し濃い生成り色 */
    --bg-dark: #413521; /* テキストと同じダークブラウン */
    --border-color: #e5e2d9; /* 生成り色に合わせたボーダー */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    letter-spacing: 0.07em;
    background-color: var(--bg-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* スマホ表示用 */
.sp-only {
    display: none;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    /* box-shadow: var(--shadow); */
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-light);
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 24px !important;
}

.nav-cta:hover {
    background: var(--secondary-color) !important; /* !importantはできるだけ避けるのが望ましい */
    transform: translateY(-2px);
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    background-color: var(--bg-light);
    padding: 50px 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
    padding: 16px;
    background-color: var(--bg-color);
    border-radius: 8px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-primary-large {
    background: var(--primary-color);
    color: white;
    padding: 16px 48px;
    font-size: 18px;
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-cta {
    background: var(--accent-color);
    color: white;
    padding: 18px 48px;
    font-size: 20px;
}

.btn-cta:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   セクション共通
======================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-color);
}

.section-lead {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

/* ========================================
   強みセクション
======================================== */
.strength-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.strength-item {
    text-align: center;
    padding: 20px;
}

.strength-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strength-icon img {
    width: 40px;
    height: 40px;
}

.strength-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.strength-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.strength-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}
/* ========================================
   サービスセクション
======================================== */
.services {
    background: var(--bg-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-card {
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.service-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ========================================
   ABOUTセクション
======================================== */
.about {
    background: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.5;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 2.0;
}

.about-text .btn-secondary {
    margin-top: 16px;
}


/* ========================================
   料金セクション
======================================== */
.pricing-highlight {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.pricing-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(65, 53, 33, 0.85); /* ダークブラウンのオーバーレイ */
}

.pricing-highlight .container {
    position: relative;
    z-index: 2;
}

.section-title-white,
.section-lead-white {
    color: white;
    text-align: center;
}

.section-title-white {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-lead-white {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.pricing-content {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.price-box {
    background: white;
    color: var(--text-color);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
}

.price-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.price-amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-color);
}

.price-unit {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 4px;
}

.price-note {
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-features {
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-features li:last-child {
    border-bottom: none;
}

.pricing-highlight .btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.pricing-highlight .btn-primary:hover {
    background-color: #dcae18; /* 少し濃い山吹色 */
}

/* ========================================
   CTAセクション
======================================== */
.cta {
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8; color: var(--text-light);
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-cta {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.btn-footer-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 16px;
}

.btn-footer-cta:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

/* ========================================
   地域ページ専用スタイル
======================================== */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.area-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.area-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.85), rgba(70, 88, 38, 0.75));
}

.area-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.area-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.area-hero-title {
    font-size: 56px;
    font-weight: 800;
    /* 特定の市町村を強調 */
    text-shadow: 
        0 0 5px var(--accent-color),
        0 0 10px var(--accent-color);
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.area-hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.95;
}

.area-hero-description {
    font-size: 18px;
    opacity: 0.9;
}

.area-understanding {
    padding: 80px 0;
}

.understanding-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.understanding-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 16px;
    color: var(--primary-color);
}

.understanding-text h3:first-child {
    margin-top: 0;
}

.industry-list li,
.problem-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-color);
}

.industry-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.problem-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.area-reason {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.area-reason p {
    line-height: 1.9;
    color: var(--text-color);
}

.understanding-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.understanding-images img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.area-services {
    background: var(--bg-light);
}

.area-services .service-card h3 {
    font-size: 20px;
    line-height: 1.5;
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-color);
}

.area-works {
    text-align: center;
}

.works-placeholder {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.works-placeholder p {
    font-size: 16px;
    color: var(--text-light);
}

/* ========================================
   実績紹介セクション (Works)
======================================== */
.works {
    background: var(--bg-light);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.work-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.work-link {
    display: block;
    height: 100%;
}

.work-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
}

.work-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.work-area-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgb(0, 169, 42);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
}

.work-content {
    padding: 20px;
}

.work-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.work-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

/* ========================================
   流れセクション (Flow)
======================================== */
.flow {
    background-color: var(--bg-light);
}

.flow-list {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 60px;
}

.flow-item {
    background-color: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--bg-color);
}

.flow-item:not(:last-child) {
    margin-bottom: 40px;
}

.flow-item:not(:last-child)::after {
    content: '▼';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 20px;
}

.flow-item-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 20px;
    background-color: var(--bg-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========================================
   ブログセクション (Blog)
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-post-image {
    height: 200px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 24px;
}

.post-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.post-category {
    background: var(--bg-light);
    padding: 2px 10px;
    border-radius: 4px;
    color: var(--text-color);
}

.post-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.5;
}

.post-title a:hover {
    color: var(--primary-color);
}

.area-pricing {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.area-pricing .section-title {
    color: white;
}

.area-pricing .price-box {
    margin-top: 40px;
}

.price-header {
    text-align: center;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.area-voice {
    background: var(--bg-light);
}

.voice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.voice-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.voice-problem {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.voice-answer {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.area-cta {
    text-align: center;
    background: var(--bg-dark);
    color: white;
}

.area-cta h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.area-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 768px) {
    /* 共通 */
    .sp-only {
        display: inline;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-lead {
        font-size: 16px;
    }
    
    /* ヘッダー */
    .header-container {
        height: 70px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }
    
    /* ヒーロー */
    .hero-container {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-buttons {
        flex-direction: column; /* ボタンを縦並びにする */
        align-items: center;    /* 中央揃えにする */
        gap: 1rem;              /* ボタンの間に余白を追加 */
    }
    
    /* グリッド */
    .strength-list,
    .service-grid,
    .about-content,
    .works-grid,
    .blog-grid,
    .voice-list,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        gap: 40px;
        text-align: center;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .flow-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* 地域ページ */
    .area-hero {
        height: 400px;
    }
    
    .area-hero-title {
        font-size: 36px;
    }
    
    .area-hero-subtitle {
        font-size: 18px;
    }
    
    .understanding-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .flow-step:not(:last-child)::after {
        content: '↓';
        top: auto;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* 料金 */
    .pricing-highlight {
        padding: 60px 0;
    }

    .price-box {
        padding: 30px 20px;
    }
    
    /* ボタン */
    .btn {
        padding: 18px 36px;
        font-size: 24px;
    }
    
    .btn-primary-large {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .btn-cta {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    /* CTA */
    .cta h2,
    .area-cta h2 {
        font-size: 28px;
    }
    
    .cta p,
    .area-cta p {
        font-size: 16px;
    }
}

/* ========================================
   お問い合わせフォーム
======================================== */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(85, 107, 47, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   ページネーション
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    background-color: white;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
}

.pagination .current {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}