:root {
  --color-sky: #8ed7f8;
  --color-sky-soft: #dff5ff;
  --color-cream: #fff2d9;
  --color-cream-deep: #ffe5bd;
  --color-paper: #fffaf1;
  --color-paper-white: #ffffff;
  --color-ink: #5a3f34;
  --color-ink-soft: #876958;
  --color-coral: #f06f62;
  --color-coral-hover: #dc5c52;
  --color-coral-shadow: rgba(240, 111, 98, 0.28);
  --color-mint: #b7e5c5;
  --color-yellow: #ffe28d;
  --color-line: #f3d5b3;
  --color-focus: rgba(240, 111, 98, 0.45);

  --font-jp: "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-hand: "Comic Sans MS", "Hiragino Maru Gothic ProN", cursive;

  --fs-hero: 2.35rem;
  --fs-section: 1.95rem;
  --fs-subtitle: 1.35rem;
  --fs-card-title: 1.06rem;
  --fs-body: 0.98rem;
  --fs-caption: 0.88rem;
  --fs-micro: 0.82rem;

  --container: 1120px;
  --gutter-sp: 20px;
  --gutter-pc: 40px;
  --section-y-sp: 76px;
  --section-y-pc: 112px;
  --radius-card: 24px;
  --radius-photo: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px rgba(114, 82, 54, 0.13);
  --shadow-card: 0 10px 26px rgba(114, 82, 54, 0.1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 70px;
}

@media (min-width: 768px) {
  :root {
    --fs-hero: 3.2rem;
    --fs-section: 2.55rem;
    --fs-subtitle: 1.6rem;
    --fs-card-title: 1.12rem;
    --fs-body: 1rem;
    --header-height: 80px;
  }
}

@media (min-width: 1200px) {
  :root {
    --fs-hero: 3.45rem;
    --fs-section: 3rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  line-height: 1.9;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

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

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

button,
summary {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
  border-radius: 12px;
}

::selection {
  background: var(--color-yellow);
  color: var(--color-ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius-pill);
  background: var(--color-ink);
  color: #fff;
  padding: 10px 16px;
}

.skip-link:focus {
  transform: none;
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.text-chunk {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.container {
  width: min(100%, calc(var(--container) + var(--gutter-sp) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter-sp);
}

.container--narrow {
  max-width: 900px;
}

@media (min-width: 1024px) {
  .container {
    width: min(100%, calc(var(--container) + var(--gutter-pc) * 2));
    padding-inline: var(--gutter-pc);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 241, 0.88);
  border-bottom: 1px solid rgba(243, 213, 179, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 10px 24px rgba(114, 82, 54, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-height);
  width: min(100%, calc(var(--container) + var(--gutter-sp) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter-sp);
}

@media (min-width: 1024px) {
  .site-header__inner {
    width: min(100%, calc(var(--container) + var(--gutter-pc) * 2));
    padding-inline: var(--gutter-pc);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 46px;
  flex: 0 0 44px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(114, 82, 54, 0.12);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand__name {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: var(--color-ink-soft);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--color-coral-hover);
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  border-radius: var(--radius-pill);
  background: var(--color-coral);
  color: #fff;
  padding: 0 15px;
  box-shadow: 0 8px 18px var(--color-coral-shadow);
  font-weight: 800;
  font-size: 0.86rem;
}

.header-cta:hover {
  background: var(--color-coral-hover);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 26px);
  padding-bottom: 84px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(223, 245, 255, 0.78), rgba(255, 250, 241, 0.84) 45%, rgba(255, 242, 217, 0.86)),
    var(--color-paper);
}

.hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(142, 215, 248, 0.22), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(255, 226, 141, 0.22), transparent 26%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  gap: 30px;
}

@media (min-width: 900px) {
  .hero {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 110px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 58px;
  }

  .hero__visual {
    order: 0;
    min-height: 450px;
  }
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px dashed rgba(240, 111, 98, 0.55);
  border-radius: var(--radius-pill);
  color: var(--color-coral-hover);
  background: rgba(255, 250, 241, 0.78);
  padding: 8px 16px;
  font-size: var(--fs-micro);
  font-weight: 800;
}

.badge::before {
  content: "♥";
  margin-right: 8px;
}

.hero__eyebrow,
.section__eyebrow {
  color: var(--color-coral);
  font-family: var(--font-hand);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero__title {
  margin-top: 20px;
  font-size: var(--fs-hero);
  line-height: 1.22;
  font-weight: 900;
}

.hero__lead {
  margin-top: 22px;
  font-size: var(--fs-subtitle);
  line-height: 1.75;
  font-weight: 800;
}

.brand-inline {
  display: inline-block;
  color: var(--color-coral-hover);
}

.hero__body {
  margin-top: 18px;
  color: var(--color-ink-soft);
  font-weight: 700;
}

.hero__actions {
  margin-top: 28px;
}

.marker {
  position: relative;
  z-index: 0;
  display: inline;
}

.marker::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  height: 0.38em;
  background: var(--color-mint);
  z-index: -1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  border-radius: var(--radius-pill);
  padding: 0 28px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.button--primary {
  background: var(--color-coral);
  color: #fff;
  box-shadow: 0 12px 24px var(--color-coral-shadow);
}

.button--primary:hover {
  background: var(--color-coral-hover);
}

.button--secondary {
  border: 2px solid rgba(240, 111, 98, 0.46);
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-coral-hover);
}

.hero__visual {
  position: relative;
  order: -1;
  min-height: 300px;
}

@media (min-width: 900px) {
  .hero__visual {
    order: 0;
    min-height: 410px;
  }
}

.polaroid {
  overflow: hidden;
  border: 10px solid #fff;
  border-bottom-width: 36px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.polaroid figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  color: var(--color-ink-soft);
  font-family: var(--font-hand);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.hero__visual .polaroid {
  position: absolute;
  width: 40%;
  max-width: 232px;
  min-width: 128px;
  border-bottom-width: 10px;
}

.polaroid--one {
  left: 30%;
  top: 2%;
  z-index: 3;
  transform: rotate(-3deg);
}

.polaroid--two {
  right: 8%;
  bottom: 7%;
  z-index: 1;
  transform: rotate(-5deg);
}

.polaroid--three {
  left: 8%;
  bottom: 7%;
  z-index: 2;
  transform: rotate(5deg);
}

@media (max-width: 720px) {
  .hero__visual {
    min-height: 292px;
  }

  .hero__visual .polaroid {
    width: 40%;
  }

  .polaroid--three {
    left: 8%;
    bottom: 7%;
  }
}

.section {
  padding-block: var(--section-y-sp);
  position: relative;
}

@media (min-width: 900px) {
  .section {
    padding-block: var(--section-y-pc);
  }
}

.section__eyebrow {
  margin-bottom: 14px;
  text-align: center;
}

.section__title {
  font-size: var(--fs-section);
  line-height: 1.42;
  font-weight: 900;
  text-align: center;
}

.section-lead {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--color-ink-soft);
  font-weight: 700;
  text-align: center;
}

.section-note {
  max-width: 760px;
  margin: 34px auto 0;
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.72);
  color: var(--color-ink-soft);
  padding: 18px 24px;
  text-align: center;
  font-weight: 700;
}

.about {
  background: var(--color-paper);
}

.about__body {
  display: grid;
  gap: 20px;
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--color-ink-soft);
  text-align: center;
  font-weight: 700;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.pill-list li {
  border-radius: var(--radius-pill);
  background: var(--color-cream);
  color: var(--color-coral-hover);
  padding: 9px 15px;
  font-size: var(--fs-micro);
  font-weight: 900;
}

.works {
  background: var(--color-cream);
}

.card-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.works__grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.goods__grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid rgba(243, 213, 179, 0.8);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  padding: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(114, 82, 54, 0.15);
}

.product-card picture {
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-cream);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card h3 {
  font-size: var(--fs-card-title);
  line-height: 1.45;
}

.product-card p {
  color: var(--color-ink-soft);
  font-size: var(--fs-caption);
  font-weight: 700;
  line-height: 1.75;
}

.marche {
  background: var(--color-paper);
}

.marche__inner,
.workshop__inner,
.final-cta__inner {
  display: grid;
  gap: 34px;
  align-items: center;
}

@media (min-width: 900px) {
  .marche__inner,
  .workshop__inner,
  .final-cta__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 64px;
  }

  .workshop__photo,
  .final-cta__photo {
    order: 2;
  }
}

.marche__photo {
  position: relative;
  transform: rotate(-3deg);
}

.marche__photo img {
  aspect-ratio: 5 / 4;
}

.marche__copy .section__eyebrow,
.marche__copy .section__title,
.workshop__copy .section__eyebrow,
.workshop__copy .section__title,
.final-cta__copy .section__eyebrow,
.final-cta__copy .section__title {
  text-align: left;
}

.marche__copy .section-lead {
  margin-inline: 0;
  text-align: left;
}

.body-text {
  margin-top: 22px;
  color: var(--color-ink-soft);
  font-weight: 700;
}

.marche .button {
  margin-top: 28px;
}

.goods {
  background:
    linear-gradient(180deg, rgba(223, 245, 255, 0.54), rgba(255, 242, 217, 0.7)),
    var(--color-paper);
}

.goods__feature {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

@media (min-width: 900px) {
  .goods__feature {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 48px;
  }
}

.goods__feature picture {
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.goods__feature img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.soft-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.soft-list li {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 16px;
  color: var(--color-coral-hover);
  font-weight: 900;
}

.soft-list li::before {
  content: "♡";
  margin-right: 8px;
}

.workshop {
  background: var(--color-cream);
}

.workshop__photo {
  position: relative;
  transform: rotate(3deg);
}

.message {
  background: var(--color-paper);
  text-align: center;
}

.message__body {
  display: grid;
  gap: 20px;
  max-width: 680px;
  margin: 34px auto 0;
  color: var(--color-ink-soft);
  font-weight: 800;
}

.faq {
  background: var(--color-cream);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.faq-list details {
  border: 1px solid rgba(243, 213, 179, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(114, 82, 54, 0.07);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--color-coral);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  border-top: 1px solid rgba(243, 213, 179, 0.72);
  color: var(--color-ink-soft);
  padding: 0 22px 20px;
  font-weight: 700;
}

.final-cta {
  background:
    linear-gradient(160deg, rgba(223, 245, 255, 0.5), rgba(255, 250, 241, 0.86) 50%, rgba(255, 226, 141, 0.28)),
    var(--color-paper);
}

.final-cta__photo {
  overflow: hidden;
  border: 12px solid #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.final-cta__photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.final-cta__photo figcaption {
  background: #fff;
  color: var(--color-ink-soft);
  padding: 10px 14px 12px;
  font-size: var(--fs-caption);
  font-weight: 800;
  text-align: center;
}

.final-cta__micro {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  margin-bottom: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-yellow);
  color: var(--color-coral-hover);
  padding: 8px 16px;
  font-weight: 900;
}

.final-cta .button {
  margin-top: 10px;
}

.site-footer {
  background: #fff7e8;
  border-top: 1px solid rgba(243, 213, 179, 0.88);
  padding-block: 38px;
}

.site-footer__inner {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  color: var(--color-ink-soft);
  font-size: var(--fs-caption);
  font-weight: 800;
}

.site-footer__note,
.site-footer__copy {
  color: var(--color-ink-soft);
  font-size: var(--fs-micro);
}

.legal-page {
  padding-top: var(--header-height);
}

.legal-content {
  display: grid;
  gap: 30px;
  margin-top: 42px;
  border: 1px solid rgba(243, 213, 179, 0.88);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.legal-content section {
  display: grid;
  gap: 10px;
}

.legal-content h2 {
  color: var(--color-coral-hover);
  font-size: 1.06rem;
  line-height: 1.5;
}

.legal-content p {
  color: var(--color-ink-soft);
  font-weight: 700;
}

.legal-content__date {
  text-align: right;
}

.back-link {
  margin-top: 30px;
  text-align: center;
  font-weight: 900;
}

.back-link a:not(.button) {
  color: var(--color-coral-hover);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding-block: 64px;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(223, 245, 255, 0.62), rgba(255, 242, 217, 0.8)),
    var(--color-paper);
}

.not-found__logo {
  display: grid;
  place-items: center;
  width: 90px;
  height: 93px;
  margin: 0 auto 22px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.not-found__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  width: min(320px, calc(100% - 36px));
  border-radius: var(--radius-pill);
  background: var(--color-coral);
  color: #fff;
  box-shadow: 0 14px 30px var(--color-coral-shadow);
  font-weight: 900;
  transform: translate(-50%, 92px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s ease, background 0.22s ease;
}

.sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta:hover {
  background: var(--color-coral-hover);
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

.fade-in,
.section__title,
.section-lead {
  opacity: 1;
  transform: none;
}

.motion-ready .fade-in,
.motion-ready .section__title,
.motion-ready .section-lead {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition:
    opacity 0.72s var(--ease-out-soft),
    filter 0.72s var(--ease-out-soft),
    transform 0.72s var(--ease-out-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .fade-in.is-visible,
.motion-ready .section__title.is-visible,
.motion-ready .section-lead.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .fade-in,
  .motion-ready .section__title,
  .motion-ready .section-lead {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 640px) {
  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
  }

  .site-nav {
    display: none;
  }

  .section__title {
    text-align: center;
  }

  .marche__copy .section__eyebrow,
  .marche__copy .section__title,
  .workshop__copy .section__eyebrow,
  .workshop__copy .section__title,
  .final-cta__copy .section__eyebrow,
  .final-cta__copy .section__title,
  .marche__copy .section-lead {
    text-align: center;
  }

  .button {
    width: min(100%, 320px);
  }
}
