@charset "UTF-8";

:root {
  --mo-green: #0f8a64;
  --mo-green-dark: #07513f;
  --mo-blue: #2189a5;
  --mo-orange: #f08a3e;
  --mo-cream: #ffffff;
  --mo-paper: #ffffff;
  --mo-white: #ffffff;
  --mo-text: #24322f;
  --mo-muted: #66746f;
  --mo-line: #e8dec7;
  --mo-shadow: 0 18px 50px rgba(30, 57, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--mo-text);
  background: var(--mo-cream);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  line-height: 1.8;
}

body.is-embed {
  background: var(--mo-cream);
}

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

.modern-obon {
  width: 100%;
  overflow: hidden;
}

.mo-label {
  margin: 0 0 10px;
  color: var(--mo-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mo-hero {
  position: relative;
  min-height: 620px;
  padding: 110px 24px 92px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.18) 100%),
    url("/SpecialFeature/modern-obon/img/hero.webp") center right / cover no-repeat;
}

.mo-hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(15, 138, 100, 0.18);
  pointer-events: none;
}

.mo-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(15, 138, 100, 0.12);
}

.mo-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.mo-hero h1 {
  margin: 0;
  color: var(--mo-green);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 3px 3px 0 #ffffff;
}

.mo-hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}

.mo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.mo-buttons--center {
  justify-content: center;
}

.mo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  padding: 12px 26px;
  border: 2px solid var(--mo-green);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

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

.mo-button--primary {
  color: #ffffff;
  background: var(--mo-green);
}

.mo-button--secondary {
  color: var(--mo-green);
  background: #ffffff;
}

.mo-intro {
  padding: 84px 24px 64px;
}

.mo-intro__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 46px;
  background: var(--mo-paper);
  border: 1px solid var(--mo-line);
  border-radius: 28px;
  box-shadow: var(--mo-shadow);
}

.mo-intro h2,
.mo-section-head h2,
.mo-guide h2,
.mo-cta h2 {
  margin: 0;
  color: var(--mo-green-dark);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.mo-intro p:last-child {
  margin-bottom: 0;
}

.mo-lineup {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 96px;
}

.mo-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mo-section-head--left {
  margin-left: 0;
  text-align: left;
}

.mo-section-head p:last-child {
  margin-bottom: 0;
}

.mo-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 34px 0 36px;
}

.mo-filter button {
  appearance: none;
  border: 1px solid var(--mo-line);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--mo-text);
  background: #ffffff;
  font: inherit;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.mo-filter button.is-active {
  color: #ffffff;
  border-color: var(--mo-green);
  background: var(--mo-green);
}

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

.mo-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 360px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--mo-line);
  border-radius: 28px;
  box-shadow: var(--mo-shadow);
}

.mo-card.is-hidden {
  display: none;
}

.mo-card__image {
  position: relative;
  min-height: 100%;
  background: #f7f1df;
}

.mo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mo-card__image span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--mo-orange);
  font-size: 12px;
  font-weight: 700;
}

.mo-card__body {
  padding: 30px 28px;
}

.mo-card__category {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 11px;
  color: var(--mo-blue);
  background: rgba(33, 137, 165, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.mo-card h3 {
  margin: 0;
  color: var(--mo-green-dark);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.35;
}

.mo-card h3 small {
  display: block;
  margin-top: 2px;
  color: var(--mo-muted);
  font-size: 13px;
  font-weight: 700;
}

.mo-card__catch {
  margin: 16px 0 8px;
  font-weight: 700;
}

.mo-card__text {
  margin: 0;
}

.mo-card__note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--mo-line);
  color: var(--mo-muted);
  font-size: 13px;
}

.mo-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--mo-green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.mo-guide {
  padding: 88px 24px;
  background: #ffffff;
}
.mo-guide__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.mo-guide__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.mo-guide__list section {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--mo-line);
  border-radius: 24px;
}

.mo-guide__list h3 {
  margin: 0 0 8px;
  color: var(--mo-green);
  font-size: 20px;
}

.mo-guide__list p {
  margin: 0;
}

.mo-cta {
  padding: 88px 24px 104px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 15%, rgba(244, 211, 94, 0.22), transparent 28%),
    var(--mo-green-dark);
  text-align: center;
}

.mo-cta__inner {
  max-width: 860px;
  margin: 0 auto;
}

.mo-cta .mo-label,
.mo-cta h2 {
  color: #ffffff;
}

.mo-cta p {
  margin-left: auto;
  margin-right: auto;
}

.mo-cta .mo-button--primary {
  border-color: #ffffff;
  color: var(--mo-green-dark);
  background: #ffffff;
}

.mo-cta .mo-button--secondary {
  color: #ffffff;
  border-color: #ffffff;
  background: transparent;
}

@media (max-width: 980px) {
  .mo-hero {
    min-height: auto;
    padding: 84px 22px 78px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 66%, rgba(255, 255, 255, 0.58) 100%),
      url("/SpecialFeature/modern-obon/img/hero.webp") center bottom / cover no-repeat;
  }
}

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

  .mo-card {
    grid-template-columns: 38% 1fr;
  }

  .mo-guide__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mo-hero {
    padding: 66px 18px 64px;
  }

  .mo-hero::before {
    inset: 12px;
  }

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

  .mo-hero__lead {
    font-size: 16px;
  }

  .mo-buttons {
    flex-direction: column;
  }

  .mo-button {
    width: 100%;
  }

  .mo-intro {
    padding: 56px 18px 42px;
  }

  .mo-intro__inner {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .mo-lineup {
    padding: 34px 18px 70px;
  }

  .mo-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .mo-filter button {
    flex: 0 0 auto;
  }

  .mo-card {
    display: block;
    border-radius: 22px;
  }

  .mo-card__image {
    aspect-ratio: 4 / 3;
  }

  .mo-card__body {
    padding: 24px 20px;
  }

  .mo-guide,
  .mo-cta {
    padding: 64px 18px;
  }
}

.mo-hero::before {
  display: none;
}