:root {
  --brown: #493326;
  --green: #72b74a;
  --orange: #f6a11d;
  --coral: #f0787a;
  --blue: #68a5dd;
  --cream: #fff7e8;
  --paper: #fffdf7;
  --shadow: 0 8px 20px rgba(78, 48, 20, .13);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--brown);
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.75;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.mobile-canvas {
  background:
    radial-gradient(circle at 18% 9%, rgba(247, 200, 85, .18) 0 18px, transparent 19px),
    radial-gradient(circle at 80% 8%, rgba(239, 132, 186, .18) 0 17px, transparent 18px),
    linear-gradient(180deg, #fff 0 58px, #fffaf0 58px 46%, #fffdf8 68%, #fff7e8 100%);
  margin: 0 auto;
  max-width: 524px;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.trace-header {
  align-items: center;
  background: rgba(255,255,255,.97);
  display: flex;
  height: 58px;
  justify-content: space-between;
  padding: 8px 22px 6px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.trace-logo img {
  height: 42px;
  object-fit: contain;
  object-position: left center;
  width: 176px;
}

.trace-menu {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 5px;
  height: 44px;
  justify-items: center;
  padding: 8px 4px;
  position: relative;
  width: 44px;
  z-index: 95;
}

.trace-menu span {
  background: var(--brown);
  border-radius: 99px;
  display: block;
  height: 3px;
  transition: opacity .2s ease, transform .24s ease;
  width: 24px;
}

.trace-menu::after {
  content: "";
  display: block;
  height: 0;
}

.desktop-nav {
  display: none;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav {
  background: rgba(255, 253, 247, .98);
  border: 1px solid rgba(246, 161, 29, .24);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 34px rgba(78, 48, 20, .16);
  display: grid;
  gap: 6px;
  left: 50%;
  opacity: 0;
  padding: 14px;
  pointer-events: none;
  position: fixed;
  top: 58px;
  transform: translate(-50%, -12px);
  transition: opacity .22s ease, transform .24s ease;
  width: min(524px, calc(100vw - 20px));
  z-index: 90;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mobile-nav a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(114, 183, 74, .2);
  border-radius: 8px;
  color: var(--brown);
  display: flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: space-between;
  line-height: 1.4;
  min-height: 46px;
  padding: 12px 15px;
}

.mobile-nav a::after {
  color: var(--orange);
  content: ">";
  font-size: 16px;
  line-height: 1;
}

.mobile-nav .mobile-nav-cta {
  background: var(--coral);
  border-color: transparent;
  color: #fff;
}

.mobile-nav .mobile-nav-cta::after {
  color: #fff;
}

.trace-menu.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.trace-menu.is-open span:nth-child(2) {
  opacity: 0;
}

.trace-menu.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-sticky-cta {
  align-items: center;
  background: #f36f73;
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 999px;
  box-shadow:
    0 7px 0 rgba(198, 82, 78, .16),
    0 14px 28px rgba(84, 48, 28, .18);
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  left: 50%;
  min-height: 48px;
  opacity: 0;
  padding: 0 22px 0 17px;
  pointer-events: none;
  position: fixed;
  top: 66px;
  transform: translate(-50%, -18px) scale(.94);
  transition: opacity .24s ease, transform .28s cubic-bezier(.2, 1.3, .28, 1);
  width: min(360px, calc(100vw - 42px));
  z-index: 80;
}

.mobile-sticky-cta span {
  background: rgba(255,255,255,.94);
  border-radius: 50%;
  display: grid;
  flex: 0 0 30px;
  height: 30px;
  place-items: center;
  position: relative;
  width: 30px;
}

.mobile-sticky-cta span::before {
  background: var(--green);
  border-radius: 999px 999px 2px 999px;
  content: "";
  height: 11px;
  left: 8px;
  position: absolute;
  top: 10px;
  transform: rotate(-28deg);
  width: 8px;
}

.mobile-sticky-cta span::after {
  background: #f3c95d;
  border-radius: 999px 999px 999px 2px;
  content: "";
  height: 11px;
  position: absolute;
  right: 8px;
  top: 10px;
  transform: rotate(28deg);
  width: 8px;
}

.mobile-sticky-cta::after {
  content: ">";
  font-size: 18px;
  line-height: 1;
  margin-left: 2px;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.hero-trace {
  background:
    radial-gradient(circle at 25% 6%, rgba(247, 161, 29, .24) 0 7px, transparent 8px),
    radial-gradient(circle at 75% 10%, rgba(247, 189, 50, .28) 0 8px, transparent 9px),
    radial-gradient(circle at 90% 39%, rgba(247, 161, 29, .24) 0 8px, transparent 9px),
    linear-gradient(180deg, #fff 0%, #fff 80%, #edf8df 100%);
  min-height: 668px;
  padding: 25px 28px 112px;
  position: relative;
}

.hero-trace::after,
.day-trace::after,
.trace-footer::before {
  background: #dff0d1;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  bottom: -30px;
  content: "";
  height: 98px;
  left: -18%;
  position: absolute;
  right: -18%;
  transform: rotate(-2deg);
}

.fv-asset {
  display: block;
  object-fit: contain;
  pointer-events: none;
  position: absolute;
  user-select: none;
  z-index: 2;
}

.fv-sun-big {
  left: 19px;
  opacity: .58;
  top: 26px;
  transform: rotate(-8deg);
  width: 68px;
}

.fv-rainbow-big {
  opacity: .56;
  right: -16px;
  top: 67px;
  transform: rotate(-9deg);
  width: 136px;
}

.fv-leaf-left {
  left: 18px;
  opacity: .48;
  top: 396px;
  transform: rotate(-18deg);
  width: 48px;
}

.fv-leaf-right {
  opacity: .45;
  right: 14px;
  top: 320px;
  transform: rotate(19deg) scaleX(-1);
  width: 38px;
}

.fv-leaf-bottom {
  bottom: 70px;
  left: 267px;
  opacity: .52;
  transform: rotate(-5deg);
  width: 44px;
}

.fv-star-small {
  bottom: 82px;
  opacity: .72;
  right: 18px;
  transform: rotate(13deg);
  width: 27px;
}

.fv-triangle-orange {
  left: 74px;
  opacity: .42;
  top: 293px;
  transform: rotate(17deg);
  width: 22px;
}

.fv-triangle-green {
  opacity: .36;
  right: 88px;
  top: 246px;
  transform: rotate(-15deg);
  width: 20px;
}

.fv-square-purple {
  opacity: .34;
  right: 53px;
  top: 23px;
  transform: rotate(10deg);
  width: 21px;
}

.fv-circle-pink {
  left: 128px;
  opacity: .36;
  top: 20px;
  width: 24px;
}

.fv-circle-yellow {
  opacity: .47;
  right: 93px;
  top: 330px;
  width: 18px;
}

.hero-text {
  position: relative;
  text-align: center;
  z-index: 3;
}

.hero-text h1 {
  font-size: 41px;
  letter-spacing: .035em;
  line-height: 1.24;
  margin: 0 auto 10px;
  max-width: 382px;
  width: auto;
}

.hero-line3 {
  display: inline;
  transform: none;
}

.hero-text p {
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.9;
  margin: 0 auto 13px;
  max-width: 382px;
}

.hand-copy {
  color: #5b4034;
  font-family: "Hannotate SC", "YuKyokasho", "Tsukushi A Round Gothic", "Hiragino Maru Gothic ProN", cursive;
  font-size: 12.5px !important;
  font-weight: 900;
  letter-spacing: .035em;
  line-height: 1.9 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.9);
  transform: rotate(-.3deg);
}

.green { color: var(--green); }
.orange { color: var(--orange); }
.coral { color: var(--coral); }
.blue { color: var(--blue); }
.coral-bg { background: var(--coral); }

.primary-cta,
.contact-button {
  align-items: center;
  background: linear-gradient(180deg, #f68b8a, #ef696d);
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(197, 80, 75, .13), var(--shadow);
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  gap: 8px;
  min-height: 56px;
  padding: 0 24px 0 20px;
}

.primary-cta span {
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  display: grid;
  height: 36px;
  place-items: center;
  width: 36px;
}

.primary-cta::after,
.contact-button::after {
  content: ">";
  font-size: 20px;
  margin-left: 8px;
}

.hero-photo {
  border-radius: 104px 104px 58px 58px / 86px 86px 58px 58px;
  box-shadow: none;
  height: 282px;
  margin: 18px auto 0;
  overflow: hidden;
  position: relative;
  right: auto;
  top: auto;
  width: min(462px, 100%);
  z-index: 3;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  width: 100%;
}

.hero-points {
  bottom: 34px;
  display: grid;
  gap: clamp(6px, 2.2vw, 12px);
  grid-template-columns: repeat(3, 1fr);
  left: 50%;
  position: absolute;
  right: auto;
  transform: translateX(-50%);
  width: min(360px, calc(100% - 28px));
  z-index: 5;
}

.hero-points article {
  align-content: center;
  background: #fffdf1;
  border-radius: 54% 46% 49% 51% / 48% 55% 45% 52%;
  box-shadow:
    0 12px 0 rgba(160, 218, 133, .22),
    0 16px 24px rgba(111, 178, 82, .22);
  display: grid;
  font-size: clamp(10.5px, 2.75vw, 12px);
  height: clamp(92px, 25vw, 104px);
  justify-items: center;
  justify-self: center;
  line-height: 1.35;
  position: relative;
  text-align: center;
  transform: rotate(-2deg);
  width: clamp(94px, 25.6vw, 106px);
}

.hero-points article::before {
  background: rgba(255,255,255,.42);
  border-radius: inherit;
  content: "";
  inset: 4px 5px 7px 4px;
  position: absolute;
  z-index: -1;
}

.hero-points article:nth-child(2) {
  border-radius: 48% 52% 55% 45% / 52% 47% 53% 48%;
  transform: translateY(-3px) rotate(1.5deg);
}

.hero-points article:nth-child(3) {
  border-radius: 52% 48% 46% 54% / 47% 54% 46% 53%;
  transform: rotate(2deg);
}

.hero-points b {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 3px;
}

.hero-points .yellow {
  color: #f6c247;
}

.sun {
  border: 12px solid rgba(247, 195, 67, .28);
  border-radius: 50%;
  height: 58px;
  left: 27px;
  position: absolute;
  top: 28px;
  width: 58px;
}

.dot {
  border-radius: 50%;
  height: 14px;
  position: absolute;
  width: 14px;
}

.dot-a { background: rgba(244, 124, 125, .32); left: 126px; top: 20px; height: 22px; width: 22px; }
.dot-b { background: rgba(104, 165, 221, .28); left: 334px; top: 84px; height: 9px; width: 9px; }
.dot-c { background: rgba(224, 167, 220, .28); right: 58px; top: 23px; height: 18px; width: 18px; }
.dot-d { background: rgba(244, 124, 125, .24); left: 30px; top: 342px; height: 11px; width: 11px; }

.dash {
  border-top: 2px dashed rgba(247, 161, 29, .5);
  height: 1px;
  left: 64px;
  position: absolute;
  top: 305px;
  transform: rotate(-2deg);
  width: 190px;
}

.dash-right {
  border-color: rgba(92, 190, 205, .52);
  left: auto;
  right: 33px;
  top: 65px;
  transform: rotate(-14deg);
  width: 118px;
}

.flower,
.leaf {
  font-style: normal;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.flower {
  color: rgba(244, 124, 125, .72);
  font-size: 31px;
}

.flower-a { left: 27px; top: 160px; }
.flower-b { right: 23px; top: 414px; color: rgba(247, 161, 29, .5); font-size: 22px; }

.leaf {
  color: rgba(98, 168, 79, .7);
  font-size: 34px;
  transform: rotate(-20deg);
}

.leaf-a { left: 24px; top: 418px; }
.leaf-b { right: 19px; top: 338px; transform: rotate(20deg); }
.leaf-c { display: block; left: 24px; top: 246px; transform: rotate(-15deg); }

.atmosphere-trace::before,
.values-trace::before,
.program-trace::before,
.news-trace::before,
.disclosure-trace::before {
  background: inherit;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  height: 44px;
  left: -12%;
  position: absolute;
  right: -12%;
  top: -21px;
  transform: rotate(1deg);
  z-index: 0;
}

.atmosphere-trace {
  background:
    radial-gradient(circle at 9% 14%, rgba(114, 183, 74, .18) 0 5px, transparent 6px),
    radial-gradient(circle at 18% 32%, rgba(247, 195, 67, .22) 0 8px, transparent 9px),
    radial-gradient(circle at 88% 12%, rgba(247, 195, 67, .28) 0 11px, transparent 12px),
    radial-gradient(circle at 82% 48%, rgba(114, 183, 74, .16) 0 6px, transparent 7px),
    radial-gradient(circle at 13% 72%, rgba(244, 124, 125, .14) 0 8px, transparent 9px),
    radial-gradient(circle at 93% 86%, rgba(247, 161, 29, .14) 0 7px, transparent 8px),
    linear-gradient(180deg, #edf8df 0%, #fbf6c9 42%, #fff3dc 82%, #fff7e8 100%);
  margin-top: -36px;
  padding: 104px 0 72px;
  position: relative;
}

.section-anchor {
  display: block;
  height: 0;
  position: relative;
  top: -58px;
}

.atmosphere-trace::before {
  background: linear-gradient(180deg, #edf8df, rgba(237,248,223,0));
  top: -22px;
}

.atmosphere-trace::after {
  border-bottom: 2px dashed rgba(92, 190, 205, .42);
  border-radius: 50%;
  content: "";
  height: 54px;
  left: 54%;
  position: absolute;
  top: 46px;
  transform: rotate(-10deg);
  width: 168px;
}

.atmosphere-lead {
  margin: 0 auto 30px;
  max-width: 420px;
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 22px;
}

.atmosphere-lead span {
  color: var(--green);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 4px;
}

.atmosphere-lead h2 {
  font-size: 25px;
  letter-spacing: .05em;
  line-height: 1.45;
  margin: 0 0 8px;
}

.atmosphere-lead h2::before,
.atmosphere-lead h2::after {
  color: rgba(114, 183, 74, .8);
  content: "✣";
  font-size: 15px;
  margin: 0 8px;
  vertical-align: .08em;
}

.atmosphere-lead p {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.85;
  margin: 0;
}

.atmosphere-stack {
  display: grid;
  gap: 58px;
  position: relative;
  z-index: 1;
}

.atmosphere-stack::before {
  color: rgba(114, 183, 74, .48);
  content: "❧";
  font-size: 36px;
  left: 18px;
  position: absolute;
  top: 358px;
  transform: rotate(-20deg);
}

.atmosphere-stack::after {
  color: rgba(244, 124, 125, .42);
  content: "✿";
  font-size: 28px;
  position: absolute;
  right: 20px;
  top: 746px;
}

.atmosphere-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 420px;
  margin-right: auto;
  position: relative;
  width: min(486px, 94%);
}

.atmosphere-card::after {
  color: rgba(114, 183, 74, .55);
  content: "❧";
  font-size: 30px;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
}

.atmosphere-card:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}

.atmosphere-card:nth-child(odd) {
  margin-left: 0;
}

.atmosphere-card:nth-child(2)::after {
  color: rgba(244, 124, 125, .55);
  content: "✿";
  font-size: 25px;
}

.atmosphere-card:nth-child(3)::after {
  color: rgba(104, 165, 221, .55);
  content: "✣";
  font-size: 22px;
}

.atmosphere-card:nth-child(4)::after {
  color: rgba(247, 161, 29, .52);
  content: "❧";
  font-size: 30px;
}

.atmosphere-card img {
  border-radius: 34px;
  box-shadow:
    0 18px 0 rgba(162, 219, 134, .2),
    0 22px 34px rgba(83, 86, 38, .16);
  height: 388px;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.atmosphere-card-large img {
  height: 388px;
}

.atmosphere-room {
  background: transparent;
}

.atmosphere-room img {
  height: 388px;
  object-position: center;
}

.atmosphere-card div {
  background: linear-gradient(180deg, #fffef7, #fff7de);
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 20px;
  box-shadow:
    0 8px 0 rgba(247, 195, 67, .18),
    0 16px 28px rgba(92, 87, 35, .16);
  bottom: -16px;
  left: 22px;
  max-width: 308px;
  padding: 16px 18px 17px;
  position: absolute;
  transform: rotate(-3deg);
  z-index: 4;
}

.atmosphere-card:nth-child(even) div {
  left: auto;
  right: 18px;
  transform: rotate(3deg);
}

.atmosphere-card:nth-child(3) div {
  bottom: -14px;
  left: 18px;
  max-width: 318px;
  transform: rotate(-2deg);
}

.atmosphere-card:nth-child(4) div {
  bottom: -14px;
  max-width: 336px;
  right: 18px;
  transform: rotate(2.5deg);
}

.atmosphere-card h3 {
  color: var(--green);
  font-size: 22px;
  letter-spacing: .04em;
  margin: 0 0 7px;
}

.atmosphere-card p {
  color: #6f6a64;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.8;
  margin: 0;
}

.section {
  padding: 42px 22px;
  position: relative;
}

.flower-heading {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
  margin: 0 0 24px;
  text-align: center;
}

.flower-heading::before,
.flower-heading::after {
  color: var(--green);
  content: "✣";
  font-size: 16px;
  margin: 0 10px;
  vertical-align: .08em;
}

.values-trace {
  background:
    radial-gradient(circle at 9% 20%, rgba(244, 124, 125, .13) 0 9px, transparent 10px),
    radial-gradient(circle at 88% 12%, rgba(247, 195, 67, .18) 0 13px, transparent 14px),
    radial-gradient(circle at 78% 72%, rgba(114, 183, 74, .13) 0 8px, transparent 9px),
    linear-gradient(#fff7e8, #fbfff8 54%, #fff7e8);
  padding-top: 64px;
  overflow: hidden;
}

.values-trace::after {
  border-top: 2px dashed rgba(247, 161, 29, .38);
  border-radius: 50%;
  content: "";
  height: 42px;
  position: absolute;
  right: -14px;
  top: 102px;
  transform: rotate(-12deg);
  width: 140px;
}

.values-message {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) 44%;
  margin: 0 -8px 26px 0;
  position: relative;
  z-index: 1;
}

.values-message::before {
  color: rgba(114, 183, 74, .5);
  content: "❧";
  font-size: 34px;
  left: -6px;
  position: absolute;
  top: -18px;
  transform: rotate(-22deg);
}

.values-copy {
  padding-left: 4px;
}

.values-copy h3 {
  color: var(--brown);
  font-size: 20px;
  letter-spacing: .04em;
  line-height: 1.55;
  margin: 0 0 10px;
}

.values-copy h3::first-line {
  color: var(--green);
}

.values-copy p {
  color: #6f6a64;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.85;
  margin: 0;
}

.values-message figure {
  border: 5px solid #fff;
  border-radius: 78px 20px 72px 26px;
  box-shadow: 0 14px 28px rgba(80, 67, 28, .16);
  height: 252px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.values-message figure::after {
  background: rgba(255,255,255,.78);
  border-radius: 50%;
  bottom: -18px;
  content: "";
  height: 58px;
  position: absolute;
  right: -14px;
  width: 58px;
}

.values-message img {
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  width: 100%;
}

.value-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.value-grid article,
.program-card,
.schedule-panel,
.news-stack article,
.doc-stack article {
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.value-grid article {
  border: 2px solid rgba(255,255,255,.85);
  min-height: 178px;
  padding: 18px 14px 16px;
  position: relative;
}

.value-grid article:nth-child(2),
.value-grid article:nth-child(3) {
  transform: translateY(12px);
}

.value-mark {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 17px;
  height: 42px;
  justify-content: center;
  margin-bottom: 10px;
  width: 42px;
}

.value-grid h3 {
  color: var(--green);
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 8px;
}

.value-grid p {
  color: #6f6a64;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0;
}

.program-trace {
  background:
    radial-gradient(circle at 93% 8%, rgba(247, 195, 67, .18) 0 16px, transparent 17px),
    linear-gradient(180deg, #fff7e8 0%, #fff6e6 58%, #fff4df 100%);
  margin-top: -18px;
  overflow: hidden;
  padding-top: 70px;
}

.intro-row {
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.section-title {
  display: inline-block;
  font-size: 31px;
  letter-spacing: .25em;
  margin: 0 0 8px;
  position: relative;
}

.section-title::before {
  background:
    radial-gradient(ellipse at 68% 32%, #72b74a 0 34%, transparent 36%),
    radial-gradient(ellipse at 32% 68%, #8fcf68 0 32%, transparent 34%),
    linear-gradient(90deg, transparent 48%, #72b74a 49% 56%, transparent 57%);
  content: "";
  display: inline-block;
  height: 22px;
  margin-right: 7px;
  transform: rotate(-16deg);
  vertical-align: -3px;
  width: 22px;
}

.section-title::after {
  border-top: 2px dashed rgba(247,161,29,.45);
  bottom: -3px;
  content: "";
  left: 38px;
  position: absolute;
  width: 126px;
}

.intro-row p {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.9;
  margin: 12px 0 0;
}

.program-stack {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.program-trace::after {
  background: url("trace/sun-crayon.png") center / contain no-repeat;
  content: "";
  height: 260px;
  opacity: .26;
  position: absolute;
  right: -92px;
  top: 8px;
  transform: rotate(7deg);
  width: 260px;
  z-index: 0;
}

.program-card {
  align-items: center;
  display: grid;
  gap: 13px;
  grid-template-columns: 134px 1fr;
  min-height: 132px;
  overflow: hidden;
  padding: 8px 14px 8px 8px;
}

.program-card img {
  border-radius: 16px;
  height: 104px;
  object-fit: cover;
  width: 134px;
}

.program-card h3 {
  align-items: center;
  display: flex;
  font-size: 22px;
  gap: 9px;
  margin: 0 0 8px;
}

.program-icon {
  align-items: center;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.75) 0 18%, transparent 19%),
    color-mix(in srgb, currentColor 17%, #fff 83%);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.program-icon svg {
  fill: none;
  height: 25px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  width: 25px;
}

.program-icon svg circle {
  fill: currentColor;
  stroke: none;
}

.icon-learning svg circle,
.icon-sst svg circle,
.icon-community svg circle {
  fill: currentColor;
}

.program-card p {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.75;
  margin: 0;
}

.day-trace {
  background:
    radial-gradient(circle at 10% 18%, rgba(114, 183, 74, .16) 0 6px, transparent 7px),
    radial-gradient(circle at 92% 14%, rgba(246, 161, 29, .18) 0 9px, transparent 10px),
    radial-gradient(circle at 17% 78%, rgba(240, 120, 122, .12) 0 10px, transparent 11px),
    linear-gradient(180deg, #fff4df 0%, #fff8eb 44%, #e5f3d9 100%);
  margin-top: -12px;
  overflow: hidden;
  padding-top: 54px;
  padding-bottom: 58px;
  position: relative;
}

.day-trace .flower-heading {
  position: relative;
  z-index: 2;
}

.day-deco {
  display: block;
  object-fit: contain;
  pointer-events: none;
  position: absolute;
  user-select: none;
  z-index: 1;
}

.day-deco-sun {
  left: -18px;
  opacity: .24;
  top: 48px;
  transform: rotate(-12deg);
  width: 132px;
}

.day-deco-rainbow {
  opacity: .22;
  right: -42px;
  top: 66px;
  transform: rotate(9deg);
  width: 178px;
}

.day-deco-leaf {
  bottom: 72px;
  opacity: .28;
  right: 8px;
  transform: rotate(21deg) scaleX(-1);
  width: 82px;
}

.day-deco-star {
  left: 19px;
  opacity: .32;
  top: 372px;
  transform: rotate(-13deg);
  width: 42px;
}

.day-deco-triangle {
  bottom: 164px;
  left: 28px;
  opacity: .2;
  transform: rotate(19deg);
  width: 42px;
}

.schedule-panel {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 220, 96, .18) 0 30px, transparent 31px),
    radial-gradient(circle at 92% 58%, rgba(114, 183, 74, .12) 0 42px, transparent 43px),
    radial-gradient(circle at 13% 35%, rgba(240, 120, 122, .1) 0 24px, transparent 25px),
    rgba(255,255,255,.96);
  overflow: hidden;
  padding: 18px 14px 20px;
  position: relative;
  z-index: 1;
}

.schedule-panel::before,
.schedule-panel::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.schedule-panel::before {
  background: url("trace/fv-leaf-crayon.png") center / contain no-repeat;
  height: 104px;
  opacity: .14;
  right: 7px;
  top: 114px;
  transform: rotate(18deg) scaleX(-1);
  width: 72px;
}

.schedule-panel::after {
  background: url("trace/fv-star-crayon.png") center / contain no-repeat;
  bottom: 18px;
  height: 82px;
  opacity: .16;
  right: 44px;
  transform: rotate(11deg);
  width: 82px;
}

.schedule-block {
  position: relative;
  z-index: 1;
}

.schedule-block + .schedule-block {
  border-top: 1px solid #ecdcc4;
  margin-top: 18px;
  padding-top: 14px;
}

.schedule-block b {
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  margin-bottom: 12px;
  padding: 5px 17px;
}

.green-line b { background: var(--green); }
.orange-line b { background: var(--orange); }

.schedule-block ol {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.schedule-block ol::before {
  content: none;
}

.orange-line ol::before { content: none; }

.schedule-block li {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 48px 38px 1fr;
  min-height: 36px;
  position: relative;
  z-index: 1;
}

.schedule-block time {
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  padding-right: 4px;
  position: relative;
  z-index: 2;
}

.orange-line time { color: var(--orange); }

.schedule-block span {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  height: 36px;
  place-items: center;
  position: relative;
  width: 36px;
  z-index: 2;
}

.schedule-block span::before {
  background: rgba(255, 247, 232, .82);
  border-radius: 999px;
  content: "";
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  z-index: -1;
}

.schedule-block span img {
  filter: drop-shadow(0 3px 0 rgba(129, 180, 91, .16));
  max-height: 34px;
  max-width: 34px;
  object-fit: contain;
}

.schedule-block span img[src*="day-cooking"],
.schedule-block span img[src*="day-snack"] {
  max-height: 38px;
  max-width: 38px;
}

.schedule-block em {
  font-size: 12px;
  font-style: normal;
}

.schedule-note {
  color: #6d5140;
  font-size: 11px;
  line-height: 1.7;
  margin: 12px 0 0;
  padding-left: 2px;
}

.more-link,
.news-more {
  color: var(--green);
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-top: 22px;
  text-align: center;
}

.more-link {
  background: linear-gradient(180deg, #fff, #fff7e9);
  border: 2px solid #f6a83d;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(236, 154, 38, .16), 0 12px 26px rgba(110, 63, 15, .14);
  color: var(--orange);
  font-size: 15px;
  margin: 22px auto -8px;
  max-width: 338px;
  padding: 13px 16px;
  position: relative;
  z-index: 5;
}

.more-link::before {
  color: rgba(114, 183, 74, .8);
  content: "✿";
  font-size: 17px;
  left: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.more-link::after,
.news-more::after { content: "　>"; }

.safe-place {
  background:
    radial-gradient(circle at 87% 14%, rgba(114, 183, 74, .12) 0 22px, transparent 23px),
    linear-gradient(180deg, #e5f3d9 0%, #edf5dd 58%, #fff7e8 100%);
  margin-top: -34px;
  padding: 72px 22px 42px;
  position: relative;
  text-align: center;
}

.safe-place::before {
  background: linear-gradient(180deg, #e5f3d9, rgba(229,243,217,0));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  height: 52px;
  left: -18%;
  position: absolute;
  right: -18%;
  top: -30px;
  transform: rotate(-2deg);
}

.safe-place h2 {
  font-size: 25px;
  margin: 0 0 8px;
}

.safe-place h2::before {
  content: "♥";
  color: var(--coral);
  margin-right: 8px;
}

.safe-place p {
  font-size: 13px;
  margin: 0 0 17px;
}

.safe-place img {
  border-radius: 30px 30px 18px 18px;
  box-shadow: var(--shadow);
  height: 228px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.news-trace {
  background:
    radial-gradient(circle at 11% 10%, rgba(247, 195, 67, .12) 0 15px, transparent 16px),
    linear-gradient(180deg, #fff7e8 0%, #fff7e8 68%, #fffaf0 100%);
  margin-top: -20px;
  padding-top: 62px;
}

.news-stack {
  display: grid;
  gap: 18px;
}

.news-stack article {
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.news-stack > a {
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.tag {
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  padding: 4px 6px;
  text-align: center;
}

.green-bg { background: var(--green); }
.orange-bg { background: var(--orange); }
.blue-bg { background: var(--blue); }

.news-stack time {
  color: #6f6157;
  font-size: 11px;
  font-weight: 900;
}

.news-stack h3 {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.55;
  margin: 6px 0 4px;
}

.news-card {
  background: rgba(255,255,255,.98);
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(116, 76, 33, .12);
  transition: box-shadow .2s ease, transform .2s ease;
}

.news-card:hover {
  box-shadow: 0 16px 34px rgba(116, 76, 33, .18);
  transform: translateY(-3px) rotate(-.35deg);
}

.news-card figure {
  background: #fff8e8;
  border-radius: 20px 20px 12px 12px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.news-card figure::after {
  background:
    radial-gradient(circle at 22% 50%, rgba(255,255,255,.45) 0 9px, transparent 10px),
    radial-gradient(circle at 82% 50%, rgba(255,255,255,.34) 0 13px, transparent 14px);
  bottom: 0;
  content: "";
  height: 20px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.news-card img {
  height: 205px;
  object-fit: cover;
  width: 100%;
}

.news-body {
  padding: 13px 15px 16px;
}

.news-meta {
  align-items: center;
  display: flex;
  gap: 10px;
}

.news-body p {
  color: #766a61;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0;
}

.disclosure-trace {
  background: linear-gradient(180deg, #fffaf0 0%, #fffaf0 62%, #fffdf8 100%);
  margin-top: -20px;
  overflow: hidden;
  padding-top: 62px;
  padding-bottom: 58px;
}

.disclosure-trace .flower-heading,
.doc-stack {
  position: relative;
  z-index: 1;
}

.disclosure-trace::after {
  background:
    radial-gradient(92px 34px at 8% 100%, #fffdf8 0 72%, transparent 74%),
    radial-gradient(118px 42px at 40% 100%, #fff 0 72%, transparent 74%),
    radial-gradient(86px 32px at 75% 100%, #fffdf8 0 72%, transparent 74%),
    linear-gradient(180deg, transparent 0 42%, #fffdf8 43% 100%);
  bottom: -1px;
  content: "";
  height: 70px;
  left: -20px;
  pointer-events: none;
  position: absolute;
  right: -20px;
  z-index: 0;
}

.facility-trace,
.faq-trace {
  overflow: hidden;
  position: relative;
}

.facility-trace {
  background:
    radial-gradient(circle at 10% 18%, rgba(247, 195, 67, .18) 0 13px, transparent 14px),
    radial-gradient(circle at 88% 14%, rgba(240, 120, 122, .14) 0 16px, transparent 17px),
    radial-gradient(circle at 82% 72%, rgba(114, 183, 74, .13) 0 24px, transparent 25px),
    linear-gradient(180deg, rgba(255,253,248,.96) 0%, rgba(255,255,255,.88) 46%, rgba(255,253,248,.96) 100%);
  margin-top: -30px;
  padding-top: 78px;
  padding-bottom: 56px;
}

.facility-trace::before {
  background:
    radial-gradient(65px 28px at 18% 0, rgba(255,250,240,.96) 0 72%, transparent 74%),
    radial-gradient(88px 34px at 47% 0, rgba(255,255,255,.9) 0 72%, transparent 74%),
    radial-gradient(74px 30px at 79% 0, rgba(255,250,240,.96) 0 72%, transparent 74%);
  content: "";
  height: 48px;
  left: -12px;
  pointer-events: none;
  position: absolute;
  right: -12px;
  top: 0;
  z-index: 0;
}

.facility-trace .flower-heading,
.facility-card,
.faq-trace .flower-heading,
.faq-list {
  position: relative;
  z-index: 2;
}

.facility-trace .flower-heading,
.faq-trace .flower-heading {
  color: #3f332a;
  text-shadow: 0 2px 0 rgba(255,255,255,.8);
}

.facility-trace .flower-heading::before,
.facility-trace .flower-heading::after,
.faq-trace .flower-heading::before,
.faq-trace .flower-heading::after {
  color: var(--green);
}

.doc-stack {
  display: grid;
  gap: 12px;
}

.doc-stack article {
  padding: 18px 16px 17px;
}

.doc-stack span {
  border: 1px solid #d9edcc;
  border-radius: 5px;
  color: var(--green);
  display: inline-block;
  font-size: 11px;
  margin-bottom: 9px;
  padding: 6px 5px;
}

.doc-stack time {
  color: #7a6b5f;
  display: inline-block;
  font-size: 11px;
  margin-left: 8px;
}

.doc-stack h3 {
  font-size: 16px;
  margin: 0 0 7px;
}

.doc-stack p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.doc-year-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.doc-year-links a {
  background: #fff7e8;
  border: 2px solid rgba(114, 183, 74, .22);
  border-radius: 999px;
  box-shadow: 0 5px 0 rgba(114, 183, 74, .12);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.doc-year-links a:hover {
  box-shadow: 0 7px 0 rgba(114, 183, 74, .15);
  transform: translateY(-2px);
}

.post-template .mobile-canvas {
  background:
    radial-gradient(circle at 13% 7%, rgba(247, 195, 67, .16) 0 20px, transparent 21px),
    radial-gradient(circle at 84% 10%, rgba(240, 120, 122, .13) 0 18px, transparent 19px),
    radial-gradient(circle at 90% 34%, rgba(114, 183, 74, .1) 0 24px, transparent 25px),
    #fff;
}

.post-main,
.archive-main {
  padding: 42px 22px 64px;
  position: relative;
}

.post-main::before,
.archive-main::before {
  background: url("trace/fv-leaf-crayon.png") center/contain no-repeat;
  content: "";
  height: 70px;
  opacity: .34;
  position: absolute;
  right: 16px;
  top: 98px;
  transform: rotate(18deg);
  width: 58px;
}

.post-article,
.archive-hero,
.archive-section {
  position: relative;
  z-index: 1;
}

.post-hero,
.archive-hero {
  text-align: center;
}

.post-hero time,
.archive-card time {
  color: #77675b;
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  margin-left: 8px;
}

.post-hero h1,
.archive-hero h1 {
  font-size: 28px;
  letter-spacing: .03em;
  line-height: 1.45;
  margin: 12px auto 10px;
}

.post-hero p,
.archive-hero p {
  color: #71655c;
  font-size: 13px;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 680px;
}

.post-featured {
  border-radius: 28px 28px 16px 16px;
  box-shadow: 0 16px 36px rgba(116, 76, 33, .14);
  margin: 28px 0 0;
  overflow: hidden;
  position: relative;
}

.post-featured::after {
  background:
    radial-gradient(circle at 16% 0, rgba(255,255,255,.46) 0 18px, transparent 19px),
    radial-gradient(circle at 86% 100%, rgba(255,255,255,.42) 0 22px, transparent 23px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.post-featured img {
  height: 255px;
  object-fit: cover;
  width: 100%;
}

.post-content {
  background: rgba(255,255,255,.96);
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(116, 76, 33, .11);
  margin-top: -24px;
  padding: 38px 20px 22px;
  position: relative;
  z-index: 2;
}

.post-content p {
  color: #665c55;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 16px;
}

.post-pdf-button {
  align-items: center;
  background: #fff7e8;
  border: 2px solid rgba(114, 183, 74, .32);
  border-radius: 18px;
  box-shadow: 0 6px 0 rgba(114, 183, 74, .13);
  color: var(--green);
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: space-between;
  margin-top: 18px;
  padding: 13px 14px;
}

.post-pdf-button small {
  color: #8b7d70;
  font-size: 11px;
}

.post-nav {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.post-nav a {
  background: rgba(255,255,255,.95);
  border: 2px solid rgba(246, 168, 61, .4);
  border-radius: 999px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  padding: 12px 16px;
  text-align: center;
}

.archive-hero span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.archive-section {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.archive-card {
  background: rgba(255,255,255,.97);
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(116, 76, 33, .12);
  display: grid;
  gap: 0;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.archive-card:hover {
  box-shadow: 0 16px 34px rgba(116, 76, 33, .18);
  transform: translateY(-3px);
}

.archive-card img {
  height: 190px;
  object-fit: cover;
  width: 100%;
}

.archive-card div {
  padding: 15px 16px 17px;
}

.archive-card h2 {
  font-size: 17px;
  line-height: 1.55;
  margin: 9px 0 5px;
}

.archive-card p {
  color: #766a61;
  font-size: 12px;
  line-height: 1.75;
  margin: 0;
}

.post-loading {
  color: #766a61;
  font-size: 13px;
  text-align: center;
}

.facility-card {
  background: rgba(255,255,255,.96);
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(116, 76, 33, .12);
  overflow: hidden;
  padding: 16px;
}

.facility-card dl {
  display: grid;
  gap: 0;
  margin: 0 0 15px;
}

.facility-card dl div {
  border-bottom: 1px solid #efe2cc;
  display: grid;
  gap: 8px;
  grid-template-columns: 86px 1fr;
  padding: 10px 0;
}

.facility-card dt {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.facility-card dd {
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.map-frame {
  background: #eaf4ea;
  border: 3px solid rgba(255,255,255,.95);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px #e4dccb, 0 12px 26px rgba(83, 61, 35, .12);
  height: 240px;
  overflow: hidden;
  position: relative;
  touch-action: pan-x pan-y pinch-zoom;
}

.map-frame iframe {
  border: 0;
  height: 100%;
  pointer-events: auto;
  touch-action: auto;
  width: 100%;
}

.map-link {
  align-items: center;
  background: #f8fff1;
  border: 2px solid #c7e8b5;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(114, 183, 74, .18);
  color: #5ca438;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  margin: 12px auto 0;
  min-height: 38px;
  width: min(260px, 100%);
}

.map-link::before {
  content: "";
  background: var(--green);
  border-radius: 50% 50% 50% 0;
  height: 13px;
  margin-right: 7px;
  transform: rotate(-45deg);
  width: 13px;
}

.paper-deco {
  display: block;
  object-fit: contain;
  pointer-events: none;
  position: absolute;
  user-select: none;
  z-index: 1;
}

.paper-deco-leaf-a {
  left: 18px;
  opacity: .36;
  top: 106px;
  transform: rotate(-18deg);
  width: 52px;
}

.paper-deco-star-a {
  opacity: .54;
  right: 22px;
  top: 128px;
  transform: rotate(14deg);
  width: 34px;
}

.paper-deco-circle-a {
  left: 34px;
  opacity: .24;
  top: 318px;
  width: 40px;
}

.paper-deco-triangle-a {
  opacity: .3;
  right: 22px;
  top: 360px;
  transform: rotate(-14deg);
  width: 34px;
}

.faq-trace {
  background:
    radial-gradient(circle at 16% 20%, rgba(104, 165, 221, .1) 0 18px, transparent 19px),
    radial-gradient(circle at 91% 21%, rgba(247, 195, 67, .18) 0 16px, transparent 17px),
    radial-gradient(circle at 78% 70%, rgba(240, 120, 122, .1) 0 22px, transparent 23px),
    linear-gradient(180deg, rgba(255,253,248,.97) 0%, rgba(255,255,255,.88) 45%, rgba(255,247,232,.98) 100%);
  margin-top: -34px;
  padding-bottom: 70px;
  padding-top: 84px;
}

.faq-trace::before {
  background:
    radial-gradient(92px 34px at 8% 100%, #fffdf8 0 72%, transparent 74%),
    radial-gradient(118px 42px at 38% 100%, #fff 0 72%, transparent 74%),
    radial-gradient(84px 32px at 72% 100%, #fffdf8 0 72%, transparent 74%),
    radial-gradient(120px 42px at 98% 100%, #fff 0 72%, transparent 74%);
  content: "";
  height: 44px;
  left: -20px;
  pointer-events: none;
  position: absolute;
  right: -20px;
  top: -2px;
  z-index: 1;
}

.faq-trace::after {
  background:
    radial-gradient(80px 34px at 8% 100%, #fff7e8 0 75%, transparent 77%),
    radial-gradient(118px 44px at 42% 100%, #fff3e8 0 75%, transparent 77%),
    radial-gradient(92px 35px at 76% 100%, #fff7e8 0 75%, transparent 77%),
    linear-gradient(180deg, transparent 0 38%, #fff7e8 39% 100%);
  bottom: 0;
  content: "";
  height: 96px;
  left: -18px;
  pointer-events: none;
  position: absolute;
  right: -18px;
  z-index: 1;
}

.paper-deco-leaf-b {
  bottom: 34px;
  opacity: .32;
  right: 24px;
  transform: rotate(20deg) scaleX(-1);
  width: 58px;
}

.paper-deco-star-b {
  left: 20px;
  opacity: .46;
  top: 116px;
  transform: rotate(-12deg);
  width: 38px;
}

.paper-deco-circle-b {
  opacity: .28;
  right: 30px;
  top: 64px;
  width: 44px;
}

.paper-deco-triangle-b {
  bottom: 88px;
  left: 24px;
  opacity: .26;
  transform: rotate(16deg);
  width: 36px;
}

.faq-list details {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(116, 76, 33, .12);
  overflow: hidden;
}

.faq-list p {
  border-top: 1px dashed #efd8bc;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list details[open] {
  border-radius: 18px;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 9px;
  list-style: none;
  padding: 12px 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--brown);
  content: "⌄";
  font-size: 20px;
  margin-left: auto;
}

.faq-list summary span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.faq-list details:nth-child(2) summary span { background: var(--orange); }
.faq-list details:nth-child(3) summary span { background: var(--coral); }
.faq-list details:nth-child(4) summary span { background: var(--blue); }
.faq-list details:nth-child(5) summary span { background: #92c96d; }

.faq-list p {
  border-top: 1px dashed #efd8bc;
  font-size: 12px;
  line-height: 1.8;
  margin: 0 16px 14px 55px;
  padding-top: 10px;
}

.contact-trace {
  background:
    radial-gradient(circle at 14% 16%, rgba(247, 195, 67, .18) 0 16px, transparent 17px),
    radial-gradient(circle at 86% 84%, rgba(114, 183, 74, .13) 0 24px, transparent 25px),
    linear-gradient(180deg, rgba(255,247,232,.98) 0%, rgba(255,241,223,.96) 34%, rgba(255,247,232,.98) 100%);
  margin: -20px 0 0;
  overflow: hidden;
  padding: 72px 18px 42px;
  position: relative;
  text-align: center;
}

.contact-card {
  background: #fff3e8;
  border: 3px solid #f2747a;
  border-radius: 22px;
  box-shadow: 0 12px 0 rgba(240, 120, 122, .1), 0 18px 34px rgba(126, 78, 37, .16);
  overflow: hidden;
  padding: 30px 16px 26px;
  position: relative;
  z-index: 1;
}

.contact-card::before,
.contact-card::after {
  background:
    radial-gradient(circle at 50% 66%, rgba(242, 116, 122, .18) 0 10px, transparent 11px),
    radial-gradient(circle at 25% 37%, rgba(242, 116, 122, .18) 0 4px, transparent 5px),
    radial-gradient(circle at 42% 24%, rgba(242, 116, 122, .18) 0 4px, transparent 5px),
    radial-gradient(circle at 61% 24%, rgba(242, 116, 122, .18) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 37%, rgba(242, 116, 122, .18) 0 4px, transparent 5px);
  content: "";
  height: 42px;
  pointer-events: none;
  position: absolute;
  width: 46px;
}

.contact-card::before {
  left: 16px;
  top: 16px;
  transform: rotate(-18deg);
}

.contact-card::after {
  bottom: 15px;
  right: 17px;
  transform: rotate(20deg);
}

.contact-trace h2 {
  font-size: 23px;
  line-height: 1.45;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.contact-trace p {
  font-size: 12px;
  margin: 0 0 13px;
  position: relative;
  z-index: 1;
}

.contact-button {
  background: #f26f77;
  border: 2px solid rgba(255,255,255,.72);
  box-shadow: 0 7px 0 #d9545d, 0 12px 22px rgba(199, 82, 78, .22);
  font-size: 13px;
  justify-content: center;
  min-height: 44px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.contact-button:hover {
  transform: translateY(1px);
}

.phone-button {
  align-items: center;
  background: #fffdf4;
  border: 2px solid #8fca6d;
  border-radius: 12px;
  box-shadow: 0 5px 0 rgba(143, 202, 109, .2);
  color: var(--green);
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 10px;
  padding: 9px;
  position: relative;
  z-index: 1;
}

.phone-button small {
  color: var(--brown);
  font-size: 10px;
  margin-top: 5px;
}

.trace-footer {
  background: linear-gradient(180deg, #fff7e8 0%, #fff 38%, #fff 100%);
  margin-top: -1px;
  padding: 30px 24px 52px;
  position: relative;
}

.trace-footer::before {
  background: #dff0d1;
  bottom: 0;
  height: 38px;
}

.trace-footer .footer-logo {
  height: auto;
  margin-bottom: 14px;
  width: 188px;
}

.trace-footer nav {
  border-left: 1px dashed #a9d190;
  display: grid;
  gap: 5px 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-left: 8px;
  padding-left: 20px;
}

.trace-footer nav a {
  font-size: 12px;
}

.footer-socials {
  align-items: center;
  display: flex;
  gap: 12px;
  margin: 18px 0 0 8px;
}

.footer-social-link {
  align-items: center;
  background: #fffaf0;
  border: 1px solid rgba(132, 196, 96, .34);
  border-radius: 17px;
  box-shadow: 0 8px 18px rgba(91, 145, 67, .12);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  width: 52px;
}

.footer-social-link:hover {
  border-color: rgba(132, 196, 96, .68);
  box-shadow: 0 12px 24px rgba(91, 145, 67, .18);
  transform: translateY(-2px);
}

.footer-social-link img {
  display: block;
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.footer-social-link:first-child img {
  height: 38px;
  width: 38px;
}

.trace-footer p {
  font-size: 10px;
  margin: 14px 0 0;
}

.footer-public-docs {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(114, 183, 74, .24);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(116, 76, 33, .08);
  margin: 0 0 20px;
  padding: 16px;
}

.footer-public-docs h2 {
  color: var(--brown);
  font-size: 16px;
  letter-spacing: .08em;
  margin: 0 0 12px;
}

.footer-doc-links {
  display: grid;
  gap: 9px;
}

.footer-doc-links a {
  background: #fffaf0;
  border: 1px solid rgba(114, 183, 74, .22);
  border-radius: 14px;
  color: var(--brown);
  display: grid;
  gap: 3px;
  padding: 10px 12px;
}

.footer-doc-links span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.footer-doc-links strong {
  font-size: 12px;
  line-height: 1.45;
}

@media (min-width: 760px) {
  .mobile-canvas {
    box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  }
}

@media (min-width: 960px) {
  body {
    background:
      radial-gradient(circle at 8% 14%, rgba(247, 195, 67, .12) 0 48px, transparent 49px),
      radial-gradient(circle at 92% 10%, rgba(240, 120, 122, .1) 0 58px, transparent 59px),
      linear-gradient(180deg, #fff 0%, #fff7e8 38%, #fffdf8 100%);
  }

  .mobile-canvas {
    box-shadow: none;
    max-width: none;
    overflow: clip;
    width: 100%;
  }

  .trace-header {
    height: 82px;
    padding: 14px clamp(34px, 5vw, 72px);
  }

  .trace-logo img {
    height: 54px;
    width: 230px;
  }

  .trace-menu {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .desktop-nav {
    align-items: center;
    display: flex;
    gap: clamp(16px, 2.1vw, 34px);
    font-size: 14px;
    font-weight: 900;
    margin-left: auto;
  }

  .desktop-nav a {
    white-space: nowrap;
  }

  .desktop-nav-cta {
    align-items: center;
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 7px 0 rgba(90, 154, 59, .18), 0 12px 24px rgba(90, 154, 59, .16);
    color: #fff;
    display: inline-flex;
    min-height: 44px;
    padding: 0 20px;
  }

  .hero-trace {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(380px, .86fr) minmax(460px, 1.14fr);
    min-height: 720px;
    padding: 84px clamp(44px, 6vw, 94px) 148px;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: clamp(54px, 5.2vw, 78px);
    line-height: 1.22;
    margin-left: 0;
    max-width: 620px;
  }

  .hero-text p {
    font-size: 15px;
    margin-left: 0;
    max-width: 520px;
  }

  .hand-copy {
    font-size: 15px !important;
  }

  .primary-cta {
    font-size: 18px;
    min-height: 64px;
    padding-left: 24px;
    padding-right: 30px;
  }

  .hero-photo {
    border-radius: 130px 88px 98px 74px / 92px 128px 78px 112px;
    height: clamp(420px, 38vw, 560px);
    margin: 0;
    width: 100%;
  }

  .hero-points {
    bottom: 44px;
    gap: 24px;
    left: 50%;
    margin-left: -26px;
    max-width: 560px;
    right: clamp(44px, 7vw, 120px);
    transform: none;
    width: auto;
  }

  .hero-points article {
    height: 130px;
    width: 134px;
  }

  .fv-sun-big {
    left: clamp(36px, 5vw, 82px);
    top: 104px;
    width: 90px;
  }

  .fv-rainbow-big {
    right: clamp(40px, 7vw, 120px);
    top: 124px;
    width: 178px;
  }

  .fv-leaf-left {
    left: clamp(24px, 4vw, 66px);
    top: 482px;
  }

  .fv-leaf-right {
    right: clamp(34px, 6vw, 98px);
    top: 488px;
    width: 54px;
  }

  .section,
  .safe-place,
  .contact-trace {
    padding-left: clamp(44px, 7vw, 108px);
    padding-right: clamp(44px, 7vw, 108px);
  }

  .atmosphere-trace {
    padding: 98px clamp(44px, 7vw, 108px) 78px;
  }

  .atmosphere-lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 820px;
  }

  .atmosphere-lead h2 {
    font-size: clamp(30px, 3.2vw, 44px);
  }

  .atmosphere-stack {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 44px auto 0;
    max-width: 1180px;
  }

  .atmosphere-card,
  .atmosphere-card:nth-child(even),
  .atmosphere-card:nth-child(odd) {
    margin: 0;
    transform: none;
  }

  .atmosphere-card {
    align-content: start;
  }

  .atmosphere-card img,
  .atmosphere-card-large img,
  .atmosphere-room img {
    height: 230px;
    width: 100%;
  }

  .atmosphere-card div,
  .atmosphere-card:nth-child(even) div,
  .atmosphere-card:nth-child(3) div,
  .atmosphere-card:nth-child(4) div {
    margin: -28px 14px 0;
    max-width: none;
  }

  .program-trace {
    padding-bottom: 86px;
  }

  .intro-row {
    align-items: end;
    display: grid;
    gap: 30px;
    grid-template-columns: 270px 1fr;
    margin: 0 auto 34px;
    max-width: 1180px;
  }

  .program-stack {
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
  }

  .program-card {
    grid-template-columns: 44% 1fr;
    min-height: 210px;
    padding: 14px 20px 14px 14px;
  }

  .program-card img {
    height: 180px;
    width: 100%;
  }

  .day-trace {
    padding-bottom: 90px;
    padding-top: 76px;
  }

  .schedule-panel {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 1180px;
    padding: 34px 36px 40px;
  }

  .schedule-block + .schedule-block {
    border-left: 0;
    border-top: 1px dashed #ecdcc4;
    margin-top: 0;
    padding-left: 0;
    padding-top: 30px;
  }

  .schedule-block {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: 190px 1fr;
  }

  .schedule-block b {
    align-self: start;
    font-size: 17px;
    justify-self: start;
    margin: 4px 0 0;
    padding: 8px 22px;
  }

  .schedule-block ol {
    align-items: start;
    gap: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0 10px;
  }

  .schedule-block.saturday-line {
    align-items: start;
  }

  .schedule-block.saturday-line ol {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 0;
  }

  .schedule-block ol::before {
    background: linear-gradient(90deg, rgba(114, 183, 74, .16), rgba(114, 183, 74, .42), rgba(114, 183, 74, .16));
    border-radius: 999px;
    content: "";
    height: 5px;
    left: 9%;
    position: absolute;
    right: 9%;
    top: 62px;
    z-index: 0;
  }

  .orange-line ol::before {
    background: linear-gradient(90deg, rgba(246, 161, 29, .14), rgba(246, 161, 29, .42), rgba(246, 161, 29, .14));
    content: "";
  }

  .schedule-block ol::after {
    border-bottom: 8px solid transparent;
    border-left: 12px solid rgba(114, 183, 74, .42);
    border-top: 8px solid transparent;
    content: "";
    position: absolute;
    right: 7.6%;
    top: 56px;
    z-index: 0;
  }

  .orange-line ol::after {
    border-left-color: rgba(246, 161, 29, .42);
  }

  .schedule-block li {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    padding: 0 8px;
    text-align: center;
  }

  .schedule-block time {
    background: transparent;
    font-size: 18px;
    line-height: 1.2;
    padding-right: 0;
  }

  .schedule-block span {
    height: 52px;
    width: 52px;
  }

  .schedule-block span::before {
    background: rgba(255, 253, 247, .92);
    box-shadow: 0 6px 14px rgba(116, 76, 33, .1);
    height: 42px;
    width: 42px;
  }

  .schedule-block span img {
    max-height: 48px;
    max-width: 48px;
  }

  .schedule-block span img[src*="day-cooking"],
  .schedule-block span img[src*="day-snack"] {
    max-height: 56px;
    max-width: 56px;
  }

  .schedule-block em {
    font-size: 13px;
    line-height: 1.55;
  }

  .schedule-block.saturday-line em {
    font-size: 12px;
    line-height: 1.55;
  }

  .schedule-block.saturday-line li:last-child em {
    white-space: nowrap;
  }

  .schedule-block.saturday-line .schedule-note {
    grid-column: 2;
    margin: 24px 0 0;
    max-width: 720px;
    padding-left: 10px;
  }

  .more-link {
    margin-top: 30px;
  }

  .safe-place {
    padding-bottom: 80px;
    padding-top: 98px;
  }

  .safe-place img {
    height: 390px;
    margin: 0 auto;
    max-width: 1080px;
  }

  .news-trace {
    padding-bottom: 76px;
    padding-top: 86px;
  }

  .news-stack {
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
  }

  .news-card img {
    height: 240px;
  }

  .news-stack h3 {
    font-size: 18px;
  }

  .news-more {
    font-size: 18px;
    margin-top: 30px;
  }

  .disclosure-trace {
    padding-bottom: 82px;
    padding-top: 86px;
  }

  .doc-stack {
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 920px;
  }

  .doc-stack article {
    padding: 24px;
  }

  .doc-year-links a {
    font-size: 14px;
    padding: 9px 16px;
  }

  .facility-card {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(360px, .85fr) minmax(420px, 1.15fr);
    margin: 0 auto;
    max-width: 1080px;
    padding: 24px;
  }

  .facility-card dl {
    margin: 0;
  }

  .map-frame {
    height: 360px;
  }

  .map-link {
    grid-column: 2;
    margin-top: -10px;
  }

  .faq-list {
    margin: 0 auto;
    max-width: 920px;
  }

  .faq-list summary {
    font-size: 15px;
    padding: 16px 20px;
  }

  .contact-card {
    margin: 0 auto;
    max-width: 900px;
    padding: 42px 56px 38px;
  }

  .contact-trace h2 {
    font-size: 31px;
  }

  .contact-trace p {
    font-size: 14px;
  }

  .contact-button,
  .phone-button {
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
  }

  .trace-footer {
    align-items: center;
    display: grid;
    gap: 22px 34px;
    grid-template-columns: 250px 1fr auto;
    padding: 42px clamp(44px, 7vw, 108px) 70px;
  }

  .footer-public-docs {
    grid-column: 1 / -1;
    margin: 0 auto 4px;
    max-width: 980px;
    width: 100%;
  }

  .footer-public-docs h2 {
    text-align: center;
  }

  .footer-doc-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-doc-links a {
    min-height: 76px;
  }

  .trace-footer .footer-logo {
    margin-bottom: 0;
    width: 230px;
  }

  .trace-footer nav {
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
  }

  .footer-socials {
    justify-content: flex-end;
    margin: 0;
  }

  .trace-footer p {
    grid-column: 1 / -1;
  }

  .post-template .mobile-canvas {
    max-width: none;
  }

  .post-main,
  .archive-main {
    padding: 72px clamp(44px, 7vw, 108px) 90px;
  }

  .post-article {
    margin: 0 auto;
    max-width: 960px;
  }

  .post-hero h1,
  .archive-hero h1 {
    font-size: clamp(34px, 3.2vw, 46px);
  }

  .post-hero p,
  .archive-hero p {
    font-size: 15px;
  }

  .post-featured img {
    height: 440px;
  }

  .post-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 820px;
    padding: 52px 54px 42px;
  }

  .post-content p {
    font-size: 15px;
  }

  .post-nav {
    grid-template-columns: repeat(2, minmax(0, 260px));
    justify-content: center;
  }

  .archive-section {
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
  }

  .archive-card img {
    height: 240px;
  }

  .archive-card h2 {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .hero-text h1 {
    font-size: 82px;
  }

  .hero-trace {
    padding-left: max(90px, calc((100vw - 1240px) / 2));
    padding-right: max(90px, calc((100vw - 1240px) / 2));
  }
}

/* Usage guide page */
.usage-canvas {
  background:
    radial-gradient(circle at 11% 7%, rgba(247, 195, 67, .14) 0 19px, transparent 20px),
    radial-gradient(circle at 88% 11%, rgba(240, 120, 122, .12) 0 18px, transparent 19px),
    linear-gradient(180deg, #fff 0 62px, #fffaf0 62px 44%, #fffdf8 68%, #fff7e8 100%);
}

.usage-page {
  overflow: hidden;
  position: relative;
}

.usage-hero-trace {
  background:
    radial-gradient(circle at 21% 9%, rgba(247, 195, 67, .16) 0 8px, transparent 9px),
    radial-gradient(circle at 79% 15%, rgba(104, 165, 221, .16) 0 7px, transparent 8px),
    linear-gradient(180deg, #fff 0%, #fff 72%, #edf8df 100%);
  min-height: 670px;
  padding: 32px 24px 106px;
  position: relative;
}

.usage-hero-trace::after {
  background: #dff0d1;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  bottom: -30px;
  content: "";
  height: 94px;
  left: -18%;
  position: absolute;
  right: -18%;
  transform: rotate(-2deg);
}

.usage-deco {
  object-fit: contain;
  pointer-events: none;
  position: absolute;
  user-select: none;
  z-index: 1;
}

.usage-sun {
  left: 14px;
  opacity: .58;
  top: 52px;
  transform: rotate(-8deg);
  width: 66px;
}

.usage-rainbow {
  opacity: .52;
  right: -28px;
  top: 82px;
  transform: rotate(-9deg);
  width: 156px;
}

.usage-leaf-a {
  left: 14px;
  top: 395px;
  transform: rotate(-8deg);
  width: 52px;
}

.usage-leaf-b {
  bottom: 104px;
  right: 14px;
  transform: rotate(16deg);
  width: 48px;
}

.usage-star {
  bottom: 172px;
  left: 78px;
  opacity: .7;
  transform: rotate(10deg);
  width: 38px;
}

.usage-hero-copy,
.usage-hero-photo,
.usage-quick-points {
  position: relative;
  z-index: 2;
}

.usage-label {
  color: var(--green);
  display: inline-flex;
  font-size: 12px;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.usage-label::before,
.usage-label::after {
  color: var(--green);
  content: "✣";
  font-size: 13px;
  margin: 0 8px;
}

.usage-hero-copy h1 {
  font-size: clamp(30px, 8vw, 40px);
  letter-spacing: 0;
  line-height: 1.45;
  margin: 0;
}

.usage-h1-line {
  white-space: nowrap;
}

.usage-hero-copy p {
  font-size: 13px;
  line-height: 1.9;
  margin: 14px 0 16px;
}

.usage-hero-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  max-width: 330px;
}

.usage-line-button,
.usage-tel-button,
.usage-step-actions a,
.price-modal-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  min-height: 48px;
  padding: 0 18px;
}

.usage-line-button {
  background: #f26f77;
  border: 2px solid rgba(255,255,255,.78);
  box-shadow: 0 7px 0 #d9545d, 0 13px 22px rgba(199, 82, 78, .2);
  color: #fff;
}

.usage-tel-button {
  background: #fffdf4;
  border: 2px solid #8fca6d;
  box-shadow: 0 5px 0 rgba(143, 202, 109, .18);
  color: var(--green);
}

.usage-hero-photo {
  border-radius: 42px 62px 48px 70px / 60px 44px 72px 48px;
  box-shadow: 0 16px 32px rgba(116, 76, 33, .15);
  height: 230px;
  margin: 26px 0 0 auto;
  overflow: hidden;
  width: 92%;
}

.usage-hero-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.usage-quick-points {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -20px auto 0;
}

.usage-quick-points article {
  align-items: center;
  background: #fffef8;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50% 46% 52% 48% / 48% 56% 44% 52%;
  box-shadow: 0 7px 0 rgba(143, 202, 109, .16), 0 13px 22px rgba(116, 76, 33, .13);
  display: flex;
  flex-direction: column;
  height: 102px;
  justify-content: center;
  padding: 10px 6px;
  text-align: center;
}

.usage-quick-points article:nth-child(2) {
  background: #fff9dd;
  border-radius: 47% 53% 48% 52% / 55% 45% 55% 45%;
  transform: translateY(7px);
}

.usage-quick-points article:nth-child(3) {
  background: #fff5e9;
  border-radius: 53% 47% 55% 45% / 45% 55% 47% 53%;
}

.usage-quick-points img {
  height: 28px;
  margin-bottom: 6px;
  object-fit: contain;
}

.usage-quick-points span {
  font-size: 11px;
  line-height: 1.45;
}

.usage-flow-trace,
.recipient-trace,
.price-guide-trace,
.usage-disclosure-trace,
.usage-faq-trace {
  position: relative;
}

.usage-flow-trace {
  background:
    radial-gradient(circle at 87% 5%, rgba(247, 195, 67, .14) 0 23px, transparent 24px),
    linear-gradient(180deg, #fff7e8 0%, #fffaf0 54%, #f3f9e9 100%);
  margin-top: -30px;
  padding: 84px 20px 62px;
}

.usage-section-head {
  margin: 0 auto 22px;
  max-width: 720px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.usage-section-head span {
  color: var(--green);
  display: inline-block;
  font-size: 11px;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.usage-section-head h2 {
  font-size: 27px;
  letter-spacing: .02em;
  line-height: 1.45;
  margin: 0;
}

.usage-section-head h2::before,
.usage-section-head h2::after {
  color: var(--green);
  content: "✣";
  font-size: 15px;
  margin: 0 9px;
}

.usage-section-head p {
  color: #766a61;
  font-size: 12px;
  line-height: 1.8;
  margin: 8px 0 0;
}

.usage-flow-board {
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.usage-flow-board::before {
  background: rgba(143, 202, 109, .32);
  border-radius: 999px;
  bottom: 30px;
  content: "";
  left: 23px;
  position: absolute;
  top: 34px;
  width: 5px;
  z-index: -1;
}

.usage-step-card,
.certificate-panel,
.recipient-card,
.price-guide-card,
.usage-doc-grid article {
  background: rgba(255,255,255,.96);
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(116, 76, 33, .12);
}

.usage-step-card {
  display: grid;
  gap: 14px;
  grid-template-columns: 54px 1fr;
  overflow: hidden;
  padding: 14px;
  position: relative;
}

.usage-step-num {
  align-items: center;
  border: 3px solid rgba(255,255,255,.78);
  border-radius: 50%;
  box-shadow: 0 6px 0 rgba(116, 76, 33, .08);
  color: #fff;
  display: flex;
  font-size: 18px;
  height: 52px;
  justify-content: center;
  line-height: 1;
  width: 52px;
}

.usage-step-body h3 {
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1.45;
  margin: 3px 0 6px;
}

.usage-step-body p,
.certificate-panel p,
.recipient-card p,
.price-guide-card p,
.usage-doc-grid p {
  color: #71645b;
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.usage-step-card > img {
  border-radius: 20px;
  grid-column: 1 / -1;
  height: 164px;
  object-fit: cover;
  width: 100%;
}

.usage-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.usage-step-actions a {
  background: #fff7e7;
  border: 2px solid #f9bd5d;
  color: var(--orange);
  font-size: 12px;
  min-height: 38px;
  padding: 0 12px;
}

.certificate-panel {
  padding: 18px 16px;
}

.certificate-title {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.certificate-title img {
  height: 44px;
  object-fit: contain;
  width: 44px;
}

.certificate-title h3 {
  font-size: 20px;
  margin: 0;
}

.certificate-branches {
  display: grid;
  gap: 10px;
}

.certificate-branches article {
  background: #fffaf0;
  border: 1px dashed #ecd4b0;
  border-radius: 18px;
  padding: 14px;
}

.certificate-branches article:nth-child(2) {
  background: #f4faee;
  border-color: #cfe5c0;
}

.certificate-branches span {
  color: var(--brown);
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.recipient-trace {
  background:
    radial-gradient(circle at 11% 14%, rgba(240, 120, 122, .1) 0 19px, transparent 20px),
    radial-gradient(circle at 88% 68%, rgba(104, 165, 221, .1) 0 24px, transparent 25px),
    linear-gradient(180deg, #f3f9e9 0%, #fffdf8 42%, #fffdf8 100%);
  margin-top: -24px;
  padding: 78px 20px 56px;
}

.recipient-card {
  margin: 0 auto;
  max-width: 760px;
  overflow: hidden;
  padding: 20px 18px;
  position: relative;
  z-index: 1;
}

.recipient-intro {
  background:
    radial-gradient(circle at 100% 0, rgba(247, 195, 67, .18) 0 34px, transparent 35px),
    #fffaf0;
  border-radius: 22px;
  margin-bottom: 14px;
  padding: 18px 16px;
}

.recipient-intro h3 {
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 8px;
}

.application-steps {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.application-steps li {
  align-items: center;
  background: #fff;
  border: 1px dashed #ead7ba;
  border-radius: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px 1fr;
  padding: 11px 12px;
}

.application-steps span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.application-steps li:nth-child(2) span { background: var(--orange); }
.application-steps li:nth-child(3) span { background: var(--coral); }
.application-steps li:nth-child(4) span { background: var(--blue); }
.application-steps li:nth-child(5) span { background: #92c96d; }

.price-guide-trace {
  background:
    radial-gradient(circle at 84% 22%, rgba(247, 195, 67, .13) 0 24px, transparent 25px),
    linear-gradient(180deg, #fffdf8 0%, #fff7e8 100%);
  margin-top: -12px;
  padding: 46px 20px 58px;
}

.price-guide-card {
  align-items: start;
  display: grid;
  gap: 16px;
  margin: 0 auto;
  max-width: 760px;
  overflow: hidden;
  padding: 24px 18px;
  position: relative;
}

.price-guide-card h2 {
  font-size: 21px;
  line-height: 1.55;
  margin: 0 0 8px;
}

.price-note {
  background: #fffaf0;
  border-radius: 14px;
  color: #8a6d4f !important;
  margin-top: 11px !important;
  padding: 10px 12px;
}

.price-deco {
  opacity: .65;
  position: absolute;
  right: 18px;
  top: 18px;
  transform: rotate(12deg);
  width: 56px;
}

.price-modal-button {
  background: #fffaf0;
  border: 2px solid var(--orange);
  box-shadow: 0 5px 0 rgba(246, 161, 29, .25);
  color: var(--orange);
  width: 100%;
}

.usage-disclosure-trace {
  background:
    radial-gradient(circle at 15% 17%, rgba(114, 183, 74, .12) 0 24px, transparent 25px),
    linear-gradient(180deg, #fff7e8 0%, #fffdf8 100%);
  margin-top: -18px;
  padding: 68px 20px 56px;
}

.usage-doc-grid {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 820px;
}

.usage-doc-grid article {
  padding: 20px 18px;
  position: relative;
}

.usage-doc-grid article::after {
  background: #f4faee;
  border: 2px dashed #cfe5c0;
  border-radius: 12px;
  color: var(--green);
  content: "PDF";
  font-size: 12px;
  padding: 7px 8px;
  position: absolute;
  right: 16px;
  top: 18px;
}

.usage-doc-grid span {
  color: var(--green);
  display: block;
  font-size: 12px;
  margin-bottom: 7px;
  padding-right: 54px;
}

.usage-doc-grid h3 {
  font-size: 18px;
  line-height: 1.45;
  margin: 0 0 7px;
  padding-right: 54px;
}

.usage-doc-grid .doc-year-links {
  margin-top: 13px;
}

.usage-faq-trace {
  background:
    radial-gradient(circle at 90% 14%, rgba(240, 120, 122, .12) 0 22px, transparent 23px),
    linear-gradient(180deg, #fffdf8 0%, #fff7e8 100%);
  margin-top: -18px;
  padding: 68px 20px 62px;
}

.usage-price-modal {
  background: #fffdf8;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(54, 34, 22, .24);
  color: var(--brown);
  max-width: min(92vw, 520px);
  padding: 28px 20px 24px;
}

.usage-price-modal::backdrop {
  background: rgba(54, 34, 22, .36);
}

.modal-close {
  background: #fff3e8;
  border: 2px solid #f4c0a2;
  border-radius: 50%;
  color: var(--brown);
  cursor: pointer;
  font-size: 20px;
  height: 38px;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
}

.usage-price-modal h2 {
  font-size: 24px;
  margin: 0 44px 12px 0;
}

.usage-price-modal p {
  color: #71645b;
  font-size: 13px;
  line-height: 1.8;
}

.usage-price-modal table {
  border-collapse: separate;
  border-spacing: 0;
  margin: 16px 0;
  overflow: hidden;
  width: 100%;
}

.usage-price-modal th,
.usage-price-modal td {
  border-bottom: 1px solid #efd8bc;
  font-size: 12px;
  padding: 11px 8px;
  text-align: left;
}

.usage-price-modal td {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.orange-text {
  color: var(--orange) !important;
}

@media (min-width: 960px) {
  .usage-hero-trace {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(420px, .9fr) minmax(430px, 1.1fr);
    min-height: 650px;
    padding: 84px clamp(44px, 7vw, 108px) 136px;
  }

  .usage-hero-copy h1 {
    font-size: clamp(42px, 4.1vw, 62px);
  }

  .usage-hero-copy p {
    font-size: 15px;
    max-width: 520px;
  }

  .usage-hero-actions {
    grid-template-columns: minmax(180px, 240px) minmax(180px, 220px);
    max-width: 520px;
  }

  .usage-hero-photo {
    height: clamp(360px, 33vw, 490px);
    margin: 0;
    width: 100%;
  }

  .usage-quick-points {
    bottom: 34px;
    gap: 22px;
    left: 50%;
    margin: 0;
    max-width: 520px;
    position: absolute;
    right: clamp(44px, 8vw, 128px);
  }

  .usage-quick-points article {
    height: 128px;
  }

  .usage-quick-points span {
    font-size: 13px;
  }

  .usage-sun {
    left: clamp(34px, 5vw, 90px);
    top: 96px;
    width: 92px;
  }

  .usage-rainbow {
    right: clamp(48px, 7vw, 120px);
    top: 112px;
    width: 205px;
  }

  .usage-flow-trace,
  .recipient-trace,
  .price-guide-trace,
  .usage-disclosure-trace,
  .usage-faq-trace {
    padding-left: clamp(44px, 7vw, 108px);
    padding-right: clamp(44px, 7vw, 108px);
  }

  .usage-section-head h2 {
    font-size: 34px;
  }

  .usage-section-head p {
    font-size: 14px;
  }

  .usage-flow-board {
    gap: 20px;
    max-width: 1060px;
  }

  .usage-flow-board::before {
    display: none;
  }

  .usage-step-card {
    align-items: center;
    grid-template-columns: 72px 1fr 320px;
    padding: 20px;
  }

  .usage-step-card:nth-of-type(even) {
    grid-template-columns: 72px 320px 1fr;
  }

  .usage-step-card:nth-of-type(even) .usage-step-body {
    grid-column: 3;
  }

  .usage-step-card:nth-of-type(even) > img {
    grid-column: 2;
    grid-row: 1;
  }

  .usage-step-num {
    height: 64px;
    width: 64px;
  }

  .usage-step-body h3 {
    font-size: 24px;
  }

  .usage-step-body p,
  .certificate-panel p,
  .recipient-card p,
  .price-guide-card p,
  .usage-doc-grid p {
    font-size: 14px;
  }

  .usage-step-card > img {
    grid-column: 3;
    height: 190px;
  }

  .certificate-panel {
    padding: 24px;
  }

  .certificate-title {
    justify-content: center;
  }

  .certificate-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipient-card {
    display: grid;
    gap: 24px;
    grid-template-columns: .9fr 1.1fr;
    max-width: 1060px;
    padding: 24px;
  }

  .recipient-intro {
    margin-bottom: 0;
  }

  .price-guide-card {
    align-items: center;
    grid-template-columns: 1fr 260px;
    max-width: 980px;
    padding: 30px 34px;
  }

  .price-guide-card h2 {
    font-size: 27px;
    max-width: 650px;
  }

  .price-modal-button {
    justify-self: end;
    max-width: 250px;
  }

  .usage-doc-grid {
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 960px;
  }
}

/* Remix-style usage guide */
.usage-remix-canvas {
  background: #fff;
}

.usage-remix-page {
  background: #fff;
  overflow: hidden;
}

.usage-remix-mv {
  background: #fff;
  padding: 18px 18px 56px;
  position: relative;
}

.usage-remix-mv-photo {
  border-radius: 28px 28px 90px 28px;
  box-shadow: 0 18px 34px rgba(70, 50, 30, .12);
  height: 255px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.usage-remix-mv-photo::after {
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.usage-remix-mv-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.usage-remix-mv-title {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(65, 42, 28, .14);
  display: flex;
  flex-direction: column;
  height: 148px;
  justify-content: center;
  left: 32px;
  padding: 16px;
  position: absolute;
  top: 168px;
  width: 148px;
  z-index: 4;
}

.usage-remix-mv-title span {
  color: var(--brown);
  font-size: 22px;
  line-height: 1.25;
  white-space: nowrap;
}

.usage-remix-mv-title small {
  color: var(--green);
  font-size: 10px;
  letter-spacing: .08em;
  margin-top: 5px;
}

.usage-circle {
  border: 22px solid rgba(114, 183, 74, .18);
  border-radius: 50%;
  display: block;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.usage-circle-top {
  height: 150px;
  right: -54px;
  top: -50px;
  width: 150px;
}

.usage-circle-bottom {
  border-color: rgba(246, 161, 29, .16);
  bottom: -48px;
  height: 128px;
  left: -50px;
  width: 128px;
}

.usage-remix-title {
  font-size: 28px;
  line-height: 1.4;
  margin: 0 0 30px;
  text-align: center;
}

.usage-remix-title span {
  display: inline-block;
  position: relative;
}

.usage-remix-title span::after {
  background: #8fc96f;
  border-radius: 999px;
  bottom: -8px;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 82%;
}

.usage-remix-flow {
  background: #f7fbf1;
  margin-top: -8px;
  padding: 58px 20px 64px;
  position: relative;
}

.usage-remix-flow::before {
  background: #fff;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  content: "";
  height: 48px;
  left: -18%;
  position: absolute;
  right: -18%;
  top: -1px;
}

.usage-remix-flow-container {
  margin: 0 auto;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.usage-remix-flow-container::before {
  background: #a9d88e;
  border-radius: 999px;
  bottom: 24px;
  content: "";
  left: 50%;
  position: absolute;
  top: 22px;
  transform: translateX(-50%);
  width: 6px;
  z-index: -1;
}

.usage-remix-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(69, 46, 26, .1);
  margin: 0 auto 30px;
  padding: 22px 18px;
  position: relative;
  width: 100%;
}

.usage-remix-box::before {
  background: #72b74a;
  border: 6px solid #f7fbf1;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(72, 122, 45, .18);
  content: "";
  height: 24px;
  left: 50%;
  position: absolute;
  top: -16px;
  transform: translateX(-50%);
  width: 24px;
}

.usage-remix-box dt {
  color: var(--green);
  font-size: 21px;
  line-height: 1.45;
  margin: 0 0 10px;
  text-align: center;
}

.usage-remix-box dd {
  color: #65584f;
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}

.usage-remix-box dd p {
  margin: 0;
}

.usage-remix-contact-buttons {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.usage-remix-line,
.usage-remix-phone,
.usage-remix-price-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}

.usage-remix-line {
  background: var(--green);
  box-shadow: 0 7px 0 rgba(88, 151, 54, .28);
  color: #fff;
}

.usage-remix-phone {
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green);
}

.usage-remix-branch {
  display: grid;
  gap: 14px;
  margin: 0 auto 30px;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.usage-remix-branch > p,
.usage-remix-branch dl {
  background: #fff;
  border: 2px solid #d9edcc;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(69, 46, 26, .08);
  margin: 0;
  padding: 18px;
}

.usage-remix-branch > p,
.usage-remix-branch dt {
  color: var(--green);
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.usage-remix-branch dd {
  margin: 12px 0 0;
}

.usage-remix-branch ul {
  color: #65584f;
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
  padding-left: 1.2em;
}

.usage-remix-recipient,
.usage-remix-price,
.usage-remix-documents,
.usage-remix-faq {
  padding: 60px 20px;
  position: relative;
}

.usage-remix-recipient {
  background: #fff;
}

.usage-remix-recipient-inner,
.usage-remix-price-inner,
.usage-remix-doc-grid {
  margin: 0 auto;
  max-width: 900px;
}

.usage-remix-recipient-inner {
  background: #fff;
  border: 2px solid #e4f1d9;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(69, 46, 26, .09);
  padding: 24px 18px;
}

.usage-remix-recipient-inner p {
  color: #65584f;
  font-size: 13px;
  line-height: 2;
  margin: 0 0 12px;
}

.usage-remix-recipient-inner h3 {
  border-left: 5px solid var(--green);
  font-size: 21px;
  line-height: 1.4;
  margin: 24px 0 12px;
  padding-left: 12px;
}

.usage-remix-application {
  counter-reset: step;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.usage-remix-application li {
  align-items: center;
  background: #f7fbf1;
  border-radius: 14px;
  color: #65584f;
  display: grid;
  font-size: 13px;
  gap: 10px;
  grid-template-columns: 38px 1fr;
  line-height: 1.6;
  padding: 12px;
}

.usage-remix-application span {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.usage-remix-price {
  background: #f7fbf1;
}

.usage-remix-price-inner {
  align-items: center;
  display: grid;
  gap: 24px;
}

.usage-remix-price-copy {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(69, 46, 26, .09);
  padding: 24px 18px;
}

.usage-remix-price-copy p {
  color: #65584f;
  font-size: 13px;
  line-height: 2;
  margin: 0;
}

.usage-remix-note {
  background: #fff8e8;
  border-radius: 12px;
  color: #8a6d4f !important;
  margin-top: 12px !important;
  padding: 10px 12px;
}

.usage-remix-price-button {
  background: var(--orange);
  border: 0;
  box-shadow: 0 7px 0 rgba(206, 128, 12, .28);
  color: #fff;
  cursor: pointer;
  margin-top: 18px;
  width: 100%;
}

.usage-remix-price-inner > img {
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(69, 46, 26, .11);
  height: 220px;
  object-fit: cover;
  object-position: center 38%;
  width: 100%;
}

.usage-remix-documents {
  background: #fff;
}

.usage-remix-doc-grid {
  display: grid;
  gap: 16px;
}

.usage-remix-doc-grid article {
  background: #fff;
  border: 2px solid #e4f1d9;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(69, 46, 26, .08);
  padding: 20px 18px;
  position: relative;
}

.usage-remix-doc-grid article::after {
  background: #f7fbf1;
  border-radius: 9px;
  color: var(--green);
  content: "PDF";
  font-size: 12px;
  padding: 6px 8px;
  position: absolute;
  right: 16px;
  top: 16px;
}

.usage-remix-doc-grid span {
  color: var(--green);
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
}

.usage-remix-doc-grid h3 {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 48px 8px 0;
}

.usage-remix-doc-grid p {
  color: #65584f;
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

.usage-remix-doc-grid .doc-year-links {
  margin-top: 14px;
}

.usage-remix-faq {
  background: #f7fbf1;
}

@media (min-width: 960px) {
  .usage-remix-mv {
    padding: 42px clamp(44px, 7vw, 108px) 96px;
  }

  .usage-remix-mv-photo {
    border-radius: 40px 40px 150px 40px;
    height: 430px;
    margin: 0 auto;
    max-width: 1180px;
  }

  .usage-remix-mv-title {
    height: 230px;
    left: clamp(78px, 12vw, 170px);
    top: 230px;
    width: 230px;
  }

  .usage-remix-mv-title span {
    font-size: 36px;
  }

  .usage-remix-mv-title small {
    font-size: 13px;
  }

  .usage-circle-top {
    height: 240px;
    right: clamp(-70px, -4vw, -42px);
    top: -80px;
    width: 240px;
  }

  .usage-circle-bottom {
    bottom: -70px;
    height: 190px;
    left: clamp(-72px, -3vw, -40px);
    width: 190px;
  }

  .usage-remix-title {
    font-size: 38px;
    margin-bottom: 46px;
  }

  .usage-remix-flow {
    padding: 92px clamp(44px, 7vw, 108px) 96px;
  }

  .usage-remix-flow-container {
    max-width: 980px;
  }

  .usage-remix-flow-container::before {
    width: 8px;
  }

  .usage-remix-box {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: 270px 1fr;
    margin-bottom: 42px;
    max-width: 880px;
    min-height: 145px;
    padding: 28px 34px;
  }

  .usage-remix-box::before {
    height: 30px;
    top: 50%;
    width: 30px;
  }

  .usage-remix-box:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
  }

  .usage-remix-box:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }

  .usage-remix-box dt {
    font-size: 25px;
    margin: 0;
    text-align: left;
  }

  .usage-remix-box dd {
    font-size: 15px;
  }

  .usage-remix-contact-buttons {
    grid-template-columns: repeat(2, minmax(0, 220px));
  }

  .usage-remix-branch {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 42px;
    max-width: 760px;
  }

  .usage-remix-branch > p,
  .usage-remix-branch dl {
    padding: 28px;
  }

  .usage-remix-recipient,
  .usage-remix-price,
  .usage-remix-documents,
  .usage-remix-faq {
    padding: 92px clamp(44px, 7vw, 108px);
  }

  .usage-remix-recipient-inner {
    padding: 42px 50px;
  }

  .usage-remix-recipient-inner p,
  .usage-remix-price-copy p {
    font-size: 15px;
  }

  .usage-remix-application {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .usage-remix-application li {
    align-content: start;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .usage-remix-price-inner {
    gap: 38px;
    grid-template-columns: 1.1fr .9fr;
    max-width: 980px;
  }

  .usage-remix-price-copy {
    padding: 38px 42px;
  }

  .usage-remix-price-button {
    max-width: 280px;
  }

  .usage-remix-price-inner > img {
    height: 330px;
  }

  .usage-remix-doc-grid {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 960px;
  }
}

/* Refined connected flow diagram */
.usage-remix-flow-container {
  --flow-axis: 24px;
  display: grid;
  gap: 0;
  max-width: 860px;
}

.usage-remix-flow-container::before {
  bottom: 28px;
  left: var(--flow-axis);
  top: 28px;
  transform: none;
  width: 6px;
  z-index: 0;
}

.usage-remix-step {
  display: grid;
  gap: 14px;
  grid-template-columns: 54px minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.usage-remix-step + .usage-remix-step {
  margin-top: 26px;
}

.usage-remix-marker {
  align-items: center;
  align-self: start;
  background: #72b74a;
  border: 7px solid #f7fbf1;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(72, 122, 45, .2);
  color: #fff;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  justify-self: center;
  position: relative;
  width: 54px;
  z-index: 3;
}

.usage-remix-step:nth-of-type(even) .usage-remix-marker {
  background: #f7a51b;
  box-shadow: 0 8px 16px rgba(225, 134, 16, .2);
}

.usage-remix-box,
.usage-remix-branch {
  grid-column: 2;
  margin: 0;
  max-width: none;
}

.usage-remix-box::before {
  content: none;
}

.usage-remix-box {
  border: 2px solid rgba(114, 183, 74, .18);
}

.usage-remix-branch {
  gap: 12px;
}

.usage-remix-documents {
  display: none;
}

.usage-flow-illust {
  display: none;
}

@media (max-width: 430px) {
  .usage-remix-flow {
    padding-left: 16px;
    padding-right: 16px;
  }

  .usage-remix-flow-container {
    --flow-axis: 22px;
  }

  .usage-remix-step {
    gap: 10px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .usage-remix-marker {
    border-width: 6px;
    font-size: 12px;
    height: 48px;
    width: 48px;
  }

  .usage-remix-box {
    padding: 22px 16px;
  }
}

@media (min-width: 960px) {
  .usage-remix-flow-container {
    --flow-axis: 42px;
    max-width: 820px;
  }

  .usage-remix-flow-container::before {
    bottom: 42px;
    left: var(--flow-axis);
    top: 34px;
    transform: none;
    width: 8px;
  }

  .usage-remix-step {
    align-items: start;
    gap: 26px;
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .usage-remix-step + .usage-remix-step {
    margin-top: 28px;
  }

  .usage-remix-marker {
    border-width: 8px;
    font-size: 16px;
    grid-column: 1;
    height: 76px;
    width: 76px;
  }

  .usage-remix-box,
  .usage-remix-branch {
    grid-column: 2;
    max-width: none;
  }

  .usage-remix-step .usage-remix-box {
    display: block;
    margin: 0;
    min-height: 136px;
    padding: 28px 32px;
  }

  .usage-remix-step .usage-remix-box dt {
    font-size: 24px;
    margin: 0 0 14px;
    text-align: left;
  }

  .usage-remix-step .usage-remix-box dd {
    font-size: 15px;
  }

  .usage-remix-step-branch .usage-remix-branch {
    grid-template-columns: 1fr;
  }

  .usage-remix-step-branch .usage-remix-branch > p,
  .usage-remix-step-branch .usage-remix-branch dt {
    font-size: 24px;
    margin: 0;
    text-align: left;
  }

  .usage-remix-step-branch .usage-remix-branch dd,
  .usage-remix-step-branch .usage-remix-branch ul {
    font-size: 15px;
  }

  .usage-remix-flow {
    background:
      radial-gradient(circle at 88% 16%, rgba(255, 232, 174, .68) 0 34px, transparent 35px),
      radial-gradient(circle at 82% 76%, rgba(226, 244, 214, .9) 0 58px, transparent 59px),
      linear-gradient(180deg, #f7fbf3 0%, #f9fdf5 55%, #fff8ec 100%);
  }

  .usage-remix-flow::before,
  .usage-remix-flow::after {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 0;
  }

  .usage-remix-flow::before {
    background:
      radial-gradient(circle, rgba(250, 198, 89, .2) 0 16px, transparent 17px),
      radial-gradient(circle, rgba(244, 129, 132, .14) 0 11px, transparent 12px),
      radial-gradient(circle, rgba(114, 183, 74, .16) 0 9px, transparent 10px);
    background-position: 0 0, 74px 70px, 142px 20px;
    background-repeat: no-repeat;
    height: 120px;
    right: clamp(40px, 8vw, 132px);
    top: 154px;
    width: 190px;
  }

  .usage-remix-flow::after {
    border: 10px solid rgba(143, 202, 109, .14);
    border-radius: 50%;
    bottom: 86px;
    height: 150px;
    right: clamp(12px, 5vw, 82px);
    width: 150px;
  }
}
