:root {
  --green: #15933b;
  --green-dark: #08772d;
  --green-soft: #edf7df;
  --leaf: #9fd46a;
  --text: #342b24;
  --muted: #6f665e;
  --line: #cfe6bb;
  --cream: #fbfff5;
  --shadow: 0 14px 30px rgba(42, 75, 35, 0.13);
  --radius: 22px;
  font-family:
    "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3,
h4,
p,
li,
dt,
dd,
th,
td,
a,
button {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

body.is-menu-open {
  overflow: hidden;
}

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

a,
button,
[role="button"],
.filter-button,
.contact-button,
.primary-button,
.outline-button,
.map-button,
.drawer-contact {
  cursor: pointer;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 34px;
  height: 96px;
  padding: 10px 35px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.75)
  );
  backdrop-filter: blur(8px);
}

.site-logo {
  display: inline-block;
  width: clamp(200px, 21vw, 318px);
  flex: 0 0 auto;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.site-logo:hover,
.site-logo:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02) saturate(1.03);
}

.site-logo img {
  transition: transform 0.22s ease;
}

.site-logo:hover img,
.site-logo:focus-visible img {
  transform: scale(1.01);
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.7vw, 54px);
  margin-left: auto;
  font-weight: 700;
  font-size: 16px;
}

.global-nav a {
  position: relative;
  padding: 12px 0 16px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--green);
  border-radius: 99px;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.global-nav a:hover::after,
.global-nav a.is-current::after {
  width: 64px;
}

.contact-button,
.primary-button,
.outline-button,
.map-button,
.drawer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    background-position 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    filter 0.22s ease;
  will-change: transform;
}

.contact-button,
.map-button,
.drawer-contact {
  color: #fff;
  background: linear-gradient(135deg, #67bd44 0%, #06943b 100%);
  box-shadow: 0 8px 18px rgba(4, 132, 52, 0.24);
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, #ff9a1f 0%, #f06c00 100%);
  box-shadow: 0 8px 18px rgba(221, 102, 0, 0.24);
}

.contact-button:hover,
.contact-button:focus-visible,
.map-button:hover,
.map-button:focus-visible,
.drawer-contact:hover,
.drawer-contact:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(4, 132, 52, 0.28);
  filter: saturate(1.04) brightness(1.03);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(221, 102, 0, 0.28);
  filter: saturate(1.04) brightness(1.03);
}

.contact-button:active,
.primary-button:active,
.outline-button:active,
.map-button:active,
.drawer-contact:active,
.filter-button:active,
.menu-button:active {
  transform: translateY(0);
}

.contact-button:focus-visible,
.primary-button:focus-visible,
.outline-button:focus-visible,
.map-button:focus-visible,
.drawer-contact:focus-visible,
.filter-button:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(159, 212, 106, 0.42);
  outline-offset: 3px;
}

.contact-button::before,
.primary-button::before,
.outline-button::before,
.map-button::before,
.drawer-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 48%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(-24%);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  pointer-events: none;
}

.contact-button:hover::before,
.contact-button:focus-visible::before,
.primary-button:hover::before,
.primary-button:focus-visible::before,
.outline-button:hover::before,
.outline-button:focus-visible::before,
.map-button:hover::before,
.map-button:focus-visible::before,
.drawer-contact:hover::before,
.drawer-contact:focus-visible::before {
  opacity: 1;
  transform: translateX(12%);
}

.contact-button,
.primary-button,
.outline-button,
.map-button,
.drawer-contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-button i,
.drawer-contact > i {
  width: 24px;
  font-size: 24px;
  text-align: center;
}

.menu-button {
  display: none;
  width: 72px;
  height: 72px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.menu-button:hover,
.menu-button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(0.95);
}

.menu-button:hover span:not(.visually-hidden),
.menu-button:focus-visible span:not(.visually-hidden) {
  background: var(--green-dark);
}

.menu-button span:not(.visually-hidden) {
  display: block;
  width: 54px;
  height: 5px;
  margin: 10px auto;
  background: var(--green);
  border-radius: 99px;
  transition:
    transform 0.28s ease,
    opacity 0.22s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, 0.97);
  transform: translateY(-10px);
  overflow: hidden;
  overscroll-behavior: contain;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease,
    transform 0.32s ease;
  will-change: opacity, transform;
}

.drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.drawer-inner {
  position: relative;
  height: 100dvh;
  min-height: 100%;
  padding: 56px clamp(22px, 5vw, 44px)
    calc(46px + env(safe-area-inset-bottom) + 20px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: url("../images/leaf/materials-leaf-27.png") right 0 top 0 / 270px
    auto no-repeat;
  transform: translateY(-18px);
  transition: transform 0.38s cubic-bezier(0.22, 0.9, 0.34, 1);
  will-change: transform;
}

.drawer.is-open .drawer-inner {
  transform: translateY(0);
}

.drawer-inner::after {
  display: none;
}

.drawer-head,
.drawer-nav,
.drawer-contact {
  position: relative;
  z-index: 1;
}

.drawer-head,
.drawer-nav a,
.drawer-contact {
  opacity: 0;
  transform: translateY(18px);
}

.drawer.is-open .drawer-head,
.drawer.is-open .drawer-nav a,
.drawer.is-open .drawer-contact {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.46s ease,
    transform 0.46s cubic-bezier(0.22, 0.9, 0.34, 1),
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.drawer.is-open .drawer-head {
  transition-delay: 0.04s;
}

.drawer.is-open .drawer-nav a:nth-child(1) {
  transition-delay: 0.1s;
}

.drawer.is-open .drawer-nav a:nth-child(2) {
  transition-delay: 0.15s;
}

.drawer.is-open .drawer-nav a:nth-child(3) {
  transition-delay: 0.2s;
}

.drawer.is-open .drawer-nav a:nth-child(4) {
  transition-delay: 0.25s;
}

.drawer.is-open .drawer-nav a:nth-child(5) {
  transition-delay: 0.3s;
}

.drawer.is-open .drawer-nav a:nth-child(6) {
  transition-delay: 0.35s;
}

.drawer.is-open .drawer-contact {
  transition-delay: 0.42s;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 66px;
}

.drawer-head img {
  width: min(48vw, 360px);
}

.drawer-close {
  position: relative;
  width: 58px;
  height: 58px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    filter 0.2s ease;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  transform: scale(1.05);
  background-color: rgba(159, 212, 106, 0.12);
  filter: brightness(0.98);
}

.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 27px;
  width: 46px;
  height: 5px;
  background: var(--green);
  border-radius: 99px;
}

.drawer-close::before {
  transform: rotate(45deg);
}

.drawer-close::after {
  transform: rotate(-45deg);
}

.drawer-nav {
  display: grid;
  gap: 20px;
}

.drawer-nav a,
.drawer-contact {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(50, 82, 35, 0.06);
  font-size: 25px;
  font-weight: 800;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible,
.drawer-contact:hover,
.drawer-contact:focus-visible {
  transform: translateX(4px) translateY(0);
  box-shadow: 0 14px 28px rgba(50, 82, 35, 0.1);
}

.drawer-nav a > span:last-child,
.drawer-contact span {
  margin-left: auto;
  color: var(--green);
  font-size: 24px;
}

.nav-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  margin-right: 20px;
  color: var(--green);
  font-size: 38px;
  font-weight: 400;
}

.drawer-contact {
  margin-top: 42px;
  color: #fff;
  background: linear-gradient(135deg, #67bd44 0%, #06943b 100%);
  border: 0;
}

.drawer-contact span {
  color: #fff;
}

.drawer-contact-box {
  width: 100%;
  margin-top: 42px;
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.92);
}

.drawer-contact-box > div + div {
  padding-top: 0;
  border-top: 0;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 148px;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1450px, calc(100% - 80px));
  margin: 0 auto;
}

.section-inner::before,
.section-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section-wave::after {
  display: none;
}

.section::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 210px;
  z-index: 0;
  pointer-events: none;
  background: url("../images/leaf/materials-leaf-27.png") center/contain
    no-repeat;
  opacity: 0.7;
}

.schedule::before {
  left: 58px;
  top: 52px;
  width: 122px;
  height: 185px;
  background-image: url("../images/leaf/materials-leaf-02.png");
  transform: rotate(12deg);
}

.schedule .section-inner::after {
  right: -118px;
  bottom: -96px;
  width: 188px;
  height: 270px;
  background-image: url("../images/leaf/materials-leaf-06.png");
}

.entry::before {
  left: 58px;
  top: 110px;
  width: 150px;
  height: 230px;
  background-image: url("../images/leaf/materials-leaf-04.png");
}

.entry .section-inner::before {
  left: -112px;
  bottom: -96px;
  width: 205px;
  height: 250px;
  background-image: url("../images/leaf/materials-leaf-06.png");
}

.entry .section-inner::after {
  right: -112px;
  bottom: -88px;
  width: 200px;
  height: 250px;
  background-image: url("../images/leaf/materials-leaf-06.png");
  transform: scaleX(-1);
}

.about::before {
  left: 48px;
  top: 54px;
  width: 130px;
  height: 160px;
  background-image: url("../images/leaf/materials-leaf-08.png");
}

.about .section-inner::after {
  right: -108px;
  bottom: -88px;
  width: 200px;
  height: 250px;
  background-image: url("../images/leaf/materials-leaf-06.png");
}

.recommend::before {
  left: 54px;
  top: 86px;
  width: 168px;
  height: 242px;
  background-image: url("../images/leaf/materials-leaf-04.png");
}

.recommend .section-inner::after {
  right: -116px;
  bottom: -86px;
  width: 210px;
  height: 250px;
  background-image: url("../images/leaf/materials-leaf-20.png");
}

.features::before {
  left: -18px;
  top: -8px;
  width: 250px;
  height: 245px;
  background-image: url("../images/leaf/materials-leaf-01.png");
}

.features .section-inner::before {
  left: -128px;
  bottom: -86px;
  width: 198px;
  height: 240px;
  background-image: url("../images/leaf/materials-leaf-20.png");
  transform: scaleX(-1);
}

.features .section-inner::after {
  right: -122px;
  top: -66px;
  width: 245px;
  height: 250px;
  background-image: url("../images/leaf/materials-leaf-01.png");
  transform: rotate(180deg);
}

.howto::before {
  left: -8px;
  top: 24px;
  width: 230px;
  height: 230px;
  background-image: url("../images/leaf/materials-leaf-01.png");
}

.howto .section-inner::before {
  left: -132px;
  bottom: -100px;
  width: 210px;
  height: 260px;
  background-image: url("../images/leaf/materials-leaf-06.png");
}

.howto .section-inner::after {
  right: -120px;
  bottom: -92px;
  width: 208px;
  height: 260px;
  background-image: url("../images/leaf/materials-leaf-20.png");
}

.sponsor::before,
.raku::before {
  left: -16px;
  top: 6px;
  width: 240px;
  height: 238px;
  background-image: url("../images/leaf/materials-leaf-01.png");
}

.sponsor .section-inner::before,
.raku .section-inner::before {
  left: -114px;
  bottom: -86px;
  width: 190px;
  height: 240px;
  background-image: url("../images/leaf/materials-leaf-06.png");
}

.sponsor .section-inner::after,
.raku .section-inner::after {
  right: -108px;
  top: -72px;
  width: 248px;
  height: 250px;
  background-image: url("../images/leaf/materials-leaf-01.png");
  transform: rotate(180deg);
}

.contact::before {
  left: 20px;
  bottom: 28px;
  top: auto;
  width: 155px;
  height: 190px;
  background-image: url("../images/leaf/materials-leaf-20.png");
  transform: scaleX(-1);
}

.contact .contact-panel::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 72px;
  width: 230px;
  height: 285px;
  z-index: 0;
  pointer-events: none;
  background: url("../images/leaf/materials-leaf-20.png") center / contain
    no-repeat;
  opacity: 0.52;
}

.contact .contact-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 132px;
  height: 164px;
  z-index: 0;
  pointer-events: none;
  background: url("../images/leaf/materials-leaf-06.png") center / contain
    no-repeat;
  opacity: 0.78;
}

.hero {
  min-height: 920px;
  padding: 170px 0 148px;
  background:
    linear-gradient(
      90deg,
      #fff 0%,
      #fff 28%,
      rgba(255, 255, 255, 0.65) 48%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    #fbfff6;
}

.hero::before {
  left: -54px;
  top: 160px;
  width: 270px;
  height: 250px;
  background-image: url("../images/leaf/materials-leaf-04.png");
  transform: rotate(8deg);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 66%;
  aspect-ratio: 938 / 800;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.88) 12%,
      rgba(255, 255, 255, 0.2) 36%,
      rgba(255, 255, 255, 0) 70%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, #fff 91%),
    url("../images/sec/materials-sec-02.png") center right 65% / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 80px));
  margin-left: 40px;
}

.hero-content::before,
.hero-content::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-content::before {
  left: -92px;
  bottom: -150px;
  width: 150px;
  height: 190px;
  background-image: url("../images/leaf/materials-leaf-20.png");
}

.hero-content::after {
  right: 0;
  bottom: -120px;
  width: 230px;
  height: 80px;
  background-image: url("../images/leaf/materials-leaf-29.png");
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero h1 span {
  display: inline;
}

.hero-line-primary {
  white-space: nowrap;
}

.hero h1 span:first-child,
.hero h1 span:last-child::first-letter {
  color: var(--green);
}

.hero h1 span:first-child {
  color: var(--text);
}

.hero h1 span:first-child::first-letter,
.hero h1 span:last-child {
  color: var(--green);
}

.hero h1 span:first-child {
  color: var(--green);
}

.hero h1 span:first-child::after {
  content: "";
}

.schedule {
  background: linear-gradient(180deg, #f6fbef 0%, #fff 100%);
}

.entry {
  background: linear-gradient(180deg, #fff 0%, #f3fae9 100%);
}

.about {
  background: #fbfff7;
}

.recommend {
  background: linear-gradient(180deg, #eef8df 0%, #f9fff3 100%);
}

.features {
  background: #f7fcef;
}

.howto {
  background: linear-gradient(180deg, #fff 0%, #eff8e2 100%);
}

.raku {
  background: linear-gradient(180deg, #f8fcf1 0%, #fff 100%);
}

.hero-lead,
.hero-text {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}

.hero-text {
  margin-top: 4px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 0;
  margin: 36px 0 30px;
  list-style: none;
}

.hero-badges li {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  padding: 22px 14px;
  text-align: center;
  background: radial-gradient(circle, #f5fbeb 0%, #eef7dd 72%);
  border: 1px solid #e2f0ce;
  border-radius: 50%;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.round-icon,
.card-icon {
  display: inline-grid;
  place-items: center;
  color: var(--green);
}

.round-icon::before,
.card-icon::before {
  display: block;
  color: var(--green);
  font-family: "Font Awesome 6 Free";
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.round-icon.heart::before,
.card-icon.heart::before {
  content: "\f004";
}

.round-icon.walk::before,
.card-icon.walk::before {
  content: "\f554";
}

.round-icon.people::before,
.card-icon.people::before {
  content: "\f0c0";
}

.round-icon.family::before,
.card-icon.family::before {
  content: "\f0c0";
}

.primary-button {
  min-width: 365px;
  min-height: 70px;
  font-size: 20px;
}

.primary-button span,
.outline-button span {
  margin-left: 16px;
  font-size: 34px;
  line-height: 1;
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 110px;
  text-align: left;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 38px;
  height: 18px;
  background: url("../images/icon-leaf.png") center/contain no-repeat;
}

.section-heading h2,
.about-text h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.42;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section-heading h2 span,
.about-text h2 span {
  color: var(--green);
}

.section-heading p {
  margin: 22px auto 0;
  font-size: 20px;
  line-height: 2;
  font-weight: 600;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
  margin: 0 auto 30px;
  width: min(960px, 100%);
}

.filter-button {
  min-width: 126px;
  min-height: 44px;
  padding: 0 28px;
  color: var(--text);
  background: #fff;
  border: 2px solid #9bd080;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.filter-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #67bd44, #0c943b);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(18, 140, 52, 0.18);
}

.filter-button:hover:not(.is-active),
.filter-button:focus-visible:not(.is-active) {
  transform: translateY(-2px);
  color: var(--green-dark);
  background: #f4faea;
  border-color: #78c85c;
  box-shadow: 0 8px 14px rgba(18, 140, 52, 0.1);
}

.filter-button.is-active:hover,
.filter-button.is-active:focus-visible {
  box-shadow: 0 12px 20px rgba(18, 140, 52, 0.24);
  filter: brightness(1.03);
}

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

.schedule-noscript {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 24px;
  color: var(--green-dark);
  background: #f4f9ea;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
}

.event-card[hidden],
.event-card.is-hidden {
  display: none !important;
}

.event-card {
  display: grid;
  grid-template-columns: 190px 180px 1fr 460px 150px;
  align-items: stretch;
  min-height: 132px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(202, 226, 184, 0.8);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.event-card > * {
  align-self: stretch;
}

.event-card > * + * {
  border-left: 2px dotted #b9df9c;
  padding-left: 28px;
}

.event-card span,
.event-date span,
.event-time span,
.event-main span {
  display: block;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.event-date strong {
  display: inline-block;
  margin-top: 6px;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.event-date em {
  font-style: normal;
  font-weight: 900;
}

.event-time strong {
  display: block;
  margin-top: 10px;
  font-size: 21px;
}

.event-main h3 {
  margin: 8px 0 8px;
  font-size: 20px;
  line-height: 1.5;
}

.event-main p,
.event-detail p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.event-main .event-venue {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.event-address,
.event-access {
  line-height: 1.55;
}

.event-access {
  padding-top: 4px;
}

.event-detail-text {
  line-height: 1.7;
}

.event-access-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.event-detail {
  padding-right: 20px;
}

.map-button {
  justify-self: end;
  align-self: center;
  width: 160px;
  height: 50px;
  padding: 0;
  margin: 0;
  font-size: 15px;
  white-space: nowrap;
}

.card-grid,
.step-grid {
  display: grid;
  gap: 34px;
}

.card-grid.three,
.step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.feature-card,
.step-card,
.check-grid li,
.sponsor-list div,
.raku-card,
.contact-box,
.notice {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(206, 228, 188, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  min-height: 250px;
  padding: 36px 30px 32px;
  text-align: center;
}

.card-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto;
  background: radial-gradient(circle, #f5fbeb 0%, #edf7df 74%);
  border-radius: 50%;
}

.card-icon::before {
  font-size: 46px;
}

.card-icon.yen::before {
  content: "\f157";
}
.card-icon.clipboard::before {
  content: "\f46d";
}
.card-icon.doctor::before {
  content: "\f0f0";
}
.card-icon.question::before {
  content: "\f059";
}
.card-icon.building::before {
  content: "\f1ad";
}
.card-icon.shield::before {
  content: "\f3ed";
}
.card-icon.calendar::before {
  content: "\f073";
}
.card-icon.mail::before {
  content: "\f095";
}

.info-card h3,
.feature-card h3,
.step-card h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.info-card p,
.feature-card p,
.step-card p {
  margin: 0;
  font-weight: 700;
}

.pill-message {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(470px, 100%);
  min-height: 64px;
  margin: 40px auto 0;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  font-weight: 900;
}

.about-layout,
.recommend-layout,
.features-layout {
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 58px;
}

.about-text .section-label {
  justify-content: flex-start;
}

.about-text h2 {
  margin-bottom: 22px;
}

.about-text .lead {
  color: var(--green);
  font-size: 21px;
  font-weight: 900;
}

.about-text p {
  margin: 0 0 18px;
  font-weight: 700;
}

.soft-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 854 / 755;
  border-radius: var(--radius);
}

.soft-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
  mask-image: radial-gradient(
    ellipse at center,
    #000 58%,
    rgba(0, 0, 0, 0.78) 72%,
    rgba(0, 0, 0, 0) 100%
  );
}

.recommend-layout {
  grid-template-columns: 1fr 520px;
}

.recommend .soft-photo {
  aspect-ratio: 1881 / 1881;
}

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

.check-grid li {
  position: relative;
  min-height: 162px;
  padding: 70px 18px 20px;
  text-align: center;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
}

.check-grid li::before {
  content: "\f00c";
  position: absolute;
  left: 50%;
  top: 25%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #73c64c, #14923b);
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  font-size: 28px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.features-layout {
  grid-template-columns: 1fr 520px;
}

.features .soft-photo {
  aspect-ratio: 855 / 908;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 104px;
  padding: 16px 22px;
  text-align: left;
}

.feature-card.wide {
  grid-column: auto;
}

.feature-card .card-icon {
  display: none;
}

.feature-card h3 {
  grid-column: 1;
  font-size: 20px;
}

.feature-card p {
  grid-column: 1;
  font-size: 16px;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 330px;
  gap: 14px;
  padding: 34px 30px 32px;
  text-align: center;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  color: #fff;
  background: linear-gradient(135deg, #75c64e, #168d3b);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 900;
}

.outline-button {
  min-width: 430px;
  min-height: 66px;
  margin: 42px auto 0;
  color: var(--green-dark);
  border: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  box-shadow: 0 8px 18px rgba(30, 91, 37, 0.12);
}

.outline-button:hover,
.outline-button:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, #7acc53 0%, #14923b 100%);
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(30, 91, 37, 0.2);
}

.outline-button:hover span,
.outline-button:focus-visible span {
  transform: translateX(4px);
}

.outline-button span {
  transition: transform 0.22s ease;
}

.howto .outline-button {
  display: flex;
  width: max-content;
  color: #fff;
  background: linear-gradient(135deg, #ff9a1f 0%, #f06c00 100%);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(221, 102, 0, 0.24);
}

.howto .outline-button:hover,
.howto .outline-button:focus-visible {
  box-shadow: 0 14px 26px rgba(221, 102, 0, 0.28);
}

.howto .outline-button::before {
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 48%,
    transparent 62%
  );
}

.sponsor {
  background: linear-gradient(180deg, #f1f8e6 0%, #fbfff6 100%);
}

.sponsor-list {
  display: grid;
  gap: 34px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.sponsor-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  min-height: 170px;
  padding: 28px 56px;
}

.sponsor-list .card-icon {
  margin: 0;
}

.sponsor-list p {
  margin: 0;
  padding-left: 48px;
  border-left: 3px dotted #aad887;
  font-size: 34px;
  font-weight: 900;
}

.sponsor-list b {
  color: var(--green);
}

.raku-card {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 46px;
}

.raku-logo {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 270px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(30, 74, 33, 0.1);
  overflow: hidden;
}

.raku-logo img {
  width: 100%;
  height: auto;
  /* aspect-ratio: 608 / 420; */
  object-fit: contain;
}

.raku-text {
  padding-left: 42px;
  border-left: 3px dotted #a8d887;
}

.raku-text p {
  margin: 0 0 28px;
  font-size: 20px;
  font-weight: 700;
}

.raku-text .outline-button {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.raku-text .outline-button:hover,
.raku-text .outline-button:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #019de4 0%, #0179b3 100%);
  box-shadow: 0 14px 24px rgba(1, 157, 228, 0.24);
}

.raku-text .outline-button:hover::before,
.raku-text .outline-button:focus-visible::before {
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 48%,
    transparent 62%
  );
}

.contact {
  padding: 32px 0 148px;
  background:
    linear-gradient(
      180deg,
      rgba(238, 247, 223, 0.88),
      rgba(255, 255, 255, 1) 32%
    ),
    #f6fbef;
}

.contact-panel {
  position: relative;
  z-index: 1;
  width: min(1410px, calc(100% - 56px));
  margin: 0 auto;
  padding: 70px 96px 112px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 30px 30px 0 0;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel .section-heading {
  margin-bottom: 40px;
}

.contact-panel .card-icon {
  margin-bottom: 10px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 54px 70px;
  border: 3px solid #b7ddb2;
}

.contact-box > div + div {
  padding-left: 48px;
  border-left: 3px dotted #b7ddb2;
}

.contact-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}

.contact-box h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.35;
}

.contact-box p {
  margin: 8px 0 0;
  font-weight: 700;
}

.tel-link {
  display: block;
  color: var(--green);
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.tap-note {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 12px 28px;
  background: #fff3d7;
  border-radius: 9px;
}

.notice {
  margin: 34px 0 0;
  padding: 34px 44px;
  background: #f4f9ea;
  font-size: 20px;
  font-weight: 800;
}

.footer {
  background: #fff;
  border-top: 1px solid #d7d7d7;
}

#rakuwa-footer {
  padding: 0 0 42px;
  color: #000;
  background: #fff;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.rf-container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.rf-lower {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 26px 40px;
  padding-top: 42px;
}

.rf-logo {
  grid-row: span 2;
}

.rf-logo a,
.rf-logo img {
  display: block;
}

.rf-logo img {
  width: 120px;
  height: auto;
}

.rf-link {
  justify-self: end;
}

.rf-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rf-link-list .item {
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.rf-link-list .item + .item::before {
  position: absolute;
  left: -13px;
  top: 50%;
  width: 1px;
  height: 1em;
  background: #cfcfcf;
  transform: translateY(-50%);
  content: "";
}

.rf-link-list a {
  color: #000;
}

.rf-link-list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.rf-copyright {
  justify-self: end;
  margin: 0;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media (max-width: 1180px) {
  .site-header {
    height: 108px;
    padding: 22px 28px;
  }

  .global-nav,
  .contact-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 130px;
  }

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

  .event-detail,
  .map-button {
    grid-column: 3;
    justify-self: start;
    margin-top: 12px;
  }

  .event-detail {
    border-left: 2px dotted #b9df9c;
  }

  .map-button {
    border-left: 0;
    padding-left: 24px;
  }

  .about-layout,
  .recommend-layout,
  .features-layout {
    grid-template-columns: 1fr;
  }

  .soft-photo {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .features-layout .soft-photo {
    order: -1;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .site-header {
    height: 104px;
    padding: 10px 20px 10px;
  }

  .site-logo {
    width: min(58vw, 355px);
  }

  .section {
    padding: 76px 0 106px;
  }

  .section-inner {
    width: min(100% - 44px, 720px);
  }

  .section::before {
    width: 96px;
    height: 145px;
    opacity: 0.72;
  }

  .section-inner::before,
  .section-inner::after {
    width: 118px;
    height: 150px;
    opacity: 0.78;
  }

  .schedule::before,
  .entry::before,
  .about::before,
  .recommend::before {
    left: -18px;
    top: 38px;
  }

  .features::before,
  .howto::before,
  .sponsor::before,
  .raku::before {
    left: -42px;
    top: 10px;
    width: 150px;
    height: 150px;
  }

  .schedule .section-inner::after,
  .entry .section-inner::after,
  .about .section-inner::after,
  .recommend .section-inner::after,
  .howto .section-inner::after {
    right: -64px;
    bottom: -76px;
  }

  .entry .section-inner::before,
  .features .section-inner::before,
  .howto .section-inner::before,
  .sponsor .section-inner::before,
  .raku .section-inner::before {
    left: -72px;
    bottom: -76px;
  }

  .features .section-inner::after,
  .sponsor .section-inner::after,
  .raku .section-inner::after {
    right: -72px;
    top: -48px;
    width: 145px;
    height: 145px;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 104px 0 40px;
    background: #fff;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    display: block;
    order: 1;
    width: 100%;
    height: 435px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0) 48%,
        #fff 98%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.55) 25%,
        rgba(255, 255, 255, 0) 65%
      ),
      url("../images/sec/materials-sec-02.png") center top / cover no-repeat;
  }

  .hero-content {
    order: 2;
    width: min(calc(100% - 52px), 760px);
    margin: -18px 26px 32px;
  }

  .hero::before {
    left: -54px;
    top: 160px;
    width: 170px;
    height: 200px;
  }

  .hero-content::before {
    left: -44px;
    bottom: -132px;
    width: 100px;
    height: 135px;
  }

  .hero-content::after {
    right: -26px;
    bottom: -106px;
    width: 150px;
    height: 46px;
  }

  .hero h1 {
    font-size: clamp(46px, 10.2vw, 76px);
    line-height: 1.32;
    margin-bottom: 10px;
  }

  .hero-line-primary {
    white-space: normal;
  }

  .hero-lead,
  .hero-text {
    font-size: 20px;
    line-height: 2.05;
  }

  .hero-badges {
    justify-content: flex-start;
    gap: 14px 12px;
    margin-top: 30px;
  }

  .hero-badges li {
    width: calc((100% - 12px) / 2);
    max-width: 170px;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
    font-size: 16px;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
    min-height: 82px;
    font-size: 24px;
  }

  .section-heading,
  .section-heading.align-left {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-heading h2,
  .about-text h2 {
    font-size: clamp(30px, 8vw, 52px);
  }

  .section-heading p {
    font-size: 17px;
  }

  .filters {
    gap: 10px;
  }

  .filter-button {
    min-width: 0;
    padding: 0 12px;
    font-size: 15px;
  }

  .filter-button:first-child {
    flex: 1 0 100%;
  }

  .filter-button:not(:first-child) {
    flex: 1 1 calc(50% - 5px);
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px;
  }

  .event-card > * + *,
  .event-detail {
    border-left: 0;
    padding-left: 0;
  }

  .event-detail,
  .map-button {
    grid-column: auto;
  }

  .map-button {
    justify-self: stretch;
  }

  .card-grid.three,
  .step-grid,
  .check-grid,
  .feature-cards,
  .raku-card,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    grid-column: auto;
  }

  .sponsor-list div {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px;
    text-align: center;
  }

  .sponsor-list .card-icon {
    margin: 0 auto;
  }

  .sponsor-list p {
    padding-left: 0;
    border-left: 0;
    font-size: 24px;
  }

  .raku-card {
    padding: 28px;
  }

  .raku-text {
    padding-left: 0;
    border-left: 0;
  }

  .raku-logo {
    min-height: auto;
  }

  .outline-button {
    width: 100%;
    min-width: 0;
    font-size: 20px;
  }

  .contact-panel {
    width: 100%;
    padding: 60px 22px 96px;
    border-radius: 0;
  }

  .contact .contact-panel::before {
    right: -62px;
    top: 70px;
    width: 165px;
    height: 210px;
  }

  .contact .contact-panel::after {
    right: -20px;
    bottom: 30px;
    width: 86px;
    height: 116px;
  }

  .contact-box {
    gap: 28px;
    padding: 32px 24px;
  }

  .contact-box > div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 3px dotted #b7ddb2;
    padding-top: 28px;
  }

  .contact-box h3 {
    font-size: 26px;
  }

  .tel-link {
    font-size: 42px;
  }

  #rakuwa-footer {
    padding-bottom: 32px;
  }

  .rf-container {
    width: min(100% - 44px, 720px);
  }

  .rf-lower {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding-top: 34px;
  }

  .rf-logo {
    grid-row: auto;
  }

  .rf-link,
  .rf-copyright {
    justify-self: start;
  }

  .rf-link-list {
    justify-content: flex-start;
    gap: 8px 20px;
  }

  .drawer-contact-box {
    gap: 22px;
    padding: 28px 22px;
  }

  .drawer-contact-box > div + div {
    padding-top: 20px;
    border-top: 3px dotted #b7ddb2;
  }

  .drawer-inner {
    height: 100dvh;
    padding-bottom: calc(34px + env(safe-area-inset-bottom) + 24px);
  }
}

@media (max-width: 480px) {
  .drawer-nav a,
  .drawer-contact {
    display: flex;
    align-items: center;
    min-height: 74px;
    padding: 0 20px;
    font-size: 20px;
  }

  .nav-icon {
    width: 38px;
    margin-right: 14px;
    font-size: 28px;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    order: 1;
    display: block;
    width: 100%;
    height: 360px;
    margin: 0;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0) 60%,
        #fff 98%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0) 10%
      ),
      url("../images/sec/materials-sec-02.png") center top / cover no-repeat;
  }

  .hero-content {
    order: 2;
    width: calc(100% - 52px);
    margin: -110px 26px 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-line-primary {
    white-space: normal;
  }

  .hero-lead,
  .hero-text {
    font-size: 17px;
  }

  .hero-badges li {
    width: calc((100% - 12px) / 2);
    font-size: 15px;
  }

  .hero .primary-button {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding: 0 22px;
    font-size: 18px;
    white-space: nowrap;
  }

  .hero .primary-button span {
    margin-left: 10px;
    font-size: 28px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .feature-card .card-icon,
  .feature-card h3,
  .feature-card p {
    grid-column: auto;
    grid-row: auto;
  }

  .round-icon::before {
    font-size: 38px;
  }

  .filter-button {
    flex-basis: calc(50% - 10px);
  }

  .tel-link {
    font-size: 34px;
  }
}

/* leaf decorative assets are intentionally hidden. */
.drawer-inner {
  background-image: none;
}

.section::before,
.section-inner::before,
.section-inner::after,
.hero-content::before,
.hero-content::after,
.contact .contact-panel::before,
.contact .contact-panel::after,
.section-label::before,
.section-label::after {
  display: none !important;
}
