﻿@charset "UTF-8";

/* ==========================================================================
   【伊藤農園 フィナンシェLP専用 スタイルシート】
   futureshop 埋め込み前提のカプセル化設計
   NotebookLM『自社サイトのコーディング規約』完全準拠
   ========================================================================== */

/* 子要素すべてのボックスモデル設定（ラッパークラス配下のみ） */
.ito-financier-lp *,
.ito-financier-lp *::before,
.ito-financier-lp *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ラッパークラス ルート設定 */
.ito-financier-lp {
    --main-color: #c8751b;
    --main-hover: #a85d10;
    --accent-color: #e67e22;
    --bg-color: #fdfbf7;
    --bg-white: #ffffff;
    --text-main: #2c3e50;
    --text-light: #666666;
    --border-color: #eae5d9;
    --white: #ffffff;

    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

/* HTMLタグの初期リセット */
.ito-financier-lp a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.ito-financier-lp a:hover {
    opacity: 0.85;
}

.ito-financier-lp img {
    border-style: none;
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.ito-financier-lp ul,
.ito-financier-lp ol {
    list-style: none;
}

/* ボタン要素のリセット */
.ito-financier-lp button {
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
    color: inherit;
    cursor: pointer;
}

/* ==========================================================================
   共通コンポーネント & セクション
   ========================================================================== */

.financier-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.financier-section {
    padding: 60px 0;
}

.financier-section--white {
    background-color: var(--bg-white);
}

.financier-section--base {
    background-color: var(--bg-color);
}

/* セクション見出し */
.financier-section-heading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.financier-section-heading-ja {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.financier-section-heading-ja::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 2px;
}

.financier-section-lead {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: -20px;
    margin-bottom: 40px;
}

/* ==========================================================================
   1. ファーストビュー（ヒーローセクション）
   ========================================================================== */
.financier-hero {
    position: relative;
    background: linear-gradient(135deg, #fffcf7 0%, #f4e9d7 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    overflow: hidden;
}

.financier-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.financier-hero-sub {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
    letter-spacing: 0.1em;
    background-color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.financier-hero-catch {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 20px;
}

.financier-hero-catch-accent {
    color: var(--main-color);
    background: linear-gradient(transparent 60%, #fde7c9 60%);
}

.financier-hero-lead {
    font-size: 12px;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.9;
}

.financier-hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.financier-hero-badge {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid var(--main-color);
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.financier-hero-badge-icon {
    color: var(--main-color);
}

/* 伊藤農園 導入テキスト & E-E-A-Tバッジ */
.fv-eeat-intro {
    background-color: var(--bg-white);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.fv-eeat-intro h3 {
    font-size: 20px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.fv-eeat-intro p {
    font-size: 12px;
    color: var(--text-light);
}

.fv-eeat-container {
    background-color: #faf6f0;
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-color);
}

.fv-eeat-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.fv-eeat-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.fv-eeat-badge img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.fv-eeat-badge .badge-label {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

.fv-eeat-badge.badge-no1 {
    background-color: var(--white);
    border: 2px solid #e74c3c;
    padding: 8px 18px;
    border-radius: 6px;
}

.no1-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.no1-sub {
    font-size: 12px;
    color: #e74c3c;
    font-weight: 700;
}

.no1-main {
    font-size: 13px;
    color: #e74c3c;
    font-weight: 700;
}

.no1-main strong {
    font-size: 18px;
}

.no1-desc {
    font-size: 9px;
    color: #888;
}

/* 目次 */
.toc-section {
    background-color: var(--bg-white);
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.toc-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fdfbf7;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.toc-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--main-color);
    margin-bottom: 15px;
}

.toc-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.toc-list li a {
    font-size: 14px;
    color: var(--text-main);
    text-decoration: underline;
    font-weight: 500;
}

.toc-list li a:hover {
    color: var(--main-color);
}

/* ==========================================================================
   2. 共感・悩みセクション
   ========================================================================== */
.problem-section {
    padding: 50px 20px;
    background-color: #faf6f0;
    text-align: center;
}

.lp-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-main);
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.problem-card {
    background-color: var(--white);
    padding: 18px 24px;
    border-radius: 8px;
    border-left: 5px solid var(--main-color);
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.problem-solution {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.6;
}

/* ==========================================================================
   3. 選ばれる理由
   ========================================================================== */
.financier-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.financier-reason-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.financier-reason-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #eee;
}

.financier-reason-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important; /* 規約: 商品画像の角は丸めない */
}

.financier-reason-card-body {
    padding: 20px;
    flex-grow: 1;
}

.financier-reason-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.financier-reason-card-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================================================
   4. 農園のストーリー
   ========================================================================== */
.financier-story-wrap {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.financier-story-img {
    flex-shrink: 0;
    width: 40%;
    max-width: 360px;
}

.financier-story-img img {
    width: 100%;
    border-radius: 6px;
}

.financier-story-body {
    flex-grow: 1;
}

.financier-story-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 15px;
}

.financier-story-text {
    font-size: 12px;
    color: var(--text-main);
    margin-bottom: 12px;
}

/* ==========================================================================
   5. 商品ラインナップ（規約準拠デザイン）
   ========================================================================== */
.financier-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.financier-product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.financier-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.financier-product-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f8f8f8;
    position: relative;
}

/* 規約: 商品画像の角丸禁止 */
.financier-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.financier-product-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.financier-product-card-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: #fef3e2;
    color: var(--main-color);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.financier-product-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 2.8em;
}

.financier-product-card-price {
    font-size: 15px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 15px;
}

.financier-product-card-price-tax {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.financier-product-card-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

/* カート・詳細ボタン（規約準拠: 背景 #333333 / 文字色 #ffffff / 12px または規格デザイン） */
.financier-product-card-cart {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #333333;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.financier-product-card:hover .financier-product-card-cart {
    background-color: var(--main-color);
    color: #ffffff;
}

/* ==========================================================================
   6. おすすめシーン
   ========================================================================== */
.financier-scene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.financier-scene-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.financier-scene-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.financier-scene-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.financier-scene-card-body {
    padding: 18px;
}

.financier-scene-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 8px;
}

.financier-scene-card-desc {
    font-size: 12px;
    color: var(--text-light);
}

/* ==========================================================================
   7. 製造・品質へのこだわり
   ========================================================================== */
.financier-quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.financier-quality-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.financier-quality-card-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.financier-quality-card-body {
    flex-grow: 1;
}

.financier-quality-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 8px;
}

.financier-quality-card-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================================================
   8. お客様の声
   ========================================================================== */
.financier-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.financier-review-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 22px;
    position: relative;
}

.financier-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

.financier-review-stars {
    color: #f39c12;
    font-size: 16px;
}

.financier-review-reviewer {
    font-size: 0.85rem;
    color: var(--text-light);
}

.financier-review-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.financier-review-text {
    font-size: 12px;
    color: var(--text-main);
    line-height: 1.7;
}

/* ==========================================================================
   9. よくあるご質問（FAQ - アコーディオン仕様）
   ========================================================================== */
.financier-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.financier-faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.financier-faq-item.is-active {
    border-color: var(--main-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.financier-faq-q {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    user-select: none;
    background-color: var(--white);
    transition: background-color 0.2s ease;
}

.financier-faq-q:hover {
    background-color: #fdf8f2;
}

.financier-faq-q-icon {
    color: var(--main-color);
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.financier-faq-q-text {
    flex-grow: 1;
    line-height: 1.5;
    padding-right: 25px;
}

.financier-faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.financier-faq-icon::before,
.financier-faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--main-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
    top: 50%;
    left: 50%;
}

.financier-faq-icon::before {
    width: 14px;
    height: 2px;
    margin-top: -1px;
    margin-left: -7px;
}

.financier-faq-icon::after {
    width: 2px;
    height: 14px;
    margin-top: -7px;
    margin-left: -1px;
}

.financier-faq-item.is-active .financier-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.financier-faq-a {
    display: none;
    border-top: 1px dashed var(--border-color);
    background-color: #faf7f2;
}

.financier-faq-a-inner {
    padding: 18px 20px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.financier-faq-a-icon {
    color: #e74c3c;
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
}

.financier-faq-a-text {
    font-size: 12px;
    color: var(--text-main);
    line-height: 1.7;
}

/* ==========================================================================
   10. 柑橘と果皮のお役立ち知識
   ========================================================================== */
.financier-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.financier-knowledge-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
}

.financier-knowledge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--main-color);
}

.financier-knowledge-card-icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 12px;
}

.financier-knowledge-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.financier-knowledge-card:hover .financier-knowledge-card-name {
    color: var(--main-color);
}

.financier-knowledge-card-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.financier-knowledge-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.3s ease;
}

.financier-knowledge-card:hover .financier-knowledge-card-link {
    transform: translateX(4px);
}

/* ==========================================================================
   レスポンシブ（メディアクエリ）
   ========================================================================== */
@media screen and (max-width: 768px) {
    .financier-hero {
        padding: 40px 15px;
    }

    .financier-hero-catch {
        font-size: 1.6rem;
    }

    .financier-hero-lead {
        font-size: 0.95rem;
    }

    .financier-hero-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .financier-reason-grid,
    .financier-scene-grid,
    .financier-product-grid,
    .financier-quality-grid,
    .financier-reviews-grid,
    .financier-knowledge-grid {
        grid-template-columns: 1fr;
    }

    .financier-story-wrap {
        flex-direction: column;
    }

    .financier-story-img {
        width: 100%;
        max-width: 100%;
    }

    .fv-eeat-badges {
        gap: 15px;
        flex-direction: column;
    }
}


/* ==========================================================================
   11. 画面固定追随ナビゲーション（Floating Side Navigation）
   ========================================================================== */
.financier-fixed-nav {
    position: fixed;
    right: 16px;
    top: 22%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.financier-fixed-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    font-size: 10px;
    font-weight: 700;
    border: 1px solid var(--main-color);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.financier-fixed-nav-item:hover {
    background-color: var(--main-color);
    color: #ffffff;
    transform: translateX(-4px);
    box-shadow: 0 6px 16px rgba(200, 117, 27, 0.3);
}

.financier-fixed-nav-item--accent {
    background-color: var(--main-color);
    color: #ffffff;
}

.financier-fixed-nav-item--accent:hover {
    background-color: var(--main-hover);
    color: #ffffff;
}

/* スマホ表示時（768px以下） */
@media screen and (max-width: 768px) {
    .financier-fixed-nav {
        right: 50%;
        top: auto;
        bottom: 15px;
        transform: translateX(50%);
        flex-direction: row;
        gap: 5px;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 6px 12px;
        border-radius: 30px;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--border-color);
        max-width: 95vw;
        overflow-x: auto;
    }

    .financier-fixed-nav-item {
        padding: 6px 10px;
        font-size: 0.72rem;
        border: none;
        box-shadow: none;
        background: transparent;
        border-radius: 12px;
    }

    .financier-fixed-nav-item:hover {
        transform: none;
        background-color: rgba(200, 117, 27, 0.1);
        color: var(--main-color);
    }

    .financier-fixed-nav-item--accent {
        background-color: var(--main-color);
        color: #ffffff;
    }
}
