:root {
  --blue: #54c3f1;
  --orange: #f39800;
  --white: #ffffff;
  --black: #000000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Plus Jakarta Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

.inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0.5rem;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  width: min(1120px, 92%);
  margin: 0.75rem auto 0;
}

.site-header .inner {
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  gap: 0.5rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nav-cta {
  text-decoration: none;
  background: var(--orange);
  border: 1.5px solid var(--black);
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 800;
  padding: 0.48rem 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  padding: clamp(6.8rem, 12vw, 10.6rem) 0 clamp(4rem, 7vw, 7.2rem);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  border-radius: 34px;
  padding: clamp(0.2rem, 0.8vw, 0.45rem) clamp(1rem, 2.8vw, 2.1rem);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
  overflow: visible;
}

.hero-pop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-word {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.05rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(var(--rot, 0deg));
  animation: drift 7s ease-in-out infinite;
}

.float-word.w1 {
  --rot: -12deg;
  top: 14%;
  left: 4%;
  background: var(--orange);
}

.float-word.w2 {
  --rot: 8deg;
  top: 32%;
  left: 8%;
  background: var(--white);
  animation-delay: 0.8s;
}

.float-word.w3 {
  --rot: -8deg;
  top: 19%;
  right: 5%;
  background: var(--black);
  color: var(--white);
  animation-delay: 1.4s;
}

.float-word.w4 {
  --rot: 11deg;
  top: 63%;
  right: 8%;
  background: var(--orange);
  animation-delay: 1.1s;
}

.float-word.w5 {
  --rot: -10deg;
  top: 28%;
  left: 20%;
  background: var(--white);
  animation-delay: 0.3s;
}

.float-word.w6 {
  --rot: 14deg;
  top: 50%;
  left: 2%;
  background: var(--black);
  color: var(--white);
  animation-delay: 1.7s;
}

.float-word.w7 {
  --rot: -6deg;
  top: 46%;
  right: 2%;
  background: var(--white);
  animation-delay: 2s;
}

.float-word.w8 {
  --rot: 12deg;
  top: 80%;
  right: 6%;
  background: var(--black);
  color: var(--white);
  animation-delay: 0.6s;
}

.float-word.w9 {
  --rot: -4deg;
  top: 68%;
  left: 7%;
  background: var(--white);
  animation-delay: 1.1s;
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -0.45rem;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--black);
  opacity: 0.1;
}

.kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero h1 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.85rem, 8.2vw, 5.9rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.14);
}

.hero h1 span {
  display: inline-block;
  white-space: nowrap;
  color: var(--orange);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
}

.hero p {
  margin: 1rem 0 0;
  max-width: 600px;
  font-family: "Noto Sans JP", sans-serif;
}

.hero-buttons {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-mini-cards {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-mini-cards span {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--white);
  animation: badgePulse 2.3s ease-in-out infinite;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
}

.hero-mini-cards span:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-mini-cards span:nth-child(3) {
  animation-delay: 0.8s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1.5px solid var(--black);
}

.btn.solid {
  background: var(--orange);
  animation: popBounce 2.4s ease-in-out infinite;
}

.btn.ghost {
  background: var(--white);
}

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

.hero-phone {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  position: relative;
  animation: none;
  box-shadow: none;
  overflow: visible;
  width: 102%;
  margin-top: -10.8rem;
  margin-left: -1%;
  z-index: 3;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 0;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.34));
}

.phone-screen {
  width: min(290px, 100%);
  margin: 0 auto;
  border: 1.5px solid var(--black);
  border-radius: 22px;
  padding: 0.65rem;
  background: var(--white);
}

.phone-top {
  height: 34px;
  border-radius: 10px;
  background: var(--black);
}

.phone-map {
  margin-top: 0.55rem;
  height: 132px;
  border-radius: 10px;
  background: var(--blue);
  border: 1.5px solid var(--black);
}

.phone-row {
  margin-top: 0.5rem;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
}


.hero-highlights {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-highlights article {
  border-radius: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.16);
  background: var(--white);
  padding: 0.95rem 1rem;
  transform: translateY(0);
  animation: liftCard 3.6s ease-in-out infinite;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.hero-highlights article:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-highlights article:nth-child(3) {
  animation-delay: 1.2s;
}

.hero-highlights p {
  margin: 0;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  font-weight: 900;
  line-height: 1;
}

.hero-highlights span {
  margin-top: 0.35rem;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
}

.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid > div {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
  padding-right: 1.5rem;
}

.about h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.2;
}

.about p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.features {
  padding: 3.2rem 0 6rem;
  background: var(--blue);
}

.features-lead {
  margin-bottom: clamp(13rem, 20vw, 18rem);
}

.features-lead h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.18;
  color: var(--white);
}

.features-lead .kicker {
  color: var(--white);
}

.feature-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  margin-top: 2rem;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.08);
}

.feature-row:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.24);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.14);
}

.features .feature-row.reveal {
  transform: translateY(24px) scale(0.96);
  filter: blur(6px);
  transition: opacity 1.05s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease;
}

.features .feature-row.reveal.is-visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.features .feature-row:nth-of-type(1).reveal:not(.is-visible) {
  transform: translateX(56px) translateY(24px) scale(0.96);
  transition-delay: 0.12s;
}

.features .feature-row:nth-of-type(2).reveal:not(.is-visible) {
  transform: translateX(-56px) translateY(24px) scale(0.96);
  transition-delay: 0.28s;
}

.features .feature-row:nth-of-type(3).reveal:not(.is-visible) {
  transform: translateX(56px) translateY(24px) scale(0.96);
  transition-delay: 0.44s;
}

.features .feature-row:nth-of-type(4).reveal:not(.is-visible) {
  transform: translateX(-56px) translateY(24px) scale(0.96);
  transition-delay: 0.6s;
}

.features .feature-row:nth-of-type(2) {
  margin-top: clamp(12rem, 18vw, 17rem);
}

.features .feature-row:nth-of-type(3) {
  margin-top: clamp(10rem, 15vw, 14rem);
}

.features .feature-row:nth-of-type(4) {
  margin-top: clamp(14rem, 20vw, 18rem);
}

.feature-row.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.feature-row.reverse .mock {
  order: 2;
}

.feature-row.reverse .feature-copy {
  order: 1;
  margin-left: clamp(2.2rem, 4.4vw, 4rem);
  margin-right: 0;
  text-align: left;
  padding-right: 0;
}

.mock {
  position: relative;
  border-radius: 14px;
  border: 1.5px solid var(--black);
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0.8rem;
}

.mock::before {
  content: "";
  position: absolute;
  inset: 14% 48% 40% 10%;
  border: 2px solid var(--blue);
  border-radius: 14px;
}

.mock::after {
  content: "";
  position: absolute;
  inset: 50% 12% 16% 62%;
  border: 2px solid var(--orange);
  border-radius: 12px;
}

.mock span {
  position: relative;
  z-index: 1;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
}

.mock-image-real {
  border: 0;
  background: transparent;
  overflow: visible;
  width: 90%;
  margin: 0 auto;
}

.mock-image-real.media-16-9 {
  aspect-ratio: 16 / 7.2;
  height: auto;
}

.mock-image-real-large {
  width: 128%;
  margin: 0 0 0 -14%;
}

.mock-image-real-large.media-16-9 {
  aspect-ratio: 16 / 9;
}

.mock-image-real::before,
.mock-image-real::after {
  display: none;
}

.mock-image-real img {
  width: 70%;
  height: auto;
  margin-left: 15%;
  margin-top: -52%;
  object-fit: contain;
  object-position: center top;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.42));
}

.mock-image-real.mock-image-real-large img {
  width: 52%;
  margin-left: 24%;
}

.media-16-9 {
  aspect-ratio: 16 / 9;
}

.media-3-2 {
  aspect-ratio: 3 / 2;
}

.feature-copy h3 {
  margin: 0.4rem 0 0;
  font-size: calc(clamp(1.35rem, 2.5vw, 1.9rem) + 2pt);
  line-height: 1.18;
  color: var(--orange);
}

.feature-copy p {
  margin: 0.7rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(1rem + 2pt);
}

.feature-copy p.ai-note {
  margin-top: 0.5rem;
  font-size: calc(8px + 1pt);
  color: rgba(0, 0, 0, 0.62);
}

.cta-band {
  background: var(--orange);
  border-top: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.2), inset 0 -10px 0 rgba(0, 0, 0, 0.06);
}

.cta-grid {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-grid h2 {
  margin: 0 0 0.22em;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.cta-sub {
  margin: 0;
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--white);
}

.cta-sub.collide {
  position: relative;
  width: min(900px, 92vw);
  height: 1.1em;
  overflow: hidden;
}

.cta-sub.collide span {
  position: absolute;
  top: 0;
  line-height: 1;
}

.cta-sub.collide .who {
  left: 0;
  animation: whoCollide 6.5s ease-in-out 1 forwards;
}

.cta-sub.collide .food {
  right: 0;
  animation: foodCollide 6.5s ease-in-out 1 forwards;
}

.cta-sub.collide .whooods {
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: whooodsAppear 6.5s ease-in-out 1 forwards;
}

.contact {
  padding: 4.4rem 0 5rem;
}

.contact h2 {
  margin: 0;
  font-size: 1.6rem;
}

.contact p {
  margin: 0.65rem 0 0;
  font-family: "Noto Sans JP", sans-serif;
}

.mail-link {
  display: inline-block;
  margin-top: 0.55rem;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  border-bottom: 1.5px solid var(--black);
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.03);
}

.site-footer .inner {
  padding: 1.5rem 0 2.2rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-meta a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes popBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(var(--rot, 0deg));
  }

  50% {
    transform: translateY(-11px) translateX(5px) rotate(calc(var(--rot, 0deg) + 2deg));
  }
}

@keyframes liftCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes whoCollide {
  0%,
  20% {
    transform: translateX(0);
    opacity: 1;
  }

  48% {
    transform: translateX(210%);
    opacity: 1;
  }

  55%,
  100% {
    transform: translateX(210%);
    opacity: 0;
  }
}

@keyframes foodCollide {
  0%,
  20% {
    transform: translateX(0);
    opacity: 1;
  }

  48% {
    transform: translateX(-210%);
    opacity: 1;
  }

  55%,
  100% {
    transform: translateX(-210%);
    opacity: 0;
  }
}

@keyframes whooodsAppear {
  0%,
  48% {
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
  }

  58% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
  }

  70%,
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 920px) {
  .site-header .inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-grid,
  .hero-highlights,
  .about-grid,
  .feature-row,
  .feature-row.reverse,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .mock,
  .feature-row.reverse .feature-copy {
    order: initial;
  }

  .hero-phone {
    max-width: 520px;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .hero-copy::after {
    display: none;
  }

  .float-word.w3,
  .float-word.w7,
  .float-word.w8 {
    display: none;
  }

  .about-grid > div {
    border-right: 0;
    padding-right: 0;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone,
  .btn.solid,
  .float-word,
  .hero-mini-cards span,
  .cta-sub,
  .cta-sub.collide .who,
  .cta-sub.collide .food,
  .cta-sub.collide .whooods {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cta-sub.collide {
    width: auto;
    height: auto;
  }

  .cta-sub.collide span {
    position: static;
    opacity: 1;
    transform: none;
  }

  .cta-sub.collide .who,
  .cta-sub.collide .food {
    display: none;
  }
}

.policy-page {
  background: var(--blue);
}

.policy-main {
  padding-bottom: 4rem;
}

.policy-hero {
  padding: clamp(6.8rem, 12vw, 10.6rem) 0 3rem;
  background: var(--blue);
}

.policy-hero h1 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

.policy-lead {
  margin-top: 1rem;
  max-width: 760px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--white);
}

.policy-hero .kicker {
  color: var(--white);
}

.policy-section {
  background: var(--white);
  padding: 3rem 0 0;
}

.policy-card {
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 28px;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.08);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.policy-card h2 {
  margin: 2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--orange);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card h3 {
  margin: 1.25rem 0 0.35rem;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.82);
}

.policy-card p,
.policy-card li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.98rem;
  line-height: 1.9;
}

.policy-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.policy-date {
  margin-top: 2.2rem;
  font-size: 0.84rem;
  color: rgba(0, 0, 0, 0.66);
}
