/* ==========================================================================
   みかんの彩園 / Mikan no Saien — style.css
   水色を基調に、オレンジ・黄色・黄緑をアクセントとして使う配色。
   カラー・フォント・余白のトークンは :root にまとめてあります。
   保守時はまずここを調整してください。
   ========================================================================== */

:root {
  /* --- color: 水色ベース + 大人っぽいダーク紺の文字 --- */
  --bg: #eaf7fa;
  --bg-alt: #d2edf4;
  --ink: #17232d;
  --ink-soft: #55666f;
  --line: rgba(23, 35, 45, 0.12);

  /* 水色（メインブランドカラー） */
  --sky: #00b2e3;
  --sky-deep: #026e90;
  --sky-pale: #8fe8fb;

  /* アクセント：オレンジ・黄色・黄緑 */
  --orange: #e8792b;
  --orange-deep: #c25e1a;
  --yellow: #eab730;
  --yellow-deep: #b8860e;
  --olive: #96aa3e;
  --olive-deep: #71842a;

  /* パステル系（サブページの見出し帯用） */
  --sky-tint: #d3f3fa;
  --orange-tint: #fbdcb9;
  --olive-tint: #e3edc2;
  --yellow-tint: #faedbe;

  /* --- font --- */
  --font-serif: "Shippori Mincho", serif;
  --font-sans: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Cormorant Garamond", serif;

  /* --- layout --- */
  --maxw: 1180px;
  --gap: clamp(1.5rem, 4vw, 4rem);
}

/* --------------------------------- reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 600; }
.pc-only { display: inline; }
@media (max-width: 700px) { .pc-only { display: none; } }

/* -------------------------------- helpers -------------------------------- */
.eyebrow {
  font-family: var(--font-en);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  color: var(--sky-deep);
  margin: 0 0 0.8rem;
}
.eyebrow-light { color: #d8f0f7; }

.body-text {
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.05rem);
  max-width: 42em;
}
.body-text-light { color: rgba(255,255,255,0.88); }

.section { padding: clamp(4rem, 9vw, 8rem) 1.5rem; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-inner.narrow { max-width: 720px; }
.section-inner.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-inner.center .pill-links { justify-content: center; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
  margin-bottom: 1.4rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
  transition: gap 0.3s ease, opacity 0.3s ease;
}
.link-arrow:hover { gap: 0.9rem; opacity: 0.75; }

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: 500;
  margin-top: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -8px rgba(232,121,43,0.55); }
.btn-light { background: #fff; color: var(--sky-deep); }

.pill-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.pill {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}
.pill-sky:hover { background: var(--sky-deep); color: #fff; border-color: var(--sky-deep); }
.pill-olive:hover { background: var(--olive-deep); color: #fff; border-color: var(--olive-deep); }
.pill-yellow:hover { background: var(--yellow-deep); color: #fff; border-color: var(--yellow-deep); }
.pill-orange:hover { background: var(--orange-deep); color: #fff; border-color: var(--orange-deep); }

/* 事業情報セクション（トップページ）：濃紺ベース + 水色・オレンジのグロー */
.section.company {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.section.company::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 20%, rgba(0,178,227,0.5), transparent 55%),
    radial-gradient(ellipse at 88% 85%, rgba(232,121,43,0.42), transparent 55%);
}
.section.company .section-inner { position: relative; z-index: 1; }
.section.company .eyebrow { color: var(--yellow); display: inline-flex; align-items: center; gap: 0.7em; }
.section.company .eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.8; }
.section.company .body-text { color: rgba(255,255,255,0.8); }
.section.company .pill { border-color: rgba(255,255,255,0.35); }

/* ---------------------------- scroll reveal ------------------------------ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------- header --------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 1.5rem;
  color: #fff;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, color 0.4s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), transparent);
  z-index: -1;
  transition: opacity 0.4s ease;
}
.site-header.scrolled {
  background: rgba(234, 247, 250, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.7rem 1.5rem;
  color: var(--ink);
}
.site-header.scrolled::before { opacity: 0; }
.site-header .brand-en { color: rgba(255,255,255,0.75); }
.site-header.scrolled .brand-en { color: var(--ink-soft); }
.site-header .nav-desktop a.active { color: var(--yellow); }
.site-header.scrolled .nav-desktop a.active { color: var(--sky-deep); }
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-ja { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.02em; }
.brand-en { font-family: var(--font-en); font-style: italic; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--ink-soft); }

.nav-desktop { display: flex; gap: clamp(1rem, 2vw, 2.2rem); font-size: 1rem; font-weight: 500; }
.nav-desktop a { position: relative; padding: 0.2rem 0; }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.active { color: var(--sky-deep); font-weight: 700; }
.nav-desktop a.active::after { transform: scaleX(1); }
.footer-nav a.active { color: var(--orange); }

.header-cta {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease;
}
.header-cta:hover { background: var(--sky-deep); transform: translateY(-2px); }
@media (max-width: 860px) { .header-cta { display: none; } }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
  color: inherit;
}
.menu-toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--sky-deep);
  color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2.2rem;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile a { font-family: var(--font-serif); font-size: 1.6rem; }
.nav-mobile-foot { position: absolute; bottom: 2rem; font-family: var(--font-en); letter-spacing: 0.08em; color: rgba(255,255,255,0.7); }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
}

/* ---------------------------------- hero ---------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  background: var(--ink);
}
.hero-blob {
  position: absolute;
  width: min(70vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--sky), var(--sky), var(--orange), var(--yellow), var(--olive), var(--sky));
  filter: blur(70px);
  opacity: 0.6;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: blob-move 16s ease-in-out infinite;
}
@keyframes blob-move {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50% { transform: translate(-46%, -54%) scale(1.15) rotate(12deg); }
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero .eyebrow { color: var(--yellow); display: inline-flex; align-items: center; gap: 0.7em; }
.hero .eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.8; }
.hero-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw + 1rem, 5rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #fff;
}
.hero-lead {
  margin-top: 1.6rem;
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.95rem, 0.5vw + 0.8rem, 1.1rem);
}
.hero-scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero-scroll span {
  width: 1px; height: 40px;
  background: linear-gradient(rgba(255,255,255,0.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
.hero-scroll p {
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-blob, .hero-scroll span, .media-frame, .blog-thumb, .shop-banner-media { animation: none !important; }
}

/* --------------------------------- feature --------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: var(--gap);
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.feature-reverse { direction: rtl; }
.feature-reverse > * { direction: ltr; }

/* トップページ：事業ごとの背景（濃紺ベース + 位置をずらしたグロー。写真パネルの色が主役） */
.feature-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.feature-band::before {
  content: "";
  position: absolute;
  width: 48vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}
.feature-band > .feature { position: relative; z-index: 1; }
.feature-band-sky::before { background: var(--sky); top: -14%; left: -8%; }
.feature-band-orange::before { background: var(--orange); bottom: -18%; right: -8%; }
.feature-band-yellow::before { background: var(--yellow); top: -18%; right: -6%; }
.feature-band-olive::before { background: var(--olive); bottom: -14%; left: -6%; }
.feature-band .eyebrow { color: var(--yellow); display: inline-flex; align-items: center; gap: 0.7em; }
.feature-band .eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.8; }
.feature-band .feature-title { color: #fff; }
.feature-band .feature-sub { color: rgba(255,255,255,0.92); }
.feature-band .body-text { color: rgba(255,255,255,0.8); }
.feature-band .link-arrow { color: #fff; }

/* 写真の動き：外側=スクロール連動パララックス／中間=マウス追従チルト／内側=常時ゆっくりズーム */
.feature-media-wrap { will-change: transform; }
.feature-media {
  overflow: hidden;
  border-radius: 6px;
  perspective: 1200px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 20px 45px -20px rgba(23,35,45,0.35);
}
.media-frame {
  --kb-max: 1.1;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  animation: kenburns 16s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(var(--kb-max)); }
}
.feature-media:hover .media-frame { --kb-max: 1.24; animation-duration: 6s; }

.feature-title { font-family: var(--font-serif); font-size: clamp(1.9rem, 3vw + 1rem, 2.8rem); margin-bottom: 0.6rem; }
.feature-title-light { color: #fff; }
.feature-sub { font-weight: 500; margin-bottom: 1.2rem; color: var(--ink); }

@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature-reverse { direction: ltr; }
  .feature-media-wrap { order: -1; }
}

/* ------------------------------- colorlinks -------------------------------- */
.colorlinks { display: grid; grid-template-columns: repeat(3, 1fr); }
.colorlinks.colorlinks-single { grid-template-columns: 1fr; }
.colorlink {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
  color: #fff;
  transition: filter 0.4s ease, transform 0.4s ease;
}
.colorlink:hover { filter: brightness(1.1); transform: translateY(-4px); }
.colorlink-sky { background: var(--sky-deep); }
.colorlink-orange { background: var(--orange); }
.colorlink-yellow { background: var(--yellow-deep); }
.colorlink-en { font-family: var(--font-en); font-style: italic; letter-spacing: 0.2em; font-size: 0.85rem; opacity: 0.85; }
.colorlink-ja { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.5vw + 0.6rem, 1.5rem); }

@media (max-width: 700px) {
  .colorlinks { grid-template-columns: 1fr; }
}

/* ---------------------------------- news ----------------------------------- */
.news-list { margin-top: 2rem; border-top: 1px solid var(--line); }
.news-list li {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.news-date { font-family: var(--font-en); color: var(--ink-soft); font-size: 0.9rem; min-width: 6.5em; }
.news-tag {
  font-size: 0.75rem;
  border: 1px solid var(--olive-deep);
  color: var(--olive-deep);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
}
.news-title { font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.news-list li:hover .news-title { border-color: var(--ink); }

/* トップページ：お知らせセクション（水色のフラットカラー + アクセント罫線） */
.section.news {
  background: var(--sky-deep);
  color: #fff;
}
.section.news .section-inner { border-left: 3px solid var(--yellow); padding-left: clamp(1.2rem, 3vw, 2.4rem); }
.section.news .eyebrow { color: #fff; display: inline-flex; align-items: center; gap: 0.7em; }
.section.news .eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.8; }
.section.news .news-list,
.section.news .news-list li { border-color: rgba(255,255,255,0.35); }
.section.news .news-date { color: rgba(255,255,255,0.8); }
.section.news .news-tag { border-color: rgba(255,255,255,0.7); color: #fff; }
.section.news .news-list li:hover .news-title { border-color: #fff; }
.section.news .link-arrow { color: #fff; }

/* ------------------------------- shop banner -------------------------------- */
.shop-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  color: #fff;
}
.shop-banner-media {
  background: linear-gradient(135deg, var(--orange-deep), var(--orange) 55%, var(--yellow));
  background-size: 160% 160%;
  animation: gradient-drift 14s ease-in-out infinite alternate;
}
@keyframes gradient-drift {
  from { background-position: 0% 0%; }
  to { background-position: 100% 100%; }
}
.shop-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--ink);
}
@media (max-width: 860px) {
  .shop-banner { grid-template-columns: 1fr; }
  .shop-banner-media { min-height: 40vw; }
}

/* ---------------------------------- blog ------------------------------------ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.4rem;
}
.blog-card { display: block; }
.blog-thumb {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  transform: scale(1);
  animation: kenburns-soft 12s ease-in-out infinite alternate;
  transition: transform 0.5s ease;
}
@keyframes kenburns-soft {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.blog-card:hover .blog-thumb { transform: scale(1.14); animation-play-state: paused; }
.blog-thumb-1 { background: linear-gradient(140deg, var(--olive-deep), var(--olive)); }
.blog-thumb-2 { background: linear-gradient(140deg, var(--sky-deep), var(--sky)); }
.blog-thumb-3 { background: linear-gradient(140deg, var(--orange-deep), var(--orange)); }
.blog-cat { font-size: 0.75rem; color: var(--sky-deep); font-weight: 500; }
.blog-card h3 { font-family: var(--font-serif); font-size: 1.15rem; margin: 0.5rem 0 0.4rem; font-weight: 600; }
.blog-date { font-family: var(--font-en); font-size: 0.85rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* トップページ：みかんな記録セクション（黄緑のフラットカラー + アクセント罫線） */
.section.blog {
  background: var(--olive-deep);
  color: #fff;
}
.section.blog .section-inner { border-left: 3px solid var(--yellow); padding-left: clamp(1.2rem, 3vw, 2.4rem); }
.section.blog .eyebrow { color: var(--yellow); display: inline-flex; align-items: center; gap: 0.7em; }
.section.blog .eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.8; }
.section.blog .body-text { color: rgba(255,255,255,0.85); }
.section.blog .blog-cat { color: #fff; opacity: 0.85; }
.section.blog .blog-card h3 { color: #fff; }
.section.blog .blog-date { color: rgba(255,255,255,0.75); }
.section.blog .link-arrow { color: #fff; }

/* ---------------------------- ステータス告知（準備中・研修中など） ---------------------------- */
.status-notice {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.status-notice::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,178,227,0.4), transparent 55%),
    radial-gradient(ellipse at 70% 75%, rgba(232,121,43,0.35), transparent 55%);
}
.status-notice .subsection-inner { position: relative; z-index: 1; }
.status-notice .eyebrow {
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
}
.status-notice .eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.8; }
.status-notice .section-title { color: #fff; }
.status-notice .body-text { color: rgba(255,255,255,0.82); margin-left: auto; margin-right: auto; }

/* --------------------------------- contact ----------------------------------- */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(0,178,227,0.45), transparent 55%),
    radial-gradient(ellipse at 75% 75%, rgba(232,121,43,0.4), transparent 55%);
}
.contact .section-inner { position: relative; z-index: 1; }
.contact .eyebrow { color: var(--yellow); display: inline-flex; align-items: center; gap: 0.7em; }
.contact .eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: 0.8; }
.contact .body-text { margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.82); }

/* --------------------------------- footer ------------------------------------ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 3.5rem 1.5rem 1.5rem; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-ja { color: #fff; }
.footer-brand .brand-en { color: rgba(255,255,255,0.6); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--orange); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.4rem;
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   サブページ共通パーツ（事業情報・教育・農業・お知らせ・ショップ・ブログ）
   ========================================================================== */

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.breadcrumb a:hover { color: var(--sky-deep); }

.page-hero {
  padding: clamp(7.5rem, 14vw, 10.5rem) 1.5rem 4rem;
  text-align: center;
}
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-hero-sky { background: linear-gradient(180deg, var(--sky-tint), var(--bg) 85%); }
.page-hero-olive { background: linear-gradient(180deg, var(--olive-tint), var(--bg) 85%); }
.page-hero-orange { background: linear-gradient(180deg, var(--orange-tint), var(--bg) 85%); }
.page-hero-yellow { background: linear-gradient(180deg, var(--yellow-tint), var(--bg) 85%); }
.page-hero-neutral { background: var(--bg-alt); }
.page-hero-luxury {
  background: radial-gradient(ellipse at 50% 0%, rgba(232,121,43,0.28), transparent 60%), var(--ink);
}
.page-hero-luxury .breadcrumb,
.page-hero-luxury .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero-luxury .breadcrumb a:hover { color: var(--yellow); }
.page-hero-luxury .eyebrow { color: var(--yellow); }
.page-hero-luxury .page-title { color: #fff; }
.page-hero-luxury .page-lead { color: rgba(255,255,255,0.72); }
.page-hero-luxury .page-hero-inner::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 2rem auto 0;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  margin: 0.5rem 0 1rem;
}
.page-lead {
  color: var(--ink-soft);
  max-width: 34em;
  margin: 0 auto;
}

/* 情報カードグリッド（指導内容・取り組み・事業一覧など） */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -20px rgba(23,35,45,0.3); }
.info-num {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sky-deep);
  margin-bottom: 0.5rem;
}
.info-card h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.6rem; }
.info-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.info-price {
  margin-top: 1rem !important;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.15rem !important;
  color: var(--orange-deep) !important;
}
.info-price span { font-family: var(--font-jp); font-weight: 400; font-size: 0.8rem; color: var(--ink-soft); }
.body-text.center { text-align: center; margin-left: auto; margin-right: auto; }

/* 料金表 */
.price-table-wrap {
  overflow-x: auto;
  margin-top: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 820px;
  background: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
}
.price-table th, .price-table td {
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: middle;
}
.price-table thead th {
  background: var(--sky-deep);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  border-color: var(--sky-deep);
}
.price-table tbody tr:hover td { background: #fbf8f2; }
.price-table td.course {
  font-weight: 700;
  white-space: nowrap;
  background: #eef6f9;
}
.price-table tbody tr:hover td.course { background: #e3eff4; }
.price-table td.center { text-align: center; white-space: nowrap; }
.price-table td.fee { font-weight: 700; white-space: nowrap; color: var(--ink); }
.price-table .fee-list {
  margin: 0.25rem 0 0;
  padding-left: 1.1em;
  font-size: 0.82rem;
  color: var(--ink);
}
.price-table .fee-list li { margin: 0.06rem 0; }
.price-table .note-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.price-note { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-soft); }

/* AI活用：2×2 ポジショニング */
.matrix {
  display: grid;
  grid-template-columns: minmax(2.4rem, auto) 1fr 1fr;
  gap: 1rem;
  margin-top: 2.2rem;
  align-items: stretch;
}
.matrix-corner { border: none; }
.matrix-col-label { text-align: center; align-self: end; padding-bottom: 0.4rem; }
.matrix-col-label .ml-title { display: block; font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.matrix-col-label .ml-sub { display: block; font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.25rem; }
.matrix-row-label {
  display: flex; align-items: center; justify-content: center;
  writing-mode: vertical-rl; text-orientation: upright;
  font-weight: 700; letter-spacing: 0.12em;
  color: var(--orange-deep);
  font-size: 1.05rem;
}
.matrix-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.7rem;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.matrix-cell:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -20px rgba(23,35,45,0.3); }
.matrix-cell .info-num { margin-bottom: 0.4rem; }
.matrix-cell h3 { font-family: var(--font-serif); font-size: 1.3rem; margin: 0 0 0.5rem; }
.matrix-cell > p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
.matrix-cell .info-price { margin-top: auto !important; padding-top: 1rem; }
.matrix-tag { display: none; }
@media (max-width: 760px) {
  .matrix { grid-template-columns: 1fr; }
  .matrix-corner, .matrix-col-label, .matrix-row-label { display: none; }
  .matrix-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem; font-weight: 700;
    color: var(--orange-deep);
    background: #fdf1e7;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
  }
}

/* 事業一覧カード（事業情報ページ） */
.business-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.4rem;
}
.business-card {
  display: block;
  padding: 2.2rem;
  border-radius: 10px;
  color: #fff;
  transition: transform 0.4s ease;
}
.business-card:hover { transform: translateY(-6px); }
.business-card-sky { background: linear-gradient(135deg, var(--sky-deep), var(--sky)); }
.business-card-olive { background: linear-gradient(135deg, var(--olive-deep), var(--olive)); }
.business-card-yellow { background: linear-gradient(135deg, var(--yellow-deep), var(--yellow)); }
.business-card-orange { background: linear-gradient(135deg, var(--orange-deep), var(--orange)); }
.business-card .eyebrow { color: rgba(255,255,255,0.75); }
.business-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.6rem; }
.business-card p { color: rgba(255,255,255,0.88); font-size: 0.92rem; }
@media (max-width: 700px) { .business-cards { grid-template-columns: 1fr; } }

/* 代表挨拶 */
.founder-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.4rem;
  align-items: start;
  margin-top: 2.2rem;
}
.founder-photo {
  position: sticky;
  top: 6.5rem;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  box-shadow: 0 20px 45px -20px rgba(23,35,45,0.35);
}
.founder-message .body-text { margin-bottom: 1.2rem; }
.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--orange-deep);
  margin-bottom: 1.4rem;
}
.founder-message h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
.founder-name { font-family: var(--font-serif); font-weight: 600; }
@media (max-width: 700px) {
  .founder-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .founder-photo { width: 220px; position: static; }
}

/* 事業概要テーブル */
.profile-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.profile-table th, .profile-table td {
  text-align: left;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.profile-table th { width: 9em; color: var(--ink-soft); font-weight: 500; font-size: 0.92rem; }

/* ショップ商品グリッド */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 2.4rem;
}
.shop-card-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.shop-card-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: kenburns-soft 12s ease-in-out infinite alternate;
  transition: transform 0.5s ease;
}
.shop-card:hover .shop-card-thumb img { transform: scale(1.12); animation-play-state: paused; }
.shop-thumb-1 { background: linear-gradient(140deg, var(--orange-deep), var(--orange)); }
.shop-thumb-2 { background: linear-gradient(140deg, var(--yellow-deep), var(--yellow)); }
.shop-thumb-3 { background: linear-gradient(140deg, var(--sky-deep), var(--sky)); }
.shop-card h3 { font-family: var(--font-serif); font-size: 1.1rem; margin: 0 0 0.4rem; }
.shop-price { font-family: var(--font-en); font-weight: 600; color: var(--orange-deep); }
@media (max-width: 700px) { .shop-grid { grid-template-columns: 1fr; } }

/* 商品準備中（COMING SOON）表示 */
.coming-soon-badge {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: rgba(23,35,45,0.55);
  backdrop-filter: blur(1px);
  text-align: center;
}
.coming-soon-badge .cs-en {
  font-family: var(--font-en);
  font-style: italic;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  color: var(--yellow);
}
.coming-soon-badge .cs-ja { font-size: 0.78rem; letter-spacing: 0.05em; color: #fff; }
.shop-card.is-coming-soon .shop-card-thumb { filter: grayscale(0.25) brightness(0.9); }
.shop-card.is-coming-soon h3,
.shop-card.is-coming-soon .shop-price { opacity: 0.5; }

.btn-disabled {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1.6rem;
  cursor: default;
}

/* 商品詳細ページ */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}
.product-gallery-main {
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.product-gallery-sub .product-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}
.product-gallery-sub .product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-info .shop-price { font-size: 1.4rem; display: block; margin: 0.6rem 0 1.6rem; }
.product-status {
  margin-top: 1.8rem;
  padding: 1.2rem 1.4rem;
  border-radius: 8px;
  background: var(--bg-alt);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
@media (max-width: 800px) {
  .product-detail { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* サブページ内の見出し・本文余白 */
.subsection { padding: clamp(3rem, 7vw, 5.5rem) 1.5rem; }
.subsection-inner { max-width: var(--maxw); margin: 0 auto; }
.subsection-inner.narrow { max-width: 760px; }

