@charset "UTF-8";
:root {
  --blue: #4bbee6;
  --blue-light: #f0faff;
  --blue-mid: #e8f7fd;
  --pink: #ff8fab;
  --yellow: #ffd166;
  --mint: #6edcc4;
  --dark: #1a3a4a;
  --muted: #7da5b5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--blue-light);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Hero ─── */
#hero {
  min-height: 100svh;
  background: linear-gradient(150deg, #fff 0%, var(--blue-light) 55%, #edf5ff 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  padding: 0 6vw 0 10vw;
}
#hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(75, 190, 230, 0.13) 0%, transparent 70%);
  left: -180px;
  top: -140px;
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 143, 171, 0.1) 0%, transparent 70%);
  right: 8%;
  bottom: -80px;
  pointer-events: none;
}
#hero .hero-left {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}
#hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
#hero .hero-app-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
#hero .hero-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#hero .hero-eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
}
#hero .hero-title {
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 12px;
}
#hero .hero-title .accent {
  color: var(--blue);
}
#hero .hero-en {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
#hero .hero-desc {
  font-size: 15px;
  color: #4a7a90;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 380px;
}
#hero .hero-stats {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(75, 190, 230, 0.18);
  box-shadow: 0 4px 16px rgba(75, 190, 230, 0.08);
  margin-bottom: 32px;
}
#hero .hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
#hero .hero-stat-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
#hero .hero-stat-unit {
  font-size: 14px;
}
#hero .hero-stat-label {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
#hero .hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(75, 190, 230, 0.2);
  flex-shrink: 0;
}
#hero .appstore-btn {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
#hero .appstore-btn:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
#hero .hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
#hero .hero-visual {
  position: relative;
}
#hero .hero-visual-bg {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(75, 190, 230, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#hero .hero-screenshot {
  position: relative;
  z-index: 2;
  width: 240px;
  border-radius: 32px;
  box-shadow:
    0 40px 80px rgba(75, 190, 230, 0.22),
    0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}
#hero .hero-screenshot:hover {
  transform: rotate(-1deg) scale(1.02);
}
#hero .hero-float {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(75, 190, 230, 0.12);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 76px;
}
#hero .hero-float--top {
  top: 24px;
  right: -44px;
}
#hero .hero-float--bottom {
  bottom: 64px;
  left: -52px;
}
#hero .hero-float-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 3px;
}
#hero .hero-float-check {
  font-size: 16px;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 3px;
}
#hero .hero-float-label {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}

/* ─── Features ─── */
#features {
  background: white;
  padding: 100px 10vw;
}
#features .section-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}
#features .section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1;
}
#features .section-sub {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.85;
  margin-bottom: 56px;
}
#features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
#features .feature-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
}
#features .feature-card-inner {
  background: #fff;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  padding: 60px 40px;
  width: calc(100% - 80px);
}
#features .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#features .feature-card:nth-child(1) {
  background-color: rgba(75, 190, 230, 0.2);
}
#features .feature-card:nth-child(1) .feature-icon {
  background-color: rgba(75, 190, 230, 0.6);
}
#features .feature-card:nth-child(1) path {
  fill: #fff;
}
#features .feature-card:nth-child(2) {
  background-color: rgba(255, 143, 171, 0.2);
}
#features .feature-card:nth-child(2) .feature-icon {
  background-color: rgba(255, 143, 171, 0.6);
}
#features .feature-card:nth-child(2) path {
  fill: #fff;
}
#features .feature-card:nth-child(3) {
  background-color: rgba(255, 209, 102, 0.2);
}
#features .feature-card:nth-child(3) .feature-icon {
  background-color: rgba(255, 209, 102, 0.6);
}
#features .feature-card:nth-child(3) path {
  fill: #fff;
}
#features .feature-card:nth-child(4) {
  background-color: rgba(110, 220, 196, 0.2);
}
#features .feature-card:nth-child(4) .feature-icon {
  background-color: rgba(110, 220, 196, 0.8);
}
#features .feature-card:nth-child(4) path {
  fill: #fff;
}
#features .feature-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
#features .feature-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── Screenshots ─── */
#screenshots {
  background: var(--blue-light);
  padding: 100px 10vw;
}
#screenshots .section-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}
#screenshots .section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1;
}
#screenshots .section-sub {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.85;
  margin-bottom: 56px;
}
#screenshots .screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 680px;
  margin: 0 auto;
}
#screenshots .screen-item {
  text-align: center;
}
#screenshots .screen-frame {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 9/17;
  margin: 0 auto 14px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(75, 190, 230, 0.14), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1.5px solid rgba(75, 190, 230, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#screenshots .screen-notch {
  height: 14px;
  background: var(--dark);
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
#screenshots .screen-notch::after {
  content: "";
  width: 48px;
  height: 10px;
  background: var(--dark);
  border-radius: 0 0 8px 8px;
}
#screenshots .screen-body {
  flex: 1;
  background: var(--blue-light);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#screenshots .sb-bar {
  border-radius: 5px;
  height: 20px;
}
#screenshots .sb-row {
  background: white;
  border-radius: 5px;
  height: 16px;
  opacity: 0.9;
}
#screenshots .sb-btn {
  border-radius: 5px;
  height: 20px;
  margin-top: auto;
}
#screenshots .sb-center {
  flex: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 4px 0;
}
#screenshots .screen-img {
  width: 100%;
  max-width: 200px;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(75, 190, 230, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  margin: 0 auto 14px;
  display: block;
}
#screenshots .screen-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

/* ─── Footer ─── */
footer {
  background: var(--dark);
  padding: 64px 24px 40px;
  text-align: center;
}
footer .footer-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 20px;
}
footer .footer-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
footer .footer-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
footer .footer-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}
footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
footer .footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
footer .footer-links a:hover {
  color: var(--blue);
}
footer .footer-links span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}
footer .footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.8;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 90px 24px 60px;
    min-height: auto;
  }
  .hero-right {
    display: none;
  }
  #features {
    padding: 80px 24px;
  }
  #features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #screenshots {
    padding: 80px 24px;
  }
  #screenshots .screens-grid {
    gap: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
