@charset "UTF-8";
/* ===============================
   Base
================================ */
html { font-size: 62.5%; }
body{
  font-family: "Zen Maru Gothic",
               "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Yu Gothic", "YuGothic",
               "Noto Sans JP",
               "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 3.4rem;
  font-feature-settings: "palt" 1;
  background:#fbf5ef; color:#222;
  margin:0;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-synthesis: none; /* iOSでの擬似ボールド/イタリック抑止 */
}

*{ box-sizing:border-box; }
.container{ width:min(1100px, 92vw); margin-inline:auto; }
.pc-none{ display:none!important; }

/* ===============================
   Header
================================ */
.site-header{ position:fixed; inset:0 0 auto 0; z-index:100000; }
.site-header .container{ width:100%!important; max-width:none!important; padding-inline:24px; }
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
.logo img{ display:block; height:auto; }
.header-actions{ display:flex; align-items:center; gap:10px; }
.btn-icon{
  width:68px; height:68px; border-radius:50%;
  display:grid; place-items:center;
  background:#fff; color:#2fa0f5; border:1px solid #fff;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
  cursor:pointer;
}
.btn-icon .ico-close{ display:none; }
.btn-icon[aria-expanded="true"] .ico-burger{ display:none; }
.btn-icon[aria-expanded="true"] .ico-close{ display:block; }
#btn-schedule{ background:#52C193; border-color:#52C193; color:#fff; }
#btn-menu{ background:#F4A261; border-color:#F4A261; color:#fff; }
#btn-schedule:hover,#btn-menu:hover{ filter:brightness(1.05); }

/* ===============================
   First View
================================ */
.fv{ position:relative; min-height:85vh; display:grid; place-items:center; overflow:visible; }
.fv-slider{ position:absolute; inset:0; z-index:0; }
.fv-slide{ position:absolute; inset:0; margin:0; opacity:0; transition:opacity .8s ease; }
.fv-slide.is-active{ opacity:1; }
.fv-slide img{ width:100%; height:100%; object-fit:cover; object-position:center bottom; }
.fv-pattern{
  position:absolute; inset:0 auto auto 0; width:100%; height:auto; display:block;
  object-fit:contain; object-position:center top; z-index:2; pointer-events:none;
}
.fv-copy{ position:relative; z-index:3; text-align:center; color:#fff; text-shadow:0 6px 24px rgba(0,0,0,.35); }
.fv-copy h1{ font-size:clamp(28px,5.8vw,60px); line-height:1.25; margin:0; }

/* ===============================
   Drawer / Side Menu
================================ */
.side-menu { position: fixed; inset: 0; z-index: 99990; pointer-events: none; }
.side-menu__inner {
  position: absolute; right: 3rem; top: -100%;
  width: min(410px, 92vw); height: 82%;
  background: #fff; border-radius: 4rem;
  box-shadow: -18px 0 40px rgba(0,0,0,.18);
  padding: 22px 20px; transition: top .45s ease;
  z-index: 2;
}
.side-menu__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.35);
  opacity: 0; border: 0; transition: opacity .3s ease; z-index: 1;
}
.side-menu.is-open { pointer-events: auto; }
.side-menu.is-open .side-menu__inner { top: 12rem; }
.side-menu.is-open .side-menu__backdrop { opacity: 1; }
body.no-scroll { overflow: hidden; }

/* Side menu contents */
.smenu { height: 100%; overflow: auto; padding: 2rem; }
.smenu-list { list-style: none; margin: 0; padding: 0; }
.smenu-sep { height: 1px; border-bottom: 2px dashed #cfcfcf; margin: 1.5rem 0; }
.smenu-head {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: #333; letter-spacing: .06em;
  font-size: 1.6rem; line-height: 1; margin: -0.5rem 0 0.8rem;
}
.smenu-ic {
  width: 2.6rem; height: 2.6rem; flex: 0 0 28px;
  background: no-repeat center/contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.06));
}
.smenu-ic.cow  { background-image: url("../img/cow-orange.png"); }
.smenu-ic.book { background-image: url("../img/search-blue.png"); }
.smenu-ic.mega { background-image: url("../img/megaphone-amber.png"); }
.smenu-ic.fuji { background-image: url("../img/fuji-green.png"); }

.smenu-row { margin: -0.6rem 0; }
.smenu-link {
  --dot: 2rem;
  position: relative; display: flex; align-items: center;
  padding-left: calc(var(--dot) + 0.8rem);
  min-height: var(--dot);
  text-decoration: none; color: #222; font-weight: 700; font-size: 1.5rem;
  transition: transform .2s ease, filter .2s ease;
}
.smenu-link:hover { transform: translateY(-1px); filter: brightness(1.04); }

/* 共通: 白丸＋矢印のベース */
.smenu-link .smenu-arrow::before{
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: var(--dot); height: var(--dot);
  background: no-repeat center/contain;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  border-radius: 50%;
}

/* 色ごとの矢印PNG */
.smenu-link.clr-orange .smenu-arrow::before { background-image: url("../img/menu-arrow-orange.png"); }
.smenu-link.clr-rose   .smenu-arrow::before { background-image: url("../img/menu-arrow-rose.png"); }
.smenu-link.clr-blue   .smenu-arrow::before { background-image: url("../img/menu-arrow-blue.png"); }
.smenu-link.clr-amber  .smenu-arrow::before { background-image: url("../img/menu-arrow-amber.png"); }
.smenu-link.clr-green  .smenu-arrow::before { background-image: url("../img/menu-arrow-green.png"); }

/* ============ FV 下の帯 ============ */
.fv-bottom{
  position: relative;
  margin-top: -13rem;
  padding: 0 0 10rem;
  z-index: 3;
}
.fv-bottom::before{
  content: "";
  position: absolute; inset: 0 auto auto 0;
  width: 100%; height: 200px;
  border-bottom-left-radius: 60% 40%;
  border-bottom-right-radius: 60% 40%;
  top: 0; left: 0;
  z-index: 0;
}
.fv-welcome{
	width: 100%;
  position: relative; z-index: 1; display: flex; align-items: center;
  gap: clamp(13px, 3vw, 10px);
}

/* 左：来訪者カウント */
.welcome-count{
  width: 100%; max-width: 280px;
  background:#fff; padding: 1rem 28px 30px; text-align:center;
  border-radius: 40% 45% 42% 48% / 52% 44% 50% 46%;
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
  position: relative; margin: -1rem 2rem 0 -2rem;
}
.wc-cap{ margin: 3rem 0 0; display: inline-block; font-weight: 900; font-size: 1.4rem; text-align: center; color:#2B66AC; }
.wc-copy{ margin: 0 0 3rem; font-size: 1.5rem; line-height: 3rem; font-weight: 700; color: #333; }
.wc-num{ font-size: 4rem; line-height: 1; color:#E9654E; font-weight: 900; margin: 0 .06em; }

/* 中央：コメントフォーム */
.welcome-form{ 
	position: relative; 
	margin: 0 5% 0 2%;
}
.wf-chip{
  display:inline-block; background:#F4A261; color:#fff; font-weight:700;
  font-size:1.3rem; line-height:2.2rem; border-radius: 999px; padding: .5rem 1.2rem;
  position: relative; text-align: center; margin: 0 auto 1rem;
}
.wf-chip::after{
  content:""; position:absolute; left: 50%; bottom:-1.5rem;
  width:0; height:0; border:8px solid transparent; border-top-color:#F4A261;
}
.wf-form{ display: flex; flex-direction: column; gap: 10px; width: 100%; }
.wf-input{
  background:#fff; border:0; outline:none; border-radius: 999px;
  padding: .9rem 1.2rem; box-shadow: 0 8px 18px rgba(0,0,0,.08); font-size:1.4rem;
}
.wf-submit{
  background:#4f6fff; color:#fff; border:0; border-radius: 999px;
  padding: .9rem 1.6rem; font-size:1.4rem; font-weight:800;
  box-shadow: 0 10px 20px rgba(79,111,255,.25); cursor:pointer;
}
.wf-submit:hover{ filter:brightness(1.05); }

/* 視覚非表示ラベル */
.sr-only{
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* 右：最近のコメントチップ */
.welcome-bubbles{ overflow: hidden; }
.wb-list{
  list-style:none; margin: 0; padding: 0;
  display: grid; grid-auto-flow: column; grid-auto-columns: max-content; gap: 14px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 1rem;
}
.wb-list::-webkit-scrollbar{ display:none; }
.wb-chip{
  background:#fff; border-radius: 26px; padding: 12px 18px;
  box-shadow: 0 1px 12px rgba(0,0,0,.10); min-width: 200px; text-align:center; line-height: 2.2rem;
}
.wb-chip span{ display: block; font-weight:700; font-size:1.2rem; color:#226FBA; }
.wb-chip small{ font-size:1rem; color:#226FBA; }


/* ふわふわ上下に動くアニメーション */
.wb-chip {
  display: inline-block;
  animation: floatUpDown 4s ease-in-out infinite;
}

/* 上下アニメーション */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* 3つ分、ずらして自然に */
.wb-chip:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 4s;
}
.wb-chip:nth-child(2) {
  animation-delay: 1.7s;
  animation-duration: 4.5s;
}
.wb-chip:nth-child(3) {
  animation-delay: 0.6s;
  animation-duration: 3.8s;
}



/* レスポンシブ（帯） */
@media (max-width: 980px){
  .fv-welcome{ grid-template-columns: 1fr; }
  .welcome-form{ order: 3; }
  .welcome-bubbles{ order: 2; }
}

/* ===============================
   Milk Message
================================ */
.milk-message{ --art-w:1400; --art-h:734; position:relative; display:grid; padding-bottom:4rem; }
.milk-message::before{
  content:""; grid-area:1/1; width:100%; aspect-ratio:var(--art-w)/var(--art-h);
  background:url("../img/sv-design.png") center top/100% 100% no-repeat;
}
@supports not (aspect-ratio:1/1){
  .milk-message::before{ display:block; height:0; padding-top:calc(var(--art-h)/var(--art-w) * 100%); background:url("../img/sv-design.png") center top/100% 100% no-repeat; }
}
.milk-message-inner{
  grid-area:1/1; place-self:center; width:min(90vw,700px); max-width:700px;
  padding:4rem; text-align:center; background:#fff; border-radius:4rem; z-index:1; box-shadow:0 10px 24px rgba(0,0,0,.08);
}
@media (max-width:480px){ .milk-message-inner{ padding:3rem; border-radius:2.4rem; } }
.milk-message p{ font-size:1.8rem; line-height:2; margin-bottom:1em; }

/* ===============================
   Marugoto Map（PC）
   - 基準: 画像 1268×779
================================ */
.map-section{
  position:relative; text-align:center; padding:0; margin:0;
  --stage-top:40rem;
  --bg-h:clamp(420px,62vw,760px);
  --illus-ratio:0.614;        /* = 779 / 1268 */
}
.map-section-text{ position:absolute; top:20rem; left:50%; transform:translateX(-50%); z-index:100; }
.map-section-text h2{ font-size:4rem; color:#fff; }
.map-section-text p{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.6rem; padding:.5rem 3rem;
}
.map-section-text p::before{
  content:""; position:absolute; left:-.5rem; width:3rem; height:3rem;
  background:url("../img/touch-icon.png") no-repeat center/contain;
}
.map-bg{
  position:relative; width:100%; height:var(--bg-h);
  background:
    linear-gradient(to bottom, rgba(35,174,127,0) 60%, #23AE7F 60%),
    url("../img/map-illust-bg.png") no-repeat center top / cover;
}
.map-stage{ position:absolute; top:var(--stage-top); left:50%; transform:translateX(-50%); width:min(1100px,92vw); z-index:2; }
.map-illust{ display:block; width:100%; height:auto; user-select:none; pointer-events:none; }
.map-spacer{
  height:max(0px, calc(var(--stage-top) + (min(1100px,92vw) * var(--illus-ratio)) - var(--bg-h)));
  background:#23AE7F; min-height:70vh;
}

/* ピル共通（見た目） */
.topic-btn{
  --tone:#E66D58; --circle:clamp(40px,5vw,52px); --overhang:calc(var(--circle)*0.32); --ring:calc(var(--circle)*0.12);
  position:absolute; transform:translate(-50%,-50%); z-index:3; white-space:nowrap; justify-content:flex-start;
  display:inline-flex; align-items:center; gap:12px; text-decoration:none; color:#fff; background:var(--tone); border-radius:9999px;
  padding:15px 16px 15px calc(var(--circle) + 28px - var(--overhang)); font-weight:700; font-size:clamp(14px,1.1vw + 8px,18px); line-height:1; box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.topic-btn::before{
  content:""; position:absolute; top:50%; left:calc(-1 * var(--overhang)); transform:translateY(-50%);
  width:var(--circle); height:var(--circle); border-radius:50%; background:#fff; border:var(--ring) solid var(--tone); box-shadow:0 6px 16px rgba(0,0,0,.12);
}
.topic-btn .i{
  position:absolute; top:50%; left:calc(-1 * var(--overhang) + (var(--circle)/2) + var(--ring));
  transform:translate(-50%,-50%); width:calc((var(--circle) - 2*var(--ring)) * .6); height:calc((var(--circle) - 2*var(--ring)) * .6);
  background:no-repeat center/contain;
}
.topic-life{ --tone:#E66D58; }  .topic-life  .i{ background-image:url("../img/cow-orange.png"); }
.topic-learn{ --tone:#6AB7FF; }  .topic-learn .i{ background-image:url("../img/search-blue.png"); }
.topic-support{ --tone:#F4C065; } .topic-support .i{ background-image:url("../img/megaphone-amber.png"); }
.topic-fuji{ --tone:#7CD4A1; }   .topic-fuji   .i{ background-image:url("../img/fuji-green.png"); }

/* ★ PC：最新座標（%）— JSのインライン上書きを無効化するため !important 付き */
.map-stage .topic-life   { left: 24.2%!important; top: 7.32%!important; }  /* x=307, y=57 */
.map-stage .topic-learn  { left: 73.3%!important; top: 9.12%!important; }  /* x=929, y=71 */
.map-stage .topic-support{ left: 78.2%!important; top: 56.99%!important; } /* x=991, y=444 */
.map-stage .topic-fuji   { left: 28.6%!important; top: 52.88%!important; } /* x=363, y=412 */

/* ===============================
   Yellow Category Section + Cards
================================ */
.category-section{
  --zig-h:68px; position:relative; background:#FFD96A;
  margin-top: calc(var(--zig-h) * -0.1);
  padding: calc(90px + var(--zig-h)) 0 200px;
  overflow:visible; z-index:5;
}
.category-section::before{
  content:""; position:absolute; left:0; right:0; top:-68px; height:var(--zig-h);
  background:url("../img/zigzag-top.png") repeat-x left top/auto 100%; z-index:9; pointer-events:none;
}
.category-section::after{
  content:""; position:absolute; inset:0;
  background:url("../img/bg-cow-yellow.png") no-repeat; background-size:cover; z-index:0; pointer-events:none;
}
.category-section .container{ position:relative; z-index:1; }

.category-card{
  --card-radius:5rem; --pad-x:4rem; --pad-t:3rem; --pad-b:6rem;
  padding:var(--pad-t) var(--pad-x) var(--pad-b); background:#fff; border-radius:var(--card-radius);
  box-shadow:0 10px 28px rgba(0,0,0,.08); max-width:1000px; margin:5rem auto; scroll-margin-top:100px; position:relative;
}
.card-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; margin-bottom:10px; }
.card-badge{
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  width:100px; height:100px; border-radius:50%; background:#fff; border:2px solid var(--tone,#ffd9d2); color:var(--tone,#ff7a5c); line-height:1.1;
}
.card-badge .cap{ font-size:1.2rem; font-weight:700; margin:.6rem 0 -.5rem; }
.card-badge b{ font-size:5rem; }
.card-tag{ display:inline-flex; align-items:center; gap:.45rem; font-size:1.8rem; font-weight:700; color:var(--tone,#666); padding:.35rem .8rem; line-height:1; }
.card-tag::before{ content:""; width:1.5em; height:1.5em; background:var(--tag-icon) no-repeat center/contain; }
.card-title{ font-size:clamp(2rem,1vw,4rem); line-height:1.35; margin:0 0 2rem; font-weight:700; }
.card-lead{ width:86%; margin:2rem auto; font-size:1.6rem; line-height:1.8; color:#404040; }
.card-actions{ display:flex; justify-content: flex-end; gap:10px; }
.btn{ display:inline-block; padding:.7rem 1.2rem; border-radius:999px; background:#52C193; color:#fff; text-decoration:none; font-weight:700; font-size:14px; box-shadow:0 6px 16px rgba(0,0,0,.08); }
.btn.ghost{ background:#fff; color:#52C193; border:2px solid #52C193; }

/* Card hero */
.category-card .card-hero{
  position:relative; display:grid; grid-template-columns:1.1fr .9fr; align-items:center; gap:24px;
  padding:0 5rem; border-radius:18px; overflow:hidden; z-index:3;
}
.category-card .card-hero .hero-text{ z-index:1; }
.category-card .card-hero .card-title{ margin:0 0 1.4rem; font-size:clamp(4rem,3vw,4.3rem); line-height:1.3; color:#404040; }
.category-card .card-hero .card-en{ margin:0; font-weight:900; letter-spacing:.2rem; font-size:clamp(1.6rem,1.2vw,2rem); color:var(--tone,#777); opacity:.9; }
.category-card .card-hero .hero-illust{ position:relative; z-index:4; display:flex; align-items:flex-end; justify-content:center; min-height:160px; }
.category-card .card-hero .hero-illust img{ max-width:100%; height:auto; transform:translateY(6px); user-select:none; pointer-events:none; }

/* Card body */
.category-card .card-body{
  position:relative; margin:-1.2rem calc(var(--pad-x) * -1) calc(var(--pad-b) * -1);
  padding:2.2rem var(--pad-x) calc(2.6rem + var(--pad-b));
  background:var(--tone-weak,#f7f7f7);
  border-bottom-left-radius:var(--card-radius); border-bottom-right-radius:var(--card-radius); z-index:1;
}
.category-card .card-body::before{
  --zig-h:56px; content:""; position:absolute; left:0; right:0; top:calc(-1 * var(--zig-h)); height:var(--zig-h);
  background:var(--zig-url) repeat-x left top/auto 100%; pointer-events:none; z-index:0;
}
.category-card .card-body>*{ position:relative; z-index:1; }

.card-life   { --tone:#E9654E; --tone-weak:#FFF5F1; --zig-url:url("../img/life-zigzag-top.png");   --tag-icon:url("../img/cow-orange.png"); }
.card-learn  { --tone:#3B8CFF; --tone-weak:#F0F8FD; --zig-url:url("../img/learn-zigzag-top.png");  --tag-icon:url("../img/search-blue.png"); }
.card-support{ --tone:#F4B942; --tone-weak:#FFF8E5; --zig-url:url("../img/support-zigzag-top.png"); --tag-icon:url("../img/megaphone-amber.png"); }
.card-fuji   { --tone:#36AD6E; --tone-weak:#F3FAF2; --zig-url:url("../img/fuji-zigzag-top.png");   --tag-icon:url("../img/fuji-green.png"); }

/* アクション行 */
.category-card .card-actions{
  position: relative; display: flex; justify-content: flex-end; align-items: center;
  gap: 12px; padding: 6rem 0 18px;
}
.category-card .card-actions::before{
  content: ""; position: absolute; right: 0; top: 0.5rem;
  width: 120px; height: 48px; display: grid; place-items: center;
  background: url("../img/card-actions-detail.png") no-repeat center/contain;
}
.category-card .card-actions .btn:not(.ghost){ display:none; }
.category-card .card-actions .btn.ghost{
  background: transparent; border: 0; color: var(--tone);
  padding: 0 0.5rem 1rem 0.7rem; margin: 0 0.2rem;
  font-size: 1.5rem; font-weight: 700; line-height: 1;
  display: inline-flex; align-items: center; gap: 12px; position: relative; box-shadow: none;
}
.category-card .card-actions .btn.ghost::before{
  content:""; position:absolute; left:0; right:0; bottom:0; border-bottom: 2px dashed var(--tone);
}
.category-card .card-actions .btn.ghost::after{
  content:""; width: 3rem; height: 3rem; background: var(--cta-arrow) no-repeat center/contain; flex: 0 0 auto;
}
.card-life   { --cta-arrow: url("../img/menu-arrow-rose.png"); }
.card-learn  { --cta-arrow: url("../img/menu-arrow-blue.png"); }
.card-support{ --cta-arrow: url("../img/menu-arrow-amber.png"); }
.card-fuji   { --cta-arrow: url("../img/menu-arrow-green.png"); }

/* ===============================
   Scenes
================================ */
.scene-section{
  --scene-bg:#23AE7F;
  position:relative; background:var(--scene-bg);
  border-top-left-radius:10rem; border-top-right-radius:10rem;
  margin-top:-10rem; padding:10rem 0 18rem; overflow:visible; z-index:5;
}
.scene-inner{ position:relative; width:86%; z-index:1; }
.scene-lead .cap{ color:#fff; font-size:1.6rem; opacity:.9; margin:0 0 .4rem; letter-spacing:.08em; }
.scene-lead h2{ color:#fff; font-weight:bold; font-size:clamp(2.4rem,3vw,4rem); line-height:1; margin:0 0 -4rem; }
.scenes_img{ display:block; width:100%; max-width:1200px; margin:0 auto; }
.scene-wave{
  position:absolute; left:0; right:0; bottom:-1px; width:100%;
  background:url("../img/scene-wave-img.png") no-repeat center bottom/100% auto;
  aspect-ratio:1400/263; min-height:120px; z-index:2; pointer-events:none;
}

/* ===============================
   Column (carousel)
================================ */
.column-section{ position:relative; z-index:1; margin-top:-36px; background:#fff; padding:72px 0 90px; }
.column-head .cap{
  display:inline-block; background:#FCEFE9; color:#E9654E; font-size:1.2rem; font-weight:700; border-radius:999px;
  padding:.25rem .8rem; margin:0 0 .8rem;
}
.column-head h2{ margin:0 0 18px; font-size:clamp(2.2rem,3vw,3rem); color:#222; }

.column-carousel{ position:relative; overflow:hidden; --gap:32px; --peek:56px; }
.col-track{
  display:grid; grid-auto-flow:column; grid-auto-columns:calc((100% - var(--gap) * 2)/3); gap:var(--gap);
  overflow-x:auto; -webkit-overflow-scrolling:touch; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  padding:10px 4rem 40px 4rem; padding-right:calc(4rem + var(--peek)); margin-right:calc(-1 * var(--peek));
  scroll-padding-left:4rem; scroll-padding-right:calc(4rem + var(--peek));
}
.col-track::-webkit-scrollbar{ display:none; }
.col-card{ scroll-snap-align:start; background:#fff; border-radius:20px; box-shadow:0 10px 24px rgba(0,0,0,.08); overflow:hidden; }
.col-card__link{ color:inherit; text-decoration:none; display:block; height:100%; }
.col-card__media{ margin:0; aspect-ratio:3/2; overflow:hidden; }
.col-card__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.col-card__meta{ display:flex; align-items:center; gap:10px; font-size:1.2rem; color:#666; padding:12px 16px 0; }
.col-card__cat{ display:inline-block; background:#FCEFE9; color:#E9654E; border-radius:999px; padding:.15rem .6rem; line-height:1; font-weight:700; }
.col-card__title{ font-size:1.6rem; line-height:1.6; margin:6px 16px 6px; font-weight:700; color:#222; }
.col-card__lead{ font-size:1.3rem; color:#666; margin:0 16px 16px; }
.colnav{
  position:absolute; top:42%;
  width:44px; height:44px; border-radius:50%;
  display:grid; place-items:center; background:#fff; color:#23AE7F; border:1px solid #fff;
  box-shadow:0 8px 20px rgba(0,0,0,.12); cursor:pointer; z-index:3;
}
.colnav:disabled{ opacity:.35; cursor:not-allowed; }
.colnav-prev{ left:12px; } .colnav-next{ right:12px; }
@media (max-width:1024px){ .column-carousel{ --gap:24px; --peek:44px; } .col-track{ grid-auto-columns:calc((100% - var(--gap))/2); } }
@media (max-width:640px){ .column-carousel{ --gap:16px; --peek:36px; } .col-track{ grid-auto-columns:86%; } }

.column-footer {
	text-align: center;
}
/* ===============================
   Supporter section
================================ */
.supporter-section{
  --sup-green:#058662; --sup-green-deep:#03684d;
  min-width:1180px; max-width:1400px; margin:10rem auto;
}
.sup-wrap{ position:relative; width:85%; padding:6rem; border-radius:5rem; background:#F4A261; }
.sup-copy{ position:relative; z-index:1; padding-right:min(44%,560px); }
.sup-copy h2{ color:#fff; font-size:clamp(3rem,3.8vw,4rem); line-height:1.35; margin:2rem 0 6rem; }
.sup-copy p{ color:#fff; font-size:1.5rem; line-height:1.8; margin:.6rem 0; }
.sup-chip{ display:inline-block; background:#E9654E; color:#fff; font-size:1.4rem; font-weight:700; line-height:2; border-radius:5rem; padding:.4rem 2rem; }
.sup-heroimg{ position:absolute; top:0; right:0; width:min(48%,550px); aspect-ratio:4/3; overflow:hidden; border-top-right-radius:5rem; border-bottom-left-radius:0; z-index:0; margin:0; }
.sup-heroimg img{ width:100%; height:100%; object-fit:cover; border-radius:0; }
.sup-benefits{ margin-top:6rem; background:#fff; border-radius:3rem 3rem 0 0; padding:4rem 5rem 5rem; }
.sup-benefits__head h3{ margin:0 0 1rem; font-size:clamp(1.8rem,2.4vw,2.2rem); color:#23AE7F; }
.sup-benefits__grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:20px; align-items:center; }
.sup-badges{ width:450px; list-style:none; margin:-4rem 0 0; padding:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:25px 24px; }
.sup-badges li{ width:215px; position:relative; background:var(--sup-green); color:#fff; font-weight:700; font-size:1.6rem; line-height:1.5; padding:1.3rem 1.6rem 1.3rem 5rem; border-radius:22px; box-shadow:0 10px 18px rgba(0,0,0,.10); }
.sup-badges li:nth-child(2), .sup-badges li:nth-child(4){ transform:translateY(18px); }
.sup-badges li::after{ content:""; position:absolute; bottom:-20px; left:40px; width:0; height:0; border:10px solid transparent; border-top-color:var(--sup-green); z-index:10; }
.sup-badges li::before{ content:""; position:absolute; left:14px; top:50%; transform:translateY(-50%); width:26px; height:26px; border-radius:50%; background:url("../img/checkicon-green.png") no-repeat center/100%; }
.sup-cow{ position:relative; margin:0; }
.sup-cow img{ width:90%; height:auto; display:block; object-fit:cover; margin:0 0 0 auto; }
.sup-sticker{ position:absolute; right:10px; top:10px; background:#fff; color:#FF7A5C; font-weight:800; font-size:1.2rem; padding:.35rem .8rem; border-radius:999px; box-shadow:0 6px 14px rgba(0,0,0,.08); }
.sup-events{ background:#F7F7F7; border-radius:0 0 3rem 3rem; padding:4rem 5rem 5rem; }
.sup-events__head{ position:relative; display:block; margin-bottom:18px; padding:0 2px; }
.sup-events__head h3{ position:relative; margin:0 auto; width:max-content; text-align:center; font-size:clamp(2rem,2.4vw,2.4rem); color:#333; }
.sup-events__head h3::before{ content:""; position:absolute; left:-5rem; top:20%; transform:translateY(-50%); width:7rem; height:4rem; background:url("../img/sup-eventlist-icon.png") no-repeat center/contain; }
.sup-events__head h3::after{ content:""; display:block; margin:10px auto 0; width:220px; border-bottom:2px dashed #23AE7F; }
@media (max-width:760px){
  .sup-events__head h3::before{ left:-48px; width:44px; height:22px; }
  .sup-events__head h3::after{ width:180px; }
}
.sup-eventlist{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:34px; padding:8px 2px 0; }
@media (max-width:980px){ .sup-eventlist{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .sup-eventlist{ grid-template-columns:1fr; } }
.ev-card{ position:relative; }
.ev-media{ margin:0; border-radius:18px; overflow:hidden; box-shadow:0 8px 18px rgba(0,0,0,.08); background:#fff; }
.ev-media img{ display:block; width:100%; height:auto; object-fit:cover; }
.ev-title{ margin:12px 8px 4px; text-align:center; color:#333; font-size:1.5rem; line-height:1.6; font-weight:700; }
.ev-month{
  position:absolute; left:10px; top:10px; display:inline-grid; place-items:center;
  min-width:58px; padding:.1rem .9rem; border-radius:999px; background:#fff; font-weight:700; font-size:1.8rem;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
}
.sup-eventlist .ev-card:nth-child(1) .ev-month{ color:#3B8CFF; }
.sup-eventlist .ev-card:nth-child(2) .ev-month{ color:#F4B942; }
.sup-eventlist .ev-card:nth-child(3) .ev-month{ color:#F4B942; }
.sup-cta{ display:flex; justify-content:center; margin:5rem auto; }
.sup-btn{ background:#E9654E; border:2px solid #E9654E; padding:1rem 3rem; font-size:1.6rem; font-weight:700; box-shadow:0 10px 22px rgba(233,101,78,.25); }
.sup-btn:hover{ filter:brightness(1.05); }

/* ===============================
   Calendar (dummy shell)
================================ */
.calendar-section{ position:relative; background:#fbf5ef; padding:80px 0 60px; overflow:hidden; }

.cal-head{ position:relative; text-align:center; margin-bottom:22px; }
.cal-cap{ margin:0 0 6px; color:#058662; font-weight:900; letter-spacing:.08em; font-size:clamp(1.6rem,1.2vw,1.8rem); }
.cal-title{ margin:0; color:#333; font-weight:900; font-size:clamp(2.8rem,3.6vw,4.2rem); }
.cal-title span{ color:#058662; font-weight:900; font-size:1.1em; }
.cal-title small{ font-size:.5em; color:#666; margin-left:.3em; }
.cal-underline{ width:min(360px,70%); border-bottom:4px dotted #23AE7F; margin:12px auto 0; }
.cal-dummy{ border:2px solid #c9c1ba; border-radius:16px; background:#fff; padding:18px; box-shadow:0 10px 24px rgba(0,0,0,.06); }
.cal-grid{
  height:340px; border-radius:12px;
  background:
    linear-gradient(#e9e2db 0 0) 0 48px/100% 2px no-repeat,
    repeating-linear-gradient(#e9e2db 0 0) 0 0/100% 56px,
    repeating-linear-gradient(90deg,#e9e2db 0 0) 0 0/56px 100%;
}
.cal-legend{ display:flex; gap:18px; align-items:center; padding:14px 6px 6px; color:#333; font-size:1.4rem; }
.lg{ display:inline-block; width:14px; height:14px; border-radius:3px; margin-right:6px; vertical-align:-2px; }
.lg-blue{ background:#3B8CFF; } .lg-amber{ background:#F4B942; }
.cal-nav{ display:flex; gap:12px; justify-content:flex-end; padding-top:12px; }
.cal-btn{ background:#058662; color:#fff; border:0; border-radius:999px; padding:.6rem 1.2rem; font-weight:800; cursor:pointer; box-shadow:0 8px 18px rgba(5,134,98,.18); }
.cal-btn.ghost{ background:#fff; color:#058662; border:2px solid #058662; box-shadow:none; }

/* ===============================
   Contact
================================ */
.contact-section{
  position:relative; background:#058662; border-top-left-radius:10rem; border-top-right-radius:10rem;
  padding:12rem 0 15rem; overflow:hidden; z-index:5;
}
.contact-section::after{ content:""; position:absolute; inset:0; background:url("../img/bg-cow-green.png") no-repeat center/cover; opacity:1; pointer-events:none; z-index:0; }
.contact-inner{ position:relative; z-index:1; width:min(920px,92vw); }
.contact-head{ text-align:center; color:#fff; margin-bottom:2.2rem; }
.contact-head h2{ margin:0 0 5rem; font-weight:700; font-size:clamp(2.4rem,3.4vw,3.6rem); }
.contact-lead,.contact-note{ margin:0 auto; max-width:740px; }
.contact-lead{ margin-bottom:1.2rem; font-size:1.4rem; line-height:1.9; opacity:.95; }
.contact-note{ margin-bottom:2.4rem; font-size:1.2rem; line-height:1.8; opacity:.8; }
.contact-form{ background:#fff; border-radius:2.4rem; padding:2.8rem; box-shadow:0 14px 30px rgba(0,0,0,.12); }
.form-row{ display:grid; grid-template-columns:190px 1fr; align-items:center; gap:16px; margin-bottom:14px; }
.form-row.is-2col .form-controls.is-split{ display:grid; grid-template-columns:1fr 220px; gap:12px; }
.form-label{ color:#666; font-weight:700; font-size:1.3rem; line-height:1.2; }
.badge{ display:inline-grid; place-items:center; min-width:36px; height:20px; padding:0 .6rem; border-radius:999px; font-size:1.1rem; color:#fff; line-height:1; margin-right:.6rem; }
.badge-req{ background:#F4B942; } .badge-opt{ background:#cfd4d9; color:#333; }
.input{ width:100%; background:#fff; border:0; outline:none; border-radius:1.4rem; padding:1.2rem 1.6rem; box-shadow:inset 0 0 0 1px #e5e1dc, 0 2px 0 rgba(0,0,0,0); font-size:1.5rem; line-height:1.4; }
.input:focus{ box-shadow:inset 0 0 0 2px #058662; }
.textarea{ resize:vertical; }
.form-actions{ display:flex; justify-content:center; padding-top:10px; }
.contact-submit{ background:#E9654E; border:2px solid #E9654E; padding:1.1rem 3.6rem; font-size:1.6rem; font-weight:800; border-radius:1.6rem; box-shadow:0 12px 26px rgba(233,101,78,.25); }
.contact-submit:hover{ filter:brightness(1.05); }
@media (max-width:700px){
  .form-row{ grid-template-columns:1fr; }
  .form-label{ display:flex; align-items:center; gap:.6rem; }
  .form-row.is-2col .form-controls.is-split{ grid-template-columns:1fr 1fr; }
}

/* ===============================
   Footer
================================ */
.footer{
  --ft-bg:#4f687c; --ft-text:#fff; --ft-muted:#e7eef5; --hero-w:432px; --hero-h:417px;
  position:relative; background:var(--ft-bg); color:var(--ft-text); overflow:hidden;
  padding-top:72px; padding-bottom:88px;
}
.footer__wave{ position:absolute; inset:auto 0 100% 0; height:68px; background:url("../img/footer-zigzag-top.png") repeat-x left top/auto 100%; pointer-events:none; z-index:0; }
.footer__inner{
  min-width:920px; position:static;
  display:grid; grid-template-columns:1.1fr 1fr; min-height:var(--hero-h);
  gap:clamp(3rem,6vw,5rem); align-items:center; padding-right:calc(var(--hero-w) + 40px); z-index:1;
}
/* brand */
.footer__brand{ display:grid; gap:18px; }
.footer__logo{ margin:0; }
.footer__logo img{ width:120px; height:auto; display:block; border-radius:50%; box-shadow:0 10px 24px rgba(0,0,0,.12); }
.footer__addr{ margin:6px 0 2px; font-size:1.5rem; line-height:1.9rem; font-style: normal; }
.footer__sns{ display:flex; gap:14px; }
.footer__sns-btn{ --s:48px; width:var(--s); height:var(--s); display:grid; place-items:center; background:#fff; border-radius:50%; box-shadow:0 10px 22px rgba(0,0,0,.16); }
.footer__sns-btn img{ width:5rem; height:5rem; }

/* nav */
.footer__nav{ align-self:center; }
.footer__links{
  --row-h:30px; column-count:2; column-gap:30px;
  list-style:none; margin:0; padding:0;
}
.footer__links li:nth-child(3){ break-after:column; }
.footer__links li{ break-inside:avoid; height:var(--row-h); display:flex; align-items:center; margin:0 0 18px; }
.footer__links a{
  --dot:3.5rem;
  position:relative; display:flex; align-items:center; gap:16px;
  padding-left:calc(var(--dot) + 18px); min-height:var(--dot);
  color:#fff; text-decoration:none; font-weight:700; font-size:1.6rem; letter-spacing:.06em; white-space:nowrap;
}
.footer__links a::before{
  content:""; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:var(--dot); height:var(--dot); border-radius:50%;
  background:#fff var(--arrow-img) center/24px 24px no-repeat;
  box-shadow:0 8px 20px rgba(0,0,0,.14);
}
.footer__links a::after{ content:none; }
.footer__links a.dot-orange{ --arrow-img:url("../img/arrow-orange.png"); }
.footer__links a.dot-blue  { --arrow-img:url("../img/arrow-blue.png"); }
.footer__links a.dot-amber { --arrow-img:url("../img/arrow-amber.png"); }
.footer__links a.dot-green { --arrow-img:url("../img/arrow-green.png"); }
.footer__links a.dot-rose  { --arrow-img:url("../img/arrow-rose.png"); }
.footer__links a:hover{ transform:translateY(-1px); }

/* hero image */
.footer__hero{
  position:absolute; right:0; bottom:0; width:30%; height:auto; margin:0; overflow:hidden;
  z-index:0; pointer-events:none; aspect-ratio:432/417; min-width:330px;
}
.footer__hero img{ width:100%; height:100%; object-fit:cover; display:block; }

/* copyright */
.footer__copy{
  display:block; margin:8px auto 0; text-align:left; color:var(--ft-muted); font-size:1.2rem;
}

/* Responsive footer columns on small screens */
@media (max-width:1024px){ .footer__inner{ grid-template-columns:1fr; } }
@media (max-width:680px){
  .footer{ --hero-w:360px; padding-bottom:68px; }
  .footer__inner{ padding-right:calc(var(--hero-w) + 20px); }
  .footer__links{ column-count:1; column-gap:0; }
  .footer__links li{ grid-column:1 !important; }
  .footer__hero{ width:100%; height:auto; max-width:360px; }
}

/* ===== Visual Landing (Activity) ===== */
.visual-landing { position: relative; width: 100%; max-width: none; margin: 0; padding: 0; }
.visual-landing__picture, .visual-landing__img { display: block; width: 100vw; max-width: 100%; height: auto; }
/* （横長画像で横スクロールを許可したい場合は .visual-landing のラッパー側で制御推奨） */
.visual-landing__cta { display: flex; justify-content: center; margin: 2rem 0 4rem; }
.visual-landing__btn {
  background: #36AD6E; border: 2px solid #36AD6E; color: #fff; font-weight: 800;
  padding: 1rem 2.4rem; border-radius: 999px; text-decoration: none;
  box-shadow: 0 10px 22px rgba(54,173,110,.22);
}
.visual-landing__btn:hover { filter: brightness(1.05); }

/* ===== QA Index ===== */
.vl-wrap { position: relative; }
.vl-picture, .vl-img { display:block; width:100%; }
.vl-img { height:auto; }
.qaindex { padding: 4rem 0 6rem; }
.qaindex__head{ margin: 2.2rem 0 1.0rem; font-weight: 800; font-size: clamp(1.8rem, 2.2vw, 2.2rem); color:#333; }
.qaindex__list{ list-style:none; margin:0 0 2.4rem; padding:0; display:grid; gap:12px; }
.qaindex__link{
  --h: 56px;
  position:relative; display:flex; align-items:center; gap:10px;
  min-height:var(--h); padding:10px 54px 10px 14px;
  background:#fff; border-radius:999px; text-decoration:none;
  color:#222; box-shadow:0 4px 14px rgba(0,0,0,.08);
}
.qaindex__q{ display:inline-grid; place-items:center; width:28px; height:28px; border-radius:50%;
  background:#E6F1FF; color:#3B8CFF; font-weight:800; font-size:1.5rem; flex:0 0 28px; }
.qaindex__title{ font-weight:700; font-size:1.5rem; }
.qaindex__go{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  width:36px; height:36px; border-radius:50%;
  background:#4f6fff url("../img/arrow-white-right.png") no-repeat center/16px 16px;
  box-shadow:0 8px 16px rgba(79,111,255,.25);
}







/* ===== TEC 仕上げ ===== */

/* タイトル中央＋レイアウト */
.tribe-events .gl-top-bar{
  display:flex; align-items:center; justify-content:center;
  gap:14px; flex-wrap:wrap; margin:0 0 10px;
}
.tribe-events .gl-cal-title{
  margin:0; font-weight:800; text-align:center;
  font-size:clamp(20px,2.6vw,28px); color:#333;
}

/* 念のため：検索バー/切替/日付UIは非表示（保険） */
.tribe-events .tribe-events-c-events-bar,
.tribe-events .tribe-events-c-top-bar__actions,
.tribe-events .tribe-events-c-top-bar__datepicker { display:none !important; }


/* 全体を少し小さく＆幅を狭める */
.calendar-embed .tribe-events{ max-width:1000px; margin:0 auto; }
.calendar-embed .tribe-events *{ font-size:92%; } /* 文字全体をやや縮小 */

/* 月グリッドの高さ・見た目を軽やかに */
.tribe-events .tribe-events-calendar-month{ background:#fff; border-radius:0.1rem; padding:8px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.tribe-events .tribe-events-calendar-month__day{
  min-height:110px; /* セルの背丈を小さく */
}
.tribe-events .tribe-events-calendar-month__day--current{
  outline:2px dashed #23AE7F; outline-offset:2px;
	z-index: 1000;
}

.tribe-events .tribe-events-calendar-month__multiday-event-bar-title {
	font-size: 1.4rem;
}



/* ナビゲーション行などの余白微調整 */
.tribe-events .tribe-events-calendar-month__header{ padding:6px 4px; }





/* カード画像のデフォルト（PCは今のまま） */
.col-card__media { margin:0; aspect-ratio:3/2; overflow:hidden; }
.col-card__media img{ width:100%; height:100%; object-fit:cover; display:block; }

/* スマホは“切らずに収める” */
@media (max-width: 640px){
  .col-card__media{
    aspect-ratio:auto;       /* 固定比率を解除 */
    overflow:visible;        /* トリミングしない */
  }
  .col-card__media img{
    width:100%;
    height:auto;             /* 画像本来の縦横比を保持 */
    object-fit:contain;      /* 収める */
    background:#fff;         /* 余白の下地（任意） */
    display:block;
  }
}

:root{
  /* ヘッダーの実高さに合わせて微調整（例：88〜96pxくらい） */
  --header-h: 80px;
}

.single-main{               /* single.php の <main> に付けるクラス */
  padding-top: calc(var(--header-h) + 16px);
}

/* もし小画面でヘッダーが縦に伸びるなら */
@media (max-width: 768px){
  :root{ --header-h: 104px; } /* 例：SP時に少し大きめに */
}

/* === 等高カード化（一覧/カルーセル共通） === */
.col-card{
  height: 100%;
  display: flex;              /* カード自体を等高に */
}
.col-card__link{
  display: flex;
  flex-direction: column;     /* 上:画像→中:テキスト→下:余白 */
  height: 100%;
}

/* 画像は固定比率 + トリミング（cover）で統一 */
.col-card__media{
  margin: 0;
  aspect-ratio: 3 / 2;        /* 一覧で高さが揃う */
  overflow: hidden;
  flex: 0 0 auto;
}
.col-card__media img{
  width: 100%; height: 100%;
  object-fit: cover;          /* トリミングOK */
  display: block;
}

/* メタ（日時やカテゴリ）は通常どおり */
.col-card__meta{ flex: 0 0 auto; }

/* タイトルは2行で揃える（超えたら省略） */
.col-card__title{
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 6px 16px 6px;
  font-weight: 700; color:#222;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;      /* 2行に丸める */
  overflow: hidden;

  min-height: 5.2rem;         /* 1.6rem × 行高1.6 × 2 ≒ 5.12rem */
}

/* リードは2行で揃える（超えたら省略） */
.col-card__lead{
  font-size: 1.3rem;
  line-height: 1.5;
  color:#666; margin: 0 16px 16px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;      /* 2行に丸める */
  overflow: hidden;

  min-height: 3.9rem;         /* 1.3rem × 1.5 × 2 ≒ 3.9rem */
  flex: 1 0 auto;             /* ここを伸縮させて全カードの背丈を揃える */
}


/* ===== 固定ヘッダー分の押し下げ（かぶり防止） ===== */
:root { --header-h: 84px; }           /* PCのヘッダー高さに合わせて調整 */
@media (max-width: 768px){ :root { --header-h: 68px; } } /* SPのヘッダー高さ */



/* ===== 個別記事のアイキャッチは見切れない表示 ===== */
.post-hero { 
  margin: 0 0 16px; 
  background: #000;           /* レターボックスの背景（任意） */
}
.post-hero img{
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px){
  .post-hero{
    aspect-ratio: 16 / 9;     /* 画面に収めたい目安比率。要件に合わせて変更可 */
  }
  .post-hero img{
    width: 100%;
    height: 100%;
    object-fit: contain;       /* ← これで“見切れない” */
  }
}

/* ===== 一覧カードはトリミングOKで等高のまま ===== */
/* （前回入れた .col-card__media の cover を活かしつつ、SPだけ少し縦長に） */
@media (max-width: 640px){
  .col-card__media{ aspect-ratio: 4 / 3; }  /* 3:2 → 4:3 にして切れ感を緩和 */
}
.col-card__media img{
  object-fit: cover;     /* 一覧はトリミングでOK */
}



/* ===== 投稿アーカイブ共通（PC3 / SP2）===== */
.posts-archive { padding: 100px 0 80px; } /* 固定ヘッダー対策で上余白 */
.posts-archive .cap{
  display:inline-block; background:#FCEFE9; color:#E9654E; font-size:1.2rem; font-weight:700; border-radius:999px;
  padding:.25rem .8rem; margin:0 0 .8rem;
}
.posts-archive h1{ margin:0 0 18px; font-size:clamp(2.2rem,3vw,3rem); color:#222; }

/* グリッド：PC3 / タブレット2 / スマホ2 */
.posts-grid{
  --gap: 28px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--gap);
}
@media (max-width: 1024px){
  .posts-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .posts-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); --gap: 16px; }
}

/* カード */
.post-card{ background:#fff; border-radius:20px; box-shadow:0 10px 24px rgba(0,0,0,.08); overflow:hidden; display:flex; }
.post-card__link{ display:flex; flex-direction:column; text-decoration:none; color:inherit; width:100%; }

/* 画像は見切れないよう3:2枠でトリミング表示 */
.post-card__media{ margin:0; aspect-ratio:3/2; overflow:hidden; }
.post-card__media img{ width:100%; height:100%; object-fit:cover; display:block; }

/* テキスト部 */
.post-card__meta{ display:flex; align-items:center; gap:10px; font-size:1.2rem; color:#666; padding:12px 16px 0; }
.post-card__cat{ display:inline-block; background:#FCEFE9; color:#E9654E; border-radius:999px; padding:.15rem .6rem; line-height:1; font-weight:700; }
.post-card__title{ font-size:1.6rem; line-height:1.6; margin:6px 16px 6px; font-weight:700; color:#222; }
.post-card__lead{ font-size:1.3rem; color:#666; margin:0 16px 16px; }

/* 行数を制限して高さブレを抑える */
.post-card__title{
  display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden;
}
.post-card__lead{
  display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden;
}

/* ページャ */
.posts-pager{ margin: 28px 0 0; text-align:center; }
.posts-pager .pagination{ display:inline-flex; gap:10px; }
.posts-pager a, .posts-pager span{
  display:inline-grid; place-items:center; min-width:36px; height:36px; padding:0 .8rem; border-radius:999px;
  text-decoration:none; font-weight:700; color:#058662; background:#fff; box-shadow:0 8px 18px rgba(5,134,98,.10);
}
.posts-pager .current{ background:#058662; color:#fff; }



/* 富士遊牧人ブロックを差し込んだ Visual Landing ページだけ .page-body を白＆100%幅に */
.has-fujiyubokubito .page-body {
  background: #fff;
  width: 100%;
}

/* サポーターCTA（画像ボタン） */
.supporter-cta-wrap{
  display:flex;
  justify-content:center;
  margin: -20rem 0 5rem;
}
.supporter-cta img{
  display:block;
  width: min(400px, 92vw);  /* 全体の大きさをここで調整 */
  height:auto;
  border-radius: 9999px;    /* 画像が角丸なら不要 */
}
.supporter-cta:hover img{ transform: translateY(-1px); }







/* ========== Life Promise ========== */
.lp { background:#fbf5ef; }
.lp .container{ width:min(1100px, 92vw); margin-inline:auto; }

/* ヒーロー */
.lp-hero{
  display:grid; grid-template-columns:1.1fr .9fr; gap:28px;
  align-items:center; padding: 20px 0 10px;
}
.lp-kicker{
  color:#E9654E; font-weight:800; letter-spacing:.12em; margin:0 0 .8rem;
}
.lp-h1{ font-size:clamp(2.2rem,3.6vw,3.2rem); line-height:1.35; margin:0; }
.lp-hero__media{ margin:0; border-radius:32px; overflow:hidden; }
.lp-hero__media img{ display:block; width:100%; height:100%; object-fit:cover; }

/* セクション共通 */
.lp-sec{ margin: 24px auto 60px; }
.lp-sec__head{ display:flex; align-items:flex-end; gap:14px; margin: 0 0 16px; }
.lp-num{
  display:grid; place-items:center; width:64px; height:64px;
  border-radius:24px; background:#fff; color:#E9654E; font-weight:900; font-size:2.2rem;
  box-shadow:0 10px 20px rgba(0,0,0,.06);
}
.lp-cap{ color:#888; margin:0; font-size:1.3rem; }
.lp-cap--accent{ color:#333; margin: 16px 0 0; }
.lp-h2{ margin:.2rem 0 0; font-size:clamp(1.9rem,2.6vw,2.2rem); line-height:1.35; }
.lp-sub{ margin:.4rem 0 0; color:#E9654E; font-weight:700; }

/* 2カラム本体 */
.lp-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:26px; align-items:center;
}
.lp-grid--reverse{ grid-template-columns:.95fr 1.05fr; }
@media (max-width: 900px){
  .lp-hero{ grid-template-columns:1fr; }
  .lp-grid, .lp-grid--reverse{ grid-template-columns:1fr; }
}

/* “ゆるい楕円” ブロブ */
.lp-blob{
  margin:0; background:#fff; padding:14px; border-radius:42px;
  box-shadow:0 12px 26px rgba(0,0,0,.08);
  /* 外形を有機的に */
  border-radius: 48% 52% 44% 56% / 58% 38% 62% 42%;
  overflow:hidden;
}
.lp-blob img{ width:100%; height:100%; object-fit:cover; display:block; border-radius:18px; }
.lp-blob--small{ max-width:360px; margin-top:16px; }

/* 本文 */
.lp-lead{ font-weight:800; color:#C24E3D; margin:0 0 .6rem; }
.lp-body p{ margin:0 0 1em; color:#333; }

/* バッジ（3Kなど） */
.lp-badges{
  list-style:none; margin:0; padding:0; display:grid; gap:12px; width:180px;
}
.lp-badges li{
  display:grid; grid-template-columns:40px 1fr; align-items:center; gap:10px;
  background:#fff; padding:12px 14px; border-radius:18px;
  box-shadow:0 8px 18px rgba(0,0,0,.06); font-weight:700; color:#666;
}
.lp-badge__ic{
  width:28px; height:28px; border-radius:50%;
  background:#E6F1FF url("../img/icon-drop.svg") center/18px 18px no-repeat; /* お好みのアイコンに */
}

/* 富士遊牧人の前フレーズ */
.lp-fyj .lp-cap{ text-align:left; }
.lp-fyj span{ color:#E9654E; font-weight:800; }

/* 余白調整（固定ヘッダーと重なり防止が必要なら） */
body.admin-bar .lp .lp-hero{ padding-top: 20px; }

/* ========== /Life Promise ========== */




