:root {
  --navy: #233248;
  --coral: #e67f64;
  --teal: #528a93;
  --sand: #f3e1cd;
  --cream: #f9efe2;
  --white: #fff;
  --shadow: 0 8px 32px rgb(0 0 0 / 18%);
  --radius: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--navy); background: var(--sand); font-family: "Noto Sans JP", sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.desktop-only { display: inline; }

.site-header { position: absolute; z-index: 20; top: 0; left: 0; display: flex; align-items: center; width: 100%; height: 105px; padding: 28px 4%; }
.site-logo { width: 179px; }
.site-logo img { width: 100%; height: auto; }
.global-nav { display: flex; gap: 32px; margin-left: 8.3vw; font-family: "Josefin Sans", sans-serif; font-size: 20px; font-weight: 500; }
.global-nav a { position: relative; padding-block: 10px; }
.global-nav a::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transition: transform .25s; }
.global-nav a:hover::after, .global-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.floating-line-cta { position: fixed; z-index: 100; right: 24px; bottom: 28px; display: flex; min-width: 270px; min-height: 70px; gap: 12px; align-items: center; justify-content: center; padding: 15px 22px; color: white; background: var(--coral); border: 3px solid var(--cream); border-radius: 22px; box-shadow: 0 10px 28px rgb(35 50 72 / 30%), 0 0 0 2px var(--coral), inset 0 0 0 1px rgb(255 255 255 / 70%); font-size: 18px; font-weight: 700; opacity: 0; visibility: hidden; transform: translateY(18px); transition: opacity .35s, visibility .35s, transform .35s, filter .2s; }
.floating-line-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-line-cta:hover, .floating-line-cta:focus-visible { filter: brightness(1.08); transform: translateY(-3px); }
.floating-line-cta img { width: 28px; height: 28px; }
.floating-line-cta > span:last-child { margin-left: 4px; font-size: 26px; font-weight: 400; line-height: 1; }

.hero { --hero-parallax-y: 0px; position: relative; min-height: 943px; overflow: hidden; background: url("../images/hero-bg.png") center calc(50% + var(--hero-parallax-y)) / cover no-repeat; }
.hero::after { position: absolute; inset: 0; content: ""; background: rgb(255 255 255 / 10%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; width: min(100%, 1440px); min-height: 943px; margin: 0 auto; }
.hero-copy-block { position: absolute; top: 236px; left: 3.9%; width: 488px; }
.hero-copy-image {
  width: 112%;
  max-width: none;
  height: 315px;
  margin-left: -3%;
  object-fit: cover;
  object-position: center 39%;
}
.hero-star-sparkle {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 112%;
  max-width: none;
  height: 315px;
  margin-left: -3%;
  object-fit: cover;
  object-position: center 39%;
  clip-path: circle(9.5% at 88% 51%);
  animation: hero-star-glow 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-star-glow {
  0%, 100% { opacity: .05; filter: brightness(1); }
  42% { opacity: 1; filter: brightness(1.75) saturate(1.2) drop-shadow(0 0 7px rgb(255 190 62 / 80%)); }
  58% { opacity: .3; filter: brightness(1.2); }
}
.hero-lead { margin: 42px 0 44px; font-size: 24px; font-weight: 500; line-height: 1.5; }
.hero-lead span { color: var(--coral); font-size: 32px; }
.hero-decoration { position: absolute; top: 215px; left: 43%; width: 250px; opacity: .72; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; padding: 14px 64px; border-radius: 18px; font-size: 20px; font-weight: 500; transition: transform .25s, box-shadow .25s, filter .25s; }
.button:hover, .button:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 24px rgb(35 50 72 / 20%); filter: brightness(1.04); }
.button img { width: 24px; height: 24px; }
.button-primary { width: 100%; min-height: 74px; color: white; background: var(--coral); border: 2px solid var(--coral); box-shadow: inset 0 0 0 1px white; font-size: 24px; letter-spacing: .1em; }
.button-secondary { color: white; background: var(--teal); }

.section { position: relative; padding: 140px 3.6%; }
.section-kicker { margin: 0; font-family: "Josefin Sans", sans-serif; font-size: 24px; font-weight: 500; }
.about { padding-block: 120px; }
.about-card {
  display: flex;
  align-items: center;
  width: min(1336px, 100%);
  min-height: 745px;
  margin: 0 auto;
  padding-left: 48px;
  overflow: visible;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-copy {
  position: relative;
  z-index: 1;
  flex: 0 0 559px;
  min-width: 0;
  padding-left: 0;
}
.about-copy .section-kicker { margin-bottom: 18px; }
.about-copy-art { position: relative; width: 492px; height: 271px; }
.about-copy-art > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-star-sparkle { position: absolute; inset: 0; z-index: 2; max-width: none; clip-path: circle(9.5% at 95.5% 46%); animation: hero-star-glow 2.2s -.65s ease-in-out infinite; pointer-events: none; }
.about-text {
  width: 559px;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
.about-text p { margin: 0 0 18px; }
.about-visual {
  align-self: stretch;
  flex: 0 0 737px;
  width: 737px;
  height: 730px;
  min-width: 0;
  margin-left: -8px;
  object-fit: contain;
  object-position: center;
}
.about-visual.is-reveal-ready {
  opacity: 0;
  transform: translateY(48px) scale(.975);
  transition: opacity .85s ease, transform 1s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.about-visual.is-reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.flow { scroll-margin-top: 64px; text-align: center; }
.flow-heading { position: relative; width: min(505px, 100%); margin: 0 auto 64px; }
.flow-title-art { position: relative; width: 100%; height: 111px; }
.flow-title-art img { width: 100%; height: 111px; object-fit: cover; object-position: center; }
.flow-title-base { position: relative; z-index: 0; }
.flow-title-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.flow-title-star { clip-path: circle(9.5% at 95% 47%); animation: hero-star-glow 2.2s -1.1s ease-in-out infinite; }
.flow-content { position: relative; width: min(1299px, 100%); margin: 0 auto; transform: translateX(-3%); }
.flow-illustrations {
  display: block;
  width: 114%;
  max-width: none;
  height: 280px;
  margin: 0 0 24px -3.5%;
  object-fit: cover;
  object-position: center 45%;
}
.flow-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.flow-card { display: flex; min-height: 186px; gap: 20px; align-items: flex-start; padding: 27px 18px; text-align: left; background: var(--cream); border: 1px solid var(--coral); border-radius: 18px; box-shadow: 0 2px 6px rgb(0 0 0 / 18%); }
.flow-card-illustration { display: none; }
.flow-card-body { min-width: 0; }
.flow-card-heading { display: flex; gap: 20px; align-items: flex-start; }
.flow-list.is-reveal-ready .flow-card { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .75s cubic-bezier(.22, 1, .36, 1); }
.flow-list.is-reveal-ready.is-visible .flow-card { opacity: 1; transform: translateY(0); }
.flow-list.is-visible .flow-card:nth-child(2) { transition-delay: .09s; }
.flow-list.is-visible .flow-card:nth-child(3) { transition-delay: .18s; }
.flow-list.is-visible .flow-card:nth-child(4) { transition-delay: .27s; }
.flow-list.is-visible .flow-card:nth-child(5) { transition-delay: .36s; }
.flow-card:nth-child(even) .step-number { color: var(--teal); }
.step-number { display: flex; flex: 0 0 39px; flex-direction: column; color: var(--coral); font-family: "Josefin Sans", sans-serif; font-size: 36px; font-weight: 500; line-height: 1; text-align: center; }
.step-number small { margin-bottom: 2px; font-size: 16px; }
.flow-card h3 { min-height: 53px; margin: 0; color: currentColor; font-size: 18px; line-height: 1.35; }
.flow-card p { margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--coral); color: var(--navy); font-size: 14px; line-height: 1.45; white-space: nowrap; }
.flow-stamp {
  position: absolute;
  top: 30px;
  left: calc(2.9% + 100px);
  width: 290px;
  height: 189px;
  object-fit: cover;
  object-position: center;
  transform: translateY(30px);
  animation: flow-sign-glow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes flow-sign-glow {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 5px rgb(255 111 105 / 28%)); }
  42% { filter: brightness(1.08) drop-shadow(0 0 10px rgb(255 111 105 / 52%)); }
  48% { filter: brightness(1.22) drop-shadow(0 0 18px rgb(255 236 190 / 85%)); }
  54% { filter: brightness(1.06) drop-shadow(0 0 9px rgb(255 111 105 / 48%)); }
  72% { filter: brightness(1.14) drop-shadow(0 0 14px rgb(255 193 164 / 68%)); }
}

@media (prefers-reduced-motion: reduce) {
  .flow-stamp, .hero-star-sparkle, .about-star-sparkle, .flow-title-star { animation: none; }
  .hero { --hero-parallax-y: 0px !important; }
  .flow-list.is-reveal-ready .flow-card { opacity: 1; transform: none !important; transition: none; }
  .floating-line-cta { transition: none; }
}

.news { display: flex; flex-direction: column; gap: 48px; align-items: center; }
.news-card { display: flex; align-items: center; width: min(1336px, 100%); min-height: 336px; padding: 48px; background: var(--cream); border-radius: var(--radius); box-shadow: 0 8px 16px rgb(0 0 0 / 18%); }
.news-title-group { display: flex; flex: 0 0 403px; align-items: flex-start; }
.news-title-group > div { flex: 0 0 240px; }
.news-title-group > div > img { width: 240px; height: 110px; object-fit: cover; }
.news-title-group > img { width: 163px; height: 240px; object-fit: contain; transform: translateX(-20px); }
.news-list { flex: 1; padding: 0 18px; }
.news-item { display: grid; grid-template-columns: 100px 1fr; gap: 40px; padding: 30px 0; border-bottom: 1px solid var(--coral); font-family: "Josefin Sans", "Noto Sans JP", sans-serif; font-size: 20px; transition: color .2s, padding-left .2s; }
.news-item:first-child { padding-top: 0; }
.news-item:last-child { padding-bottom: 0; border-bottom: 0; }
.news-item:hover, .news-item:focus-visible { padding-left: 8px; color: var(--coral); }
.news-right { width: 228px; height: 252px; object-fit: contain; transform: translateX(-12px); }

.contact { position: relative; display: grid; min-height: 879px; place-items: center; overflow: hidden; background: url("../images/contact-bg.png") center / cover no-repeat; }
.contact-box { position: relative; z-index: 2; width: min(902px, calc(100% - 40px)); padding: 88px 62px; text-align: center; background: var(--cream); border-radius: var(--radius); box-shadow: inset 0 0 0 11px var(--cream), inset 0 0 0 12px var(--coral); }
.contact-title { width: 106%; max-width: none; height: 104px; margin-left: -3%; object-fit: cover; object-position: center; }
.contact-box p { margin: 18px 0 48px; font-size: 16px; line-height: 1.5; }
.contact-actions { display: grid; grid-template-columns: 1.12fr .88fr; gap: 18px; width: 100%; }
.contact-box .button { width: 100%; max-width: 100%; padding-inline: 28px; font-size: 20px; letter-spacing: .04em; }
.button-faq { position: relative; color: var(--navy); background: var(--cream); border: 2px solid var(--teal); box-shadow: inset 0 0 0 1px rgb(82 138 147 / 18%); }
.button-faq-icon { display: grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; color: white; background: var(--teal); border-radius: 50%; font-family: "Josefin Sans", sans-serif; font-size: 16px; letter-spacing: 0; }
.button-faq-arrow { margin-left: auto; color: var(--teal); font-size: 32px; font-weight: 400; line-height: 1; }
.button-faq:hover, .button-faq:focus-visible { color: var(--navy); background: rgb(255 255 255 / 34%); border-color: var(--coral); }
.contact-decoration { position: absolute; z-index: 1; right: 0; bottom: 0; width: 536px; }

.site-footer { position: relative; padding: 48px 5%; background: var(--sand); }
.footer-to-top { position: absolute; z-index: 3; top: -34px; right: 12px; display: flex; width: 68px; height: 68px; flex-direction: column; align-items: center; justify-content: center; color: var(--navy); background: var(--cream); border: 1px solid var(--coral); border-radius: 50%; box-shadow: 0 5px 16px rgb(35 50 72 / 16%); transition: color .25s, background .25s, transform .25s, box-shadow .25s; }
.footer-to-top span { margin-bottom: -2px; color: var(--coral); font-size: 22px; line-height: 1; transition: transform .25s; }
.footer-to-top small { font-family: "Josefin Sans", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .08em; }
.footer-to-top:hover, .footer-to-top:focus-visible { color: white; background: var(--coral); transform: translateY(-5px); box-shadow: 0 10px 22px rgb(35 50 72 / 20%); }
.footer-to-top:hover span, .footer-to-top:focus-visible span { color: white; transform: translateY(-2px); }
.footer-inner { display: flex; width: min(1003px, 100%); margin: 0 auto; gap: 64px; align-items: flex-start; }
.footer-logo { flex: 0 0 179px; }
.footer-social { display: flex; flex: 0 0 220px; flex-direction: column; gap: 20px; }
.footer-social a { display: flex; gap: 10px; align-items: center; font-size: 16px; white-space: nowrap; }
.footer-social img { width: 24px; height: 24px; }
.footer-nav { display: flex; min-height: 175px; gap: 40px; }
.footer-nav > div { display: flex; flex-direction: column; min-width: 180px; gap: 20px; padding-left: 40px; border-left: 1px solid var(--coral); }
.footer-nav a { font-size: 16px; }
.footer-nav a:hover, .footer-nav a:focus-visible, .footer-social a:hover, .footer-social a:focus-visible { color: var(--coral); }

.privacy-page { background: var(--sand); }
.privacy-header { position: relative; background: rgb(249 239 226 / 92%); border-bottom: 1px solid rgb(230 127 100 / 25%); }
.privacy-main { padding: 88px 3.6% 140px; }
.privacy-hero { width: min(980px, 100%); margin: 0 auto 48px; text-align: center; }
.privacy-hero .section-kicker { color: var(--coral); letter-spacing: .12em; }
.privacy-hero h1 { margin: 14px 0 24px; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.3; }
.privacy-hero > p:last-child { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 2; text-align: left; }
.privacy-content { width: min(980px, 100%); margin: 0 auto; padding: 64px 76px; background: var(--cream); border: 1px solid var(--coral); border-radius: var(--radius); box-shadow: var(--shadow); }
.privacy-content section { padding: 0 0 42px; margin: 0 0 42px; border-bottom: 1px solid rgb(230 127 100 / 35%); }
.privacy-content h2 { display: flex; gap: 18px; align-items: baseline; margin: 0 0 20px; font-size: 23px; line-height: 1.55; }
.privacy-content h2 span { flex: 0 0 auto; color: var(--coral); font-family: "Josefin Sans", sans-serif; font-size: 32px; font-weight: 500; }
.privacy-content p, .privacy-content li { font-size: 16px; line-height: 2; }
.privacy-content p { margin: 0; }
.privacy-content ul { display: grid; gap: 7px; margin: 18px 0 0; padding-left: 1.4em; }
.privacy-content li::marker { color: var(--coral); }
.privacy-contact { padding: 26px 30px; margin-top: 20px; background: var(--sand); border-radius: 18px; }
.privacy-contact strong { display: block; margin-bottom: 8px; font-size: 18px; }
.privacy-contact .button { width: auto; min-height: 52px; margin-top: 22px; padding-inline: 34px; font-size: 16px; }
.privacy-date { text-align: right; color: rgb(35 50 72 / 75%); }

.faq-page { background: var(--sand); }
.faq-main { padding: 88px 3.6% 140px; }
.faq-hero { width: min(980px, 100%); margin: 0 auto 48px; text-align: center; }
.faq-hero .section-kicker { color: var(--coral); letter-spacing: .12em; }
.faq-hero h1 { margin: 14px 0 18px; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.3; }
.faq-hero > p:last-child { margin: 0; font-size: 17px; line-height: 2; }
.faq-list { display: grid; width: min(980px, 100%); margin: 0 auto; gap: 18px; }
.faq-item { overflow: hidden; background: var(--cream); border: 1px solid var(--coral); border-radius: 22px; box-shadow: 0 4px 14px rgb(35 50 72 / 10%); }
.faq-item summary { position: relative; display: flex; min-height: 88px; gap: 18px; align-items: center; padding: 22px 76px 22px 26px; font-size: 18px; font-weight: 700; line-height: 1.65; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 50%; right: 28px; width: 30px; height: 30px; border: 1px solid var(--coral); border-radius: 50%; color: var(--coral); content: "+"; font-size: 24px; font-weight: 400; line-height: 27px; text-align: center; transform: translateY(-50%); }
.faq-item[open] summary::after { content: "−"; }
.faq-mark { display: grid; flex: 0 0 44px; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: white; background: var(--coral); font-family: "Josefin Sans", sans-serif; font-size: 20px; }
.faq-answer { display: flex; gap: 18px; align-items: flex-start; padding: 24px 76px 28px 26px; border-top: 1px solid rgb(230 127 100 / 35%); background: rgb(255 255 255 / 24%); }
.faq-answer .faq-mark { background: var(--teal); }
.faq-answer p { margin: 4px 0 0; font-size: 16px; line-height: 2; }
.faq-cta { width: min(760px, 100%); margin: 56px auto 0; padding: 42px 48px; text-align: center; background: var(--cream); border-radius: var(--radius); box-shadow: var(--shadow); }
.faq-cta p { margin: 0 0 26px; font-size: 16px; line-height: 1.9; }
.faq-cta .button { width: min(488px, 100%); }

.news-page { background: var(--sand); }
.news-main { min-height: 720px; padding: 88px 3.6% 140px; }
.news-archive-hero { width: min(1040px, 100%); margin: 0 auto 48px; text-align: center; }
.news-archive-hero .section-kicker { color: var(--coral); letter-spacing: .12em; }
.news-archive-hero h1 { margin: 14px 0 18px; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.3; }
.news-archive-hero > p:last-child { margin: 0; font-size: 17px; line-height: 2; }
.news-archive-list { width: min(1040px, 100%); margin: 0 auto; overflow: hidden; background: var(--cream); border: 1px solid var(--coral); border-radius: var(--radius); box-shadow: var(--shadow); }
.news-archive-item { display: grid; grid-template-columns: 118px 96px 1fr 44px; gap: 24px; align-items: center; min-height: 112px; padding: 24px 34px; border-bottom: 1px solid rgb(230 127 100 / 35%); transition: color .2s, background .2s; }
.news-archive-item[hidden] { display: none; }
.news-archive-item:last-child { border-bottom: 0; }
.news-archive-item:hover, .news-archive-item:focus-visible { color: var(--coral); background: rgb(255 255 255 / 35%); }
.news-archive-item time { font-family: "Josefin Sans", sans-serif; font-size: 18px; }
.news-category { display: inline-flex; justify-content: center; padding: 7px 12px; color: var(--coral); border: 1px solid currentColor; border-radius: 999px; font-size: 13px; }
.news-archive-item strong { font-size: 17px; line-height: 1.7; }
.news-arrow { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--navy); background: rgb(230 127 100 / 20%); font-size: 20px; transition: transform .2s; }
.news-archive-item:hover .news-arrow { transform: translateX(4px); }
.pagination { display: flex; min-height: 48px; justify-content: center; gap: 10px; margin-top: 42px; }
.pagination a { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--coral); border-radius: 50%; font-family: "Josefin Sans", sans-serif; font-size: 17px; }
.pagination a[aria-current="page"], .pagination a:hover, .pagination a:focus-visible { color: white; background: var(--coral); }
.pagination .page-numbers { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--coral); border-radius: 50%; font-family: "Josefin Sans", sans-serif; font-size: 17px; }
.pagination .page-numbers.current, .pagination a.page-numbers:hover, .pagination a.page-numbers:focus-visible { color: white; background: var(--coral); }
.news-empty { margin: 0; padding: 48px 34px; text-align: center; }

.news-detail-page { background: var(--sand); }
.news-detail-main { padding: 48px 3.6% 140px; }
.breadcrumb { display: flex; width: min(980px, 100%); gap: 10px; margin: 0 auto 34px; align-items: center; overflow: hidden; color: rgb(35 50 72 / 70%); font-size: 13px; white-space: nowrap; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--coral); }
.breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }
.news-article { width: min(980px, 100%); margin: 0 auto; overflow: hidden; background: var(--cream); border: 1px solid var(--coral); border-radius: var(--radius); box-shadow: var(--shadow); }
.news-article-header { padding: 62px 76px 48px; background: linear-gradient(135deg, rgb(230 127 100 / 11%), rgb(82 138 147 / 8%)); border-bottom: 1px solid rgb(230 127 100 / 35%); }
.news-article-header .section-kicker { margin-bottom: 22px; color: var(--coral); letter-spacing: .12em; }
.news-article-meta { display: flex; gap: 18px; align-items: center; margin-bottom: 20px; }
.news-article-meta time { font-family: "Josefin Sans", sans-serif; font-size: 18px; }
.news-article-header h1 { margin: 0; font-size: clamp(28px, 3.5vw, 44px); line-height: 1.55; }
.mobile-break { display: none; }
.news-article-body { padding: 58px 76px 72px; color: #263447; }
.news-article-body > p { margin: 0 0 25px; font-size: 16px; line-height: 2.05; }
.news-article-body h2 { position: relative; margin: 54px 0 22px; padding: 0 0 15px 18px; border-bottom: 1px solid rgb(230 127 100 / 45%); font-size: 24px; line-height: 1.6; }
.news-article-body h2::before { position: absolute; top: .15em; bottom: calc(.15em + 15px); left: 0; width: 4px; content: ""; background: var(--coral); border-radius: 4px; }
.news-article-body ul { display: grid; gap: 11px; margin: 24px 0 30px; padding: 24px 30px 24px 52px; background: var(--sand); border-radius: 16px; }
.news-article-body li { font-size: 16px; line-height: 1.8; }
.news-article-body li::marker { color: var(--coral); }
.news-article-thumbnail { margin: 0 0 42px; }
.news-article-thumbnail img { width: 100%; height: auto; border-radius: 20px; }
.news-article-note { margin: 34px 0; padding: 26px 30px; border-left: 5px solid var(--teal); background: rgb(82 138 147 / 9%); border-radius: 0 16px 16px 0; }
.news-article-note p { margin: 0; font-size: 16px; line-height: 2; }
.news-article-line { display: flex; width: min(520px, 100%); margin: 34px auto 42px; }
.news-back-link { display: flex; width: fit-content; gap: 10px; margin: 40px auto 0; align-items: center; font-size: 16px; font-weight: 700; }
.news-back-link:hover, .news-back-link:focus-visible { color: var(--coral); }

@media (max-width: 1100px) {
  .global-nav { gap: 20px; margin-left: auto; font-size: 17px; }
  .hero-decoration { display: none; }
  .flow-card { flex-direction: column; gap: 10px; }
  .news-title-group { flex-basis: 300px; }
  .news-title-group > img { display: none; }
  .footer-inner { gap: 30px; }
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-visual.is-reveal-ready,
  .about-visual.is-reveal-ready.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 767px) {
  .desktop-only { display: none; }
  .site-header { position: absolute; height: 76px; padding: 18px 20px; }
  .site-logo { width: 112px; }
  .menu-toggle { z-index: 2; display: flex; width: 44px; height: 44px; margin-left: auto; padding: 9px; flex-direction: column; justify-content: center; gap: 5px; color: var(--navy); background: rgb(249 239 226 / 82%); border: 0; border-radius: 50%; }
  .menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .global-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; margin: 0; background: rgb(249 239 226 / 97%); font-size: 24px; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }

  .floating-line-cta { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); left: 12px; min-width: 0; min-height: 62px; padding: 13px 18px; border-width: 2px; border-radius: 17px; font-size: 17px; }

  .hero, .hero-inner { min-height: max(780px, calc(177.68vw + 100px)); }
  .hero { background-color: #fbe7d4; background-image: url("../images/hero-bg-mobile.png"); background-position: center 100px; background-size: 100% auto; background-repeat: no-repeat; }
  .hero::before { position: absolute; inset: 0; z-index: 0; content: ""; background: linear-gradient(180deg, #fbe7d4 0, #fbe7d4 92px, rgb(251 231 212 / 88%) 132px, rgb(251 231 212 / 32%) 210px, transparent 300px); }
  .hero::after { background: transparent; }
  .hero-copy-block { top: 88px; left: 20px; width: calc(100% - 40px); }
  .hero-copy-block picture { display: block; }
  .hero-copy-image { width: 100%; max-width: none; height: auto; margin-left: 0; object-fit: contain; object-position: center; }
  .hero-star-sparkle { width: 100%; max-width: none; height: auto; margin-left: 0; object-fit: contain; object-position: center; clip-path: circle(10% at 85% 50%); }
  .hero-lead { margin: 14px 0 24px; font-size: 15px; line-height: 1.45; }
  .hero-lead span { font-size: 22px; }
  .hero-copy-block .button-primary { width: min(100%, 350px); }
  .hero-decoration { display: none; }
  .button { width: 100%; min-height: 56px; padding: 13px 24px; font-size: 16px; }
  .button-primary { min-height: 62px; font-size: 17px; }

  .section { padding: 64px 20px; }
  .section-kicker { font-size: 18px; }
  .about { padding-block: 48px; }
  .about-card { display: flex; min-height: 0; flex-direction: column; padding: 30px 22px 0; border-radius: 24px; }
  .about-copy { flex: none; width: 100%; padding: 0; }
  .about-copy .section-kicker { margin-bottom: 12px; }
  .about-copy-art { width: 100%; height: 180px; }
  .about-star-sparkle { clip-path: circle(10% at 95.5% 46%); }
  .about-text { font-size: 14px; line-height: 1.75; }
  .about-text p { margin-bottom: 16px; }
  .about-visual { flex: none; width: calc(100% + 44px); max-width: none; height: auto; margin: 12px -22px 0; object-fit: contain; }

  .flow-heading { margin-bottom: 28px; }
  .flow-title-art, .flow-title-art img { height: 78px; }
  .flow-stamp { top: 18px; left: 12px; width: 120px; height: 78px; transform: none; }
  .flow-content { transform: none; }
  .flow-illustrations { display: none; }
  .flow-list { grid-template-columns: 1fr; gap: 18px; }
  .flow-card { width: min(100%, 390px); min-height: 185px; margin-inline: auto; flex-direction: row; gap: clamp(8px, 2.7vw, 12px); align-items: center; justify-content: center; padding: 27px clamp(14px, 4.5vw, 18px); }
  .flow-card-illustration { position: relative; display: block; flex: 0 0 clamp(96px, 30vw, 119px); width: clamp(96px, 30vw, 119px); height: 123px; overflow: hidden; }
  .flow-card-illustration img { position: absolute; top: -75px; width: 735px; max-width: none; height: 284px; }
  .flow-card:nth-child(1) .flow-card-illustration img { left: -24px; }
  .flow-card:nth-child(2) .flow-card-illustration img { left: -172px; }
  .flow-card:nth-child(3) .flow-card-illustration img { left: -313px; }
  .flow-card:nth-child(4) .flow-card-illustration img { left: -453px; }
  .flow-card:nth-child(5) .flow-card-illustration img { left: -594px; }
  .flow-card-body { flex: 0 1 198px; min-width: 0; }
  .flow-card-heading { gap: clamp(10px, 4vw, 21px); align-items: center; }
  .flow-list.is-reveal-ready .flow-card { transform: translateY(14px); }
  .flow-list.is-reveal-ready.is-visible .flow-card { transform: translateY(0); }
  .flow-card h3 { min-height: 0; color: var(--coral); font-size: 20px; font-weight: 500; line-height: 1.3; white-space: nowrap; }
  .flow-card:nth-child(even) h3 { color: var(--teal); }
  .flow-card p { margin-top: 18px; padding-top: 18px; font-size: clamp(14px, 4vw, 16px); line-height: 1.3; white-space: normal; }

  .news-card { flex-direction: column; align-items: stretch; min-height: 0; padding: 28px 22px; border-radius: 24px; }
  .news-title-group { flex: none; justify-content: center; width: 100%; }
  .news-title-group > div { flex-basis: 220px; text-align: center; }
  .news-title-group > div > img { width: 220px; height: 92px; }
  .news-list { padding: 24px 0 0; }
  .news-item { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; font-size: 15px; }
  .news-right { display: none; }

  .contact { min-height: 650px; padding: 60px 20px 160px; background-position: center; }
  .contact-box { width: 100%; padding: 50px 24px; border-radius: 24px; box-shadow: inset 0 0 0 7px var(--cream), inset 0 0 0 8px var(--coral); }
  .contact-title { width: 100%; height: 70px; margin-left: 0; }
  .contact-box p { margin: 18px 0 30px; font-size: 14px; text-align: left; }
  .contact-actions { grid-template-columns: 1fr; gap: 12px; }
  .contact-box .button { min-height: 60px; padding-inline: 20px; font-size: 16px; }
  .contact-decoration { width: 270px; }

  .site-footer { padding: 40px 24px; }
  .footer-to-top { top: -28px; right: 8px; width: 58px; height: 58px; }
  .footer-to-top span { font-size: 19px; }
  .footer-to-top small { font-size: 10px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-logo { flex: none; width: 150px; }
  .footer-social { flex: none; gap: 16px; }
  .footer-nav { width: 100%; min-height: 0; gap: 24px; }
  .footer-nav > div { min-width: 0; flex: 1; padding: 0; border: 0; gap: 14px; }
  .footer-nav > div + div { padding-left: 20px; border-left: 1px solid var(--coral); }
  .footer-nav a { font-size: 14px; }

  .privacy-main { padding: 112px 20px 80px; }
  .privacy-hero { margin-bottom: 30px; }
  .privacy-hero h1 { margin-block: 10px 18px; font-size: 30px; }
  .privacy-hero > p:last-child { font-size: 14px; line-height: 1.85; }
  .privacy-content { padding: 36px 22px; border-radius: 24px; }
  .privacy-content section { padding-bottom: 30px; margin-bottom: 30px; }
  .privacy-content h2 { gap: 12px; margin-bottom: 15px; font-size: 18px; }
  .privacy-content h2 span { font-size: 25px; }
  .privacy-content p, .privacy-content li { font-size: 14px; line-height: 1.85; }
  .privacy-contact { padding: 22px 18px; }
  .privacy-contact .button { width: 100%; padding-inline: 16px; }
  .privacy-date { text-align: left; }

  .faq-main { padding: 112px 20px 80px; }
  .faq-hero { margin-bottom: 30px; }
  .faq-hero h1 { margin-block: 10px 14px; font-size: 30px; }
  .faq-hero > p:last-child { font-size: 14px; line-height: 1.8; }
  .faq-list { gap: 12px; }
  .faq-item { border-radius: 18px; }
  .faq-item summary { min-height: 76px; gap: 12px; padding: 17px 52px 17px 16px; font-size: 15px; line-height: 1.6; }
  .faq-item summary::after { right: 16px; width: 27px; height: 27px; font-size: 21px; line-height: 24px; }
  .faq-mark { flex-basis: 36px; width: 36px; height: 36px; font-size: 17px; }
  .faq-answer { gap: 12px; padding: 19px 17px 22px 16px; }
  .faq-answer p { margin-top: 1px; font-size: 14px; line-height: 1.85; }
  .faq-cta { margin-top: 36px; padding: 34px 22px; border-radius: 24px; }
  .faq-cta p { font-size: 14px; text-align: left; }

  .news-main { padding: 112px 20px 80px; }
  .news-archive-hero { margin-bottom: 30px; }
  .news-archive-hero h1 { margin-block: 10px 14px; font-size: 30px; }
  .news-archive-hero > p:last-child { font-size: 14px; }
  .news-archive-list { border-radius: 24px; }
  .news-archive-item { grid-template-columns: 1fr auto; gap: 8px 14px; min-height: 0; padding: 22px 18px; }
  .news-archive-item time { font-size: 15px; }
  .news-category { justify-self: start; padding: 5px 10px; font-size: 11px; }
  .news-archive-item strong { grid-column: 1; font-size: 15px; }
  .news-arrow { grid-row: 1 / 3; grid-column: 2; width: 36px; height: 36px; }
  .pagination { margin-top: 30px; }
  .pagination a { width: 42px; height: 42px; }
  .pagination .page-numbers { width: 42px; height: 42px; }

  .news-detail-main { padding: 112px 20px 80px; }
  .breadcrumb { margin-bottom: 22px; font-size: 11px; }
  .news-article { border-radius: 24px; }
  .news-article-header { padding: 38px 22px 32px; }
  .news-article-header .section-kicker { margin-bottom: 17px; font-size: 17px; }
  .news-article-meta { margin-bottom: 15px; }
  .news-article-meta time { font-size: 15px; }
  .news-article-header h1 { font-size: 24px; line-height: 1.65; }
  .mobile-break { display: block; }
  .news-article-body { padding: 34px 22px 45px; }
  .news-article-body > p, .news-article-body li, .news-article-note p { font-size: 14px; line-height: 1.9; }
  .news-article-body h2 { margin: 40px 0 18px; padding: 0 0 12px 13px; font-size: 19px; }
  .news-article-body ul { padding: 20px 18px 20px 38px; }
  .news-article-note { padding: 20px 18px; }
  .news-article-line { margin-block: 28px 34px; }
  .news-back-link { margin-top: 30px; font-size: 14px; }
}
