/* ========================================
   基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #87bb41; /* 深緑 (森、木々) */
    --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 {
    width: 250px; /* ロゴ画像の幅に合わせて調整してください */
    height: 40px; /* ロゴ画像の高さに合わせて調整してください */
    background-image: url('../img/haruka_noble_logo_1.png'); /* 画像パス */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px; /* テキストを画面外に隠す */
    margin: 0;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-light);
    margin-left: 8px;
    font-family: Noto serif Jp, serif;
}

.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-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}


.hero-image {
    flex: 1;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 36px;
    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;
}

.section-button {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   強みセクション
======================================== */
.strength {
    background-color: var(--bg-light);
}

.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: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.strength-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   強みセクション
======================================== */
.strength-list {
    display: grid;
}

.strength-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.strength-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    margin-right: 8px;
}

.strength-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}
/* ========================================
   サービスセクション
======================================== */
.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: 1fr 400px;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-image {
    max-width: 250px; /* 顔写真なので最大幅を小さく設定 */
    width: 50%; /* 親要素の幅に合わせて調整 */
    margin: 0 auto; /* 中央に配置 */
    border-radius: 15px;
    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: var(--secondary-color);
}

.pricing-highlight .container {
    position: relative;
    z-index: 2;
}

.highlight-feature {
    color: red;
    font-weight: 700;
}
.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: 18px;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 4px;
}

.price-period {
    font-size: 14px;
    font-weight: 500;
    margin-left: 2px;
}

.price-note {
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-limit {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    padding: 8px 12px;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: 600;
}

.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; /* 少し濃い山吹色 */
}

.pricing-note-area {
    color: white;
    text-align: center;
    margin-top: 30px;
    opacity: 0.9;
}

/* ========================================
   CTAセクション
======================================== */
.cta {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.footer-logo h4 {
    width: 200px;
    height: 32px;
    background-image: url('../img/haruka_noble_logo_1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    text-indent: -9999px;
    margin: 0 0 10px;
}




.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: 30px 0 30px;
}
/* フッターバナー */
.footer-banner {
  text-align: center;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-banner a {
  max-width: 350px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.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 {
    max-width: 600px; /* 幅を制限 */
    margin: 0 auto 40px; /* 上下マージンと左右autoで中央配置 */
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

/* .footer-ctaを中央配置するための設定 */
.footer-section.footer-cta {
    grid-column: 1 / -1; /* グリッドの全幅を使用する */
}

.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: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-links {
    margin-bottom: 16px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--text-light);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.copyright p {
    font-size: 14px;
    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;
}

/* ========================================
   お客様の声セクション (Voice)
======================================== */
.voice {
    background-color: var(--bg-color);
}

.voice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.voice-item {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.voice-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.voice-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    background-color: var(--bg-light);
}

.voice-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.voice-info {
    font-size: 14px;
    color: var(--text-light);
}

.voice-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ========================================
   ブログセクション (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);
}

/* ========================================
   レスポンシブデザイン
======================================== */
@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: 24px;
    }
    
    .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-content h2 {
        font-size: 29px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .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;
    }
    
    /* CTA */
    .cta h2 {
        font-size: 30px;
    }

    .section-title-white {
        font-size: 28px;
    }

    /* ボタン */
    .btn {
        padding: 12px 26px;
        font-size: 24px;
    }
    
    .btn-primary-large {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .btn-cta {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    /* フッターバナー */
    .footer-banner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; /* 画像間の隙間 */
        padding: 30px 15px; /* 上下の余白を維持しつつ、左右に余白を追加 */
    }
    .footer-banner a {
        width: 100%;
    }
    .footer-banner a:last-child {
        grid-column: 1 / -1; /* 最後の要素を中央に配置 */
        justify-self: center;
        max-width: 50%; /* 中央の要素が広がりすぎないように調整 */
    }


}

/* ========================================
   お問い合わせフォーム
======================================== */
.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 label .required {
    color: #dc3545; /* 赤色 */
    font-size: 16px;
    margin-left: 4px;
    font-weight: bold;
}

.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;
}

/* ========================================
   プライバシーポリシーページ
======================================== */
.privacy-policy-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.privacy-policy-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 16px;
}

.policy-overview {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.handling-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.section-item {
    margin-bottom: 40px;
}

.section-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 20px;
}

.section-item ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 16px;
}