* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}
body { margin: 0; }
a { color: #436b2e; }
a:hover { color: #5f8f3e; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.pc-rail { display: none; }
@media (min-width: 940px) {
  .pc-rail { display: flex; }
  #pc-contents-rail {
    position: fixed;
    /* Fallback ≈ CTA gap (190 - 168 = 22). JS mirrors the live A gap. */
    left: max(0px, calc(50% - 215px - 272px));
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    flex-direction: column;
    z-index: 60;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(230, 224, 206, 0.9);
    border-radius: 20px;
    padding: 18px 16px;
    box-shadow: 0 14px 34px rgba(90, 80, 60, 0.14);
  }
  #pc-contents-rail.is-stowed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.pc-rail a:hover { color: #5f8f3e; }
#pc-contents-rail a.is-active {
  color: #d32f2f !important;
}

/* ===== Site header + SP hamburger ===== */
.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e6dcc2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 10px;
}
@media (min-width: 940px) {
  .site-header {
    position: sticky;
    top: 0;
  }
}
.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.site-header__site-link {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
  color: #3b5a24;
  text-decoration: none;
  text-align: right;
  white-space: nowrap;
  margin-left: auto;
}
.sp-menu-fab {
  display: none;
}
.site-header__morimin {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 0;
  animation: floaty 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(90, 80, 60, 0.18));
}
body.sp-menu-open .site-header__morimin {
  visibility: hidden;
}
.sp-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  flex-shrink: 0;
}
.sp-menu-btn__bar {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: #3b5a24;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(2) {
  opacity: 0;
}
.sp-menu-btn[aria-expanded="true"] .sp-menu-btn__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.sp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(40, 36, 24, 0.45);
  pointer-events: auto;
}
.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(86vw, 320px);
  height: 100%;
  margin: 0;
  padding: 18px 18px 28px;
  background: #fffef9;
  border-left: 1px solid #e6dcc2;
  box-shadow: none;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  pointer-events: none;
  visibility: hidden;
}
.sp-menu.is-open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
  box-shadow: -12px 0 32px rgba(60, 50, 30, 0.18);
}
.sp-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6dcc2;
}
.sp-menu__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sp-menu__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #9a8f6f;
  margin: 0;
}
.sp-menu__morimin {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  animation: floaty 4s ease-in-out infinite;
}
.sp-menu__close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #3b5a24;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.sp-menu a {
  display: block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #3b5a24;
  text-decoration: none;
  padding: 12px 4px;
  border-bottom: 1px dashed #e6dcc2;
}
.sp-menu a:hover,
.sp-menu a:focus-visible {
  color: #5f8f3e;
}
.sp-menu__ext {
  margin-top: 10px;
  border-bottom: none !important;
  color: #c44d1a !important;
  font-size: 14px !important;
}
body.sp-menu-open {
  overflow: hidden;
}

@media (max-width: 939px) {
  html,
  body {
    overflow-x: hidden;
  }
  .main-col {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .hero-flyer {
    /* Title can overhang visually; clip so the page can't scroll sideways */
    overflow-x: hidden;
  }
  .site-header__site-link { display: none; }
  .sp-menu-fab {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    position: fixed;
    top: max(4px, env(safe-area-inset-top, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
    z-index: 95;
    pointer-events: auto;
  }
  .sp-menu-overlay:not([hidden]) { display: block; }
  .sp-menu { display: block; }
}
@media (min-width: 940px) {
  .sp-menu-fab,
  .sp-menu,
  .sp-menu-overlay { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header__morimin,
  .sp-menu__morimin {
    animation: none;
  }
}

/* CTA: mobile sticky bottom / PC right rail */
.cta-rail {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  pointer-events: auto;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(230,224,206,.9);
  box-shadow: 0 -8px 24px rgba(90,80,60,.12);
  backdrop-filter: blur(8px);
}
.cta-rail__panel { text-align: center; }
.cta-rail__primary {
  display: block;
  background: #e8663d;
  color: #fff;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 17px;
  padding: 13px 12px;
  border-radius: 14px;
  box-shadow: 0 4px 0 #b94a26;
  margin-bottom: 8px;
}
a.cta-rail__primary:hover {
  color: #ffe566;
}
.cta-rail__actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.cta-rail__action-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.cta-rail__action-group--ig {
  flex: 0 0 24%;
  max-width: 88px;
}
.cta-rail__action-group--contact {
  flex: 1;
}
.cta-rail__action-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #4CC764;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
}
.cta-rail__action-group--ig .cta-rail__action-label {
  color: #333;
}
.cta-rail__icons {
  display: flex;
  gap: 6px;
  justify-content: stretch;
  width: 100%;
}
.cta-rail__icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: #4CC764;
  border: 1px solid #3DB556;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(46, 150, 70, 0.35);
}
.cta-rail__action-group--ig .cta-rail__icon {
  width: 100%;
  max-width: none;
  flex: none;
}
.cta-rail__icon img {
  width: 18px;
  height: 18px;
}
.cta-rail__icon--line {
  padding: 2px;
  overflow: hidden;
}
.cta-rail__icon--line img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}
.cta-rail__icon--instagram {
  background: #fff;
  border-color: #ece2c8;
  box-shadow: 0 2px 0 rgba(90, 80, 60, 0.12);
}
.cta-rail__icon--instagram img {
  width: 22px;
  height: 22px;
}
.cta-rail__instagram {
  display: none;
}
.cta-rail__morimin {
  display: none;
}

.main-col {
  padding-bottom: calc(138px + env(safe-area-inset-bottom));
  overflow: visible;
}

@media (min-width: 940px) {
  .cta-rail {
    left: auto;
    right: max(24px, calc(50% - 215px - 190px));
    top: 50%;
    bottom: auto;
    width: 168px;
    padding: 0;
    background: transparent;
    border-top: none;
    box-shadow: none;
    backdrop-filter: none;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cta-rail__morimin {
    display: block;
    position: relative;
    z-index: 2;
    align-self: flex-end;
    width: 96px;
    height: 96px;
    margin: 0 0 -18px;
    pointer-events: none;
    animation: side-bg-float 4.2s ease-in-out infinite;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  }
  .cta-rail__morimin img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .cta-rail__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 18px 14px 16px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(230,224,206,.9);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(90,80,60,.14);
  }
  .cta-rail__primary { font-size: 17px; padding: 14px 8px; margin-bottom: 10px; }
  .cta-rail__actions {
    display: block;
  }
  .cta-rail__action-group--ig {
    display: none;
  }
  .cta-rail__action-group--contact {
    width: 100%;
  }
  .cta-rail__action-label {
    font-size: 11px;
    margin-bottom: 2px;
    color: #4CC764;
  }
  .cta-rail__icon { max-width: none; height: 38px; }
  .cta-rail__instagram {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px;
    text-decoration: none;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(230,224,206,.9);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(90,80,60,.12);
  }
  .cta-rail__instagram-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
  }
  .cta-rail__instagram-icon img {
    width: 32px;
    height: 32px;
    display: block;
  }
  .cta-rail__instagram-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 900;
    font-size: 12px;
    line-height: 1.35;
    color: #3b5a24;
    text-align: left;
  }
  .cta-rail__instagram:hover .cta-rail__instagram-text {
    color: #5f8f3e;
  }
  .main-col {
    padding-bottom: 0;
    overflow: visible;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-rail__morimin {
    animation: none;
  }
}

.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

.ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: rgba(255,255,255,.85);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 12px;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}

.ph-hero { background-image: linear-gradient(145deg, #b8d4a0 0%, #6fa84a 45%, #3d6b28 100%); }

.ph-side {
  background-image: url('assets/side-bg2.JPG');
  background-size: cover;
  background-position: center;
}

.side-bg-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.side-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: opacity;
}
.side-bg-slide.is-active {
  opacity: 1;
}
.side-bg-dim {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 18, 0.42);
  pointer-events: none;
  z-index: 1;
}
@keyframes side-bg-float {
  0%, 100% { transform: translateY(3px) rotate(-1.5deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .side-bg-slide {
    transition: none;
  }
}

.ph-kawa { background-image: linear-gradient(160deg, #8ecae6 0%, #4a9ec4 100%); }
.ph-ame { background-image: linear-gradient(160deg, #b8c4d8 0%, #7a8aaa 100%); }
.ph-yuki { background-image: linear-gradient(160deg, #e8f0f4 0%, #a8c0d0 100%); color: #4a6070; text-shadow: none; }
.ph-chiiki { background-image: linear-gradient(160deg, #c8d878 0%, #8a9e3a 100%); }
.ph-tour-a {
  background-size: cover;
  background-position: center;
  color: transparent;
  text-shadow: none;
  font-size: 0;
}
.tour-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: transparent;
}
.tour-media-carousel {
  position: absolute;
  inset: 0;
  background: #eef2e2;
  border-radius: inherit;
  overflow: hidden;
}
.tour-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  border-radius: inherit;
}
.tour-media-slide.is-active {
  opacity: 1;
}
.tour-eye {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  padding: 0;
  background: none;
  text-shadow: none;
}
.tour-eye__chip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
  padding: 5px 14px 5px 5px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(20, 24, 18, 0.18);
  backdrop-filter: blur(6px);
}
.tour-eye__chip--summer-weekday,
.tour-eye__chip--summer-saturday {
  border: 1px solid rgba(58, 154, 217, 0.28);
}
.tour-eye__chip--summer-weekday .tour-eye__date,
.tour-eye__chip--summer-saturday .tour-eye__date {
  color: #3a9ad9;
}
.tour-eye__chip--autumn-weekday,
.tour-eye__chip--autumn-saturday {
  border: 1px solid rgba(255, 122, 50, 0.28);
}
.tour-eye__chip--autumn-weekday .tour-eye__date,
.tour-eye__chip--autumn-saturday .tour-eye__date {
  color: #ff7a32;
}
.tour-card {
  background: #fff;
  border: 1px solid #ece2c8;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(90, 120, 50, 0.08);
}
.tour-card[id] {
  scroll-margin-top: 88px;
}
.tour-photo-wrap {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.tour-photo .ph {
  position: absolute;
  inset: 0;
}
.tour-card--round-badge {
  margin-top: 26px;
  border-top: none;
  /* Match photo top radius so white card bg doesn't peek at the corners */
  border-radius: 20px;
  overflow: visible;
  background-clip: padding-box;
}
.tour-card--round-badge ~ .tour-card--round-badge {
  margin-top: 44px;
}
#tour-4.tour-card {
  margin-bottom: 4px;
}
.tour-to-join {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 28px 12px 4px;
  padding: 0;
  text-align: center;
  background: none;
  border: none;
  box-shadow: none;
}
.tour-to-join__text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  color: #d32f2f;
  letter-spacing: 0.02em;
}
.tour-to-join__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 0;
}
.tour-to-join__arrows span {
  display: block;
  width: 14px;
  height: 14px;
  margin-top: -6px;
  border-right: 3px solid #d32f2f;
  border-bottom: 3px solid #d32f2f;
  transform: rotate(45deg);
  opacity: 0.35;
  animation: tour-to-join-bounce 1.4s ease-in-out infinite;
}
.tour-to-join__arrows span:nth-child(1) { opacity: 0.35; animation-delay: 0s; }
.tour-to-join__arrows span:nth-child(2) { opacity: 0.6; animation-delay: 0.15s; }
.tour-to-join__arrows span:nth-child(3) { opacity: 1; animation-delay: 0.3s; }
@keyframes tour-to-join-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.25; }
  50% { transform: rotate(45deg) translate(2px, 2px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .tour-to-join__arrows span { animation: none; opacity: 0.85; }
}
.tour-round {
  position: absolute;
  top: -26px;
  left: 14px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #009C53;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.tour-eye__badge {
  flex-shrink: 0;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: none;
}
.tour-eye__badge--summer-weekday,
.tour-eye__badge--summer-saturday {
  background: linear-gradient(180deg, #6ec4f0 0%, #3a9ad9 100%);
}
.tour-eye__badge--autumn-weekday,
.tour-eye__badge--autumn-saturday {
  background: #ff7a32;
}
.tour-eye__date {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.tour-eye__date small {
  font-size: 14px;
  font-weight: 900;
  color: inherit;
}
.tour-fee__label {
  flex-shrink: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #3b5a24;
  letter-spacing: 0.04em;
}
.ph-tour-b {
  background-size: cover;
  background-position: center;
  color: transparent;
  text-shadow: none;
  font-size: 0;
}
.ph-tour-c { background-image: linear-gradient(160deg, #90b878 0%, #436b2e 100%); }
.ph-tour-d {
  background-size: cover;
  background-position: center;
  color: transparent;
  text-shadow: none;
  font-size: 0;
}

/* Hero carousel */
.hero-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(90,120,50,.18);
  aspect-ratio: 4/3;
  background: #eef2e2;
}
.hero-carousel {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-morimin {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px dashed #5f8f3e;
  animation: floaty 4s ease-in-out infinite;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-morimin img { width: 52px; height: 52px; }

/* チラシ表面風ファーストビュー（ナチュラル配色） */
.hero-flyer {
  position: relative;
  padding: 18px 0 22px;
  background:
    linear-gradient(
      180deg,
      #eaf3e4 0%,
      #f2f7ee 28%,
      #f7faf5 55%,
      #fbfbf7 78%,
      #f6f6f1 100%
    );
  overflow: visible;
}
.hero-flyer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(58%, 420px);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(95, 143, 62, 0.14) 0%, rgba(95, 143, 62, 0) 70%),
    radial-gradient(ellipse 55% 50% at 12% 18%, rgba(59, 90, 36, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 88% 22%, rgba(122, 158, 90, 0.1) 0%, transparent 72%);
}
.hero-flyer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(72%, 520px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360' viewBox='0 0 360 360'%3E%3Cg%3E%3Cpath fill='%23a8d45a' transform='translate(280 20) rotate(28 18 28) scale(0.95)' d='M18 2c22 6 34 28 28 52C28 48 8 32 18 2z'/%3E%3Cpath fill='%237cb83a' transform='translate(42 210) rotate(-55 12 16) scale(0.5)' d='M12 1c12 3 18 15 15 28C18 26 5 18 12 1z'/%3E%3Cpath fill='%235f8f3e' transform='translate(160 90) rotate(70 14 20) scale(0.72)' d='M14 1c14 4 22 18 18 32C22 30 6 20 14 1z'/%3E%3Cpath fill='%23a8d45a' transform='translate(20 100) rotate(-25 12 16) scale(0.58)' d='M12 1c12 3 18 15 15 28C18 26 5 18 12 1z'/%3E%3Cpath fill='%237cb83a' transform='translate(230 170) rotate(110 14 18) scale(0.65)' d='M14 1c14 4 22 17 18 30C22 28 6 20 14 1z'/%3E%3Cg fill='%233b5a24' transform='translate(70 40) rotate(-32 18 36) scale(0.95)'%3E%3Cpath d='M18 2 L32 28 H22 L30 44 H20 L26 58 H10 L16 44 H6 L14 28 H4 Z'/%3E%3Crect x='15' y='56' width='6' height='14' rx='1'/%3E%3C/g%3E%3Cg fill='%237cb83a' transform='translate(18 12) rotate(-8 16 28) scale(0.78)'%3E%3Ccircle cx='16' cy='16' r='15'/%3E%3Ccircle cx='6' cy='22' r='9'/%3E%3Ccircle cx='26' cy='22' r='9'/%3E%3Crect x='13' y='30' width='6' height='14' rx='1'/%3E%3C/g%3E%3Cg fill='%235f8f3e' transform='translate(275 235) rotate(38 12 24) scale(-0.48 0.48)'%3E%3Ccircle cx='12' cy='14' r='12'/%3E%3Ccircle cx='4' cy='18' r='7'/%3E%3Ccircle cx='20' cy='18' r='7'/%3E%3Crect x='9' y='26' width='6' height='12' rx='1'/%3E%3C/g%3E%3Cg fill='%237cb83a' transform='translate(155 155) rotate(24 14 28) scale(0.7)'%3E%3Cpath d='M14 2 L26 22 H19 L24 36 H17 L21 48 H7 L11 36 H4 L9 22 H2 Z'/%3E%3Crect x='11' y='46' width='6' height='12' rx='1'/%3E%3C/g%3E%3Cg fill='%233b5a24' transform='translate(310 90) rotate(18 14 28) scale(0.62)'%3E%3Cpath d='M14 2 L26 22 H19 L24 36 H17 L21 48 H7 L11 36 H4 L9 22 H2 Z'/%3E%3Crect x='11' y='46' width='6' height='12' rx='1'/%3E%3C/g%3E%3Cg fill='%235f8f3e' transform='translate(90 280) rotate(-22 12 24) scale(0.55)'%3E%3Ccircle cx='12' cy='14' r='12'/%3E%3Ccircle cx='4' cy='18' r='7'/%3E%3Ccircle cx='20' cy='18' r='7'/%3E%3Crect x='9' y='26' width='6' height='12' rx='1'/%3E%3C/g%3E%3Cg fill='%23a8d45a' transform='translate(280 290) rotate(-6 16 20) scale(0.9)'%3E%3Cpath d='M2 18c0-10 7-16 16-16s16 6 16 16H2z'/%3E%3Crect x='12' y='18' width='8' height='14' rx='2' fill='%235f8f3e'/%3E%3Ccircle cx='10' cy='12' r='2' fill='%23fff' fill-opacity='0.45'/%3E%3Ccircle cx='20' cy='10' r='1.6' fill='%23fff' fill-opacity='0.45'/%3E%3C/g%3E%3Cg transform='translate(20 300) rotate(18 10 12) scale(0.52)'%3E%3Cpath fill='%237cb83a' d='M1 12c0-7 5-11 11-11s11 4 11 11H1z'/%3E%3Crect x='8' y='12' width='6' height='10' rx='1.5' fill='%233b5a24'/%3E%3C/g%3E%3Cg transform='translate(200 250) rotate(-20 12 14) scale(0.68)'%3E%3Cpath fill='%23a8d45a' d='M1 14c0-8 6-13 13-13s13 5 13 13H1z'/%3E%3Crect x='10' y='14' width='6' height='11' rx='1.5' fill='%233b5a24'/%3E%3Ccircle cx='8' cy='9' r='1.5' fill='%23fff' fill-opacity='0.4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}
.hero-flyer > :not(.hero-flyer__title-img) {
  padding-left: 16px;
  padding-right: 16px;
}
.hero-flyer__title-img {
  width: 110%;
  margin: -11px 0 12px calc(-5% - 5px);
  position: relative;
  z-index: 1;
  line-height: 0;
}
.hero-flyer__title-img img {
  display: block;
  width: 100%;
  height: auto;
  animation: floaty 4.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-flyer__title-img img {
    animation: none;
  }
}

@media (min-width: 940px) {
  .hero-flyer__title-img {
    z-index: 55;
    margin-top: -5px;
    pointer-events: none;
  }
  .hero-flyer__title-img img {
    filter: drop-shadow(0 10px 28px rgba(90, 80, 60, 0.18));
  }
}
.hero-flyer__eyebrow {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #5f8f3e;
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}
.hero-flyer__title {
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.hero-flyer__title-main {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 44px;
  letter-spacing: 0.02em;
  color: #3b5a24;
  background: #fcb826;
  padding: 10px 14px 12px;
  border-radius: 4px;
  box-shadow: 6px 6px 0 #e8663d;
}
.hero-flyer__title-sub {
  display: block;
  margin-top: 10px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #3b5a24;
  letter-spacing: 0.04em;
  line-height: 1.45;
}
.hero-flyer__lead {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.55;
  color: #3b5a24;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.hero-flyer__copy {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.75;
  color: #575448;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

.hero-flyer__schedule {
  margin: 0 0 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-flyer__schedule-heading {
  display: block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #3b5a24;
  margin: 24px 0 14px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.45;
  text-align: center;
}
.hero-flyer__schedule-heading::before,
.hero-flyer__schedule-heading::after {
  display: inline;
  font-weight: 900;
  font-size: 22px;
  color: #5f8f3e;
  opacity: 0.85;
}
.hero-flyer__schedule-heading::before {
  content: "＼";
  margin-right: 6px;
}
.hero-flyer__schedule-heading::after {
  content: "／";
  margin-left: 6px;
}
.hero-flyer__schedule-heading span {
  background: linear-gradient(transparent 62%, rgba(252, 184, 38, 0.45) 62%);
  padding: 0 2px;
}
.hero-flyer__schedule-heading--cap {
  margin-top: 32px;
  color: #c44d1a;
}
.hero-flyer__schedule-heading--cap::before,
.hero-flyer__schedule-heading--cap::after {
  color: #e8663d;
}
.hero-flyer__schedule-heading--cap span {
  background: linear-gradient(transparent 62%, rgba(236, 0, 140, 0.12) 62%);
}
.hero-flyer__schedule-dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.hero-flyer__schedule-cols {
  display: grid;
  grid-template-columns: 34px 1fr 1fr;
  gap: 8px;
  align-items: center;
}
.hero-flyer__schedule-cols::before {
  content: "";
}
.hero-flyer__schedule-colhead {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #6b6857;
  background: #ebe8e0;
  border-radius: 999px;
}
.hero-flyer__schedule-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.hero-flyer__schedule-season {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  flex-shrink: 0;
  margin: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.12);
}
.hero-flyer__schedule-row--summer .hero-flyer__schedule-season {
  background: linear-gradient(180deg, #6ec4f0 0%, #3a9ad9 100%);
  box-shadow: 0 3px 0 rgba(30, 110, 170, 0.35);
}
.hero-flyer__schedule-row--autumn .hero-flyer__schedule-season {
  background: linear-gradient(180deg, #ffaa5c 0%, #ff7a32 100%);
  box-shadow: 0 3px 0 rgba(230, 100, 40, 0.35);
}
.hero-flyer__schedule-row-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.hero-flyer__schedule-date {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2px 8px;
  position: relative;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.1;
  color: #e8663d;
  text-decoration: none;
  padding: 12px 10px;
  background: #fff;
  border: 2px solid rgba(232, 102, 61, 0.35);
  border-radius: 14px;
  box-shadow: 0 4px 0 rgba(232, 102, 61, 0.25);
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.hero-flyer__schedule-date:hover {
  transform: translateY(-2px);
}
.hero-flyer__schedule-date:active {
  transform: translateY(2px);
}
.hero-flyer__schedule-date:focus-visible {
  outline: 3px solid #5f8f3e;
  outline-offset: 2px;
}
.hero-flyer__schedule-round {
  position: static;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 2px;
  border-radius: 50%;
  background: #009C53;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 0 2px 0 rgba(0, 120, 60, 0.28);
}
.hero-flyer__schedule-daynum {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  padding-top: 2px;
  font-size: clamp(22px, 7.2vw, 34px);
  line-height: 1.05;
}
.hero-flyer__schedule-weekday {
  flex: 0 0 100%;
  padding-left: 0;
  text-align: center;
}
.hero-flyer__schedule-title {
  flex: 0 0 100%;
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #3b5a24;
  text-align: left;
}
.hero-flyer__schedule-row--summer .hero-flyer__schedule-date {
  color: #3a9ad9;
  border-color: rgba(58, 154, 217, 0.45);
  box-shadow: 0 4px 0 rgba(58, 154, 217, 0.28);
  background: linear-gradient(160deg, #fff 72%, #f0f8fd 100%);
}
.hero-flyer__schedule-row--summer .hero-flyer__schedule-date:hover {
  color: #3a9ad9;
  border-color: rgba(58, 154, 217, 0.65);
  box-shadow: 0 6px 0 rgba(58, 154, 217, 0.28);
}
.hero-flyer__schedule-row--summer .hero-flyer__schedule-date:active {
  box-shadow: 0 2px 0 rgba(58, 154, 217, 0.28);
}
.hero-flyer__schedule-row--summer .hero-flyer__schedule-weekday {
  color: #2a6fa8;
}
.hero-flyer__schedule-row--autumn .hero-flyer__schedule-date {
  color: #ff7a32;
  border-color: rgba(255, 122, 50, 0.45);
  box-shadow: 0 4px 0 rgba(255, 122, 50, 0.28);
  background: linear-gradient(160deg, #fff 72%, #fff6ee 100%);
}
.hero-flyer__schedule-row--autumn .hero-flyer__schedule-date:hover {
  color: #ff7a32;
  border-color: rgba(255, 122, 50, 0.65);
  box-shadow: 0 6px 0 rgba(255, 122, 50, 0.28);
}
.hero-flyer__schedule-row--autumn .hero-flyer__schedule-date:active {
  box-shadow: 0 2px 0 rgba(255, 122, 50, 0.28);
}
.hero-flyer__schedule-row--autumn .hero-flyer__schedule-weekday {
  color: #e07028;
}
.hero-flyer__schedule-weekday {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #b94a26;
  margin-top: 0;
  letter-spacing: 0.04em;
}
.hero-flyer__schedule-text {
  font-size: 15px;
  line-height: 1.7;
  color: #575448;
  margin: 12px auto 0;
  font-weight: 400;
  text-align: center;
  max-width: 100%;
}
.hero-flyer__schedule-note {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 6px 0 0;
  font-weight: 400;
  text-align: left;
}
.hero-flyer__schedule-note-em {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #c44d1a;
}

.hero-flyer__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
.hero-flyer__badge {
  background: #fff;
  border: 1px solid #dfe9cd;
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(90, 120, 50, 0.08);
}
.hero-flyer__badge--wide { grid-column: 1 / -1; }
.hero-flyer__badge-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9a8f6f;
  margin-bottom: 2px;
}
.hero-flyer__badge-value {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #3b5a24;
  line-height: 1.2;
}
.hero-flyer__badge-value span { font-size: 14px; font-weight: 700; }
.hero-flyer__badge-note {
  display: block;
  font-size: 12px;
  color: #e8663d;
  font-weight: 700;
  margin-top: 2px;
}
.hero-flyer__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(90, 120, 50, 0.18);
  aspect-ratio: 1 / 1;
  margin: 0 0 12px;
  z-index: 1;
  background: #eef2e2;
}
.hero-flyer__visual .hero-carousel { position: absolute; inset: 0; }
.hero-flyer__visual .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  color: transparent;
  text-shadow: none;
  font-size: 0;
  background: transparent;
  overflow: hidden;
  will-change: opacity;
}
.hero-flyer__visual .hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-flyer__visual .hero-slide__media {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  background-color: #dfe8cf;
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.02);
  backface-visibility: hidden;
  will-change: transform;
}
.hero-flyer__visual .hero-slide__media.kb-zoom-in {
  animation: kb-zoom-in 2.2s ease-out forwards;
  animation-play-state: paused;
}
.hero-flyer__visual .hero-slide__media.kb-zoom-out {
  animation: kb-zoom-out 2.2s ease-out forwards;
  animation-play-state: paused;
}
.hero-flyer__visual .hero-slide__media.kb-pan-left {
  animation: kb-pan-left 2.2s ease-out forwards;
  animation-play-state: paused;
}
.hero-flyer__visual .hero-slide__media.kb-pan-right {
  animation: kb-pan-right 2.2s ease-out forwards;
  animation-play-state: paused;
}
.hero-flyer__visual .hero-slide.is-active .hero-slide__media {
  animation-play-state: running;
}
@keyframes kb-zoom-in {
  from { transform: translate3d(0, 0, 0) scale(1.01); }
  to   { transform: translate3d(0, 0, 0) scale(1.05); }
}
@keyframes kb-zoom-out {
  from { transform: translate3d(0, 0, 0) scale(1.05); }
  to   { transform: translate3d(0, 0, 0) scale(1.01); }
}
@keyframes kb-pan-left {
  from { transform: translate3d(1%, 0, 0) scale(1.04); }
  to   { transform: translate3d(-1%, 0, 0) scale(1.04); }
}
@keyframes kb-pan-right {
  from { transform: translate3d(-1%, 0.4%, 0) scale(1.04); }
  to   { transform: translate3d(1%, -0.4%, 0) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-flyer__visual .hero-slide__media {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none !important;
    animation: none !important;
  }
}
.hero-flyer__morimin {
  position: absolute;
  right: 4px;
  bottom: 2px;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: floaty 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(59, 90, 36, 0.18));
  pointer-events: none;
}
.hero-flyer__morimin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-flyer__morimin-msg {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  background: #e8663d;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 3px 0 #b94a26;
}
.hero-flyer__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}
.hero-flyer__date {
  background: #fff;
  border: 1px solid #dfe9cd;
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
  text-decoration: none;
  color: #3b5a24;
}
.hero-flyer__date-num {
  display: block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #5f8f3e;
  margin-bottom: 2px;
}
.hero-flyer__date-val {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.2;
}
.hero-flyer__join {
  margin: 28px 0 18px;
  position: relative;
  z-index: 1;
}
.hero-flyer__join-eyebrow {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #9a8f6f;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
  text-align: center;
}
.hero-flyer__join-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #3b5a24;
  margin: 0 0 14px;
  text-align: center;
}
.hero-flyer__join-body {
  background: #fff;
  border: 1px solid #ece2c8;
  border-radius: 16px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #575448;
}
.hero-flyer__join-body p {
  margin: 0 0 10px;
}
.hero-flyer__join-body ul {
  margin: 0 0 10px;
  padding-left: 1.2em;
}
.hero-flyer__join-body li {
  margin-bottom: 4px;
}
.hero-flyer__join-body li:last-child {
  margin-bottom: 0;
}
.hero-flyer__join-note {
  font-size: 14px;
  color: #9a8f6f;
  margin: 0 !important;
}
.hero-flyer__gift {
  background: #fff8e6;
  border: 1px dashed #f4e3b0;
  border-radius: 14px;
  padding: 14px 12px 12px;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-flyer__gift-lead {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #b5791a;
  line-height: 1.6;
}
.hero-flyer__gift-charms {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
}
.hero-flyer__gift-charm {
  flex: 0 0 auto;
  width: 72px;
  margin: 0;
}
.hero-flyer__gift-charm img {
  display: block;
  width: 100%;
  height: auto;
  background: none;
  box-shadow: none;
}
.hero-flyer__gift-charm:first-child img {
  transform: rotate(-4deg);
}
.hero-flyer__gift-charm:last-child img {
  transform: rotate(4deg);
}
.hero-flyer__ctas {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.hero-flyer__ctas a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  border-radius: 14px;
  padding: 14px 10px;
}
.hero-flyer__cta-primary {
  background: #e8663d;
  color: #fff;
  box-shadow: 0 5px 0 #b94a26;
}
.hero-flyer__cta-secondary {
  flex: 0 0 auto !important;
  background: #fff;
  color: #5f8f3e;
  border: 2px solid #cfe0b4;
  padding-left: 16px !important;
  padding-right: 16px !important;
  font-size: 15px !important;
}

.charm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.charm-card {
  background: #fff;
  border: 1px solid #dfe9cd;
  border-radius: 16px;
  padding: 12px 10px;
  min-height: 118px;
}
.charm-card__icon {
  display: flex;
  justify-content: center;
  margin: 0 0 8px;
}
.charm-card__icon img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid #dfe9cd;
}
.charm-card__icon--zoom {
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #dfe9cd;
}
.charm-card__icon--zoom img {
  border: none;
  border-radius: 0;
  transform: scale(1.55);
  transform-origin: 88% 72%;
}
.charm-card__icon--pan-left {
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #dfe9cd;
}
.charm-card__icon--pan-left img {
  border: none;
  border-radius: 0;
  width: 72px;
  height: 72px;
  transform: scale(1.25) translateX(10%);
}
.charm-card__icon-img--morimin {
  object-position: center;
}
.charm-card__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #3b5a24;
  margin: 0 0 4px;
  line-height: 1.35;
  text-align: center;
}
.charm-card__text {
  font-size: 13px;
  color: #575448;
  margin: 0;
  line-height: 1.55;
}

.tour-schedule {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 14px;
}
.tour-schedule li {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed #ece2c8;
  color: #575448;
}
.tour-schedule time {
  flex: 0 0 42px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  color: #5f8f3e;
}

.navi-card {
  margin: 0 0 10px;
  padding: 8px 10px 10px;
  background: #e6ef8d;
  border-radius: 12px;
  color: #3d2e18;
}
.navi-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  padding: 0 0 6px;
  border-bottom: 1px dashed #5a4a32;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 12.5px;
  line-height: 1.35;
  color: #3d2e18;
}
.navi-card__role {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 5px;
  background: #5a4a32;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  white-space: nowrap;
}
.navi-card__main {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: start;
}
.navi-card__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  background: #d8e27a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}
.navi-card__photo--couple {
  object-position: center 30%;
}
.navi-card__text {
  margin: 0;
  padding-top: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #3d2e18;
}

/* ===== LP sections (後半章立て) ===== */
.lp-section {
  scroll-margin-top: 64px;
  padding: 34px 20px;
  background: #f6f6f1;
}
.lp-section--alt {
  background: #fbfbf7;
}
.lp-eyebrow {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #9a8f6f;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin: 0 0 4px;
  text-align: center;
}
.lp-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #3b5a24;
  margin: 0 0 8px;
  text-align: center;
  line-height: 1.4;
}
.lp-title--alert {
  color: #d32f2f;
}
.lp-lead {
  text-align: center;
  font-size: 15px;
  color: #575448;
  margin: 0 auto 20px;
  max-width: 340px;
  line-height: 1.7;
}
#target .lp-lead {
  max-width: none;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}
.lp-body {
  font-size: 16px;
  color: #575448;
  margin: 0 0 16px;
  line-height: 1.75;
}
.lp-subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #3b5a24;
  margin: 28px 0 12px;
  text-align: center;
}
.lp-subtitle--left {
  text-align: left;
  font-size: 17px;
  margin: 24px 0 10px;
}
.lp-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-stack--tight {
  gap: 8px;
  margin-bottom: 4px;
}
.lp-point {
  background: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  border: 1px solid #ece2c8;
  display: flex;
  gap: 12px;
}
.lp-point--with-media {
  flex-direction: column;
  padding: 12px;
  gap: 12px;
}
.lp-point__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: #eef2e6;
  flex-shrink: 0;
}
.lp-point__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-point__media-img--left {
  object-position: 18% 50%;
}
.lp-point__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(95, 143, 62, 0.08) 0%, rgba(95, 143, 62, 0.02) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(95, 143, 62, 0.06) 8px,
      rgba(95, 143, 62, 0.06) 16px
    );
  border: 1px dashed rgba(95, 143, 62, 0.35);
}
.lp-point__media--placeholder span {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #8aa06a;
  letter-spacing: 0.06em;
}
.lp-point__body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.lp-point__copy {
  min-width: 0;
  flex: 1;
}
.lp-point--flip .lp-point__media {
  order: 2;
}
.lp-point--head-split {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px;
}
.lp-point--head-split .lp-point__heading {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.lp-point--head-split .lp-point__heading .lp-point__title {
  margin: 0;
  padding: 0;
}
.lp-point--head-split .lp-point__main {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 12px 14px;
  align-items: stretch;
  padding-top: 12px;
}
.lp-point--head-split .lp-point__text {
  margin: 0;
  align-self: end;
}
.lp-point--head-split .lp-point__media {
  width: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  margin: 0;
}
@media (max-width: 399px) {
  .lp-point--head-split .lp-point__main {
    grid-template-columns: 1fr;
  }
  .lp-point--head-split .lp-point__text {
    align-self: start;
    order: 2;
  }
  .lp-point--head-split .lp-point__media {
    order: 1;
    max-width: 280px;
    justify-self: center;
  }
}
.lp-point--split3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px 14px;
  align-items: stretch;
  padding: 12px;
}
.lp-point--split3 .lp-point__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  height: 100%;
}
.lp-point--split3 .lp-point__heading {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lp-point--split3 .lp-point__heading .lp-point__title {
  margin: 0;
  padding-top: 2px;
}
.lp-point--split3 .lp-point__media {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  align-self: stretch;
  margin-top: auto;
}
.lp-point--split3 .lp-point__right {
  min-width: 0;
}
.lp-point--split3 .lp-point__right .lp-point__text {
  margin: 0;
  padding-top: 2px;
}
@media (max-width: 399px) {
  .lp-point--split3 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 400px) {
  .lp-point--with-media {
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
  }
  .lp-point__media {
    width: 42%;
    max-width: 168px;
    aspect-ratio: 4 / 5;
    align-self: stretch;
  }
  .lp-point__body {
    flex: 1;
    min-width: 0;
  }
  .lp-point--flip {
    flex-direction: row-reverse;
  }
  .lp-point--flip .lp-point__media {
    order: 0;
  }
}
.lp-point__num {
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: #5f8f3e;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-point__num--soft {
  flex: 0 0 auto;
  width: auto;
  min-width: 44px;
  height: auto;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.lp-point__num--orange {
  background: #e8663d;
}
.lp-point__num--pink {
  background: #e0457a;
}
.lp-point__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #3b5a24;
  margin: 0 0 2px;
}
.lp-point__text {
  font-size: 14.5px;
  color: #575448;
  margin: 0;
  line-height: 1.65;
}
.lp-support-box {
  margin-top: 22px;
  background: linear-gradient(165deg, #fff5f8 0%, #fdeef2 55%, #f8e4ea 100%);
  border: 1px solid #f0c4d0;
  border-radius: 18px;
  padding: 20px 18px 18px;
  box-shadow: 0 6px 0 rgba(194, 91, 127, 0.12);
}
.lp-support-box__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #a83d66;
  margin: 0 0 14px;
  line-height: 1.45;
  text-align: center;
}
.lp-support-box__list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-support-box__list li {
  position: relative;
  margin: 0;
  padding: 12px 14px 12px 36px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(240, 196, 208, 0.9);
  border-radius: 12px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #5a3a45;
  line-height: 1.5;
}
.lp-support-box__list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #e0457a;
  box-shadow: 0 0 0 3px rgba(224, 69, 122, 0.18);
}
.lp-support-box__em {
  color: #e0457a;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.lp-support-box__note {
  font-size: 13px;
  color: #7a5562;
  margin: 0;
  line-height: 1.7;
  text-align: center;
}
.lp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lp-tag {
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid;
}
.lp-tag--pink {
  background: #fdeef2;
  border-color: #f6cfda;
  color: #c25b7f;
}
.lp-tag--amber {
  background: #fff8e6;
  border-color: #f4e3b0;
  color: #b5791a;
}
.lp-tag--green {
  background: #eef4e3;
  border-color: #cfe0b4;
  color: #436b2e;
}
.lp-tag--blue {
  background: #eaf3f7;
  border-color: #bcdceb;
  color: #3b7fa3;
}
.lp-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ece2c8;
  padding: 16px;
}
.lp-card--feature,
.lp-card--media {
  padding: 0;
  overflow: hidden;
}
.lp-card--feature {
  border-color: #cfe0b4;
  background: linear-gradient(180deg, #fff 60%, #f3f8eb 100%);
}
.lp-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #eef2e6;
}
.lp-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-card__body {
  padding: 14px 16px 16px;
}
.lp-card__badge {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  background: #5f8f3e;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0 0 8px;
}
.lp-card__heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #3b5a24;
  margin: 0 0 8px;
}
.lp-card__text {
  font-size: 15px;
  color: #575448;
  margin: 0;
  line-height: 1.7;
}
.lp-feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-feature-list li {
  margin: 0;
  padding: 12px 12px 12px 14px;
  background: #f7faf1;
  border-left: 3px solid #5f8f3e;
  border-radius: 0 12px 12px 0;
}
.lp-feature-list__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #3b5a24;
  margin: 0 0 4px;
  line-height: 1.4;
}
.lp-feature-list__text {
  font-size: 14.5px;
  color: #575448;
  margin: 0;
  line-height: 1.6;
}
.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.lp-checklist li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 14.5px;
  color: #575448;
  line-height: 1.6;
  border-top: 1px dashed #e6dcc2;
}
.lp-checklist li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #5f8f3e;
  font-weight: 900;
}
.lp-bridge-wrap {
  position: relative;
  margin: 6px 0 0;
  padding-right: 72px;
}
.lp-bridge {
  font-size: 15px;
  color: #5a4a32;
  font-weight: 700;
  text-align: left;
  line-height: 1.7;
  margin: 0;
  padding: 14px 12px;
  background: #eef4e3;
  border-radius: 14px;
}
.lp-bridge__morimin {
  position: absolute;
  right: -4px;
  bottom: -6px;
  width: 88px;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 4px 8px rgba(90, 74, 50, 0.18));
}
.lp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.lp-stats--4 .lp-stat {
  padding: 8px 4px 10px;
}
.lp-stat {
  background: #fff;
  border-radius: 16px;
  padding: 10px 8px 12px;
  border: 1px solid #ece2c8;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.lp-stat__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
  background: #eef2e6;
}
.lp-stat__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-stat__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(95, 143, 62, 0.08) 0%, rgba(95, 143, 62, 0.02) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(95, 143, 62, 0.06) 6px,
      rgba(95, 143, 62, 0.06) 12px
    );
  border: 1px dashed rgba(95, 143, 62, 0.35);
}
.lp-stat__media--placeholder span {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #8aa06a;
  letter-spacing: 0.06em;
}
.lp-stats--4 .lp-stat__num {
  font-size: 18px;
  line-height: 1.25;
}
.lp-stats--4 .lp-stat__num--compact {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
  letter-spacing: -0.02em;
}
.lp-stats--4 .lp-stat__num--compact .lp-stat__prefix {
  display: inline;
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.02em;
}
.lp-stats--4 .lp-stat__num--compact .lp-stat__num-main {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.lp-stats--4 .lp-stat__num--compact .lp-stat__unit {
  font-size: 18px;
  font-weight: 900;
}
.lp-stats--4 .lp-stat__label {
  font-size: 13px;
  line-height: 1.45;
}
.lp-stat__num {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #5f8f3e;
  margin: 0;
}
.lp-stat__num span {
  font-size: 16px;
}
.lp-stat__num--blue {
  color: #6fb0cf;
}
.lp-stat__num--snow {
  color: #5a8fb8;
}
.lp-stat__num--vista {
  color: #e0457a;
}
.lp-stat__label {
  font-size: 14px;
  color: #6b6857;
  margin: 4px 0 0;
}
.lp-recommend-cloud {
  position: relative;
  margin: 4px 0 18px;
  padding: 52px 44px 78px;
}
.lp-recommend-cloud__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  transform: translateX(10px);
}
.lp-recommend-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.lp-recommend-list__item {
  display: block;
  margin: 0;
  padding: 4px 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  background: none;
  border: none;
}
.lp-recommend-list__item--green {
  color: #4a9a2e;
}
.lp-recommend-list__item--orange {
  color: #e8663d;
}
.lp-recommend-list__item--blue {
  color: #3a8fc4;
}
.lp-recommend-list__item--pink {
  color: #e0457a;
}
.lp-panel {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #dfe9cd;
  padding: 16px;
}
.lp-plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #575448;
  line-height: 1.75;
}
.lp-plain-list li {
  padding: 4px 0;
}
.lp-plain-list li + li {
  border-top: none;
}
.lp-req-list,
.lp-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #575448;
  line-height: 1.75;
}
.lp-req-list li,
.lp-note-list li {
  padding: 6px 0;
  border-bottom: 1px dashed #ece2c8;
}
.lp-req-list li:last-child,
.lp-note-list li:last-child {
  border-bottom: none;
}
.lp-req-list li::before {
  content: "✅ ";
}
.lp-req-list li.lp-req-list__warn::before {
  content: "⚠️ ";
}
.lp-note-list li::before {
  content: "・";
  color: #5f8f3e;
  font-weight: 900;
}
.lp-note-list--asterisk li::before {
  content: "※";
  margin-right: 0.15em;
}
.lp-note-list--asterisk li {
  border-bottom: none;
  padding-top: 2px;
  padding-bottom: 2px;
}
.lp-deadline {
  margin: 0 0 10px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #3b5a24;
  line-height: 1.6;
}
.lp-deadline b {
  font-weight: 900;
  color: #d32f2f;
}
.lp-flow {
  list-style: none;
  padding: 0 0 0 40px;
  margin: 0;
  position: relative;
}
.lp-flow::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: #cfe0b4;
  border-radius: 2px;
}
.lp-flow li {
  position: relative;
  margin-bottom: 16px;
}
.lp-flow li:last-child {
  margin-bottom: 0;
}
.lp-flow__num {
  position: absolute;
  left: -40px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-flow__num--1 { background: #e8663d; }
.lp-flow__num--2 { background: #fcb826; color: #7a5209; }
.lp-flow__num--3 { background: #e8663d; }
.lp-flow__num--4 { background: #436b2e; }
.lp-flow__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #3b5a24;
  margin: 0;
}
.lp-flow__text {
  font-size: 14.5px;
  color: #575448;
  margin: 2px 0 0;
  line-height: 1.65;
}
.lp-support-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ece2c8;
  padding: 16px;
}
.lp-support-visual {
  margin: 0 0 8px;
}
.lp-support-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.lp-support-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #3b5a24;
}
.lp-support-card__head img {
  width: 24px;
  height: 24px;
}
.lp-more {
  text-align: center;
  font-size: 14px;
  color: #8a8f6f;
  margin: 14px 0 0;
}
.lp-more a {
  color: #5f8f3e;
  font-weight: 700;
}
.lp-apply {
  scroll-margin-top: 64px;
  padding: 36px 20px 40px;
  background:
    linear-gradient(180deg, #fff8eb 0%, #fbfbf7 42%, #f4f4ee 100%);
  color: #3b3a32;
  text-align: center;
}
.lp-apply__catch {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #5f8f3e;
  margin: 0 0 8px;
}
.lp-apply__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #d32f2f;
  margin: 0 0 14px;
  line-height: 1.4;
}
.lp-apply__text {
  font-size: 15px;
  color: #575448;
  margin: 0 auto 12px;
  max-width: 320px;
}
.lp-apply__deadline {
  font-size: 14px;
  color: #c44d1a;
  font-weight: 700;
  margin: 0 auto 18px;
  max-width: 320px;
}
.lp-apply__btn {
  display: block;
  background: #e8663d;
  color: #fff;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 20px;
  padding: 17px;
  border-radius: 16px;
  box-shadow: 0 5px 0 #b94a26;
  margin-bottom: 22px;
}
.lp-apply__btn:hover,
a.lp-apply__btn:hover {
  color: #ffe566;
}
.lp-apply__gift {
  margin: 0 0 14px;
}
.lp-apply__gift-lead {
  font-size: 14px;
  color: #575448;
  margin: 0 0 10px;
}
.lp-apply__gift-lead b {
  color: #3b5a24;
}
.lp-apply__charms {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.lp-apply__charms img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}
.lp-apply__consult {
  margin: 0;
  padding: 18px 14px 16px;
  background: #fff;
  border: 1px solid #4CC764;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(90, 80, 60, 0.06);
}
.lp-apply__consult-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #4CC764;
  margin: 0 0 4px;
}
.lp-apply__consult-lead {
  font-size: 15px;
  color: #6b6857;
  margin: 0 0 14px;
  line-height: 1.55;
}
.lp-apply__contacts {
  display: flex;
  gap: 8px;
  width: 100%;
}
.lp-apply__contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 0;
}
.lp-apply__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: #4CC764;
  border: 1px solid #3DB556;
  border-radius: 12px;
  box-shadow: 0 2px 0 rgba(46, 150, 70, 0.35);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-apply__contact-icon img {
  width: 22px;
  height: 22px;
}
.lp-apply__contact-icon--line {
  padding: 2px;
  overflow: hidden;
}
.lp-apply__contact-icon--line img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}
.lp-apply__contact:hover .lp-apply__contact-icon {
  background: #3DB556;
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(46, 150, 70, 0.35);
}
.lp-apply__contact-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #4CC764;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
.lp-apply__office {
  font-size: 13px;
  color: #6b6857;
  margin: 14px 0 0;
  line-height: 1.6;
}
.lp-apply__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(242, 140, 224, 1);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(90, 80, 60, 0.06);
}
.lp-apply__instagram-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-apply__instagram-icon img {
  width: 28px;
  height: 28px;
  display: block;
}
.lp-apply__instagram-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #3b5a24;
  line-height: 1.35;
}
.lp-apply__instagram:hover .lp-apply__instagram-text {
  color: #5f8f3e;
}

#tours {
  padding-bottom: 28px;
}
