:root {
  --navy: #28334c;
  --coral: #ef6f68;
  --mint: #5ca79c;
  --mint-soft: #d9efe9;
  --cream: #fff8ed;
  --paper: #fffdf8;
  --beige: #f4eadb;
  --line: rgba(40, 51, 76, 0.12);
  --text: #2d3442;
  --muted: #687280;
  --shadow: 0 22px 62px rgba(40, 51, 76, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  color: var(--text);
  background: var(--paper);
  font-family:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
    system-ui, sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(121, 184, 170, 0.22), transparent 27rem),
    radial-gradient(circle at 12% 28%, rgba(239, 111, 104, 0.09), transparent 22rem),
    linear-gradient(180deg, #fffdf8 0%, #fbf4eb 34%, #fffdf8 66%, #f7efe4 100%);
  line-height: 1.8;
  letter-spacing: 0;
}

body.is-opening {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.tomion-opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(139, 198, 184, 0.18), transparent 26%),
    radial-gradient(circle at 85% 80%, rgba(243, 111, 98, 0.12), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #ffffff 48%, #f5fbf8 100%);
  transition: opacity 0.7s ease, visibility 0.7s ease, background 0.45s ease;
}

.tomion-opening[data-frame="2"] {
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 205, 113, 0.22), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(139, 198, 184, 0.2), transparent 28%),
    linear-gradient(135deg, #fff8ed 0%, #fffef9 54%, #f6fbf8 100%);
}

.tomion-opening[data-frame="3"] {
  background:
    radial-gradient(circle at 12% 72%, rgba(139, 198, 184, 0.2), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(117, 155, 210, 0.12), transparent 28%),
    linear-gradient(135deg, #f9fcff 0%, #ffffff 56%, #fff8ed 100%);
}

.tomion-opening[data-frame="4"] {
  background:
    radial-gradient(circle at 10% 16%, rgba(243, 111, 98, 0.12), transparent 24%),
    radial-gradient(circle at 88% 74%, rgba(139, 198, 184, 0.24), transparent 30%),
    linear-gradient(135deg, #fbfff8 0%, #ffffff 50%, #f1faf6 100%);
}

.tomion-opening[data-frame="5"] {
  background:
    radial-gradient(circle at 16% 84%, rgba(139, 198, 184, 0.2), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(245, 205, 113, 0.22), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #ffffff 48%, #f8fbff 100%);
}

.tomion-opening[data-frame="6"] {
  background:
    radial-gradient(circle at 16% 16%, rgba(139, 198, 184, 0.18), transparent 24%),
    radial-gradient(circle at 86% 76%, rgba(243, 111, 98, 0.14), transparent 28%),
    linear-gradient(135deg, #f8fdff 0%, #ffffff 52%, #fff8ed 100%);
}

.tomion-opening::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #fffdf8;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.tomion-opening.is-closing::after {
  opacity: 0.86;
}

.tomion-opening.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening-stage {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(96vw, 1360px);
  height: min(86vh, 760px);
  place-items: center;
}

.opening-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.96);
  transition:
    opacity 0.42s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.42s ease;
}

.opening-frame img {
  width: min(92vw, 1280px);
  height: auto;
  max-width: min(94vw, 1360px);
  max-height: min(80vh, 760px);
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(12, 31, 61, 0.1));
}

.opening-frame.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.frame-01 {
  transform: translateY(30px) scale(0.94);
}

.frame-02 {
  transform: translateX(-18px) rotate(-1deg) scale(0.98);
}

.frame-02 img {
  width: min(92vw, 1280px);
  max-width: min(94vw, 1360px);
  max-height: min(80vh, 760px);
  border-radius: 22px;
}

.frame-03 {
  transform: translateX(18px) scale(0.98);
}

.frame-03 img {
  width: min(92vw, 1280px);
  max-width: min(94vw, 1360px);
  max-height: min(80vh, 760px);
}

.frame-04 {
  transform: translateY(38px) scale(0.92);
}

.frame-04 img {
  width: min(92vw, 1280px);
  max-width: min(94vw, 1360px);
  max-height: min(80vh, 760px);
}

.frame-05 {
  transform: translateX(16px);
}

.frame-05 img {
  width: min(92vw, 1280px);
  max-width: min(94vw, 1360px);
  max-height: min(80vh, 760px);
}

.frame-06 {
  transform: translateY(24px) scale(0.98);
}

.frame-06 img {
  width: min(92vw, 1280px);
  max-width: min(94vw, 1360px);
  max-height: min(80vh, 760px);
}

.frame-01.is-active,
.frame-02.is-active,
.frame-03.is-active,
.frame-04.is-active,
.frame-05.is-active,
.frame-06.is-active {
  transform: translateX(0) translateY(0) rotate(0) scale(1);
}

.frame-02.is-active img {
  transform: rotate(0);
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.frame-01.is-active img {
  animation: openingLogoBob 0.78s ease both;
}

.frame-02.is-active img {
  animation: openingPolaroid 0.78s ease both;
}

.frame-03.is-active img {
  animation: openingDeviceFloat 0.78s ease both;
}

.frame-04.is-active img {
  animation: openingCardPop 0.78s cubic-bezier(0.2, 1.3, 0.32, 1) both;
}

.frame-05.is-active img {
  animation: openingFlowSlide 0.78s ease both;
}

.frame-06.is-active img {
  animation: openingMascotWave 0.9s ease both;
}

.opening-frame::before,
.opening-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
}

.opening-frame.is-active::before,
.opening-frame.is-active::after {
  animation: openingSpark 0.82s ease both;
}

.frame-02::before,
.frame-04::before,
.frame-06::before {
  width: 12px;
  height: 12px;
  left: 13%;
  top: 22%;
  background: #ef6f68;
}

.frame-02::after,
.frame-04::after,
.frame-06::after {
  width: 9px;
  height: 9px;
  right: 15%;
  bottom: 21%;
  background: #5ca79c;
  animation-delay: 0.12s;
}

.frame-03::before,
.frame-05::before {
  width: 10px;
  height: 10px;
  right: 18%;
  top: 18%;
  background: #d9a448;
}

.frame-03::after,
.frame-05::after {
  width: 13px;
  height: 13px;
  left: 18%;
  bottom: 18%;
  background: #9acfc0;
  animation-delay: 0.1s;
}

.opening-bg-deco {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.45;
  animation: openingFloat 4.8s ease-in-out infinite alternate;
}

.opening-deco-01 {
  width: 180px;
  height: 180px;
  left: 6%;
  top: 9%;
  background: rgba(139, 198, 184, 0.25);
}

.opening-deco-02 {
  width: 120px;
  height: 120px;
  right: 12%;
  top: 18%;
  background: rgba(245, 205, 113, 0.22);
  animation-delay: 0.6s;
}

.opening-deco-03 {
  width: 150px;
  height: 150px;
  right: 8%;
  bottom: 10%;
  background: rgba(243, 111, 98, 0.14);
  animation-delay: 1.2s;
}

.opening-skip {
  position: fixed;
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 10001;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #2f7f6f;
  box-shadow: 0 14px 30px rgba(47, 127, 111, 0.25);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.opening-skip:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 127, 111, 0.3);
}

.opening-skip span {
  font-size: 1.4em;
  line-height: 1;
}

.opening-skip:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.94);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 6px clamp(8px, 2vw, 22px);
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid rgba(40, 51, 76, 0.08);
  backdrop-filter: blur(18px);
}

.header-image-wrap {
  position: relative;
  max-width: none;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
}

.header-image-wrap img {
  width: 100%;
  height: clamp(82px, 8.4vw, 112px);
  aspect-ratio: 2101 / 260;
  object-fit: cover;
  object-position: center;
}

.hotspot {
  position: absolute;
  z-index: 3;
  border-radius: 999px;
}

.site-nav {
  display: none;
}

.menu-button {
  display: none;
}

.hotspot.logo-home { left: 2.2%; top: 18%; width: 17.2%; height: 55%; }
.hotspot.home { left: 29.8%; top: 35%; width: 4.6%; height: 31%; }
.hotspot.service { left: 35.9%; top: 35%; width: 5.6%; height: 31%; }
.hotspot.works { left: 43.0%; top: 35%; width: 6.4%; height: 31%; }
.hotspot.price-link { left: 50.5%; top: 35%; width: 6.2%; height: 31%; }
.hotspot.about { left: 58.2%; top: 35%; width: 9.0%; height: 31%; }
.hotspot.contact { left: 68.2%; top: 26%; width: 13.0%; height: 45%; }
.hotspot.sample { left: 82.4%; top: 26%; width: 15.2%; height: 45%; }

.hero,
.section,
.footer {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: block;
  min-height: auto;
  padding: clamp(26px, 5vw, 64px) 0 clamp(28px, 5vw, 70px);
}

.hero::before,
.section::before {
  content: "";
  position: absolute;
  inset: -26px -42px;
  z-index: -1;
  border-radius: 48px;
  background:
    radial-gradient(circle at 0% 12%, rgba(255, 255, 255, 0.82), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(245, 236, 222, 0.28));
  pointer-events: none;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 950;
  line-height: 1.18;
}

h1 span {
  color: var(--coral);
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 950;
  line-height: 1.28;
}

h3 {
  color: var(--navy);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.hero-copy > p:not(.eyebrow),
.section-lead > p:not(.eyebrow),
.split p,
.faq-layout p,
.contact-cta-copy p,
.contact-form-card p {
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 18px);
}

.hero-main-image,
.visual-panel,
.showcase-frame,
.contact-cta-image,
.footer-visual {
  overflow: hidden;
  border: 1px solid rgba(40, 51, 76, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.pricing-frame {
  position: relative;
}

.pricing-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.pricing-hotspot:focus-visible,
.pricing-hotspot:hover {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.72), 0 8px 22px rgba(40, 51, 76, 0.18);
  transform: translateY(-1px);
}

.pricing-lp {
  left: 5.2%;
  top: 52.2%;
  width: 26.4%;
  height: 4.9%;
}

.pricing-five-page {
  left: 35.7%;
  top: 53.2%;
  width: 27.1%;
  height: 4.9%;
}

.pricing-contact {
  left: 78.4%;
  top: 88.8%;
  width: 18.2%;
  height: 6.2%;
}

.contact-cta-image {
  position: relative;
}

.contact-cta-mail-hotspot {
  position: absolute;
  left: 4.5%;
  top: 73.8%;
  z-index: 4;
  display: block;
  width: 91%;
  height: 19.6%;
  border-radius: 18px;
  cursor: pointer;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.contact-cta-mail-hotspot:focus-visible,
.contact-cta-mail-hotspot:hover {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.74), 0 10px 28px rgba(40, 51, 76, 0.2);
  transform: translateY(-1px);
}

.hero-main-image {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-main-image img,
.visual-panel img,
.showcase-frame img,
.contact-cta-image img,
.footer-visual img {
  width: 100%;
  object-fit: contain;
}

.hero-main-image img {
  aspect-ratio: 1536 / 896;
  object-fit: contain;
}

.hero-actions {
  position: absolute;
  left: clamp(24px, 4vw, 58px);
  bottom: clamp(18px, 3vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row,
.card-actions,
.demo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.3;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-coral {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(239, 111, 104, 0.24);
}

.btn-mint,
.btn-green {
  color: #fff;
  background: #4e9d91;
}

.btn-navy {
  color: #fff;
  background: var(--navy);
}

.btn-blue {
  color: #fff;
  background: #2f6ea8;
}

.btn-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

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

.section {
  padding: clamp(38px, 6vw, 72px) 0;
}

.section + .section {
  margin-top: -16px;
}

.section-lead {
  max-width: 820px;
  margin: 0 auto clamp(26px, 5vw, 48px);
  text-align: center;
}

.section-label {
  display: grid;
  place-items: center;
  margin: 0 auto clamp(16px, 3vw, 26px);
  text-align: center;
}

.section-label h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
}

.visual-panel-wide {
  max-width: 1080px;
  margin: 0 auto clamp(16px, 3vw, 28px);
}

.support-grid,
.template-grid,
.flow-cards,
.price-cards {
  display: grid;
  gap: 16px;
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-grid article,
.flow-cards li,
.price-cards article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(40, 51, 76, 0.07);
}

.support-grid strong,
.flow-cards strong,
.price-cards h3 {
  display: block;
  color: var(--navy);
  font-weight: 900;
}

.support-grid span,
.flow-cards p,
.price-cards p {
  color: var(--muted);
  font-size: 14px;
}

.showcase-frame {
  position: relative;
  margin-bottom: 26px;
}

.showcase-frame img {
  aspect-ratio: 1536 / 1024;
}

.showcase-hotspot {
  position: absolute;
  top: 31.5%;
  z-index: 8;
  width: 22.8%;
  height: 50.8%;
  border-radius: 14px;
}

.showcase-hotspot:focus-visible,
.footer-hotspot:focus-visible,
.hotspot:focus-visible {
  outline: 3px solid rgba(92, 167, 156, 0.78);
  outline-offset: 3px;
  background: rgba(255, 255, 255, 0.16);
}

.showcase-hikari { left: 1.5%; }
.showcase-takumi { left: 25.1%; }
.showcase-machi { left: 49.1%; }
.showcase-story { left: 73.2%; }

.template-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.template-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(40, 51, 76, 0.15);
}

.template-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
}

.template-card > div {
  display: grid;
  gap: 10px;
  padding: 0 8px 8px;
}

.template-card p {
  margin: 0;
  color: var(--mint);
  font-weight: 900;
}

.template-card h3 {
  margin: 0;
  font-size: 20px;
}

.template-card span {
  color: var(--muted);
  font-size: 14px;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: inset 0 0 0 4px #fff;
}

.price-cards {
  grid-template-columns: 1fr;
}

.price-cards article span,
.flow-cards span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price-cards article strong {
  display: block;
  margin: 8px 0;
  color: var(--coral);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

.demo-buttons {
  justify-content: center;
  margin-top: 24px;
}

.flow-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(40, 51, 76, 0.06);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.anxiety-faq {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(92, 167, 156, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(217, 239, 233, 0.85), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 237, 0.82));
  box-shadow: var(--shadow);
}

.anxiety-heading {
  max-width: 860px;
  margin: 0 auto clamp(22px, 4vw, 36px);
  text-align: center;
}

.anxiety-heading p {
  margin: 0 0 8px;
  color: var(--mint);
  font-weight: 900;
}

.anxiety-heading h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 4.8vw, 56px);
  font-weight: 950;
  line-height: 1.2;
}

.anxiety-heading span {
  color: var(--muted);
  font-weight: 800;
}

.anxiety-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.anxiety-tabs {
  display: grid;
  gap: 10px;
}

.anxiety-tab {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 14px 46px 14px 18px;
  border: 1px solid rgba(40, 51, 76, 0.1);
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(40, 51, 76, 0.06);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.anxiety-tab::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--mint);
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.anxiety-tab.is-active {
  color: #fff;
  background: var(--mint);
  transform: translateX(4px);
}

.anxiety-tab.is-active::after {
  content: "-";
  color: #fff;
}

.anxiety-answer {
  min-height: 100%;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(92, 167, 156, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 42px rgba(40, 51, 76, 0.08);
}

.anxiety-answer.is-active {
  animation: fadeUp 0.35s ease both;
}

.anxiety-answer h4 {
  margin: 0 0 14px;
  color: #18785e;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
}

.anxiety-answer p {
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

.anxiety-answer div {
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(217, 239, 233, 0.74), rgba(255, 248, 237, 0.9));
  font-weight: 800;
}

.anxiety-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 22px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.anxiety-cta strong {
  color: var(--navy);
  font-size: 20px;
}

.anxiety-cta p {
  grid-column: 1 / 2;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.contact-cta {
  display: block;
}

.contact-cta-image img {
  aspect-ratio: 1536 / 1024;
  object-fit: contain;
}

.contact-cta-copy {
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 237, 0.76));
  box-shadow: var(--shadow);
}

.contact-image-form {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(40, 51, 76, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-image-form > img {
  width: 100%;
  aspect-ratio: 1536 / 1024;
  object-fit: contain;
}

.image-field,
.image-check,
.image-submit {
  position: absolute;
  z-index: 5;
}

.image-field {
  display: block;
  gap: 0;
  color: transparent;
  font-size: 0;
}

.image-field input,
.image-field textarea {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: clamp(5px, 0.7vw, 11px);
  padding: 0.25em 0.8em;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  font-size: clamp(10px, 1.35vw, 16px);
  font-weight: 800;
  line-height: 1.35;
  outline: 2px solid transparent;
}

.image-field textarea {
  padding-top: 0.65em;
  resize: none;
}

.image-field input:focus,
.image-field textarea:focus {
  outline-color: rgba(92, 167, 156, 0.58);
  background: rgba(255, 255, 255, 0.96);
}

.field-name { left: 57.1%; top: 13.55%; width: 37.7%; height: 4.75%; }
.field-company { left: 57.1%; top: 19.58%; width: 37.7%; height: 4.75%; }
.field-email { left: 57.1%; top: 25.68%; width: 37.7%; height: 4.75%; }
.field-tel { left: 57.1%; top: 31.72%; width: 37.7%; height: 4.75%; }
.field-message { left: 57.1%; top: 49.35%; width: 37.7%; height: 12.45%; }

.image-check {
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.image-check input {
  position: absolute;
  left: 1.2%;
  top: 50%;
  width: clamp(10px, 1.25vw, 17px);
  height: clamp(10px, 1.25vw, 17px);
  margin: 0;
  padding: 0;
  accent-color: #18785e;
  transform: translateY(-50%);
}

.check-web { left: 57.0%; top: 38.0%; width: 17.0%; height: 4.75%; }
.check-design { left: 75.6%; top: 38.0%; width: 19.2%; height: 4.75%; }
.check-support { left: 57.0%; top: 43.35%; width: 17.0%; height: 4.75%; }
.check-other { left: 75.6%; top: 43.35%; width: 19.2%; height: 4.75%; }

.image-submit {
  left: 54.75%;
  top: 64.55%;
  width: 25.6%;
  height: 6.25%;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.image-submit:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: -5px;
  box-shadow: 0 0 0 5px rgba(24, 120, 94, 0.3);
}

.image-form-note {
  position: absolute;
  left: 55%;
  top: 71.25%;
  z-index: 6;
  width: 35%;
  margin: 0;
  padding: 4px 8px;
  border-radius: 999px;
  color: #18785e;
  background: rgba(255, 255, 255, 0.82);
  font-size: clamp(10px, 1.1vw, 14px);
  font-weight: 900;
  text-align: center;
}

fieldset {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--navy);
  font-weight: 900;
}

label {
  display: grid;
  gap: 3px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

label span,
legend span {
  display: inline-flex;
  justify-self: start;
  width: max-content;
  margin-left: 5px;
  padding: 1px 6px;
  border-radius: 6px;
  color: #fff;
  background: var(--coral);
  font-size: 10px;
  vertical-align: middle;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 11px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 9px;
  color: var(--text);
  background: #fff;
  font-size: 12px;
  line-height: 1.35;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: #18785e;
}

textarea {
  min-height: 58px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--mint);
  font-weight: 900;
}

.contact-image-form .image-check input {
  position: absolute;
  left: 1.2%;
  top: 50%;
  width: clamp(10px, 1.25vw, 17px);
  height: clamp(10px, 1.25vw, 17px);
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
}

.footer {
  padding: 42px 0 72px;
  text-align: center;
}

.footer-visual {
  position: relative;
  margin-bottom: 24px;
}

.footer-hotspot {
  position: absolute;
  z-index: 4;
  border-radius: 10px;
}

.footer-home { left: 26.3%; top: 84.2%; width: 6.7%; height: 11%; }
.footer-template { left: 33.8%; top: 84.2%; width: 9.8%; height: 11%; }
.footer-flow { left: 44.4%; top: 84.2%; width: 9.1%; height: 11%; }
.footer-price { left: 54.4%; top: 84.2%; width: 8.6%; height: 11%; }
.footer-service { left: 64.1%; top: 84.2%; width: 9.8%; height: 11%; }
.footer-faq { left: 74.7%; top: 84.2%; width: 8.5%; height: 11%; }
.footer-contact { left: 84.0%; top: 84.2%; width: 9.5%; height: 11%; }

.footer small {
  color: var(--muted);
}

.mobile-cta {
  display: none;
}

.section-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes openingFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(12px, -18px, 0) scale(1.04);
  }
}

@keyframes openingLogoBob {
  0% {
    transform: translateY(18px) scale(0.96);
  }
  65% {
    transform: translateY(-5px) scale(1.01);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes openingPolaroid {
  0% {
    transform: translateX(-14px) rotate(-1.2deg) scale(0.98);
  }
  70% {
    transform: translateX(3px) rotate(0.4deg) scale(1);
  }
  100% {
    transform: translateX(0) rotate(0) scale(1);
  }
}

@keyframes openingDeviceFloat {
  0% {
    transform: translateX(10px) translateY(6px) scale(0.985);
  }
  72% {
    transform: translateX(-3px) translateY(-4px) scale(1);
  }
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes openingCardPop {
  0% {
    transform: translateY(20px) scale(0.96);
  }
  58% {
    transform: translateY(-5px) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes openingFlowSlide {
  0% {
    transform: translateX(12px) scale(0.985);
  }
  68% {
    transform: translateX(-4px) scale(1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes openingMascotWave {
  0% {
    transform: translateY(16px) rotate(-0.8deg) scale(0.98);
  }
  54% {
    transform: translateY(-5px) rotate(0.6deg) scale(1);
  }
  100% {
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes openingSpark {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.2);
  }
  48% {
    opacity: 0.78;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-16px) scale(0.62);
  }
}

@keyframes openingMobileSoftPop {
  0% {
    transform: translateY(12px) scale(0.98);
  }
  64% {
    transform: translateY(-3px) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1020px) {
  .hero,
  .split,
  .split.reverse,
  .faq-layout,
  .contact-cta,
  .contact-form-shell {
    grid-template-columns: 1fr;
  }

  .template-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-image-wrap img {
    min-height: 70px;
    object-fit: cover;
    object-position: left center;
  }

  .hotspot {
    display: none;
  }

  .menu-button {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(40, 51, 76, 0.12);
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    display: none;
    width: min(280px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 10px 12px;
    color: var(--navy);
    font-weight: 900;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-bottom: 70px;
  }

  .site-header {
    padding: 6px 8px;
  }

  .header-image-wrap {
    border-radius: 14px;
  }

  .header-image-wrap img {
    min-height: 58px;
    max-height: 64px;
  }

  .menu-button {
    top: 14px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .hero,
  .section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-actions {
    position: static;
    margin-top: 14px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .button-row,
  .card-actions,
  .demo-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .template-grid,
  .support-grid,
  .flow-cards,
  .contact-real-form,
  fieldset {
    grid-template-columns: 1fr;
  }

  .showcase-frame {
    display: block;
  }

  .showcase-hotspot {
    top: 31.5%;
    width: 22.8%;
    height: 50.8%;
    border-radius: 12px;
  }

  .showcase-hikari { left: 1.5%; }
  .showcase-takumi { left: 25.1%; }
  .showcase-machi { left: 49.1%; }
  .showcase-story { left: 73.2%; }

  .template-card {
    padding: 12px;
  }

  .template-card img,
  .visual-panel img,
  .contact-cta-image img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .section {
    padding: 56px 0;
  }

  .section + .section {
    margin-top: -10px;
  }

  .contact-form-shell {
    padding: 12px;
  }

  .contact-form-visual {
    min-height: 300px;
  }

  .contact-form-visual img {
    width: 100%;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }

  .contact-real-form {
    padding: 16px;
  }

  .contact {
    width: calc(100% - 16px);
    overflow-x: visible;
    padding-bottom: 58px;
  }

  .contact-image-form {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    border-radius: 22px;
  }

  .contact-image-form > img {
    max-width: 100%;
  }

  .image-field input,
  .image-field textarea {
    padding-inline: 0.45em;
    font-size: clamp(10px, 3vw, 13px);
  }

  .image-check input,
  .contact-image-form .image-check input {
    width: clamp(10px, 3.5vw, 15px);
    height: clamp(10px, 3.5vw, 15px);
  }

  .image-form-note {
    padding: 2px 4px;
    font-size: clamp(9px, 2.6vw, 11px);
  }

  .opening-stage {
    width: 98vw;
    height: 76vh;
  }

  .opening-frame img {
    width: 96vw;
    max-width: 96vw;
    max-height: 68vh;
    filter: drop-shadow(0 10px 20px rgba(12, 31, 61, 0.08));
  }

  .frame-02 img,
  .frame-03 img,
  .frame-04 img,
  .frame-05 img,
  .frame-06 img {
    width: 96vw;
    max-width: 96vw;
    max-height: 68vh;
  }

  .frame-01.is-active img,
  .frame-02.is-active img,
  .frame-03.is-active img,
  .frame-04.is-active img,
  .frame-05.is-active img,
  .frame-06.is-active img {
    animation: openingMobileSoftPop 0.72s ease both;
  }

  .opening-skip {
    right: 16px;
    bottom: 16px;
    min-width: 82px;
    min-height: 44px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 49;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 16px 42px rgba(40, 51, 76, 0.16);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: var(--coral);
  }

  .mobile-cta a:last-child {
    background: var(--mint);
  }
}

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

  .opening-bg-deco {
    animation: none;
  }

  .opening-frame,
  .tomion-opening {
    transform: none !important;
  }
}
