@charset "UTF-8";

/* =========================================================
   ヘラクレスファーム長野 - style.css
   1. Base / Tokens
   2. Parts (button / heading / link)
   3. Header & Global nav
   4. Hero (FV)
   5. About
   6. Pillars
   7. Activities
   8. Ashita Laboratory
   9. Message & News
  10. Sub page (page head / breadcrumb / spec)
  11. Form & Policy
  12. News & Event (list / article)
  13. Access
  14. Contact
  15. Footer
  16. Responsive
========================================================= */

/* =========================================================
   1. Base / Tokens
========================================================= */
:root {
  --green-dark: #2c5d2e;
  --green: #3f7d3a;
  --green-mid: #5a9a4a;
  --green-light: #8cc63f;
  --green-pale: #eef4e6;
  --yellow: #f6c445;
  --orange: #ef9a5b;
  --cream: #f4f3f0;   /* = FV画像下端の色に合わせたベースグレー */
  --cream-2: #eceae5;
  --text: #3a3a35;
  --text-sub: #6b6b63;
  --white: #ffffff;
  --line: #e3e1db;

  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-round: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-hand: "Klee One", "Yu Gothic", serif;

  --inner: 1180px;
  --pad: clamp(16px, 4vw, 40px);
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease), color .25s var(--ease); }
a:hover { opacity: .75; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.inner { width: min(100% - var(--pad) * 2, var(--inner)); margin-inline: auto; }
.pc { display: inline; }
.sp { display: none; }

/* =========================================================
   2. Parts
========================================================= */
.sec-en {
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--green-mid);
  margin-bottom: 8px;
}
.sec-en--center { text-align: center; letter-spacing: .3em; }

.sec-ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.5;
  color: var(--green-dark);
  margin-bottom: 26px;
}
.sec-ttl--center { text-align: center; margin-bottom: 4px; }
.sec-ttl--wide { letter-spacing: .12em; }

.sec-head { margin-bottom: 40px; }
.sec-head .sec-en--center { margin-bottom: 0; }

.hand-copy {
  font-family: var(--font-hand);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 28px;
  border-radius: 999px;
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { opacity: 1; transform: translateY(-2px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn .ico { width: 20px; height: 20px; flex: none; }

.btn--outline {
  border: 1px solid var(--green);
  color: var(--green-dark);
  background: var(--white);
  padding-inline: 30px;
  gap: 22px;
}
.btn--outline:hover { background: var(--green); color: var(--white); border-color: var(--green); }

.btn--fill { background: var(--green-dark); color: var(--white); }
.btn--fill:hover { background: var(--green); }

.btn--contact {
  background: var(--green-dark);
  color: var(--white);
  min-height: 56px;
  padding-inline: 30px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(44, 93, 46, .22);
}
.btn--contact:hover { background: var(--green); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.link-arrow .arrow { color: var(--green); transition: transform .3s var(--ease); }
.link-arrow:hover { opacity: 1; color: var(--green); }
.link-arrow:hover .arrow { transform: translateX(5px); }

/* =========================================================
   3. Header
========================================================= */
.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
}
.header__inner {
  width: min(100% - 32px, 1560px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
}
.header__logo { flex: none; }
.header__logo img {
  width: clamp(130px, 12vw, 190px);
  filter: drop-shadow(0 2px 6px rgba(255, 255, 255, .85));
}

.gnav { flex: 1; display: flex; justify-content: center; }
.gnav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.15vw, 20px);
}
.gnav__list a {
  font-size: clamp(11.5px, .92vw, 13.5px);
  font-weight: 500;
  color: var(--text);
  text-shadow: 0 1px 4px rgba(255, 255, 255, .9);
  position: relative;
  padding-bottom: 4px;
}
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.gnav__list a:hover { opacity: 1; }
.gnav__list a:hover::after { transform: scaleX(1); transform-origin: left; }

/* 別ページへ遷移する項目（お知らせ／イベント） */
.gnav__list .is-page > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px 6px 10px;
  border: 1px solid var(--green-light);
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  text-shadow: none;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.gnav__list .is-page > a::after { display: none; }
.gnav__list .is-page > a:hover {
  opacity: 1;
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.gnav__ico { width: 15px; height: 15px; flex: none; }
.gnav__ext { width: 9px; height: 9px; flex: none; opacity: .6; }

.gnav__contact { display: none; }
.header__contact { flex: none; }

/* 下層ページ用ヘッダー（ヒーローが無いため常に白帯・追従） */
.header--sub {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(58, 58, 53, .08);
}
.header--sub .header__logo img { filter: none; }
.header--sub .gnav__list a { text-shadow: none; }
.gnav__list .is-page > a[aria-current="page"] {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.hamburger { display: none; }

/* =========================================================
   4. Hero
========================================================= */
.hero { position: relative; background: var(--cream); }
.hero__visual img { display: block; width: 100%; }

.hero__copy {
  position: absolute;
  left: 27.5%;
  top: 70%;
  color: var(--text);
}
.hero__concept {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 22px);
  letter-spacing: .14em;
  color: var(--green-dark);
  margin-bottom: .7em;
  white-space: nowrap;   /* 「ヘラクレス×福祉×アート×笑顔」は常に1行で見せる */
}
.hero__concept span { color: var(--green-mid); margin-inline: .25em; font-weight: 500; }
.hero__lead {
  font-size: clamp(12px, 1.15vw, 17px);
  line-height: 1.85;
  font-weight: 500;
}

/* イベントバッジ */
.hero__badge {
  position: absolute;
  right: 3.5%;
  top: 66%;
  width: clamp(120px, 13.5vw, 196px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5em;
  text-align: center;
  padding: 10px;
  box-shadow: 0 10px 26px rgba(44, 93, 46, .28);
  transition: transform .35s var(--ease), background-color .35s var(--ease);
}
.hero__badge:hover { opacity: 1; transform: scale(1.05); background: var(--green); }
.hero__badge-hand {
  font-family: var(--font-hand);
  font-size: clamp(10px, 1.05vw, 15px);
  line-height: 1.5;
  color: var(--yellow);
}
.hero__badge-text {
  font-family: var(--font-round);
  font-weight: 500;
  font-size: clamp(9px, .95vw, 14px);
  line-height: 1.5;
}
.hero__badge-arrow { font-size: clamp(11px, 1vw, 15px); line-height: 1; }

/* =========================================================
   5. About
========================================================= */
.about {
  background: var(--cream);
  padding: clamp(30px, 4vw, 60px) 0 clamp(50px, 6vw, 90px);
  position: relative;
}
.about__inner {
  width: min(100% - var(--pad) * 2, 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 60px);
  align-items: start;
}
.about__text .sec-ttl { font-size: clamp(23px, 2.1vw, 31px); }
.about__text p { font-size: 14px; line-height: 2; margin-bottom: 1.4em; }
.about__text .btn { margin-top: 8px; }

.about__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 46px);
  margin-bottom: clamp(14px, 2vw, 26px);
}
.about__logo { width: clamp(150px, 17vw, 245px); }
.about__cross { font-size: clamp(20px, 2vw, 30px); color: var(--text-sub); font-weight: 300; }
.about__partner { text-align: center; }
.about__partner-cap { font-size: 12px; color: var(--text-sub); margin-bottom: 4px; }
.about__partner img { width: clamp(170px, 19vw, 282px); height: auto; }

.about__hand {
  text-align: center;
  font-size: clamp(17px, 2vw, 29px);
  margin-bottom: clamp(14px, 2vw, 24px);
}

.about__gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(160px, 18vw, 250px);
  gap: clamp(8px, 1vw, 16px);
}
.about__ph {
  grid-column: span 1;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
}
.about__ph--wide { grid-column: span 3; }
.about__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.about__ph:hover img { transform: scale(1.06); }

/* =========================================================
   6. Pillars
========================================================= */
.pillars { background: var(--white); }
.pillars__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
}
.pillar { background: var(--white); display: flex; flex-direction: column; }
.pillar__img { aspect-ratio: 5 / 4; overflow: hidden; background: var(--cream-2); }
.pillar__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pillar:hover .pillar__img img { transform: scale(1.05); }

.pillar__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2vw, 30px) clamp(16px, 1.8vw, 28px) clamp(24px, 2.6vw, 36px);
}
.pillar__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pillar__icon {
  flex: none;
  width: 46px; height: 46px;
  border: 1px solid var(--green-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-mid);
  background: var(--green-pale);
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar__en { font-size: 11px; letter-spacing: .16em; color: var(--green-mid); font-weight: 700; line-height: 1.4; }
.pillar__ttl { font-family: var(--font-round); font-weight: 700; font-size: clamp(18px, 1.5vw, 22px); color: var(--green-dark); line-height: 1.4; }
.pillar__txt { font-size: 13.5px; line-height: 1.85; }

/* =========================================================
   7. Activities
========================================================= */
.activities {
  background: var(--cream);
  padding: clamp(50px, 6vw, 84px) 0 clamp(50px, 6vw, 80px);
}
.activities__inner { width: min(100% - var(--pad) * 2, 1300px); margin-inline: auto; }

.act-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.4vw, 22px);
}
.act-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(58, 58, 53, .07);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.act-card:hover { transform: translateY(-6px); box-shadow: 0 12px 26px rgba(58, 58, 53, .13); }
.act-card__img { aspect-ratio: 10 / 7; overflow: hidden; background: var(--cream-2); }
.act-card__img img { width: 100%; height: 100%; object-fit: cover; }
.act-card__body { padding: 16px 18px 22px; }
.act-card__ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 16px;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 8px;
}
.act-card__body p { font-size: 12.5px; line-height: 1.8; color: var(--text-sub); }


/* =========================================================
   8. Ashita Laboratory
========================================================= */
.ashita {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 14%, var(--white) 58%);
  padding: clamp(50px, 6vw, 84px) 0 clamp(50px, 6vw, 86px);
}
.ashita__inner { width: min(100% - var(--pad) * 2, 1120px); margin-inline: auto; }

/* 本文中のハイライト */
.mk {
  background: linear-gradient(transparent 62%, rgba(140, 198, 63, .45) 62%);
  color: inherit;
  font-weight: 700;
  padding: 0 .1em;
}

/* 導入カード */
.ashita__intro {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 3vw, 46px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.6vw, 44px);
  box-shadow: 0 4px 20px rgba(58, 58, 53, .07);
}
.ashita__brand { text-align: center; }
.ashita__cap {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.ashita__logo { width: min(100%, 300px); height: auto; }
.ashita__def p { font-size: 14.5px; line-height: 2.05; }
.ashita__def p + p { margin-top: 1em; }

/* 仕事と成長 */
.ashita__main {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
  margin-top: clamp(30px, 4vw, 56px);
}
.ashita__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 1vw, 14px);
}
.ashita__ph {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 1;
}
.ashita__ph--lg { grid-column: span 2; aspect-ratio: 4 / 3; }
.ashita__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ashita__ph:hover img { transform: scale(1.06); }

.ashita__body p { font-size: 14px; line-height: 2.05; }
.ashita__body p + p { margin-top: 1em; }

.ashita__jobs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 22px;
}
.ashita__jobs li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px 9px 10px;
  font-family: var(--font-round);
  font-weight: 500;
  font-size: 13px;
  color: var(--green-dark);
  line-height: 1.4;
}
.ashita__jico {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--green-light);
  color: var(--green-mid);
  display: grid;
  place-items: center;
}
.ashita__jico svg { width: 17px; height: 17px; }

/* 農福連携のコンセプト */
.ashita__concept {
  margin-top: clamp(34px, 4.5vw, 62px);
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 46px) clamp(20px, 3vw, 44px);
  text-align: center;
}
.ashita__concept-lead {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--green-mid);
  margin-bottom: 18px;
}
.ashita__cross {
  display: flex;
  flex-wrap: nowrap;      /* 4項目を折り返さない */
  align-items: center;
  justify-content: center;
  gap: min(1.8vw, 26px);
  margin-bottom: 22px;
}
.ashita__cross > li { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ashita__x {
  font-size: min(3.2vw, 20px);
  color: var(--green-mid);
  font-weight: 300;
  align-self: center;
}
.ashita__cico {
  width: min(12vw, 62px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-mid);
  display: grid;
  place-items: center;
  box-shadow: 0 3px 12px rgba(44, 93, 46, .12);
}
.ashita__cico svg { width: 52%; height: 52%; }
.ashita__cttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: min(3.1vw, 15px);
  color: var(--green-dark);
  white-space: nowrap;
}
.ashita__concept-txt { font-size: 14px; line-height: 2.05; }

/* 結び */
.ashita__closing { text-align: center; margin-top: clamp(30px, 4vw, 52px); }
.ashita__hand { font-size: clamp(20px, 2.4vw, 32px); margin-bottom: .5em; }
.ashita__closing-txt { font-size: 14px; line-height: 2; }

/* =========================================================
   9. Message & News
========================================================= */
.bottom {
  background: var(--white);
  padding-bottom: clamp(50px, 6vw, 90px);
}
.bottom__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, .92fr) minmax(0, .88fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  width: min(100% - 24px, 1560px);
  margin-inline: auto;
}
.bottom__photo {
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}
.bottom__photo img { width: 100%; height: 100%; object-fit: cover; }

.bottom__msg { padding-block: clamp(20px, 3vw, 40px); }
.bottom__hand { font-size: clamp(22px, 2.6vw, 38px); margin-bottom: .35em; }
.bottom__en {
  font-family: var(--font-hand);
  font-size: 13px;
  color: var(--green-mid);
  margin-bottom: 1.4em;
}
.bottom__txt { font-size: 13.5px; line-height: 2; margin-bottom: 1.8em; }

/* NEWS */
.bottom__news {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(20px, 2.2vw, 32px) clamp(18px, 2vw, 30px);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-block: clamp(16px, 2vw, 34px);
}
.news__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.news__en { font-family: var(--font-round); font-weight: 700; font-size: 20px; letter-spacing: .16em; color: var(--green-dark); }
.news__jp { font-size: 12px; color: var(--text-sub); }

.news__list li + li { border-top: 1px dashed var(--line); }
.news__list a {
  display: flex;
  gap: 16px;
  padding: 11px 0;
  font-size: 12.5px;
  line-height: 1.7;
}
.news__list time { flex: none; color: var(--text-sub); letter-spacing: .03em; }
.news__list a:hover { opacity: 1; color: var(--green); }

.news__more { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }

/* =========================================================
   10. Sub page (page head / breadcrumb / spec)
========================================================= */
.page-head {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: clamp(48px, 6vw, 86px) 0 clamp(44px, 5.5vw, 78px);
  text-align: center;
}
.page-head__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 文字の可読性を確保しつつ写真を活かす白いスクリム */
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .74) 0%, rgba(244, 243, 240, .88) 100%);
}
.page-head__inner {
  position: relative;
  z-index: 1;
  width: min(100% - var(--pad) * 2, var(--inner));
  margin-inline: auto;
}
.page-head__ttl, .page-head__en { text-shadow: 0 1px 8px rgba(255, 255, 255, .9); }
.page-head__ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: .12em;
  line-height: 1.4;
  color: var(--green-dark);
}
.page-head__en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--green-mid);
  margin-top: 6px;
}

.breadcrumb { background: var(--cream-2); }
.breadcrumb__list {
  width: min(100% - var(--pad) * 2, var(--inner));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 10px 0;
  font-size: 11.5px;
  color: var(--text-sub);
}
.breadcrumb__list li { display: flex; align-items: center; gap: 10px; }
.breadcrumb__list li + li::before { content: "›"; color: var(--line); }
.breadcrumb__list a { color: var(--green); }

/* 下層ページ本文の器（お知らせ／イベント／お問い合わせ用） */
.page-body { background: var(--white); padding: clamp(44px, 5.5vw, 76px) 0 clamp(50px, 6vw, 84px); }
.page-body__inner { width: min(100% - var(--pad) * 2, 980px); margin-inline: auto; }

/* コンテンツ実装までの仮表示 */
.placeholder {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: var(--text-sub);
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px) 24px;
}
.placeholder__ttl {
  display: block;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--green-dark);
  letter-spacing: .08em;
  margin-bottom: 10px;
}

/* 概要テーブル */
.company { background: var(--white); padding: clamp(44px, 5.5vw, 76px) 0 clamp(50px, 6vw, 84px); }
.company__inner { width: min(100% - var(--pad) * 2, 880px); margin-inline: auto; }
.company__lead {
  font-size: 14px;
  line-height: 2.1;
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.company__block + .company__block { margin-top: clamp(40px, 5vw, 68px); }
.company__ttl {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 4px solid var(--green-light);
}
.company__ttl span {
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--green-mid);
}

.spec { margin: 0; border-top: 1px solid var(--line); }
.spec__row {
  display: grid;
  grid-template-columns: 11em minmax(0, 1fr);
  gap: 0 24px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}
.spec dt {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dark);
  letter-spacing: .04em;
  line-height: 1.9;
}
.spec dd { margin: 0; font-size: 14px; line-height: 1.9; }
.spec__ul li { padding-left: 1.1em; position: relative; }
.spec__ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .82em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}
.spec__tel {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 18px;
  color: var(--green-dark);
  letter-spacing: .03em;
}
.spec__map {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--green);
}
.spec__map .arrow { transition: transform .3s var(--ease); }
.spec__map:hover { opacity: 1; }
.spec__map:hover .arrow { transform: translateX(4px); }

/* =========================================================
   11. Form & Policy
========================================================= */
.form__lead { font-size: 14px; line-height: 2; text-align: center; margin-bottom: clamp(26px, 3.4vw, 42px); }
.form__note { font-size: 12.5px; color: var(--text-sub); }

.form { border-top: 1px solid var(--line); }
.form__row {
  display: grid;
  grid-template-columns: 15em minmax(0, 1fr);
  gap: 0 28px;
  align-items: start;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.form__label { display: flex; align-items: center; gap: 10px; padding-top: 12px; }
.form__ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dark);
  line-height: 1.6;
}
.badge {
  flex: none;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 4px;
  padding: 3px 7px;
  line-height: 1.4;
}
.badge--req { background: var(--green-dark); color: var(--white); }
.badge--any { background: var(--cream-2); color: var(--text-sub); }

.form__fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.form__legend { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

/* テキスト入力 */
.input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.input::placeholder { color: #b3b0a6; }
.input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(140, 198, 63, .25);
}
.input--area { resize: vertical; min-height: 170px; }

/* ラジオ（お問い合わせ項目） */
.form__radios { display: flex; flex-wrap: wrap; gap: 10px; }
.radio, .check { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.radio input, .check input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.radio {
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px 11px 14px;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.radio:hover { border-color: var(--green-light); }
.radio__mark {
  flex: none;
  width: 19px; height: 19px;
  border: 2px solid #c8c5b9;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: border-color .25s var(--ease);
}
.radio__mark::after {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  transform: scale(0);
  transition: transform .2s var(--ease);
}
.radio__txt { font-family: var(--font-round); font-weight: 500; font-size: 14px; color: var(--text); line-height: 1.4; }
.radio input:checked ~ .radio__mark { border-color: var(--green); }
.radio input:checked ~ .radio__mark::after { transform: scale(1); }
.radio:has(input:checked) { background: var(--green-pale); border-color: var(--green); }
.radio input:focus-visible ~ .radio__mark { box-shadow: 0 0 0 3px rgba(140, 198, 63, .4); }

/* 同意チェック */
.form__agree { text-align: center; padding: clamp(24px, 3vw, 34px) 0 clamp(6px, 1vw, 12px); }
.check { gap: 12px; text-align: left; }
.check__mark {
  flex: none;
  width: 21px; height: 21px;
  border: 2px solid #c8c5b9;
  border-radius: 5px;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.check__mark::after {
  content: "";
  width: 11px; height: 6px;
  border-left: 2.4px solid var(--white);
  border-bottom: 2.4px solid var(--white);
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  margin-top: -2px;
  transition: transform .2s var(--ease);
}
.check input:checked ~ .check__mark { background: var(--green); border-color: var(--green); }
.check input:checked ~ .check__mark::after { transform: rotate(-45deg) scale(1); }
.check input:focus-visible ~ .check__mark { box-shadow: 0 0 0 3px rgba(140, 198, 63, .4); }
.check__txt { font-size: 14px; line-height: 1.7; }
.check__txt a { color: var(--green); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.check__txt .gnav__ext { width: 10px; height: 10px; margin-left: 4px; opacity: .7; }

/* 入力エラー */
.form__alert {
  background: #fdeceb;
  border: 1px solid #eec9c6;
  border-radius: 10px;
  color: #c0453b;
  font-size: 13.5px;
  line-height: 1.8;
  padding: 13px 18px;
  margin-bottom: 22px;
  text-align: center;
}
.form__error { font-size: 12.5px; color: #c0453b; line-height: 1.7; margin-top: 6px; }
.form__error--center { text-align: center; }
.has-error .input { border-color: #c0453b; background: #fffafa; }
.has-error .radio { border-color: #e6c7c4; }
.has-error .check__mark { border-color: #c0453b; }

/* 迷惑送信よけ（画面には出さない） */
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* 送信完了 */
.thanks { text-align: center; padding: clamp(10px, 2vw, 26px) 0; }
.thanks__icon {
  display: grid;
  place-items: center;
  width: clamp(64px, 8vw, 86px);
  aspect-ratio: 1;
  margin: 0 auto clamp(18px, 2.4vw, 26px);
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
}
.thanks__icon svg { width: 52%; height: 52%; }
.thanks__ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 30px);
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: .7em;
}
.thanks__txt { font-size: 15px; line-height: 2; margin-bottom: 1.4em; }
.thanks__note { font-size: 13px; line-height: 2; color: var(--text-sub); }
.thanks__tel {
  display: inline-block;
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 26px) clamp(28px, 4vw, 52px);
  margin-top: clamp(26px, 3.4vw, 40px);
}
.thanks__tel-lead { display: block; font-size: 12.5px; color: var(--text-sub); margin-bottom: 4px; }
.thanks__tel-note { display: block; font-size: 12px; color: var(--text-sub); margin-top: 4px; }
.thanks__back { margin-top: clamp(28px, 3.6vw, 44px); }

.form__submit { text-align: center; margin-top: clamp(18px, 2.4vw, 28px); }
.form__submit .btn { min-width: 300px; }

/* 電話での問い合わせ */
.form__tel {
  margin-top: clamp(36px, 4.5vw, 60px);
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px) 20px;
}
.form__tel-lead { font-size: 13px; color: var(--text-sub); margin-bottom: 6px; }
.form__tel-num {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: .04em;
  color: var(--green-dark);
  line-height: 1.3;
}
.form__tel-note { font-size: 12.5px; color: var(--text-sub); margin-top: 6px; }

/* プライバシーポリシー */
.policy__intro { font-size: 14px; line-height: 2.05; margin-bottom: clamp(28px, 3.6vw, 44px); }
.policy__sec + .policy__sec { margin-top: clamp(26px, 3.2vw, 40px); }
.policy__ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid var(--green-light);
}
.policy__sec p { font-size: 14px; line-height: 2.05; }
.policy__sec p + p { margin-top: .9em; }
.policy__ul { margin: .8em 0; }
.policy__ul li { position: relative; padding-left: 1.2em; font-size: 14px; line-height: 2; }
.policy__ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .86em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-light);
}
.policy__box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 30px);
  margin-top: 4px;
}
.policy__box-ttl { font-family: var(--font-round); font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.policy__box a { color: var(--green); font-weight: 700; }
.policy__date { margin-top: clamp(30px, 4vw, 48px); text-align: right; font-size: 12.5px; color: var(--text-sub); }

/* =========================================================
   12. News & Event (list / article)
========================================================= */
/* お知らせ一覧 */
.entry-list { border-top: 1px solid var(--line); }
.entry { border-bottom: 1px solid var(--line); }
.entry__link {
  display: grid;
  grid-template-columns: 8.5em minmax(0, 1fr) 2em;
  gap: 4px 18px;
  align-items: center;
  padding: 22px 6px;
  transition: background-color .25s var(--ease);
}
.entry__link:hover { opacity: 1; background: var(--cream); }
.entry__date { font-size: 13px; color: var(--text-sub); letter-spacing: .03em; }
.entry__body { min-width: 0; }
.entry__ttl {
  display: block;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--green-dark);
  line-height: 1.6;
}
.entry__excerpt {
  display: block;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--text-sub);
  margin-top: 3px;
}
.entry__arrow { justify-self: end; color: var(--green); transition: transform .3s var(--ease); }
.entry__link:hover .entry__arrow { transform: translateX(5px); }

/* イベント一覧 */
.ev-list { display: grid; gap: clamp(14px, 2vw, 22px); }
.ev-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ev-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(58, 58, 53, .1); }
.ev-card__link { display: block; padding: clamp(20px, 2.6vw, 30px); }
.ev-card__link:hover { opacity: 1; }
.ev-card__head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-bottom: 12px; }
.ev-card__date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 6px 15px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}
.ev-card__date svg { width: 15px; height: 15px; flex: none; }
.ev-card__posted { font-size: 11.5px; color: var(--text-sub); }
.ev-card__ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--green-dark);
  line-height: 1.55;
}
.ev-card__venue {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-sub);
  margin-top: 8px;
}
.ev-card__venue svg { width: 15px; height: 15px; flex: none; color: var(--green-mid); }
.ev-card__excerpt { font-size: 13.5px; line-height: 1.9; margin-top: 10px; }
.ev-card__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green);
}
.ev-card__more .arrow { transition: transform .3s var(--ease); }
.ev-card:hover .ev-card__more .arrow { transform: translateX(5px); }

/* 一覧のサムネイル */
.entry--thumb .entry__link { grid-template-columns: 8.5em 132px minmax(0, 1fr) 2em; }
.entry__thumb {
  display: block;
  width: 132px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-2);
}
.entry__thumb img { width: 100%; height: 100%; object-fit: cover; }

.ev-card--thumb .ev-card__link { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 0; padding: 0; }
.ev-card__thumb { overflow: hidden; background: var(--cream-2); }
.ev-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ev-card--thumb:hover .ev-card__thumb img { transform: scale(1.05); }
.ev-card--thumb .ev-card__inner { padding: clamp(20px, 2.6vw, 30px); }

/* 記事詳細 */
.article__hero {
  margin: 0 0 clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
}
.article__hero img { width: 100%; height: auto; display: block; }

.article__head { padding-bottom: 20px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.article__date { display: block; font-size: 13px; color: var(--text-sub); margin-bottom: 8px; }
.article__ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 31px);
  line-height: 1.5;
  color: var(--green-dark);
}
.article__meta {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 24px);
  margin-bottom: 28px;
}
.article__meta > div { display: flex; gap: 16px; font-size: 14px; line-height: 1.9; }
.article__meta > div + div { margin-top: 8px; }
.article__meta dt {
  flex: none;
  width: 5.5em;
  font-family: var(--font-round);
  font-weight: 700;
  color: var(--green-mid);
}
.article__meta dd { margin: 0; }

.entry-back { text-align: center; margin-top: clamp(34px, 4.5vw, 56px); }

/* CMSから出力される本文 */
.richtext { font-size: 15px; line-height: 2.05; }
.richtext img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-inline: auto;
}
.richtext figure { margin: 0; }
.richtext figcaption { font-size: 12.5px; color: var(--text-sub); text-align: center; margin-top: 8px; }
.richtext > * + * { margin-top: 1.4em; }
.richtext h2 {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 23px);
  color: var(--green-dark);
  line-height: 1.6;
  padding-left: 13px;
  border-left: 4px solid var(--green-light);
  margin-top: 2em;
}
.richtext h3 {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--green-dark);
  line-height: 1.6;
  margin-top: 1.8em;
}
.richtext h4 { font-family: var(--font-round); font-weight: 700; font-size: 16px; color: var(--green-dark); margin-top: 1.6em; }
.richtext ul { list-style: disc; padding-left: 1.5em; }
.richtext ol { list-style: decimal; padding-left: 1.6em; }
.richtext li + li { margin-top: .3em; }
.richtext blockquote {
  margin: 0;
  padding: 14px 20px;
  background: var(--cream);
  border-left: 3px solid var(--green-light);
  border-radius: 0 8px 8px 0;
  color: var(--text-sub);
}
.richtext a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.richtext hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }
.richtext strong, .richtext b { font-weight: 700; }

/* ページ送り */
.pager { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: clamp(30px, 4vw, 48px); }
.pager__item {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-family: var(--font-round);
  font-size: 14px;
  color: var(--green-dark);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.pager__item:hover { opacity: 1; background: var(--cream); }
.pager__item.is-current { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); font-weight: 700; }

/* トップのNEWSが空のとき */
.news__empty { font-size: 13px; color: var(--text-sub); padding: 14px 0; }

/* =========================================================
   13. Access
========================================================= */
.access {
  background: var(--cream);
  padding: clamp(50px, 6vw, 84px) 0 clamp(50px, 6vw, 80px);
}
.access__inner { width: min(100% - var(--pad) * 2, 1180px); margin-inline: auto; }

.access__body {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(20px, 2.6vw, 40px);
  align-items: stretch;
}

/* 地図 */
.access__map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  min-height: 340px;
  box-shadow: 0 3px 14px rgba(58, 58, 53, .08);
}
.access__map iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* 情報カード */
.access__info {
  background: var(--white);
  box-shadow: 0 3px 14px rgba(58, 58, 53, .07);
  border-radius: var(--radius);
  padding: clamp(22px, 2.4vw, 36px) clamp(20px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
}
.access__name {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--green-dark);
  line-height: 1.5;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.access__dl { margin: 0 0 22px; }
.access__dl > div { display: flex; gap: 14px; font-size: 13.5px; line-height: 1.9; }
.access__dl > div + div { margin-top: 10px; }
.access__dl dt {
  flex: none;
  width: 5.5em;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: .04em;
}
.access__dl dd { margin: 0; }
.access__tel {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 17px;
  color: var(--green-dark);
  letter-spacing: .03em;
}

/* アクセス方法 */
.access__ways { margin-bottom: 24px; }
.access__ways li { display: flex; gap: 12px; }
.access__ways li + li { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.access__ico {
  flex: none;
  width: 38px; height: 38px;
  border: 1px solid var(--green-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-mid);
  background: var(--cream);
}
.access__ico svg { width: 21px; height: 21px; }
.access__way-ttl {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dark);
  line-height: 1.6;
}
.access__ways p { font-size: 12.5px; line-height: 1.8; color: var(--text-sub); }
.access__ways .access__way-ttl { color: var(--green-dark); font-size: 14px; }

.access__btn { margin-top: auto; align-self: flex-start; }
.access__btn .gnav__ext { width: 12px; height: 12px; opacity: .65; }

/* =========================================================
   14. Contact
========================================================= */
.contact {
  background: linear-gradient(180deg, var(--white) 0%, var(--green-pale) 100%);
  padding: clamp(50px, 6vw, 84px) 0;
  text-align: center;
}
.contact__inner { width: min(100% - var(--pad) * 2, 900px); margin-inline: auto; }
.contact__txt { font-size: 14px; margin: 18px 0 30px; }
.contact__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.contact__btns .btn { min-width: 260px; }

/* =========================================================
   15. Footer
========================================================= */
.footer { background: var(--green-dark); color: var(--white); padding: clamp(36px, 4vw, 56px) 0 20px; }
.footer__inner {
  width: min(100% - var(--pad) * 2, var(--inner));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer__logo {
  width: 210px;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.footer__addr { font-size: 12.5px; line-height: 1.9; color: rgba(255, 255, 255, .85); }

/* SNS */
.footer__sns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer__sns a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.footer__sns svg { width: 19px; height: 19px; flex: none; }
.footer__sns a:hover {
  opacity: 1;
  background: var(--white);
  border-color: var(--white);
  color: var(--green-dark);
}
.footer__nav { display: flex; gap: clamp(24px, 4vw, 64px); }
.footer__nav a { font-size: 13px; color: rgba(255, 255, 255, .9); }
.footer__nav .is-page > a { display: inline-flex; align-items: center; gap: 7px; }
.footer__nav .is-page .gnav__ico { width: 15px; height: 15px; color: var(--green-light); }
.footer__nav .is-page .gnav__ext { width: 9px; height: 9px; opacity: .55; }
.footer__nav li + li { margin-top: 8px; }
.footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  text-align: center;
}
.footer__sub { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-bottom: 12px; }
.footer__sub a { font-size: 12px; color: rgba(255, 255, 255, .88); }
.footer__copy {
  text-align: center;
  font-size: 11.5px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .7);
}

/* =========================================================
   16. Responsive
========================================================= */

/* --- 〜1400px : ヘッダーCTAをアイコンのみにしてナビの幅を確保 --- */
@media (max-width: 1400px) {
  .header__contact span { display: none; }
  .header__contact {
    padding-inline: 0;
    width: 50px;
    min-height: 50px;
    gap: 0;
  }
  .header__contact .ico { width: 22px; height: 22px; }
}

/* --- 〜1260px : メニュー項目が1行に収まらないためドロワーへ切替 --- */
@media (max-width: 1260px) {
  html { scroll-padding-top: 70px; }

  .header {
    position: sticky;
    top: 0;
    padding: 8px 0;
    /* NOTE: backdrop-filter は position:fixed の子（ドロワー）の
       包含ブロックを .header に固定してしまうため使用しない */
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 2px 10px rgba(58, 58, 53, .08);
  }
  .header__inner { justify-content: space-between; }
  .header__logo img { width: 128px; filter: none; }
  .header__contact { display: none; }

  .hamburger {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 46px; height: 46px;
    flex: none;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .gnav {
    position: fixed;
    inset: 0;
    display: block;
    padding: 84px 24px 40px;
    background: var(--cream);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    /* visibility は補間せず、閉じるときだけフェード後に切り替える */
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  }
  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear 0s;
  }
  .gnav__list { display: block; }
  .gnav__list li + li { border-top: 1px solid var(--line); }
  .gnav__list a { display: block; padding: 16px 4px; font-size: 15px; text-shadow: none; }
  .gnav__list a::after { display: none; }

  /* ドロワー内：別ページ項目は行全体をピルにして最右にリンク印 */
  .gnav__list .is-page { border-top: 0; margin-top: 10px; }
  .gnav__list .is-page > a {
    display: flex;
    width: 100%;
    gap: 10px;
    padding: 14px 16px;
    font-size: 15px;
  }
  .gnav__list .is-page > a > span { flex: 1; }
  .gnav__ico { width: 19px; height: 19px; }
  .gnav__ext { width: 12px; height: 12px; }
  .gnav__contact { display: inline-flex; width: 100%; margin-top: 24px; }
}

/* --- 〜1100px : 3カラム系を再構成 --- */
@media (max-width: 1100px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__text { max-width: 620px; }
  .pillars__list { grid-template-columns: repeat(2, 1fr); }
  .act-list { grid-template-columns: repeat(3, 1fr); }
  .bottom__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .bottom__photo { border-radius: var(--radius); }
  .bottom__news { grid-column: 1 / -1; margin-block: 0; }
  .news__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; }
  .news__list li + li { border-top: 1px dashed var(--line); }
}

/* --- 〜900px : ヒーローを積む・カードを再構成 --- */
@media (max-width: 900px) {
  /* ヒーロー：文字を画像の下へ */
  .hero__visual img { min-height: 260px; object-fit: cover; object-position: 62% center; }
  .hero__copy {
    position: static;
    padding: 4px var(--pad) 0;
    text-align: center;
  }
  /* 幅に比例して縮めることで、どの端末でも1行を保つ */
  .hero__concept {
    font-size: min(4.4vw, 21px);
    letter-spacing: .08em;
    line-height: 1.6;
  }
  .hero__concept span { margin-inline: .12em; }
  .hero__lead { font-size: 13.5px; }
  .hero__lead br { display: none; }

  .hero__badge {
    position: static;
    width: min(100%, 340px);
    aspect-ratio: auto;
    border-radius: 999px;
    flex-direction: row;
    gap: 12px;
    padding: 14px 22px;
    margin: 22px auto 0;
  }
  .hero__badge-hand { font-size: 12px; }
  .hero__badge-text { font-size: 13px; }
  .hero { padding-bottom: 34px; }

  .about { padding-top: 10px; }
  .act-list { grid-template-columns: repeat(2, 1fr); }

  .ashita__intro { grid-template-columns: 1fr; text-align: center; }
  .ashita__def { text-align: left; }
  .ashita__main { grid-template-columns: 1fr; }
  .ashita__photos { grid-template-columns: repeat(3, 1fr); }
  .ashita__ph--lg { grid-column: span 3; aspect-ratio: 16 / 9; }

  .access__body { grid-template-columns: 1fr; }
  /* aspect-ratio と min-height を併用すると最小幅が生まれて溢れるため min-height は解除 */
  .access__map { min-height: 0; aspect-ratio: 4 / 3; max-height: 420px; }
  .access__map iframe { min-height: 0; }
}

/* --- 〜640px : 1カラム --- */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .pc { display: none; }
  .sp { display: inline; }

  .sec-ttl { font-size: 22px; }

  .about__logos { flex-direction: column; gap: 14px; }
  .about__logo { width: min(72%, 260px); }
  .about__cross { font-size: 18px; }
  .about__partner img { width: min(72%, 260px); }
  .about__hand { font-size: 19px; }

  /* 4枚を2列2行に揃える（4枚目だけ横長にすると余白が空くため） */
  .about__gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .about__ph, .about__ph--wide { grid-column: span 1; }

  .ashita__jobs { grid-template-columns: 1fr; }
  .ashita__photos { grid-template-columns: repeat(2, 1fr); }
  .ashita__ph--lg { grid-column: span 2; aspect-ratio: 4 / 3; }
  .ashita__hand { font-size: 19px; }

  .pillars__list { grid-template-columns: 1fr; }
  .pillar { display: grid; grid-template-columns: 40% 1fr; align-items: stretch; }
  .pillar__img { aspect-ratio: auto; height: 100%; }
  .pillar__body { padding: 16px 16px 18px; }
  .pillar__head { gap: 10px; margin-bottom: 10px; }
  .pillar__icon { width: 38px; height: 38px; }
  .pillar__icon svg { width: 20px; height: 20px; }
  .pillar__txt { font-size: 13px; }

  .act-list { grid-template-columns: 1fr; }
  .act-card { display: grid; grid-template-columns: 40% 1fr; }
  .act-card__img { aspect-ratio: auto; height: 100%; }
  .act-card__body { padding: 14px 16px; }

  .bottom__inner { grid-template-columns: 1fr; gap: 24px; }
  .bottom__msg { padding-block: 0; }
  .bottom__hand br { display: none; }
  .news__list { grid-template-columns: 1fr; }
  .news__list a { flex-direction: column; gap: 2px; }

  .form__row { grid-template-columns: 1fr; gap: 8px; padding: 18px 2px; }
  .form__label { padding-top: 0; }
  .form__lead { text-align: left; }
  .form__submit .btn { min-width: 0; width: 100%; }
  .radio { width: 100%; }
  .check { align-items: flex-start; }
  .check__mark { margin-top: 2px; }

  .spec__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 2px; }
  .spec dt { font-size: 12.5px; color: var(--green-mid); }
  .company__lead { text-align: left; font-size: 13.5px; }

  .access__info { padding: 20px 18px; }
  .access__dl > div { flex-direction: column; gap: 0; }
  .access__dl dt { width: auto; font-size: 12px; }
  .access__btn { width: 100%; }

  .entry__link,
  .entry--thumb .entry__link { grid-template-columns: 84px minmax(0, 1fr); gap: 4px 14px; }
  .entry__date { grid-column: 1 / -1; }
  .entry--thumb .entry__thumb { width: 84px; }
  .entry__arrow { display: none; }

  .ev-card--thumb .ev-card__link { grid-template-columns: 1fr; }
  .ev-card__thumb { aspect-ratio: 16 / 9; }
  .article__meta > div { flex-direction: column; gap: 0; }
  .article__meta dt { width: auto; font-size: 12px; }

  .contact__btns .btn { min-width: 0; width: 100%; }

  .footer__inner { flex-direction: column; }
  .footer__nav { gap: 28px; }
}

/* --- モーション低減 --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
