/* ============================================
   サンプル農園 PC用スタイルシート
   対象：769px以上
   ============================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --color-primary:       #4a6741;
    --color-primary-dark:  #3a5234;
    --color-primary-light: #5c7d52;
    --color-primary-pale:  #e8efe6;
    --color-primary-vivid: #6b9a5e;
    --color-cream:         #faf6f0;
    --color-beige:         #f5efe6;
    --color-beige-dark:    #e8dfd3;
    --color-white:         #ffffff;
    --color-bg:            #ffffff;
    --color-text:          #333333;
    --color-text-light:    #666666;
    --color-text-muted:    #999999;
    --color-border:        #e0d8ce;
    --color-error:         #d94032;
    --font-family:         'Noto Sans JP', sans-serif;
    --font-size-base:      16px;
    --font-size-sm:        14px;
    --font-size-xs:        12px;
    --font-size-lg:        18px;
    --font-size-xl:        20px;
    --font-size-2xl:       24px;
    --font-size-3xl:       32px;
    --font-size-4xl:       40px;
    --font-size-5xl:       48px;
    --font-size-hero:      48px;
    --section-padding:     110px;
    --container-width:     1100px;
    --border-radius:       12px;
    --border-radius-sm:    8px;
    --border-radius-lg:    16px;
    --border-radius-xl:    20px;
    --header-height:       80px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    /* レイアウトシフト防止 */
    height: var(--header-height);
    contain: layout;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
}
.header-logo .logo-img {
    height: 28px;
    width: auto;
    display: block;
}

/* PC Nav */
.header-nav ul {
    display: flex;
    gap: 32px;
}
.header-nav a {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}
.header-nav a:hover { color: var(--color-primary); }
.header-nav a:hover::after { width: 100%; }
.header-nav a[aria-current="page"] {
    color: var(--color-primary);
}
.header-nav a[aria-current="page"]::after { width: 100%; }

/* Contact button */
.header-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}
.header-contact a:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}
.header-contact svg { width: 16px; height: 16px; }

/* Hamburger（PCでは非表示） */
.hamburger { display: none; }

/* ============================================
   Mobile Menu（PCでは非表示）
   ============================================ */
.mobile-menu { display: none; }

/* ============================================
   Hero Slider
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}
.hero-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 90%;
    max-width: 750px;
}
.hero-catch {
    font-size: var(--font-size-hero);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    margin-bottom: 16px;
}
.hero-sub {
    font-size: var(--font-size-lg);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    margin-bottom: 44px;
    letter-spacing: 0.06em;
}

/* Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}
.hero-dot.active {
    background: var(--color-white);
    transform: scale(1.3);
}

/* ============================================
   Fancy Button
   ============================================ */
.btn-fancy {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px 16px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}
.btn-fancy::before {
    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.6s ease;
}
.btn-fancy:hover::before { left: 100%; }
.btn-fancy:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(74,103,65,0.35);
}
.btn-fancy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-fancy:hover .btn-fancy-icon {
    background: rgba(255,255,255,0.35);
    transform: translateX(4px);
}
.btn-fancy-icon svg { width: 18px; height: 18px; }

/* White variant */
.btn-fancy-white {
    background: var(--color-white);
    color: var(--color-primary);
}
.btn-fancy-white .btn-fancy-icon { background: var(--color-primary-pale); }
.btn-fancy-white:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.btn-fancy-white:hover .btn-fancy-icon {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-fancy-white::before {
    background: linear-gradient(90deg, transparent, rgba(74,103,65,0.06), transparent);
}

/* Outline variant */
.btn-fancy-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 14px 18px 14px 34px;
}
.btn-fancy-outline .btn-fancy-icon { background: var(--color-primary-pale); }
.btn-fancy-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-fancy-outline:hover .btn-fancy-icon { background: rgba(255,255,255,0.2); }

/* Hero specific */
.hero-btn {
    padding: 16px 20px 16px 36px;
}

/* ============================================
   Section Common
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    padding: 8px 0;
}
.section-lead {
    margin-top: 40px;
    margin-bottom: 56px;
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.9;
}
/* section-leadを含む場合はsection-header自体のmargin-bottomを打ち消す */
.section-header.has-lead {
    margin-bottom: 0;
}
.section-header-en {
    display: block;
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: rgba(74,103,65,0.045);
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    margin-bottom: -24px;
    white-space: nowrap;
}
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: 0.06em;
    position: relative;
}
.section-title-sub {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-top: 12px;
}

/* ============================================
   Wave Divider
   ============================================ */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
    display: block;
    margin-bottom: -3px;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    margin-bottom: -2px;
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
    padding-top: 100px;
    background: var(--color-white);
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    padding: 16px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    list-style: none;
}
.breadcrumb-list li { display: flex; align-items: center; }
.breadcrumb-list li + li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--color-text-muted);
    border-bottom: 1.5px solid var(--color-text-muted);
    transform: rotate(-45deg);
    margin: 0 12px;
    flex-shrink: 0;
}
.breadcrumb-list a { color: var(--color-text-muted); transition: color 0.3s; }
.breadcrumb-list a:hover { color: var(--color-primary); }

/* ============================================
   Page Header (inner pages)
   ============================================ */
.page-header {
    background: var(--color-white);
    padding: 40px 0 48px;
    text-align: center;
    position: relative;
}
.page-header-en {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -55%);
    font-size: 110px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: rgba(74,103,65,0.045);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    text-transform: uppercase;
}
.page-header-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: 0.06em;
    position: relative;
}
.page-header-title-sub {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-top: 10px;
}
.page-header-image {
    padding: 0 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.page-header-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    display: block;
}

/* ============================================
   About Section
   ============================================ */
.about-section { background: var(--color-white); }
.about-content {
    display: flex;
    align-items: center;
    gap: 64px;
}
.about-image {
    flex: 0 0 46%;
    position: relative;
}
.about-image img {
    border-radius: var(--border-radius-xl);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.about-image-deco {
    position: absolute;
    bottom: -16px; right: -16px;
    width: 65%; height: 65%;
    border: 3px solid var(--color-primary-pale);
    border-radius: var(--border-radius-xl);
    z-index: -1;
}
.about-text { flex: 1; }
.about-text .section-header {
    text-align: left;
    margin-bottom: 0;
    overflow: hidden;
}
.about-text .section-header-en {
    font-size: 72px;
    margin-bottom: -20px;
}
.about-text .section-title {
    font-size: var(--font-size-3xl);
    text-align: left;
}
.about-description {
    margin-top: 28px;
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 2.1;
}
.about-link-wrap { margin-top: 36px; }

/* ============================================
   Products Section
   ============================================ */
.products-section { background: var(--color-cream); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
    display: block;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(74,103,65,0.13);
}
.product-card-image {
    aspect-ratio: 1200 / 630;
    overflow: hidden;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-body { padding: 20px 24px 24px; }
.product-card-category {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-primary-pale);
    padding: 3px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.product-card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.5;
}
.products-more { text-align: center; margin-top: 52px; }

/* ============================================
   News Section
   ============================================ */
.news-section { background: var(--color-white); }
.news-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.news-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.news-item-image {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 1200/630;
    overflow: hidden;
}
.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news-item:hover .news-item-image img { transform: scale(1.05); }
.news-item-body {
    flex: 1;
    padding: 18px 20px 18px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.news-item-date {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 400;
    white-space: nowrap;
}
.news-item-tag {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-primary-pale);
    padding: 2px 12px;
    border-radius: 50px;
    white-space: nowrap;
}
.news-item-title {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.6;
}
/* サムネイルなし時のプレースホルダー */
.news-item-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-primary-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-item-image-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--color-primary-light);
}
.news-more { text-align: center; margin-top: 52px; }

/* ============================================
   FAQ Section
   ============================================ */
.faq-section { background: var(--color-beige); }
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid transparent;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.faq-item.open {
    border-color: var(--color-primary-pale);
    background: #fcfefa;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    cursor: pointer;
    gap: 16px;
    transition: background 0.3s;
    -webkit-user-select: none;
    user-select: none;
}
.faq-item.open .faq-question { background: var(--color-primary-pale); }
.faq-question-text {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}
.faq-mark {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    font-size: var(--font-size-sm);
    font-weight: 900;
    border-radius: 50%;
    line-height: 1;
}
.faq-q-mark { background: var(--color-primary); color: var(--color-white); }
/* A mark: 固定カラー（open時も変化しない） */
.faq-a-mark { background: var(--color-beige-dark); color: var(--color-primary-dark); }
.faq-toggle {
    flex-shrink: 0;
    width: 24px; height: 24px;
    color: var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.faq-item.open .faq-toggle { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23,1,0.32,1);
}
/* max-heightはcommon.jsのscrollHeightで動的制御 */
.faq-item.open .faq-answer { max-height: none; }
.faq-answer-inner {
    padding: 20px 24px 24px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.faq-answer-text {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.9;
}
.faq-more { text-align: center; margin-top: 52px; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 88px 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -8%;
    width: 420px; height: 420px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -25%; left: -4%;
    width: 320px; height: 320px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
}
.cta-text {
    font-size: var(--font-size-base);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.cta-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
}
.cta-tel-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-2xl);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--color-white);
}
.cta-tel-number svg { width: 24px; height: 24px; }
.cta-tel-note {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #2a2a2a;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
    margin-top: -3px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-info .footer-logo {
    margin-bottom: 20px;
}
.footer-info .footer-logo a {
    display: inline-block;
}
.footer-info .logo-img-footer {
    height: 28px;
    width: auto;
    display: block;
}
.footer-info p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
}
.footer-nav-group h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}
.footer-nav-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav-group a {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.footer-nav-group a:hover { color: var(--color-white); }
.footer-sns {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.footer-sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}
.footer-sns a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}
.footer-sns svg { width: 20px; height: 20px; }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-copyright {
    font-size: var(--font-size-xs);
    color: rgba(255,255,255,0.4);
}

/* ============================================
   Fade In Animation
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.30s; }
.fade-in-delay-3 { transition-delay: 0.45s; }

/* ============================================
   Page Content (Article)
   ============================================ */
.article-body h1 { font-size: 1.8em; font-weight: 700; margin: 1.5em 0 0.5em; line-height: 1.4; }
.article-body h2 { font-size: 1.5em; font-weight: 700; margin: 1.5em 0 0.5em; line-height: 1.4; }
.article-body h3 { font-size: 1.25em; font-weight: 700; margin: 1.5em 0 0.5em; line-height: 1.4; }
.article-body p { margin-bottom: 1em; }
.article-body ul, .article-body ol { margin: 1em 0 1em 2em; }
.article-body li { margin-bottom: 0.25em; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--border-radius); margin: 1em 0; }
.article-body a { color: var(--color-primary); text-decoration: underline; }
.article-body iframe { max-width: 100%; }

/* ============================================
   Products List Page
   ============================================ */
.products-list-section { background: var(--color-cream); }
.products-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
/* カテゴリフィルター */
.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center;
}
.filter-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    transition: all 0.3s;
}
.filter-tab:hover,
.filter-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   News List Page
   ============================================ */
.news-list-section { background: var(--color-white); }
.news-list-full {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s;
}
.pagination a {
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    background: var(--color-white);
}
.pagination a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.pagination span.current {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

/* ============================================
   Product Detail Page
   ============================================ */
.product-detail-section { background: var(--color-white); }
.product-detail-header {
    margin-bottom: 48px;
}
.product-detail-header-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 1200/630;
    margin-bottom: 32px;
}
.product-detail-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-detail-category {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-primary-pale);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.product-detail-title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 24px;
}
/* Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0;
}
.product-gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}
.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-gallery-item:hover img { transform: scale(1.05); }
/* EC Button */
.ec-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #e07b39;
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 24px;
}
.ec-link-btn:hover {
    background: #c9682a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224,123,57,0.35);
}
.ec-link-btn svg { width: 20px; height: 20px; }

/* ============================================
   News Detail Page
   ============================================ */
.news-detail-section { background: var(--color-white); }
.news-detail-header { margin-bottom: 40px; }
.news-detail-thumb {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 1200/630;
    margin-bottom: 28px;
}
.news-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.news-detail-title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    line-height: 1.4;
    color: var(--color-text);
}
.news-article-body {
    padding-top: 32px;
    border-top: 2px solid var(--color-border);
}
.news-back-btn {
    margin-top: 56px;
    text-align: center;
}

/* ============================================
   About Page
   ============================================ */
.about-page-section { background: var(--color-white); }
.about-page-lead {
    font-size: var(--font-size-lg);
    line-height: 2.1;
    color: var(--color-text-light);
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}
.about-feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}
.about-feature-item {
    background: var(--color-primary-pale);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    text-align: center;
}
.about-feature-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}
.about-feature-icon svg { width: 32px; height: 32px; }
.about-feature-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}
.about-feature-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.9;
}

/* Map */
.about-map-wrap {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 16/6;
}
.about-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-page-section { background: var(--color-cream); padding: var(--section-padding) 0; }
.faq-page-section .faq-list { display: block; max-width: 820px; margin: 0 auto; }
.faq-category {
    margin-bottom: 64px;
}
.faq-category-title {
    display: flex; align-items: center; gap: 12px;
    font-size: var(--font-size-xl); font-weight: 900; color: var(--color-text);
    margin-bottom: 24px; padding-bottom: 14px;
    border-bottom: 2px solid var(--color-primary-pale);
}

/* ============================================
   Privacy Page
   ============================================ */
.privacy-section { background: var(--color-white); }
.privacy-body {
    max-width: 800px;
    margin: 0 auto;
}
.privacy-body h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-primary-dark);
    border-bottom: 2px solid var(--color-primary-pale);
    padding-bottom: 8px;
    margin: 48px 0 16px;
}
.privacy-body h2:first-child { margin-top: -3px; }
.privacy-body p, .privacy-body li {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.9;
}
.privacy-body ul {
    margin: 12px 0 12px 24px;
    list-style: disc;
}

/* ============================================
   Contact Form (3-step)
   ============================================ */

/* ── セクション背景 ── */
.contact-section { background: var(--color-cream); padding: var(--section-padding) 0; }
.contact-inner { max-width: 720px; margin: 0 auto; }

/* ── Step Indicator ── */
.step-indicator {
    display: flex; justify-content: center; align-items: center;
    gap: 0; max-width: 520px; margin: 0 auto 48px;
}
.step-item {
    display: flex; align-items: center; gap: 10px;
    font-size: var(--font-size-sm); font-weight: 500; color: var(--color-text-muted);
}
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    font-size: var(--font-size-sm); font-weight: 700;
    background: var(--color-beige); color: var(--color-text-muted);
    transition: all 0.3s; flex-shrink: 0;
}
.step-item.is-active .step-number { background: var(--color-primary); color: var(--color-white); }
.step-item.is-active { color: var(--color-text); font-weight: 700; }
.step-item.is-done .step-number { background: var(--color-primary-pale); color: var(--color-primary); }
.step-line {
    flex: 1; height: 2px; background: var(--color-beige);
    margin: 0 16px; min-width: 40px;
}
.step-line.is-done { background: var(--color-primary-pale); }

/* ── Intro text ── */
.contact-intro {
    text-align: center; margin-bottom: 40px;
    font-size: var(--font-size-base); color: var(--color-text-light); line-height: 2;
}
.required-badge {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: var(--font-size-xs); font-weight: 700;
    color: var(--color-white); background: var(--color-error);
    padding: 1px 8px; border-radius: 4px; letter-spacing: 0.05em;
    vertical-align: middle;
}

/* ── エラー全体表示 ── */
.form-error-general {
    background: #fef2f2; border: 1px solid var(--color-error);
    border-radius: var(--border-radius-sm); padding: 16px 20px;
    color: var(--color-error); font-size: var(--font-size-sm);
    margin-bottom: 24px; text-align: center;
}

/* ── Form Wrapper ── */
.form-wrapper {
    background: var(--color-white); border-radius: var(--border-radius-xl);
    padding: 48px 48px 56px; box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

/* ── Form Group ── */
.form-group { margin-bottom: 32px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label {
    display: flex; align-items: center; gap: 8px;
    font-size: var(--font-size-base); font-weight: 700; color: var(--color-text);
    margin-bottom: 4px;
}
.form-label .required {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: var(--font-size-xs); font-weight: 700;
    color: var(--color-white); background: var(--color-error);
    padding: 1px 8px; border-radius: 4px; letter-spacing: 0.05em;
}
.form-example {
    font-size: var(--font-size-xs); color: var(--color-text-muted);
    margin-bottom: 8px;
}

/* ── Inputs ── */
.form-input,
.form-select,
.form-textarea {
    width: 100%; padding: 14px 16px;
    font-size: var(--font-size-base); font-family: var(--font-family);
    color: var(--color-text); background: var(--color-cream);
    border: 2px solid transparent; border-radius: var(--border-radius-sm);
    transition: border-color 0.3s, background 0.3s;
    outline: none; -webkit-appearance: none; appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-primary); background: var(--color-white);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-text-muted); }
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    background-size: 20px; padding-right: 44px; cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 160px; line-height: 1.8; }

/* ── Error State ── */
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: var(--color-error); background: #fef2f2;
}
.form-error {
    display: flex; align-items: center; gap: 6px;
    margin-top: 8px; font-size: var(--font-size-sm); color: var(--color-error);
    min-height: 0;
}
/* テキストが空の時はアイコンも非表示 */
.form-error:empty { display: none; }
.form-error:not(:empty)::before {
    content: ''; display: inline-block; width: 16px; height: 16px; flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d94032'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Privacy Group ── */
.privacy-group { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.privacy-text {
    font-size: var(--font-size-sm); color: var(--color-text-light);
    margin-bottom: 16px; text-align: center;
}
.privacy-text a {
    color: var(--color-primary); font-weight: 500;
    text-decoration: underline; text-underline-offset: 3px;
}
.privacy-text a:hover { color: var(--color-primary-dark); }
.privacy-checkbox {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer; font-size: var(--font-size-base); color: var(--color-text);
    user-select: none;
}
.privacy-checkbox input { display: none; }
.checkbox-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border: 2px solid var(--color-border);
    border-radius: 4px; background: var(--color-white);
    transition: all 0.2s; flex-shrink: 0;
}
.privacy-checkbox input:checked + .checkbox-mark {
    background: var(--color-primary); border-color: var(--color-primary);
}
.privacy-checkbox input:checked + .checkbox-mark::after {
    content: ''; display: block; width: 6px; height: 10px;
    border: solid var(--color-white); border-width: 0 2px 2px 0;
    transform: rotate(45deg); margin-top: -2px;
}

/* ── Submit Button ── */
.form-submit { margin-top: 40px; text-align: center; }
.submit-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 48px; font-size: var(--font-size-base); font-weight: 700;
    font-family: var(--font-family); letter-spacing: 0.05em;
    color: var(--color-white); background: var(--color-primary);
    border: none; border-radius: 50px; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    position: relative; overflow: hidden;
}
.submit-btn::before {
    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.6s ease;
}
.submit-btn:hover::before { left: 100%; }
.submit-btn:hover { background: var(--color-primary-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(74,103,65,0.35); }
.submit-btn:disabled { background: var(--color-text-muted); cursor: not-allowed; transform: none; box-shadow: none; }
.submit-btn:disabled::before { display: none; }
.submit-btn svg { width: 20px; height: 20px; }

/* ── Confirm List ── */
.confirm-list { display: flex; flex-direction: column; gap: 0; }
.confirm-item {
    display: flex; padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}
.confirm-item:first-child { border-top: 1px solid var(--color-border); }
.confirm-item dt {
    flex: 0 0 180px; font-size: var(--font-size-sm); font-weight: 700;
    color: var(--color-text); padding-top: 2px;
}
.confirm-item dd {
    flex: 1; font-size: var(--font-size-base); color: var(--color-text-light); line-height: 1.8;
}
.confirm-item dd.message-content { white-space: pre-wrap; }

/* ── Confirm Buttons ── */
.confirm-form { margin-top: 40px; }
.confirm-buttons {
    display: flex; justify-content: center; align-items: center; gap: 20px;
}
.btn-back {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; font-size: var(--font-size-base); font-weight: 700;
    font-family: var(--font-family); letter-spacing: 0.05em;
    color: var(--color-text-light); background: var(--color-white);
    border: 2px solid var(--color-border); border-radius: 50px;
    cursor: pointer; transition: all 0.3s;
}
.btn-back:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-back svg { width: 18px; height: 18px; }
.btn-send {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 48px; font-size: var(--font-size-base); font-weight: 700;
    font-family: var(--font-family); letter-spacing: 0.05em;
    color: var(--color-white); background: var(--color-primary);
    border: none; border-radius: 50px; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    position: relative; overflow: hidden;
}
.btn-send::before {
    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.6s ease;
}
.btn-send:hover::before { left: 100%; }
.btn-send:hover { background: var(--color-primary-dark); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(74,103,65,0.35); }
.btn-send svg { width: 20px; height: 20px; }

/* ── Complete ── */
.complete-content { text-align: center; padding: 20px 0 40px; }
.complete-icon { margin-bottom: 28px; }
.check-circle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; border-radius: 50%;
    background: #fef0e8; color: #e86c2d;
}
.check-circle svg { width: 44px; height: 44px; }
.complete-title {
    font-size: var(--font-size-2xl); font-weight: 900; color: var(--color-text);
    margin-bottom: 24px; letter-spacing: 0.04em;
}
.complete-text {
    font-size: var(--font-size-base); color: var(--color-text-light);
    line-height: 2; margin-bottom: 24px;
}
.complete-note {
    font-size: var(--font-size-sm); color: var(--color-text-muted);
    line-height: 1.9; margin-bottom: 40px;
    padding: 20px 24px; background: var(--color-cream);
    border-radius: var(--border-radius-sm); display: inline-block; text-align: left;
}
.btn-home {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-size: var(--font-size-base); font-weight: 700;
    color: var(--color-primary); background: var(--color-white);
    border: 2px solid var(--color-primary); border-radius: 50px;
    transition: all 0.3s;
}
.btn-home:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }
.btn-home svg { width: 18px; height: 18px; }

/* ============================================
   Products List
   ============================================ */
.products-list-section { background: var(--color-cream); padding: var(--section-padding) 0; }
.products-count {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: 32px;
    text-align: center;
}
.products-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--color-text-light);
    font-size: var(--font-size-lg);
}

/* ============================================
   Product Detail
   ============================================ */
.product-detail-section {
    background: var(--color-white);
    padding: 80px 0 var(--section-padding);
}
.product-detail-header { margin-bottom: 32px; }
.product-detail-category {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-primary-pale);
    padding: 4px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.product-detail-title {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.4;
    letter-spacing: 0.04em;
}
.product-detail-mainvisual { margin-bottom: 64px; }
.product-detail-mainvisual img {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
}

/* Kodawari */
.kodawari-section { margin-bottom: 72px; }
.kodawari-section-title {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    padding: 16px 0;
}
.kodawari-section-title-en {
    display: block;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: rgba(74,103,65,0.045);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: -30px;
    pointer-events: none;
    user-select: none;
}
.kodawari-section-title span { position: relative; display: block; }
.kodawari-section-title small {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    margin-top: 8px;
}
.kodawari-item {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 56px;
}
.kodawari-item:last-child { margin-bottom: 0; }
.kodawari-item:nth-child(even) { flex-direction: row-reverse; }
.kodawari-item-image {
    flex: 0 0 50%;
    overflow: hidden;
    border-radius: var(--border-radius-xl);
}
.kodawari-item-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
    display: block;
}
.kodawari-item:hover .kodawari-item-image img { transform: scale(1.03); }
.kodawari-item-text { flex: 1; }
.kodawari-item-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 14px;
}
.kodawari-item-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.5;
}
.kodawari-item-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 2;
}

/* Product Detail Body */
.product-detail-body {
    margin-bottom: 56px;
    padding: 48px;
    background: var(--color-cream);
    border-radius: var(--border-radius-xl);
}
.product-detail-body h1,
.product-detail-body h2 {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary-pale);
}
.product-detail-body h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
    margin: 32px 0 12px;
    padding-left: 14px;
    border-left: 4px solid var(--color-primary);
}
.product-detail-body p {
    margin-bottom: 20px;
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 2;
}
.product-detail-body p:last-child { margin-bottom: 0; }
.product-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 24px 0;
}
.product-detail-body ul { list-style: disc; padding-left: 1.5em; margin-bottom: 20px; }
.product-detail-body ul li { margin-bottom: 6px; color: var(--color-text-light); line-height: 1.8; }
.product-detail-body ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 20px; }
.product-detail-body ol li { margin-bottom: 6px; color: var(--color-text-light); line-height: 1.8; }

/* EC Link */
.ec-link-area {
    text-align: center;
    margin-bottom: 56px;
    padding: 40px;
    background: var(--color-primary-pale);
    border-radius: var(--border-radius-xl);
}
.ec-link-area > p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: 20px;
}
.ec-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px 18px 40px;
    background: #e86c2d;
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
}
.ec-link-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.ec-link-btn:hover::before { left: 100%; }
.ec-link-btn:hover {
    background: #d45a1e;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232,108,45,0.35);
}
.ec-link-btn .btn-fancy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    flex-shrink: 0;
}
.ec-link-btn:hover .btn-fancy-icon {
    background: rgba(255,255,255,0.35);
    transform: translateX(4px);
}

/* Prev / Next Navigation */
.product-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}
.product-nav-item { flex: 1; }
.product-nav-item.nav-center { text-align: center; flex: 0 0 auto; }
.product-nav-item.nav-next { text-align: right; }
.product-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-light);
    transition: color 0.3s, gap 0.3s;
}
.product-nav-link:hover { color: var(--color-primary); gap: 12px; }
.nav-list-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-light);
    padding: 10px 24px;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    transition: all 0.3s;
}
.nav-list-link:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ============================================
   News List Page
   ============================================ */
.news-list-section { background: var(--color-cream); padding: var(--section-padding) 0; }
.news-list-count { font-size: var(--font-size-sm); color: var(--color-text-muted); margin-bottom: 32px; text-align: center; }
.news-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.news-empty { text-align: center; padding: 80px 0; color: var(--color-text-muted); }

/* News Item */
.news-item {
    display: flex; align-items: flex-start; gap: 24px;
    background: var(--color-white); border-radius: var(--border-radius);
    overflow: hidden; border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.news-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.news-item-image { flex-shrink: 0; width: 240px; aspect-ratio: 1200/630; overflow: hidden; }
.news-item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-item:hover .news-item-image img { transform: scale(1.05); }
.news-item-body { flex: 1; padding: 20px 24px 20px 0; display: flex; flex-direction: column; justify-content: center; }
.news-item-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.news-item-date { font-size: var(--font-size-sm); color: var(--color-text-muted); font-weight: 400; white-space: nowrap; }
.news-item-tag {
    display: inline-block; font-size: var(--font-size-xs); font-weight: 500;
    color: var(--color-primary); background: var(--color-primary-pale);
    padding: 2px 12px; border-radius: 50px; white-space: nowrap;
}
.news-item-title { font-size: var(--font-size-base); font-weight: 500; color: var(--color-text); line-height: 1.6; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.pagination-item {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    font-size: var(--font-size-sm); font-weight: 500; color: var(--color-text-light);
    background: var(--color-white); border: 1px solid var(--color-border);
    transition: all 0.3s;
}
.pagination-item:hover { border-color: var(--color-primary); color: var(--color-primary); }
.pagination-item.is-current {
    background: var(--color-primary); color: var(--color-white);
    border-color: var(--color-primary); pointer-events: none;
}
.pagination-item.pagination-arrow { font-size: 0; }
.pagination-item.pagination-arrow svg { width: 18px; height: 18px; }
.pagination-dots { font-size: var(--font-size-sm); color: var(--color-text-muted); padding: 0 4px; }

/* ============================================
   News Detail Page
   ============================================ */
.news-detail-section { background: var(--color-white); padding: 80px 0; }
.news-detail-inner { max-width: 800px; margin: 0 auto; }
.news-detail-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.news-detail-date { font-size: var(--font-size-sm); color: var(--color-text-muted); }
.news-detail-tag {
    display: inline-block; font-size: var(--font-size-xs); font-weight: 500;
    color: var(--color-primary); background: var(--color-primary-pale);
    padding: 3px 16px; border-radius: 50px;
}
.news-detail-title {
    font-size: var(--font-size-3xl); font-weight: 900; color: var(--color-text);
    line-height: 1.5; letter-spacing: 0.03em; margin-bottom: 32px;
}
.news-detail-header-image { margin-bottom: 48px; }
.news-detail-header-image img {
    width: 100%; aspect-ratio: 1200/630; object-fit: cover;
    border-radius: var(--border-radius-xl);
}

/* TinyMCE Body */
.news-detail-body { margin-bottom: 56px; }
.news-detail-body h2 {
    font-size: var(--font-size-2xl); font-weight: 900; color: var(--color-text);
    margin: 48px 0 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary-pale);
}
.news-detail-body h2:first-child { margin-top: -3px; }
.news-detail-body h3 {
    font-size: var(--font-size-xl); font-weight: 700; color: var(--color-text);
    margin: 36px 0 12px; padding-left: 14px;
    border-left: 4px solid var(--color-primary);
}
.news-detail-body p { margin-bottom: 20px; font-size: var(--font-size-base); color: var(--color-text-light); line-height: 2; }
.news-detail-body p:last-child { margin-bottom: 0; }
.news-detail-body img {
    border-radius: var(--border-radius); margin: 24px 0;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block;
}
.news-detail-body ul, .news-detail-body ol { margin: 16px 0 20px; padding-left: 1.5em; }
.news-detail-body ul { list-style: disc; }
.news-detail-body ol { list-style: decimal; }
.news-detail-body li { font-size: var(--font-size-base); color: var(--color-text-light); line-height: 2; margin-bottom: 4px; }
.news-detail-body blockquote {
    margin: 24px 0; padding: 20px 24px;
    background: var(--color-cream); border-left: 4px solid var(--color-primary-pale);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-style: italic; color: var(--color-text-light);
}
.news-detail-body iframe {
    display: block;
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16/9;
    height: auto !important;
    border: none;
    border-radius: var(--border-radius);
    margin: 24px 0;
}
.news-detail-body .video-wrap,
.news-detail-body .map-wrap {
    position: relative; width: 100%; margin: 24px 0;
    overflow: hidden; border-radius: var(--border-radius);
}
.news-detail-body .video-wrap { padding-bottom: 56.25%; }
.news-detail-body .map-wrap { padding-bottom: 50%; }
.news-detail-body .video-wrap iframe,
.news-detail-body .map-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; margin: 0; border-radius: 0; }
.news-detail-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: var(--font-size-base); }
.news-detail-body th, .news-detail-body td { padding: 12px 16px; border: 1px solid var(--color-border); text-align: left; color: var(--color-text-light); line-height: 1.7; }
.news-detail-body th { background: var(--color-primary-pale); color: var(--color-text); font-weight: 500; white-space: nowrap; }
.news-detail-body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}
.news-detail-body a:hover { opacity: 0.7; }
/* 外部リンクアイコン（target="_blank"のみ・画像リンクは除外） */
.news-detail-body a[target="_blank"]:not(:has(img))::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a6741'%3E%3Cpath d='M19 19H5V5h7V3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

/* News Navigation */
.news-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 48px; border-top: 1px solid var(--color-border);
}
.news-nav-item { flex: 1; }
.news-nav-item.nav-center { text-align: center; flex: 0 0 auto; }
.news-nav-item.nav-next { text-align: right; }
.news-nav-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: var(--font-size-sm); font-weight: 500; color: var(--color-text-light);
    transition: color 0.3s, gap 0.3s;
}
.news-nav-link:hover { color: var(--color-primary); gap: 12px; }
.news-nav-link svg { width: 18px; height: 18px; }

/* ============================================
   About Page
   ============================================ */

/* ── Greeting Section ─────────────────────── */
.greeting-section { background: var(--color-white); padding: var(--section-padding) 0; }
.greeting-content { display: flex; align-items: center; gap: 56px; }
.greeting-image { flex: 0 0 42%; position: relative; }
.greeting-image img {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    border-radius: var(--border-radius-xl);
}
.greeting-image-deco {
    position: absolute; bottom: -14px; right: -14px;
    width: 60%; height: 60%;
    border: 3px solid var(--color-primary-pale);
    border-radius: var(--border-radius-xl);
    z-index: -1;
}
.greeting-text { flex: 1; }
.greeting-text .section-header { text-align: left; margin-bottom: 0; }
.greeting-text .section-header-en { font-size: 60px; margin-bottom: -16px; }
.greeting-text .section-title { font-size: var(--font-size-2xl); text-align: left; }
.greeting-name {
    margin-top: 32px; display: flex; align-items: baseline; gap: 12px;
    justify-content: flex-end;
    font-size: var(--font-size-sm); color: var(--color-text-light);
}
.greeting-name strong { font-size: var(--font-size-xl); font-weight: 700; color: var(--color-text); }
.greeting-description { margin-top: 24px; font-size: var(--font-size-base); color: var(--color-text-light); line-height: 2.1; }

/* ── Gallery Section ──────────────────────── */
.gallery-section { background: var(--color-cream); padding: var(--section-padding) 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--border-radius-lg); cursor: pointer; }
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.6s cubic-bezier(0.23,1,0.32,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);
    color: var(--color-white); font-size: var(--font-size-sm); font-weight: 500;
    letter-spacing: 0.03em;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.gallery-item:hover .gallery-item-caption { transform: translateY(0); }
.gallery-item::after {
    content: ''; position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") center/18px no-repeat;
    border-radius: 50%; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 9999;
    justify-content: center; align-items: center; cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--border-radius); object-fit: contain; }
.lightbox-caption {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.85); font-size: var(--font-size-base);
    font-weight: 500; letter-spacing: 0.03em; text-align: center;
}
.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px; background: none; border: none;
    color: rgba(255,255,255,0.8); font-size: 32px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.3s;
}
.lightbox-close:hover { color: var(--color-white); }

/* ── Overview Section ─────────────────────── */
.overview-section { background: var(--color-white); padding: var(--section-padding) 0; }
.overview-table { max-width: 800px; margin: 0 auto; width: 100%; border-collapse: collapse; }
.overview-table th,
.overview-table td {
    padding: 20px 24px; font-size: var(--font-size-base);
    line-height: 1.8; border-bottom: 1px solid var(--color-border);
    vertical-align: top; text-align: left;
}
.overview-table th {
    width: 160px; font-weight: 700; color: var(--color-text);
    white-space: nowrap; background: transparent;
    position: relative; padding-left: 20px;
}
.overview-table th::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 20px;
    background: var(--color-primary); border-radius: 2px;
}
.overview-table td { color: var(--color-text-light); }

/* ── Access Section ───────────────────────── */
.access-section { background: var(--color-beige); padding: var(--section-padding) 0; }
.access-content { max-width: 800px; margin: 0 auto; }
.access-map {
    position: relative; width: 100%; padding-bottom: 50%;
    overflow: hidden; border-radius: var(--border-radius-xl); margin-bottom: 32px;
}
.access-map iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.access-info { font-size: var(--font-size-base); color: var(--color-text-light); line-height: 2; display: flex; flex-direction: column; gap: 20px; }
.access-info-item { display: flex; align-items: flex-start; gap: 14px; }
.access-info-icon {
    flex-shrink: 0; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-primary-pale); border-radius: 50%;
    color: var(--color-primary); margin-top: 2px;
}
.access-info-icon svg { width: 20px; height: 20px; }
.access-info-body { flex: 1; }
.access-info-title { font-weight: 700; color: var(--color-text); white-space: nowrap; margin-bottom: 2px; font-size: var(--font-size-base); }
.access-info-text { color: var(--color-text-light); }

/* ── History Section ──────────────────────── */
.history-section { background: var(--color-white); padding: var(--section-padding) 0; }
.history-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.history-timeline::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 120px;
    width: 2px; background: var(--color-primary-pale);
}
.history-item { display: flex; align-items: flex-start; gap: 0; margin-bottom: 48px; position: relative; }
.history-item:last-child { margin-bottom: 0; }
.history-year {
    flex: 0 0 120px; text-align: right; padding-right: 32px;
    font-size: var(--font-size-xl); font-weight: 900;
    color: var(--color-primary); line-height: 1.4; padding-top: 4px;
}
.history-item::after {
    content: ''; position: absolute; left: 120px; top: 10px;
    width: 14px; height: 14px;
    background: var(--color-white); border: 3px solid var(--color-primary);
    border-radius: 50%; transform: translateX(-50%); z-index: 1;
}
.history-body { flex: 1; padding-left: 32px; }
.history-body-title { font-size: var(--font-size-lg); font-weight: 700; color: var(--color-text); line-height: 1.5; margin-bottom: 10px; }
.history-body-text { font-size: var(--font-size-base); color: var(--color-text-light); line-height: 1.9; }
.history-body-image { margin-top: 16px; border-radius: var(--border-radius); overflow: hidden; max-width: 400px; }
.history-body-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ============================================
   FAQ Page（カテゴリナビ・グループ・CTA追加分）
   ============================================ */

/* カテゴリアンカーナビ */
.faq-category-nav {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
    margin-bottom: 56px;
}
.faq-category-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 24px; border-radius: 50px;
    font-size: var(--font-size-sm); font-weight: 500;
    background: var(--color-white); color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}
.faq-category-link:hover,
.faq-category-link.is-active {
    background: var(--color-primary); color: var(--color-white);
    border-color: var(--color-primary);
}
.faq-category-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* カテゴリグループ */
.faq-category-group { margin-bottom: 56px; }
.faq-category-group:last-child { margin-bottom: 0; }
.faq-category-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; background: #e86c2d;
    color: var(--color-white); border-radius: 50%; flex-shrink: 0;
}
.faq-category-icon svg { width: 20px; height: 20px; }
.faq-group-list { display: flex; flex-direction: column; gap: 14px; }

/* FAQページ内CTA */
.faq-cta {
    text-align: center; margin-top: 24px;
    padding: 36px; background: var(--color-white);
    border-radius: var(--border-radius-xl);
}
.faq-cta p {
    font-size: var(--font-size-base); color: var(--color-text-light);
    margin-bottom: 20px; line-height: 1.8;
}

/* ============================================
   Privacy Page
   ============================================ */
.privacy-section { background: var(--color-white); padding: var(--section-padding) 0; }
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 {
    font-size: var(--font-size-xl); font-weight: 900; color: var(--color-text);
    margin: 44px 0 16px; padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary-pale);
}
.privacy-content h2:first-child { margin-top: -3px; }
.privacy-content p {
    font-size: var(--font-size-base); color: var(--color-text-light);
    line-height: 2; margin-bottom: 16px;
}
.privacy-content p:last-child { margin-bottom: 0; }
.privacy-content ul {
    margin: 12px 0 20px; padding-left: 1.5em; list-style: disc;
}
.privacy-content li {
    font-size: var(--font-size-base); color: var(--color-text-light);
    line-height: 2; margin-bottom: 4px;
}
.privacy-content a {
    color: var(--color-primary); font-weight: 500;
    text-decoration: underline; text-underline-offset: 3px;
}
