:root {
  --ink: #3c4d49;
  --ink-soft: #687773;
  --green-900: #3f7066;
  --green-800: #527f75;
  --green-700: #77a79b;
  --green-300: #c9e5dd;
  --green-150: #e5f4ef;
  --green-100: #f1faf7;
  --coral-700: #a85c57;
  --coral-600: #b96c65;
  --coral-300: #f0c5bd;
  --coral-100: #fff0ed;
  --yellow-600: #a6772d;
  --yellow-300: #f4dca2;
  --yellow-100: #fff8e5;
  --sky-100: #eef8fc;
  --sky-200: #dceff7;
  --lavender-100: #f3effb;
  --mint-100: #edf8f4;
  --peach-100: #fff2ea;
  --cream: #fff9f2;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #e5e9e4;
  --shadow-sm: 0 10px 28px rgba(63, 112, 102, 0.08);
  --shadow-md: 0 20px 52px rgba(63, 112, 102, 0.11);
  --shadow-lg: 0 30px 78px rgba(63, 112, 102, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --content: 1180px;
  --header-h: 76px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--yellow-300);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 104px;
}

.section--soft {
  background: var(--cream);
}

.section--green {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.08) 0 120px, transparent 121px),
    radial-gradient(circle at 92% 85%, rgba(255, 255, 255, 0.06) 0 170px, transparent 171px),
    var(--green-900);
}

.section--coral {
  background: linear-gradient(135deg, #fff0ec 0%, #fff8e7 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--coral-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.section--green .eyebrow {
  color: #f5d48a;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.section--green .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  font-size: 1.2em;
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.announcement {
  position: relative;
  z-index: 80;
  color: var(--white);
  background: var(--green-900);
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 16px;
  padding-block: 7px;
  font-size: 0.88rem;
}

.announcement__label {
  flex: 0 0 auto;
  padding: 2px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.announcement__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.announcement a {
  font-weight: 700;
  text-decoration: none;
}

.announcement a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(232, 225, 215, 0.86);
  background: rgba(255, 254, 251, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text strong {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  letter-spacing: 0.07em;
}

.brand__text small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 4px;
}

.site-nav a {
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-900);
  background: var(--green-100);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  background: var(--green-100);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(214, 154, 45, 0.5);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 10px 24px rgba(38, 89, 71, 0.2);
}

.btn--primary:hover {
  background: var(--green-900);
  box-shadow: 0 13px 30px rgba(38, 89, 71, 0.26);
}

.btn--coral {
  color: var(--white);
  background: var(--coral-600);
  box-shadow: 0 10px 24px rgba(200, 95, 85, 0.2);
}

.btn--coral:hover {
  background: var(--coral-700);
}

.btn--line {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.btn--line:hover {
  border-color: var(--green-300);
  background: var(--green-100);
}

.btn--white {
  color: var(--green-900);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.82rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 72px 80px;
  background:
    radial-gradient(circle at 4% 20%, rgba(243, 185, 174, 0.34) 0 120px, transparent 121px),
    radial-gradient(circle at 92% 16%, rgba(241, 207, 120, 0.3) 0 150px, transparent 151px),
    linear-gradient(180deg, #fffdf8 0%, #fffaf1 100%);
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(77, 132, 107, 0.13);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(400px, 0.93fr);
  gap: 52px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid rgba(200, 95, 85, 0.2);
  border-radius: var(--radius-pill);
  color: var(--coral-700);
  background: rgba(255, 240, 236, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero__badge::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-600);
  box-shadow: 0 0 0 5px rgba(223, 117, 104, 0.13);
  content: "";
}

.hero h1 {
  margin: 24px 0 22px;
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 5.2vw, 5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.035em;
}

.hero h1 em {
  position: relative;
  color: var(--green-800);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.08em;
  left: -0.04em;
  height: 0.24em;
  border-radius: 1em;
  background: rgba(241, 207, 120, 0.66);
  content: "";
}

.hero__lead {
  max-width: 660px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.hero__meta li {
  min-height: 94px;
  padding: 17px 16px;
  border: 1px solid rgba(77, 132, 107, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.hero__meta strong,
.hero__meta span {
  display: block;
}

.hero__meta strong {
  color: var(--green-900);
  font-size: 0.98rem;
}

.hero__meta span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero__visual {
  position: relative;
}

.hero__illustration {
  width: min(100%, 620px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 55px rgba(38, 89, 71, 0.08));
}

.hero__floating {
  position: absolute;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero__floating--one {
  top: 10%;
  right: 0;
}

.hero__floating--two {
  bottom: 7%;
  left: -2%;
}

.hero__floating strong,
.hero__floating span {
  display: block;
}

.hero__floating strong {
  color: var(--green-900);
  font-size: 0.83rem;
}

.hero__floating span {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  min-height: 92px;
}

.trust-item {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 13px;
  padding-inline: 26px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--green-800);
  background: var(--green-100);
}

.trust-item__icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 0.88rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--green-100);
  content: "";
}

.service-card--coral::after {
  background: var(--coral-100);
}

.service-card__number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  color: var(--white);
  background: var(--green-800);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.service-card--coral .service-card__number {
  background: var(--coral-600);
}

.service-card h3 {
  margin: 26px 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.45;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.91rem;
  font-weight: 700;
}

.feature-list li::before {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 3px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  font-size: 0.7rem;
  content: "✓";
}

.service-card--coral .feature-list li::before {
  background: var(--coral-600);
}

.service-card .text-link {
  position: relative;
  z-index: 1;
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.calendar-summary {
  position: sticky;
  top: 112px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.calendar-summary__month {
  margin: 0;
  color: #f5d48a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calendar-summary h3 {
  margin: 8px 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
}

.calendar-summary p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.calendar-summary__actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.calendar-summary .btn--line {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.calendar-summary .btn--line:hover {
  background: rgba(255, 255, 255, 0.16);
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(38, 89, 71, 0.05);
}

.schedule-item__date {
  display: grid;
  min-height: 66px;
  place-items: center;
  align-content: center;
  border-radius: 16px;
  color: var(--green-900);
  background: var(--green-100);
  line-height: 1.2;
}

.schedule-item__date strong {
  font-family: var(--font-serif);
  font-size: 1.55rem;
}

.schedule-item__date span {
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 800;
}

.schedule-item__body h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}

.schedule-item__body p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.tag--reserve {
  color: var(--coral-700);
  background: var(--coral-100);
}

.tag--open {
  color: var(--green-900);
  background: var(--green-100);
}

.event-list {
  display: grid;
  gap: 32px;
}

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.event-card__date {
  display: grid;
  min-height: 100%;
  align-content: center;
  justify-items: center;
  padding: 32px 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.18) 0 48px, transparent 49px),
    var(--coral-600);
  text-align: center;
}

.event-card:nth-child(even) .event-card__date {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.15) 0 48px, transparent 49px),
    var(--green-800);
}

.event-card__date .month {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.event-card__date .day {
  margin-block: 4px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-card__date .weekday {
  font-size: 0.8rem;
  font-weight: 800;
}

.event-card__date .countdown {
  margin-top: 17px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 800;
}

.event-card__body {
  padding: 38px 42px 38px 40px;
}

.event-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.event-card__category {
  color: var(--coral-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.event-card:nth-child(even) .event-card__category {
  color: var(--green-800);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
}

.status-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
}

.status-badge--draft {
  color: #8d6421;
  background: var(--yellow-100);
}

.status-badge--draft::before {
  background: var(--yellow-600);
}

.status-badge--published {
  color: var(--green-900);
  background: var(--green-100);
}

.status-badge--published::before {
  background: var(--green-700);
}

.event-card h3 {
  margin: 13px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  line-height: 1.35;
  white-space: pre-line;
}

.event-card__description {
  margin: 0;
  color: var(--ink-soft);
}

.event-card__info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 24px 0;
  padding: 19px 20px;
  border-radius: 18px;
  background: var(--cream);
}

.event-card__info div {
  min-width: 0;
}

.event-card__info dt {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.event-card__info dd {
  margin: 3px 0 0;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.55;
}

.event-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.event-card__chips li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
}

.event-card__extra {
  margin: 0;
  padding-left: 15px;
  border-left: 3px solid var(--yellow-300);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.event-card__flyer {
  grid-column: 1 / -1;
  display: none;
  padding: 0 40px 40px 220px;
}

.event-card__flyer.is-visible {
  display: block;
}

.event-card__flyer img {
  width: min(100%, 560px);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.recruit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.recruit-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.recruit-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 20px;
  color: var(--green-800);
  background: var(--green-100);
}

.recruit-card--coral .recruit-card__icon {
  color: var(--coral-700);
  background: var(--coral-100);
}

.recruit-card__icon svg {
  width: 30px;
  height: 30px;
}

.recruit-card h3 {
  margin: 22px 0 13px;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.45;
}

.recruit-card > p {
  margin: 0;
  color: var(--ink-soft);
}

.member-types {
  display: grid;
  gap: 9px;
  margin: 24px 0 26px;
}

.member-type {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--cream);
}

.member-type strong {
  color: var(--green-900);
  font-size: 0.78rem;
}

.member-type span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.6;
}

.volunteer-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 26px;
}

.volunteer-fact {
  padding: 14px;
  border-radius: 14px;
  background: var(--coral-100);
}

.volunteer-fact strong,
.volunteer-fact span {
  display: block;
}

.volunteer-fact strong {
  color: var(--coral-700);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.volunteer-fact span {
  margin-top: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

.recruit-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.fee-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: stretch;
}

.access-panel {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.access-panel h2 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.4;
}

.access-list {
  display: grid;
  margin: 0;
}

.access-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.access-list dt {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.access-list dd {
  margin: 0;
  font-weight: 700;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.map-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 480px;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(30deg, transparent 47%, rgba(38, 89, 71, 0.09) 48% 52%, transparent 53%) 0 0 / 76px 76px,
    linear-gradient(120deg, transparent 47%, rgba(38, 89, 71, 0.08) 48% 52%, transparent 53%) 0 0 / 86px 86px,
    #e7f1eb;
  box-shadow: var(--shadow-md);
}

.map-card::before,
.map-card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.map-card::before {
  top: 8%;
  right: 10%;
  width: 190px;
  height: 190px;
  background: rgba(241, 207, 120, 0.55);
}

.map-card::after {
  bottom: 4%;
  left: 4%;
  width: 150px;
  height: 150px;
  background: rgba(243, 185, 174, 0.5);
}

.map-pin {
  position: relative;
  z-index: 1;
  display: grid;
  width: 250px;
  min-height: 250px;
  place-items: center;
  align-content: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  text-align: center;
  backdrop-filter: blur(10px);
}

.map-pin__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 22px 22px 22px 4px;
  color: var(--white);
  background: var(--coral-600);
  transform: rotate(-45deg);
}

.map-pin__icon svg {
  width: 29px;
  height: 29px;
  transform: rotate(45deg);
}

.map-pin strong {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.map-pin span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}

.history-intro {
  position: sticky;
  top: 116px;
}

.history-intro blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.55;
}

.history-intro blockquote span {
  color: #f5d48a;
}

.history-intro p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.history-intro .btn {
  margin-top: 28px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 29px;
  width: 1px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.timeline-item__dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--green-900);
  background: #f5d48a;
  font-size: 0.66rem;
  font-weight: 900;
}

.timeline-item__body {
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
}

.timeline-item__body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.timeline-item__body p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.partner-card__label {
  color: var(--coral-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.partner-card h3 {
  margin: 12px 0 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.5;
}

.partner-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.partner-card .text-link {
  margin-top: 18px;
  font-size: 0.8rem;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 12px;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 1.1rem;
  content: "+";
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
}

.faq-item__answer p {
  margin: 0;
}

.cta-section {
  padding-block: 84px;
}

.cta-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  gap: 34px;
  align-items: center;
  padding: 54px 58px;
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.12) 0 140px, transparent 141px),
    var(--coral-600);
  box-shadow: var(--shadow-lg);
}

.cta-box::after {
  position: absolute;
  bottom: -80px;
  left: 36%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.cta-box h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.35;
}

.cta-box p {
  max-width: 690px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-box__actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.site-footer {
  padding-block: 58px 90px;
  color: rgba(255, 255, 255, 0.82);
  background: #193f32;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.footer-brand span {
  margin-top: 4px;
  font-size: 0.7rem;
}

.footer-about {
  max-width: 490px;
  margin: 20px 0 0;
  font-size: 0.78rem;
}

.footer-heading {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
}

.mobile-actions {
  position: fixed;
  z-index: 60;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(232, 225, 215, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(30, 64, 51, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-actions .btn {
  min-height: 46px;
  padding-inline: 11px;
  font-size: 0.78rem;
}

.update-note {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: right;
}


/* =========================================================
   v4 Pastel refresh
   爽やかなミント・空色と、温かいピーチ・クリームを基調に調整
   ========================================================= */

body {
  background: var(--paper);
}

.site-header {
  border-bottom-color: rgba(201, 229, 221, 0.82);
  background: rgba(255, 253, 249, 0.92);
}

.brand {
  min-width: 290px;
}

.brand__text strong {
  font-size: 1rem;
  letter-spacing: 0.045em;
}

.hero {
  background:
    radial-gradient(circle at 3% 18%, rgba(240, 197, 189, 0.48) 0 118px, transparent 119px),
    radial-gradient(circle at 93% 13%, rgba(220, 239, 247, 0.78) 0 158px, transparent 159px),
    radial-gradient(circle at 80% 92%, rgba(201, 229, 221, 0.44) 0 210px, transparent 211px),
    linear-gradient(135deg, #f3fbf8 0%, #fff9f2 48%, #f4f8ff 100%);
}

.hero::before {
  position: absolute;
  top: 40%;
  left: 46%;
  width: 170px;
  height: 170px;
  border-radius: 46% 54% 61% 39% / 42% 45% 55% 58%;
  background: rgba(243, 239, 251, 0.72);
  content: "";
  transform: rotate(12deg);
}

.hero h1 {
  margin: 23px 0 10px;
  font-size: clamp(2.65rem, 5.1vw, 5rem);
  line-height: 1.16;
}

.hero h1 > span {
  display: inline-block;
  margin-bottom: 0.18em;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.36em;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 em {
  color: var(--green-900);
  letter-spacing: 0.08em;
}

.hero h1 em::after {
  height: 0.22em;
  background: rgba(244, 220, 162, 0.66);
}

.hero__tagline {
  margin: 0 0 18px;
  color: var(--coral-700);
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 2.45vw, 2rem);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.035em;
}

.hero__meta li:nth-child(1) {
  background: rgba(237, 248, 244, 0.86);
}

.hero__meta li:nth-child(2) {
  background: rgba(255, 242, 234, 0.88);
}

.hero__meta li:nth-child(3) {
  background: rgba(238, 248, 252, 0.88);
}

.trust-strip {
  background: linear-gradient(90deg, #f1faf7 0%, #fff9f2 48%, #eef8fc 100%);
}

.trust-item:nth-child(2) .trust-item__icon {
  color: var(--coral-700);
  background: var(--peach-100);
}

.trust-item:nth-child(3) .trust-item__icon {
  color: #56798a;
  background: var(--sky-100);
}

.section--soft {
  background:
    radial-gradient(circle at 5% 16%, rgba(201, 229, 221, 0.3) 0 120px, transparent 121px),
    radial-gradient(circle at 95% 84%, rgba(220, 239, 247, 0.42) 0 150px, transparent 151px),
    linear-gradient(135deg, #f5fbf8 0%, #fffaf4 52%, #f5f9fd 100%);
}

.section--coral {
  background:
    radial-gradient(circle at 90% 12%, rgba(220, 239, 247, 0.5) 0 130px, transparent 131px),
    linear-gradient(135deg, #fff2ed 0%, #fff9ea 50%, #f1faf7 100%);
}

.service-card {
  border-color: rgba(201, 229, 221, 0.9);
  background: linear-gradient(150deg, #ffffff 0%, #f1faf7 100%);
}

.service-card--coral {
  border-color: rgba(240, 197, 189, 0.9);
  background: linear-gradient(150deg, #ffffff 0%, #fff2ed 100%);
}

.calendar-summary {
  color: var(--ink);
  border: 1px solid rgba(201, 229, 221, 0.9);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.72) 0 95px, transparent 96px),
    linear-gradient(145deg, #dff3ec 0%, #eef8fc 58%, #fff5e9 100%);
  box-shadow: var(--shadow-md);
}

.calendar-summary__month {
  color: var(--green-900);
}

.calendar-summary p {
  color: var(--ink-soft);
}

.calendar-summary .btn--line {
  border-color: rgba(63, 112, 102, 0.2);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
}

.calendar-summary .btn--line:hover {
  background: var(--white);
}

.schedule-item {
  border-color: rgba(201, 229, 221, 0.72);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 26px rgba(63, 112, 102, 0.065);
}

.schedule-item:nth-child(3n + 2) {
  border-color: rgba(220, 239, 247, 0.95);
  background: rgba(246, 251, 254, 0.94);
}

.schedule-item:nth-child(3n) {
  border-color: rgba(240, 197, 189, 0.7);
  background: rgba(255, 250, 247, 0.96);
}

.schedule-item__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.tag--status {
  border: 1px solid transparent;
}

.tag--recruiting {
  color: #356f61;
  border-color: #b9ddd2;
  background: #e3f4ee;
}

.tag--full {
  color: #a14f57;
  border-color: #efc5c6;
  background: #fff0f1;
}

.tag--closed {
  color: #6f7774;
  border-color: #d9dfdc;
  background: #f2f4f3;
}

.schedule-item.is-closed {
  opacity: 0.76;
}

.schedule-item.is-closed .schedule-item__date {
  color: #69736f;
  background: #edf1ef;
}

.schedule-item.is-full .schedule-item__date {
  color: #9e5960;
  background: #fff0f1;
}

.schedule-item.is-recruiting .schedule-item__date {
  color: #356f61;
  background: #e3f4ee;
}

.event-card {
  border-color: rgba(201, 229, 221, 0.74);
  background: rgba(255, 255, 255, 0.9);
}

.event-card__date {
  color: var(--coral-700);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.72) 0 50px, transparent 51px),
    linear-gradient(155deg, #f8d5ce 0%, #fff0e8 100%);
}

.event-card:nth-child(even) .event-card__date {
  color: var(--green-900);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.72) 0 50px, transparent 51px),
    linear-gradient(155deg, #cfe9e1 0%, #eaf7f3 100%);
}

.event-card__date .countdown {
  border-color: rgba(63, 112, 102, 0.14);
  background: rgba(255, 255, 255, 0.54);
}

.event-card__info {
  background: linear-gradient(135deg, #fff9f2 0%, #f3faf8 100%);
}

.event-card__chips li:nth-child(3n + 1) {
  border-color: #c9e5dd;
  background: #edf8f4;
}

.event-card__chips li:nth-child(3n + 2) {
  border-color: #f0c5bd;
  background: #fff2ed;
}

.event-card__chips li:nth-child(3n) {
  border-color: #dceff7;
  background: #eef8fc;
}

.recruit-card:first-child {
  background: linear-gradient(155deg, #ffffff 0%, #edf8f4 100%);
}

.recruit-card:last-child {
  background: linear-gradient(155deg, #ffffff 0%, #fff2ed 100%);
}

.section--green {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.7) 0 120px, transparent 121px),
    radial-gradient(circle at 92% 85%, rgba(255, 242, 234, 0.7) 0 170px, transparent 171px),
    linear-gradient(135deg, #eaf7f3 0%, #f3effb 52%, #fff5ec 100%);
}

.section--green .eyebrow {
  color: var(--coral-700);
}

.history-intro blockquote span {
  color: var(--coral-700);
}

.history-origin {
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(240, 197, 189, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.history-origin__label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: var(--coral-700);
  background: var(--coral-100);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.history-origin strong {
  display: block;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 1.16rem;
  line-height: 1.6;
}

.history-origin p,
.history-intro p,
.history-intro__summary {
  color: var(--ink-soft);
}

.history-origin p {
  margin: 8px 0 0;
  font-size: 0.86rem;
}

.timeline::before {
  background: rgba(63, 112, 102, 0.22);
}

.timeline-item__dot {
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  background: #ffe9ad;
  box-shadow: 0 8px 22px rgba(166, 119, 45, 0.14);
}

.timeline-item__body {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 28px rgba(63, 112, 102, 0.065);
}

.timeline-item__body p {
  color: var(--ink-soft);
}

.partner-card:nth-child(1) {
  background: linear-gradient(150deg, #ffffff 0%, #edf8f4 100%);
}

.partner-card:nth-child(2) {
  background: linear-gradient(150deg, #ffffff 0%, #eef8fc 100%);
}

.partner-card:nth-child(3) {
  background: linear-gradient(150deg, #ffffff 0%, #fff2ed 100%);
}

.cta-box {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.44) 0 140px, transparent 141px),
    linear-gradient(135deg, #f3bdb3 0%, #f9d8c4 48%, #dceff0 100%);
}

.cta-box p {
  color: rgba(60, 77, 73, 0.84);
}

.site-footer {
  background: #315e55;
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand__text strong {
    max-width: 220px;
    font-size: 0.83rem;
    line-height: 1.3;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.85rem);
  }

  .hero h1 > span {
    font-size: 0.34em;
  }

  .hero__tagline {
    font-size: clamp(1.2rem, 6.2vw, 1.65rem);
  }

  .schedule-item__tags {
    grid-column: 2;
    justify-content: flex-start;
  }

  .schedule-item .tag {
    grid-column: auto;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-h: 70px;
  }

  .header-actions .btn--small {
    display: none;
  }

  .site-nav a {
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  }
}

@media (max-width: 960px) {
  .section {
    padding-block: 82px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-nav {
    position: fixed;
    top: calc(42px + var(--header-h));
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 3px;
    padding: 22px 22px 120px;
    background: rgba(255, 254, 251, 0.98);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    overflow-y: auto;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 0.96rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-block: 62px 70px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .calendar-layout,
  .access-grid,
  .history-layout {
    grid-template-columns: 1fr;
  }

  .calendar-summary,
  .history-intro {
    position: static;
  }

  .event-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .event-card__body {
    padding: 32px;
  }

  .event-card__flyer {
    padding-left: 182px;
  }

  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box__actions {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .section {
    padding-block: 68px;
  }

  .announcement__inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .announcement__links {
    gap: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .brand__text strong {
    font-size: 0.95rem;
  }

  .brand__text small {
    display: none;
  }

  .hero {
    padding-block: 52px 58px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }

  .hero__meta li {
    min-height: 0;
  }

  .hero__floating--one {
    top: 2%;
    right: -4px;
  }

  .hero__floating--two {
    bottom: 1%;
    left: 0;
  }

  .service-grid,
  .recruit-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .recruit-card,
  .access-panel {
    padding: 30px 24px;
  }

  .schedule-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .schedule-item .tag {
    grid-column: 2;
    justify-self: start;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card__date {
    grid-template-columns: auto auto auto auto;
    min-height: 92px;
    justify-content: start;
    gap: 8px;
    padding: 20px 24px;
    text-align: left;
  }

  .event-card__date .month,
  .event-card__date .weekday {
    align-self: end;
    margin-bottom: 8px;
  }

  .event-card__date .day {
    font-size: 3.7rem;
  }

  .event-card__date .countdown {
    align-self: center;
    margin: 0 0 0 auto;
  }

  .event-card__body {
    padding: 28px 22px 30px;
  }

  .event-card__info {
    grid-template-columns: 1fr;
  }

  .event-card__flyer {
    padding: 0 22px 30px;
  }

  .member-type {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .volunteer-facts {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 390px;
  }

  .access-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .timeline-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-item__dot {
    width: 50px;
    height: 50px;
  }

  .timeline-item__body {
    padding: 20px;
  }

  .cta-section {
    padding-block: 64px 100px;
  }

  .cta-box {
    padding: 38px 24px;
  }

  .cta-box__actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-actions {
    display: grid;
  }

  .site-footer {
    padding-bottom: 124px;
  }
}

@media (max-width: 430px) {
  .announcement__label {
    display: none;
  }

  .hero__floating {
    display: none;
  }

  .calendar-summary {
    padding: 28px 22px;
  }

  .event-card__date {
    grid-template-columns: auto auto auto;
  }

  .event-card__date .countdown {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 0;
  }

  .recruit-card__actions .btn,
  .access-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .announcement,
  .site-header,
  .mobile-actions,
  .hero__actions,
  .event-card__actions,
  .cta-section,
  .site-footer {
    display: none !important;
  }

  .section,
  .hero {
    padding-block: 28px;
  }

  .service-card,
  .event-card,
  .recruit-card,
  .access-panel {
    break-inside: avoid;
    box-shadow: none;
  }
}


/* =========================================================
   v6 Content refinements
   開館情報と上映会詳細の読みやすさを強化
   ========================================================= */

.hero__meta-hours small {
  display: block;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid rgba(63, 112, 102, 0.12);
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.55;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.event-detail {
  padding: 20px;
  border: 1px solid rgba(220, 239, 247, 0.95);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #eef8fc 100%);
}

.event-detail--family {
  border-color: rgba(240, 197, 189, 0.86);
  background: linear-gradient(145deg, #ffffff 0%, #fff2ed 100%);
}

.event-detail h4,
.speaker-section__title {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.55;
}

.event-detail--family h4 {
  color: var(--coral-700);
}

.event-detail p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.81rem;
  line-height: 1.85;
}

.speaker-section {
  margin: 24px 0;
}

.speaker-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  font-size: 1.08rem;
}

.speaker-section__title::before {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral-300);
  content: "";
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.speaker-card {
  padding: 18px;
  border: 1px solid rgba(201, 229, 221, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(63, 112, 102, 0.055);
}

.speaker-card:nth-child(2) {
  border-color: rgba(240, 197, 189, 0.76);
  background: rgba(255, 250, 247, 0.94);
}

.speaker-card:nth-child(3) {
  border-color: rgba(220, 239, 247, 0.95);
  background: rgba(247, 252, 254, 0.96);
}

.speaker-card h5 {
  margin: 0;
  color: var(--coral-700);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.45;
}

.speaker-card__role {
  margin: 6px 0 0;
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.55;
}

.speaker-card__profile {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.78;
}

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

@media (max-width: 720px) {
  .event-detail-grid {
    grid-template-columns: 1fr;
  }

  .event-detail,
  .speaker-card {
    padding: 17px;
  }

  .hero__meta-hours small {
    font-size: 0.69rem;
  }
}

/* Headline and in-page anchor polish */
.hero h1 em {
  white-space: normal;
  background: linear-gradient(transparent 76%, rgba(244, 220, 162, 0.66) 76%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero h1 em::after {
  display: none;
}

.event-card {
  scroll-margin-top: calc(42px + var(--header-h) + 18px);
}

@media (max-width: 720px) {
  .event-card h3 {
    font-size: clamp(1.48rem, 7.3vw, 1.82rem);
  }
}


.section[id],
.hero[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

@media (max-width: 720px) {
  .event-card h3 {
    font-size: 1.38rem;
    letter-spacing: 0.01em;
  }
}

/* =========================================================
   v7 Minimal warm refresh
   装飾イラストと多色のパステル表現を外し、白・生成り・墨色と
   控えめな深緑だけで構成したシンプルなデザイン
   ========================================================= */

:root {
  --ink: #27312f;
  --ink-soft: #68716e;
  --green-900: #355e54;
  --green-800: #466b62;
  --green-700: #789087;
  --green-300: #cfd8d4;
  --green-150: #e8ecea;
  --green-100: #f2f4f3;
  --coral-700: #5f6966;
  --coral-600: #46524f;
  --coral-300: #d8ddda;
  --coral-100: #f3f4f3;
  --yellow-600: #756c57;
  --yellow-300: #ddd8cc;
  --yellow-100: #f5f3ed;
  --sky-100: #f4f5f4;
  --sky-200: #e4e8e6;
  --lavender-100: #f5f5f3;
  --mint-100: #f2f4f3;
  --peach-100: #f5f3ef;
  --cream: #f6f5f1;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dedfdb;
  --shadow-sm: 0 8px 24px rgba(31, 42, 39, 0.045);
  --shadow-md: 0 16px 42px rgba(31, 42, 39, 0.07);
  --shadow-lg: 0 24px 60px rgba(31, 42, 39, 0.09);
  --radius-md: 18px;
  --radius-lg: 24px;
}

body {
  background: var(--paper);
}

::selection {
  color: var(--ink);
  background: #e4e8e5;
}

.announcement {
  background: #303a37;
}

.site-header {
  border-bottom-color: rgba(39, 49, 47, 0.1);
  background: rgba(251, 250, 247, 0.95);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #f0f1ef;
}

.btn--primary,
.btn--coral {
  color: var(--white);
  background: var(--green-900);
  box-shadow: none;
}

.btn--primary:hover,
.btn--coral:hover {
  background: #284c44;
}

.btn--line {
  border-color: #cfd3d0;
  color: var(--ink);
  background: transparent;
}

.btn--line:hover {
  border-color: #aeb6b2;
  background: #f2f3f1;
}

.btn--white {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.eyebrow {
  color: var(--green-800);
}

.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.hero {
  padding-block: 88px 82px;
  border-bottom: 1px solid var(--line);
  background: #f7f6f2;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__grid {
  display: block;
  max-width: 1000px;
  margin-inline: auto;
}

.hero__copy {
  max-width: none;
}

.hero__visual,
.hero__illustration,
.hero__floating {
  display: none !important;
}

.hero__site-title {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero__badge {
  padding: 6px 12px;
  border-color: #ccd2cf;
  color: var(--green-900);
  background: transparent;
}

.hero__badge::before {
  width: 7px;
  height: 7px;
  background: var(--green-800);
  box-shadow: none;
}

.hero h1 {
  max-width: 940px;
  margin: 25px 0 22px;
  font-size: clamp(2.55rem, 4.7vw, 4rem);
  line-height: 1.2;
}

.hero h1 em {
  color: inherit;
  background: none;
  letter-spacing: inherit;
}

.hero__lead {
  max-width: 820px;
  color: var(--ink-soft);
}

.hero__meta {
  max-width: 1000px;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__meta li,
.hero__meta li:nth-child(1),
.hero__meta li:nth-child(2),
.hero__meta li:nth-child(3) {
  min-height: 108px;
  padding: 20px 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.hero__meta li:last-child {
  border-right: 0;
}

.hero__meta strong {
  color: var(--ink);
}

.hero__meta-hours small {
  border-top-color: rgba(39, 49, 47, 0.1);
}

.trust-strip,
.trust-strip:nth-child(n) {
  background: var(--white);
}

.trust-item__icon,
.trust-item:nth-child(2) .trust-item__icon,
.trust-item:nth-child(3) .trust-item__icon {
  color: var(--green-900);
  background: #f1f3f2;
}

.section--soft,
.section--coral {
  background: #f6f5f1;
}

.section--green {
  color: var(--ink);
  background: #f1f2ef;
}

.section--green .eyebrow {
  color: var(--green-800);
}

.section--green .section-heading p,
.history-intro p,
.history-intro__summary {
  color: var(--ink-soft);
}

.service-card,
.service-card--coral,
.recruit-card,
.recruit-card:first-child,
.recruit-card:last-child,
.partner-card,
.partner-card:nth-child(1),
.partner-card:nth-child(2),
.partner-card:nth-child(3),
.access-panel,
.faq-item {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  display: none;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card__number,
.service-card--coral .service-card__number {
  border: 1px solid #cfd4d1;
  color: var(--green-900);
  background: transparent;
}

.service-card--coral .feature-list li::before,
.feature-list li::before {
  background: var(--green-800);
}

.calendar-summary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.calendar-summary__month,
.calendar-summary p {
  color: var(--ink-soft);
}

.calendar-summary .btn--line {
  border-color: #cfd3d0;
  color: var(--ink);
  background: transparent;
}

.calendar-summary .btn--line:hover {
  background: #f2f3f1;
}

.schedule-item,
.schedule-item:nth-child(3n + 2),
.schedule-item:nth-child(3n) {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.schedule-item__date,
.schedule-item.is-closed .schedule-item__date,
.schedule-item.is-full .schedule-item__date,
.schedule-item.is-recruiting .schedule-item__date {
  color: var(--ink);
  background: #f1f3f2;
}

.tag--reserve,
.tag--open,
.tag--status,
.tag--recruiting,
.tag--full,
.tag--closed {
  border: 1px solid #d4d8d5;
  color: #4e5956;
  background: #f5f6f5;
}

.tag--recruiting {
  border-color: #bfcac5;
  color: var(--green-900);
  background: #eef2f0;
}

.schedule-item.is-closed {
  opacity: 0.72;
}

.event-card {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.event-card__date,
.event-card:nth-child(even) .event-card__date {
  color: var(--ink);
  background: #eff1ef;
}

.event-card__date .countdown {
  border-color: #cdd2cf;
  background: rgba(255, 255, 255, 0.72);
}

.event-card__category,
.event-card:nth-child(even) .event-card__category {
  color: var(--green-800);
}

.status-badge--draft,
.status-badge--published {
  color: #555f5c;
  background: #f1f3f2;
}

.status-badge--draft::before,
.status-badge--published::before {
  background: #7c8985;
}

.event-card__info,
.event-detail,
.event-detail--family {
  border-color: #e0e2df;
  background: #f7f7f4;
}

.event-card__chips li,
.event-card__chips li:nth-child(3n + 1),
.event-card__chips li:nth-child(3n + 2),
.event-card__chips li:nth-child(3n) {
  border-color: #d9ddda;
  background: var(--white);
}

.event-card__extra {
  border-left-color: #bdc6c2;
}

.recruit-card__icon,
.recruit-card--coral .recruit-card__icon {
  color: var(--green-900);
  background: #f1f3f2;
}

.member-type,
.volunteer-fact {
  background: #f5f5f2;
}

.volunteer-fact strong,
.event-detail--family h4,
.speaker-card h5 {
  color: var(--green-900);
}

.map-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(39, 49, 47, 0.045) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(39, 49, 47, 0.045) 1px, transparent 1px) 0 0 / 44px 44px,
    #f1f2ef;
  box-shadow: var(--shadow-sm);
}

.map-card::before,
.map-card::after {
  display: none;
}

.map-pin {
  border-color: rgba(39, 49, 47, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.map-pin__icon {
  background: var(--green-900);
}

.history-intro blockquote span {
  color: var(--green-800);
}

.history-origin {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.history-origin__label {
  color: var(--green-900);
  background: #eef1ef;
}

.timeline::before {
  background: #cfd5d2;
}

.timeline-item__dot {
  border-color: var(--white);
  color: var(--green-900);
  background: #e7ebe8;
  box-shadow: none;
}

.timeline-item__body {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.partner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  min-height: 218px;
}

.partner-card--sponsor {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 2px;
  justify-self: end;
  width: min(100%, 560px);
  min-height: 0;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: none;
}

.partner-card--sponsor .partner-card__label {
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 2px;
}

.partner-card--sponsor h3 {
  grid-column: 2;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.partner-card--sponsor p {
  grid-column: 2;
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.65;
}

.partner-card--sponsor .text-link {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
  font-size: 0.74rem;
  white-space: nowrap;
}

.speaker-card,
.speaker-card:nth-child(2),
.speaker-card:nth-child(3) {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.speaker-section__title::before {
  background: #bdc6c2;
}

.cta-box {
  color: var(--white);
  background: #34413e;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.76);
}

.cta-box .btn--line {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: transparent;
}

.cta-box .btn--line:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: #293431;
}

.mobile-actions {
  border-color: rgba(39, 49, 47, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(31, 42, 39, 0.14);
}

@media (max-width: 960px) {
  .hero {
    padding-block: 70px 66px;
  }

  .partner-card--sponsor {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-block: 54px 52px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.6vw, 3.45rem);
    line-height: 1.24;
  }

  .hero__meta {
    border-bottom: 0;
  }

  .hero__meta li,
  .hero__meta li:nth-child(1),
  .hero__meta li:nth-child(2),
  .hero__meta li:nth-child(3) {
    min-height: 0;
    padding: 18px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-card--sponsor {
    grid-column: auto;
    display: block;
    width: 100%;
    padding: 18px;
  }

  .partner-card--sponsor h3 {
    margin-top: 7px;
  }

  .partner-card--sponsor p {
    margin-top: 5px;
  }

  .partner-card--sponsor .text-link {
    display: inline-flex;
    margin-top: 10px;
  }
}

/* =========================================================
   v8 Photo-led identity refresh
   添付の木漏れ日写真を主役に、写真・余白・自然色で再構成
   ========================================================= */

:root {
  --green-900: #2f5f4b;
  --green-800: #426f5c;
  --green-700: #6c8f78;
  --gold: #d7aa52;
  --paper: #fbfaf6;
  --cream: #f5f1e7;
  --line: #dfe3dc;
}

.brand__mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.brand__text strong {
  color: #263d34;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.055em;
}

.brand__text small {
  color: #6d7c75;
  letter-spacing: 0.08em;
}

.site-header {
  background: rgba(255, 255, 252, 0.93);
  backdrop-filter: blur(18px) saturate(125%);
}

.announcement {
  background: #294d3f;
}

.hero {
  display: flex;
  min-height: 760px;
  align-items: center;
  padding-block: 72px;
  border-bottom: 0;
  background-image:
    linear-gradient(90deg, rgba(25, 50, 39, 0.18) 0%, rgba(25, 50, 39, 0.03) 52%, rgba(25, 50, 39, 0.12) 100%),
    url("../images/hero-komorebi.webp");
  background-position: center center;
  background-size: cover;
}

.hero::before {
  display: block;
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(22,49,38,0.08) 100%);
  content: "";
  transform: none;
}

.hero::after {
  display: block;
  position: absolute;
  inset: auto 0 0;
  width: auto;
  height: 150px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 44, 35, 0.18) 100%);
  content: "";
}

.hero__grid {
  z-index: 2;
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
}

.hero__copy {
  width: min(760px, 100%);
  padding: 42px 44px 40px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background: rgba(255, 255, 251, 0.88);
  box-shadow: 0 28px 80px rgba(25, 52, 41, 0.22);
  backdrop-filter: blur(15px) saturate(115%);
}

.hero__site-title {
  margin-bottom: 12px;
  color: #4f6c60;
  letter-spacing: 0.18em;
}

.hero__badge {
  border-color: rgba(47, 95, 75, 0.22);
  color: var(--green-900);
  background: rgba(247, 248, 243, 0.78);
}

.hero h1 {
  max-width: 650px;
  margin: 23px 0 20px;
  color: #263d34;
  font-size: clamp(2.65rem, 4.6vw, 4.3rem);
  line-height: 1.22;
  letter-spacing: 0.045em;
}

.hero h1 > .hero__headline-top {
  display: block;
  color: #263d34;
  font-size: 0.72em;
  line-height: 1.35;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.hero h1 em {
  display: block;
  margin-top: 0.08em;
  color: var(--green-900);
}

.hero h1 em::after {
  display: block;
  z-index: -1;
  background: rgba(215, 170, 82, 0.25);
}

.hero__lead {
  color: #4e6158;
  font-size: 1.03rem;
  line-height: 1.92;
}

.hero__actions {
  margin-top: 26px;
}

.hero__meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(47, 95, 75, 0.16);
  border-bottom: 1px solid rgba(47, 95, 75, 0.16);
}

.hero__meta li,
.hero__meta li:nth-child(1),
.hero__meta li:nth-child(2),
.hero__meta li:nth-child(3) {
  min-height: 104px;
  padding: 17px 18px;
  border: 0;
  border-right: 1px solid rgba(47, 95, 75, 0.14);
  background: transparent;
}

.hero__meta li:last-child {
  border-right: 0;
}

.hero__meta strong {
  color: #294d3f;
}

.hero__meta span,
.hero__meta-hours small {
  color: #61736b;
}

.trust-strip {
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 28px rgba(35, 58, 49, 0.06);
}

.photo-story {
  padding-block: 102px 112px;
  background: #fffefb;
}

.photo-story__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.photo-story__intro h2 {
  margin: 0;
  color: #263d34;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.35;
  letter-spacing: 0.045em;
}

.photo-story__intro > p {
  margin: 0;
  color: var(--ink-soft);
}

.photo-story__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 290px 290px;
  gap: 18px;
}

.photo-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: #e9eee8;
  box-shadow: 0 18px 48px rgba(35, 58, 49, 0.11);
}

.photo-tile--play {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.photo-tile--reading {
  grid-column: 8 / -1;
  grid-row: 1;
}

.photo-tile--nature {
  grid-column: 8 / -1;
  grid-row: 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.photo-tile--play img {
  object-position: 53% 50%;
}

.photo-tile--reading img {
  object-position: 52% 44%;
}

.photo-tile--nature img {
  object-position: 50% 26%;
}

.photo-tile::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(17, 40, 31, 0.72));
  content: "";
}

.photo-tile:hover img {
  transform: scale(1.035);
}

.photo-tile figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: #fff;
}

.photo-tile figcaption span,
.photo-tile figcaption strong {
  display: block;
}

.photo-tile figcaption span {
  margin-bottom: 5px;
  color: rgba(255,255,255,0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.photo-tile figcaption strong {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.photo-story__note {
  margin: 13px 2px 0;
  color: #7a8781;
  font-size: 0.7rem;
  text-align: right;
}

.section--soft,
.section--coral {
  background: #f6f3eb;
}

.service-card,
.service-card--coral,
.recruit-card,
.recruit-card:first-child,
.recruit-card:last-child,
.partner-card,
.access-panel,
.faq-item {
  border-color: #e0e3dc;
}

.service-card__number,
.service-card--coral .service-card__number {
  border-color: rgba(47, 95, 75, 0.28);
  color: var(--green-900);
}

.event-card__date,
.event-card:nth-child(even) .event-card__date,
.schedule-item__date,
.schedule-item.is-closed .schedule-item__date,
.schedule-item.is-full .schedule-item__date,
.schedule-item.is-recruiting .schedule-item__date {
  color: #294d3f;
  background: #edf2ed;
}

.section--green {
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(29, 62, 48, 0.94), rgba(29, 62, 48, 0.84)),
    url("../images/hero-komorebi.webp");
  background-position: center 68%;
  background-size: cover;
}

.section--green .eyebrow {
  color: #f0d18a;
}

.section--green .history-intro blockquote {
  color: #fff;
}

.section--green .history-intro blockquote span {
  color: #f3d798;
}

.section--green .history-intro p,
.section--green .history-intro__summary {
  color: rgba(255,255,255,0.82);
}

.section--green .history-origin {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.1);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.section--green .history-origin__label {
  color: #234b3c;
  background: #f3d798;
}

.section--green .history-origin strong {
  color: #fff;
}

.section--green .history-origin p {
  color: rgba(255,255,255,0.84);
}

.section--green .timeline::before {
  background: rgba(255,255,255,0.35);
}

.section--green .timeline-item__dot {
  border-color: rgba(255,255,255,0.72);
  color: #234b3c;
  background: #f3d798;
}

.section--green .timeline-item__body {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.93);
  box-shadow: 0 16px 40px rgba(14, 35, 26, 0.16);
}

.section--green .btn--white {
  color: #294d3f;
}

.partner-card--sponsor {
  width: min(100%, 500px);
  padding: 15px 18px;
}

.photo-credit {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.46);
  font-size: 0.62rem;
  text-align: right;
}

@media (max-width: 960px) {
  .hero {
    min-height: 720px;
    padding-block: 62px;
  }

  .hero__copy {
    width: min(690px, 100%);
  }

  .photo-story__grid {
    grid-template-rows: 250px 250px;
  }
}

@media (max-width: 720px) {
  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__text strong {
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
    padding-block: 46px 54px;
    background-image:
      linear-gradient(180deg, rgba(25, 50, 39, 0.07) 0%, rgba(25, 50, 39, 0.16) 100%),
      url("../images/hero-komorebi-mobile.webp");
    background-position: center 28%;
  }

  .hero__copy {
    padding: 27px 22px 25px;
    border-radius: 24px;
    background: rgba(255, 255, 252, 0.91);
    box-shadow: 0 20px 54px rgba(25, 52, 41, 0.2);
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.15rem, 10.4vw, 3.25rem);
    line-height: 1.25;
  }

  .hero h1 > .hero__headline-top {
    font-size: 0.63em;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .hero__lead {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    margin-top: 26px;
    border-bottom: 0;
  }

  .hero__meta li,
  .hero__meta li:nth-child(1),
  .hero__meta li:nth-child(2),
  .hero__meta li:nth-child(3) {
    min-height: 0;
    padding: 15px 2px;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 95, 75, 0.14);
  }

  .photo-story {
    padding-block: 72px 78px;
  }

  .photo-story__intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .photo-story__intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .photo-story__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
  }

  .photo-tile--play,
  .photo-tile--reading,
  .photo-tile--nature {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-tile {
    min-height: 250px;
    border-radius: 22px;
  }

  .photo-tile--play {
    min-height: 330px;
  }

  .photo-tile figcaption {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .photo-story__note {
    text-align: left;
  }

  .section--green {
    background-position: center 40%;
  }

  .partner-card--sponsor {
    width: 100%;
    padding: 16px;
  }

  .photo-credit {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-tile img {
    transition: none;
  }
}

/* v8.1 Refined wordmark and mobile headline rhythm */
.brand {
  min-width: 260px;
  gap: 13px;
}

.brand__mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  align-content: center;
  line-height: 1;
}

.brand__text .brand__legal {
  display: block;
  margin: 0 0 4px;
  color: #50685e;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.22em;
}

.brand__text strong {
  color: #263d34;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.075em;
}

.brand__text .brand__roman {
  display: block;
  margin-top: 6px;
  color: #78857f;
  font-family: var(--font-sans);
  font-size: 0.49rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
}

.mobile-only {
  display: none;
}

.footer-brand__legal {
  display: block;
  margin-bottom: 3px;
  color: rgba(255,255,255,0.68);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand__mark {
    width: 45px;
    height: 45px;
  }

  .brand__text .brand__legal {
    margin-bottom: 3px;
    font-size: 0.49rem;
    letter-spacing: 0.17em;
  }

  .brand__text strong {
    max-width: none;
    font-size: 1rem;
    line-height: 1.03;
    letter-spacing: 0.055em;
  }

  .brand__text .brand__roman {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.1vw, 3.1rem);
    line-height: 1.28;
    letter-spacing: 0.02em;
  }

  .hero h1 > .hero__headline-top {
    white-space: normal;
  }
}


/* v10 logo integration and preview stability */
.brand {
  min-width: 270px;
}

.brand__mark {
  width: 68px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.footer-brand img {
  width: 72px;
  height: 58px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
  box-shadow: 0 8px 24px rgba(10, 35, 27, 0.14);
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 56px;
    height: 43px;
  }

  .footer-brand img {
    width: 66px;
    height: 52px;
  }
}

/* =========================================================
   v11 final flyer, supplied activity photos, partner cleanup
   ========================================================= */
.trust-strip__inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-tile--play img {
  object-position: 50% 50%;
}

.photo-tile--reading img {
  object-position: 50% 48%;
}

.event-card__flyer {
  margin: 0;
}

.event-card__flyer a {
  display: inline-block;
  width: min(100%, 560px);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(35, 58, 49, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card__flyer a:hover,
.event-card__flyer a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(35, 58, 49, 0.16);
}

.event-card__flyer img {
  width: 100%;
}

.event-card__flyer figcaption {
  width: min(100%, 560px);
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }
}

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

  .photo-tile--play img {
    object-position: 50% 50%;
  }

  .photo-tile--reading img {
    object-position: 50% 50%;
  }

  .event-card__flyer a,
  .event-card__flyer figcaption {
    width: 100%;
  }
}


/* =========================================================
   v13 adopted tree-canopy logo identity
   ========================================================= */
.brand {
  min-width: 294px;
  gap: 14px;
}

.brand__mark {
  width: 66px;
  height: 66px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 12px rgba(42, 89, 65, 0.10));
}

.brand__text .brand__legal {
  margin-bottom: 5px;
  color: #a9802f;
  font-size: 0.56rem;
  letter-spacing: 0.24em;
}

.brand__text strong {
  color: #28563f;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand__text .brand__roman {
  margin-top: 6px;
  color: #b38a36;
  letter-spacing: 0.18em;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(10, 35, 27, 0.16);
}

.site-header {
  border-bottom-color: rgba(181, 145, 61, 0.20);
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand__mark {
    width: 50px;
    height: 50px;
  }

  .brand__text .brand__legal {
    margin-bottom: 3px;
    font-size: 0.47rem;
    letter-spacing: 0.17em;
  }

  .brand__text strong {
    font-size: 0.98rem;
    letter-spacing: 0.055em;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }
}


/* =========================================================
   v13 adopted tree-and-komorebi logo
   ========================================================= */
:root {
  --brand-gold: #b8923f;
  --brand-gold-soft: #d9c07c;
}

.brand {
  min-width: 286px;
  gap: 12px;
}

.brand__mark {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  object-fit: contain;
  object-position: center;
}

.brand__text .brand__legal {
  color: #8b7038;
  letter-spacing: 0.19em;
}

.brand__text strong {
  color: #2b543d;
  font-size: 1.2rem;
  letter-spacing: 0.07em;
}

.brand__text .brand__roman {
  color: var(--brand-gold);
  letter-spacing: 0.19em;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  object-fit: contain;
  box-shadow: 0 10px 28px rgba(7, 27, 20, 0.18);
}

.footer-brand__legal {
  color: #ead8a6;
}

@media (max-width: 1180px) {
  .brand {
    min-width: 255px;
  }

  .brand__mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .brand__text strong {
    font-size: 1.08rem;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand__text .brand__legal {
    font-size: 0.45rem;
    letter-spacing: 0.13em;
  }

  .brand__text strong {
    font-size: 0.96rem;
    letter-spacing: 0.04em;
  }

  .footer-brand img {
    width: 68px;
    height: 68px;
  }
}


/* =========================================================
   v14 August schedule update
   ========================================================= */
.schedule-item.is-featured {
  border-color: rgba(215, 170, 82, 0.62);
  background: linear-gradient(135deg, #fffdf8 0%, #fff8e8 100%);
  box-shadow: 0 14px 34px rgba(166, 119, 45, 0.10);
}

.schedule-item.is-featured .schedule-item__date {
  color: #79581f;
  background: #fff1c8;
}

.schedule-item.is-notice,
.schedule-item.is-next-month {
  border-color: rgba(47, 95, 75, 0.38);
  background: linear-gradient(135deg, #f3faf7 0%, #fffdf8 100%);
}

.schedule-item.is-notice .schedule-item__date,
.schedule-item.is-next-month .schedule-item__date {
  color: #fff;
  background: var(--green-900);
}

.tag--neutral {
  color: #5f695f;
  background: #f0f2ee;
}

.tag--notice {
  color: #765316;
  background: #fff0bd;
}

.schedule-item__body p {
  line-height: 1.65;
}

@media (max-width: 720px) {
  .schedule-item__date span {
    font-size: 0.62rem;
  }
}


/* =========================================================
   v16 event POP gallery and privacy cleanup
   ========================================================= */
.event-resources {
  grid-column: 1 / -1;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.event-resources__heading {
  margin-bottom: 20px;
}

.event-resources__heading span {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow-600);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.event-resources__heading h4 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.event-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.event-resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.event-resource-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1.414;
  background: var(--cream);
}

.event-resource-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.event-resource-card__image:hover img,
.event-resource-card__image:focus-visible img {
  transform: scale(1.015);
}

.event-resource-card__body {
  padding: 16px 17px 18px;
}

.event-resource-card__body h5 {
  margin: 0 0 7px;
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.5;
}

.event-resource-card__body p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.65;
}

.event-resource-card__body .text-link {
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .event-resources__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .event-resources {
    margin-top: 24px;
    padding-top: 22px;
  }
  .event-resources__grid {
    grid-template-columns: 1fr;
  }
  .event-resource-card__image {
    aspect-ratio: auto;
  }
  .event-resource-card__image img {
    height: auto;
  }
}


/* v18 Family Support guide resources */
.famisapo-resources {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(47, 95, 75, 0.16);
}
.famisapo-resources__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.famisapo-resources__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--green-800);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.famisapo-resources h4 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 1.42rem;
  line-height: 1.35;
}
.famisapo-resources__heading p {
  max-width: 410px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.7;
}
.famisapo-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.famisapo-resource {
  overflow: hidden;
  border: 1px solid rgba(47, 95, 75, 0.15);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.famisapo-resource:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.famisapo-resource img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(47, 95, 75, 0.1);
  background: #fff;
}
.famisapo-resource > span {
  display: grid;
  gap: 5px;
  padding: 13px 14px 15px;
}
.famisapo-resource strong {
  font-size: .86rem;
  line-height: 1.55;
}
.famisapo-resource small {
  color: var(--green-800);
  font-size: .72rem;
  font-weight: 800;
}
.volunteer-fact small {
  color: var(--ink-soft);
  font-size: .74rem;
}
@media (max-width: 960px) {
  .famisapo-resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .famisapo-resources__heading { display: block; }
  .famisapo-resources__heading p { margin-top: 10px; }
  .famisapo-resource-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .famisapo-resource > span { padding: 10px 10px 12px; }
  .famisapo-resource strong { font-size: .76rem; }
}

/* v19 Featured event — preserve the green komorebi identity and introduce event color locally */
.featured-event {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(218, 173, 163, .18), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fbf4f1 100%);
}
.featured-event::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(161, 100, 92, .08) 1px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: .28;
  content: "";
}
.featured-event .container { position: relative; z-index: 1; }
.featured-event__heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, .65fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 38px;
}
.featured-event__heading h2 {
  margin: 0;
  color: #433c38;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.25;
}
.featured-event__heading > p { margin: 0; color: #756b65; }
.featured-event__card {
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(132, 90, 82, .15);
  border-radius: 32px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 70px rgba(89, 62, 56, .13);
}
.featured-event__poster { position: relative; min-height: 560px; background: #efe5df; }
.featured-event__poster img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.featured-event__new {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  padding: 7px 15px;
  border-radius: 999px;
  color: #fff;
  background: #9c4f5f;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  box-shadow: 0 8px 22px rgba(108, 47, 61, .24);
}
.featured-event__content { padding: clamp(34px, 5vw, 68px); align-self: center; }
.featured-event__kicker { margin: 0 0 12px; color: #a05f67; font-size: .82rem; font-weight: 900; letter-spacing: .12em; }
.featured-event__content h3 {
  margin: 0;
  color: #463a37;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 3.25rem);
  line-height: 1.35;
  letter-spacing: .035em;
}
.featured-event__theme {
  display: inline-block;
  margin: 22px 0 28px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #874b59;
  background: #f8e8e8;
  font-weight: 800;
}
.featured-event__facts { display: grid; gap: 0; margin: 0 0 26px; padding: 0; list-style: none; border-top: 1px solid #eaded8; }
.featured-event__facts li { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 12px 0; border-bottom: 1px solid #eaded8; }
.featured-event__facts strong { color: #8c5960; font-size: .86rem; }
.featured-event__facts span { color: #514945; font-weight: 700; }
.featured-event__note { margin: 0 0 30px; color: #726863; }
.featured-event__actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.featured-event__button { color: #fff !important; background: #8f5260 !important; box-shadow: 0 14px 28px rgba(143, 82, 96, .22); }
.featured-event__button:hover { background: #79424f !important; }
.featured-event .text-link { color: #81525c; }
@media (max-width: 860px) {
  .featured-event { padding: 72px 0; }
  .featured-event__heading { grid-template-columns: 1fr; gap: 12px; }
  .featured-event__card { grid-template-columns: minmax(220px, 36%) 1fr; }
  .featured-event__poster { min-height: 500px; }
}
@media (max-width: 640px) {
  .featured-event { padding: 64px 0; }
  .featured-event__card { grid-template-columns: 1fr; border-radius: 24px; }
  .featured-event__poster { min-height: 0; aspect-ratio: 4 / 5; }
  .featured-event__poster img { object-position: center top; }
  .featured-event__content { padding: 30px 24px 34px; }
  .featured-event__facts li { grid-template-columns: 76px 1fr; gap: 12px; }
  .featured-event__actions { align-items: stretch; flex-direction: column; }
  .featured-event__actions .btn { justify-content: center; width: 100%; }
}
