/* =========================================================
   Common CSS — りんごの木オーナー
   TOPデザインの言語を踏襲（緑基調 / テラコッタアクセント /
   Zen Kaku Gothic New 見出し / 和+欧の組み合わせ）
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,300;1,400&family=Montserrat:wght@400;500;700&display=swap");

:root {
  --green: #4a6741;
  --caution: #a40000;
  --green-dark: #3d5636;
  --terracotta: #b0411e;
  --gold: #d89a2a;
  --ink: #2e2a24;
  --muted: #5c5448;
  --muted-2: #8b8270;
  --cream: #faf6ec;
  --cream-2: #f3eee1;
  --paper: #fffdf8;
  --border: #e5dec9;
  --border-soft: #ece6d6;
  --white: #ffffff;
  --black: #000000;
  --footer-text: #e0daca;
  --shadow-card: 0 4px 16px rgba(46, 42, 36, 0.06);
  --shadow-soft: 0 2px 10px rgba(46, 42, 36, 0.05);
  --maxw: 1200px;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: var(--ink);
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- ヘッダー ---------- */
/* アンカー移動時に固定ナビ分の余白を確保し、見出しがナビに隠れないようにする */
html {
  scroll-padding-top: 64px;
}
.site-head {
  background: var(--white);
  /* PC: スクロールでヘッダー上段（.head-top）が隠れ、ナビ（.site-nav）だけが
     画面上部に固定される。上段の高さ分だけ負の top を指定して sticky させると、
     上段だけが画面外へ抜け、ナビが top:0 で止まる（レイアウトのガタつきなし）。
     --head-top-h は nav.js が .head-top の実測値を流し込む（未設定時は 66px）。 */
  position: sticky;
  top: calc(-1 * var(--head-top-h, 66px));
  z-index: 30;
}
.head-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 32px;
}
.head-back {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  white-space: nowrap;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.11em;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  transition: border-color 0.2s;
}
.head-back:hover {
  border-color: var(--green);
}
.head-title {
  justify-self: center;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.144em;
  color: var(--ink);
  line-height: 1.2;
}
.head-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(74, 103, 65, 0.25);
  transition:
    background 0.2s,
    transform 0.2s;
}
.head-cta img {
  width: 30px;
  height: auto;
}
.head-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* スクロールすると右下に追従する申込みCTA */
.head-cta.is-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  top: auto;
  left: auto;
  font-size: 16px;
  z-index: 35;
  /* 極細の白フチ＋ごく薄い白グロー（普段は目立たず、同色の緑背景でも輪郭が溶けない） */
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 5px 1px rgba(255, 255, 255, 0.25),
    0 8px 20px rgba(74, 103, 65, 0.35);
  animation: head-cta-float-in 0.3s ease;
  transition:
    background 0.2s,
    opacity 0.25s ease,
    visibility 0.25s ease;
}
/* フッター領域に入ったら（スマホ）追従CTAを非表示にする */
.head-cta.is-floating.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes head-cta-float-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-nav {
  background: var(--white);
}
/* スクロールで固定表示中はナビ下に薄い影を出し、本文と分離する */
.site-head.is-stuck .site-nav {
  box-shadow: 0 4px 14px rgba(46, 42, 36, 0.08);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 24px 2px;
}
.nav-inner a {
  position: relative;
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  transition: color 0.2s;
}
.nav-inner a:hover {
  color: var(--green);
}
.nav-inner a.is-active {
  color: var(--green);
}
.nav-inner a.is-active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ---------- ハンバーガー & モバイルドロワー ---------- */
.hamburger {
  display: none;
  justify-self: end;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
}
.hamburger img {
  width: 30px;
  height: auto;
}

.hamburger .ham-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.065em;
  color: #005828;
  text-shadow: 0 0 4.5px rgba(255, 255, 255, 0.85);
  display: block;
  line-height: 1;
}
.hamburger.is-open {
  visibility: hidden;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 42, 36, 0.45);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  background: var(--green);
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0 32px 40px;
  color: #fff;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}

/* ドロワーヘッダー */
.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 18px;
  margin-bottom: 0;
  border: none;
}
.drawer-head .dh-site-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.041em;
  color: #fff;
  line-height: 2;
  margin-top: 12px;
}
.drawer-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  width: 48px;
}
.drawer-close .close-icon {
  width: 48px;
  height: 35px;
  object-fit: contain;
  display: block;
}
.drawer-close svg {
  display: block;
}
.close-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.065em;
  line-height: 1;
}

/* ドロワーナビ */
.drawer-nav {
  display: flex;
  flex-direction: column;
  width: calc(100% + 4px);
  margin-left: -2px;
  flex: 1;
}
.mobile-drawer .m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 0.5px dashed var(--border);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.004em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.mobile-drawer .m-link.is-active {
  color: #fff;
}
.mobile-drawer .m-en {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  letter-spacing: 0.006em;
}

/* ドロワーロゴ */
.drawer-logos {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 36px;
}
.drawer-logo-box {
  display: block; /* <a> でも固定サイズを保つ */
  width: 159px;
  height: 76px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}
.drawer-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}
.drawer-logo-box.photo img {
  object-fit: cover;
  background: none;
}

/* ドロワーSNS */
.drawer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.drawer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.drawer-social a:hover {
  opacity: 1;
}
.drawer-social svg {
  fill: #fff;
  display: block;
}

/* ドロワーCTAピル */
.m-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--green);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 13.6px;
  letter-spacing: 0.039em;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 28px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.m-cta-pill:hover {
  opacity: 0.9;
}
.m-cta-pill-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- ページ見出し ---------- */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
  padding: 72px 24px 46px;
}
.page-hero .eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.page-hero h1 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.page-hero .lead {
  margin: 16px auto 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ---------- パンくず ---------- */
.crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  padding: 16px 0;
}
.crumbs a {
  color: var(--green);
  transition: opacity 0.2s;
}
.crumbs a:hover {
  opacity: 0.7;
}
.crumbs .sep {
  color: var(--border);
}
.crumbs .cur {
  color: var(--muted);
}

/* ---------- 中央見出し（アイコン+和+欧） ---------- */
.center-head {
  text-align: center;
  margin-bottom: 34px;
}
.center-head .ico {
  font-size: 24px;
}
.center-head h2 {
  margin: 8px 0 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.center-head .en {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--terracotta);
}

/* ---------- 番号付きセクション見出し ---------- */
.sec-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  border-left: 3px solid var(--green);
  padding-left: 14px;
  margin-bottom: 24px;
  overflow: visible;
}
.sec-head::before {
  content: attr(data-num);
  position: absolute;
  left: 28px;
  top: 34%;
  transform: translateY(-50%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-size: 73px;
  line-height: 1;
  color: rgba(74, 103, 65, 0.08);
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.sec-head .num,
.sec-head .tt {
  position: relative;
  z-index: 1;
}
.sec-head .num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
  color: var(--terracotta);
}
.sec-head .tt {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sec-head .tt .ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.126em;
  color: var(--ink);
}
.sec-head .tt .en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted-2);
}

/* ---------- カテゴリバッジ ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 3px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  white-space: nowrap;
}
.badge.news {
  background: var(--green);
  color: #fff;
}
.badge.event {
  background: var(--terracotta);
  color: #fff;
}
.badge.sale {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- ボタン ---------- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--green);
  color: var(--green);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 13px 40px;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline .arrow {
  font-size: 14px;
  line-height: 1;
}

/* ---------- フッター ---------- */
.site-foot {
  margin-top: 48px;
  background: var(--green);
  color: #fff;
  padding: 52px 24px 22px;
}
.foot-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot-brand {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.foot-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  padding-top: 6px;
}
.foot-links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.foot-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.foot-org {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.foot-org .logo-box {
  width: 172px;
  height: 84px; /* .foot-veg と縦横を揃える */
  background: #fff;
  border-radius: 4px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot-org .logo-box img {
  width: 100%;
  height: auto;
}
/* どちらもリンクなのでホバーで軽くフィードバック */
.foot-org .logo-box,
.foot-org .foot-veg {
  transition: opacity 0.2s;
}
.foot-org .logo-box:hover,
.foot-org .foot-veg:hover {
  opacity: 0.85;
}
.foot-org .photo {
  width: 172px;
  height: 84px;
  border-radius: 4px;
  object-fit: cover;
}
.foot-bar {
  max-width: 960px;
  margin: 40px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.foot-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: var(--white);
  letter-spacing: 0.06em;
  font-weight: 400;
}
.foot-social {
  display: flex;
  gap: 12px;
}
.foot-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.foot-social a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
}
.foot-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
/* フッター: ベジフルキッチン バナー */
.foot-org .foot-veg {
  position: relative;
  width: 172px;
  height: 84px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.foot-org .foot-veg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.foot-org .foot-veg-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 103, 65, 0.85);
  color: #fff;
  font-size: 9.5px;
  letter-spacing: 0.04em;
  padding: 5px 6px;
  text-align: center;
}
/* フッター: COOL JAPAN VIDEOS */
.foot-social .foot-cj {
  border: initial !important;
}
.foot-social .foot-cj:hover {
  background: none;
}
/* ---------- レスポンシブ (768px) ---------- */
@media (max-width: 768px) {
  :root {
    --maxw: 100%;
  }

  /* ===== ベース ===== */
  body {
    font-size: 13px;
  }
  img {
    max-width: 100%;
    height: auto;
  }

  /* ===== ヘッダー ===== */
  .head-top {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px;
    min-height: 54px;
  }
  .head-back {
    display: none;
  }
  .head-cta {
    display: none;
  }
  /* 追従ボタンはモバイルでも表示（少しコンパクトに）。左右中央に配置 */
  .head-cta.is-floating {
    display: inline-flex;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 8px;
    padding: 12px 40px;
    font-size: 14px;
    animation-name: head-cta-float-in-center;
    justify-content: center;
  }
  /* 中央寄せ(translateX -50%)を保ったままホバー時に少し浮かせる */
  .head-cta.is-floating:hover {
    transform: translate(-50%, -1px);
  }
  /* フェードイン中も中央寄せを維持する（横ズレ防止） */
  @keyframes head-cta-float-in-center {
    from {
      opacity: 0;
      transform: translate(-50%, 14px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
  .head-title {
    justify-self: start;
    font-size: 18px;
    letter-spacing: 0.08em;
  }
  .hamburger {
    display: flex;
  }
  .mobile-drawer {
    padding: 0 32px 19px;
  }
  .drawer-head {
    padding: 16px 0 8px;
  }
  .drawer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
  }
  .drawer-logos {
    margin-top: 16px;
  }
  .m-cta-pill {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 32px;
  }
  .m-cta-pill img {
    width: 30px;
    height: auto;
  } /* スマホではヘッダー全体（.site-head）を常に上部に固定する */
  .site-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
  }
  /* 固定ヘッダーの高さ分だけ本文を下げる（実測値は nav.js が --site-head-h に設定） */
  body {
    padding-top: var(--site-head-h, 64px);
  }
  /* アンカー移動時は固定ヘッダーの高さ分だけ余白を確保 */
  html {
    scroll-padding-top: var(--site-head-h, 64px);
  }
  .site-nav {
    display: none;
  }
  .badge {
    font-size: 12px;
  }
  .btn-outline {
    font-size: 14px;
    padding: 10px 40px;
  }
  /* ===== ページ見出し ===== */
  .sec-head::before {
    top: 12px;
  }
  .page-hero {
    padding: 32px 16px 28px;
  }
  .page-hero h1 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
  .page-hero .eyebrow {
    letter-spacing: 0.28em;
    font-size: 11px;
  }
  .page-hero .lead {
    font-size: 12px;
  }

  /* ===== パンくず ===== */
  .crumbs {
    font-size: 13px;
    padding: 10px 0 8px;
  }

  /* ===== セクション見出し ===== */
  .sec-head {
    gap: 12px;
    padding-left: 10px;
    margin-bottom: 18px;
  }
  .sec-head .num {
    font-size: 32px;
  }
  .sec-head .tt .ja {
    font-size: 18px;
  }
  .sec-head .tt .en {
    font-size: 10px;
  }

  /* ===== センター見出し ===== */
  .center-sec-head h2 {
    font-size: 18px;
  }
  .center-sec-head {
    margin-bottom: 28px;
  }

  /* ===== フッター ===== */
  .site-foot {
    padding: 40px 20px 18px;
  }
  .foot-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  .foot-brand {
    font-size: 16px;
  }
  .foot-links {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .foot-links a {
    font-size: 14px;
    padding-bottom: 8px;
    margin-bottom: 4px;
  }
  .foot-org {
    align-items: center;
    gap: 8px;
    flex-direction: row;
    justify-content: center;
  }
  .foot-org .logo-box,
  .foot-org .foot-veg {
    width: 142px;
    height: 68px;
  }
  .foot-org .photo {
    width: 142px;
    height: 68px;
    border-radius: 2px;
  }
  .foot-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
  }
  .foot-copy {
    font-size: 10px;
    text-align: center;
  }
  .foot-social {
    justify-content: center;
  }

  /* ===== ドロワー ===== */
  .drawer-logos .drawer-logo-box {
    width: 140px;
    height: 66px;
  }
}

/* =========================================================
   スクロールイン アニメーション（フェード＋スライド）
   - <head> のインラインJSが <html> に .js-reveal を付与（FOUC防止）
   - nav.js が IntersectionObserver で .is-revealed を付与してアニメ開始
   - アニメ完了後 nav.js が .reveal-done を付与し、animation を解除して
     カードの :hover transform 等を阻害しないようにする
   - prefers-reduced-motion: reduce の環境では一切隠さない/動かさない
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  /* 初期状態（表示前）。対象要素をいったん透明にする */
  .js-reveal .news-img-col,
  .js-reveal .news-card,
  .js-reveal .pickup-head,
  .js-reveal .pickup-card,
  .js-reveal .sec-head,
  .js-reveal .sec-intro,
  .js-reveal .caution-box,
  .js-reveal .about-info-box,
  .js-reveal .schedule-label,
  .js-reveal .sch-scroll-hint,
  .js-reveal .schedule-steps,
  .js-reveal .plan-card,
  .js-reveal .price-callout,
  .js-reveal .variety-card,
  .js-reveal .harvest-chart,
  .js-reveal .apply-notice,
  .js-reveal .notice-box,
  .js-reveal .center-sec-head,
  .js-reveal .apply-box,
  .js-reveal .access-info-card,
  .js-reveal .access-photo,
  .js-reveal .access-map-img,
  .js-reveal .faq-card,
  .js-reveal .page-hero,
  .js-reveal .cat-tabs,
  .js-reveal .list-card,
  .js-reveal .more-wrap,
  .js-reveal .article,
  .js-reveal .pager,
  .js-reveal .related-head,
  .js-reveal .rel-card {
    opacity: 0;
    will-change: opacity, transform;
  }

  /* 画面に入ったら下からふわっと（既定） */
  .js-reveal .is-revealed {
    animation: rv-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }
  /* ニュースパネルは左右からスライドインさせて動きを出す */
  .js-reveal .news-img-col.is-revealed {
    animation-name: rv-from-left;
  }
  .js-reveal .news-card.is-revealed {
    animation-name: rv-from-right;
  }

  /* アニメ完了後はアニメを解除し、ホバー時の transform などを阻害しない */
  .js-reveal .reveal-done {
    opacity: 1;
    animation: none !important;
    will-change: auto;
  }
}

@keyframes rv-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rv-from-left {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rv-from-right {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
