:root {
  --bg: #f8f9fa;
  --surface: #ffffff;
  --surface-soft: #eef0f2;
  --surface-dark: #050606;
  --ink: #171a1c;
  --muted: #5b6168;
  --line: #d9dde1;
  --lime: #d8ef00;
  --lime-soft: #f2ffc2;
  --shadow: 0 18px 50px rgba(15, 18, 20, 0.08);
  --radius: 16px;
  --container: 1120px;
  --font: Inter, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 249, 250, 0.92);
  border-bottom: 1px solid rgba(23, 26, 28, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.brand {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.brand img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 6px 0;
}

.nav a[aria-current="page"]::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--lime);
}

.nav .button {
  position: absolute;
  top: 50%;
  right: 0;
  padding: 0 18px;
  transform: translateY(-50%);
}

.nav .button:hover {
  transform: translateY(-50%);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-lime {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.hero .button-outline,
.section-dark .button-outline,
.card-dark .button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero .button-outline {
  border-color: rgba(23, 26, 28, 0.18);
  color: var(--ink);
}

.button-outline:hover {
  color: #fff;
  background: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(216, 239, 0, 0.34), transparent 34%),
    linear-gradient(135deg, #fbffdf 0%, #f3fac4 44%, #f8f9f1 100%);
  color: var(--ink);
  overflow: hidden;
}

.hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
  padding: 84px 0;
}

.hero-title {
  margin: 24px 0 20px;
  max-width: 680px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title .accent {
  color: #5f7200;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 32px;
  color: #48514d;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-card {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(23, 26, 28, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    #eef0f2;
  box-shadow: 0 26px 70px rgba(15, 18, 20, 0.16);
  padding: 26px;
  display: grid;
  align-content: center;
  overflow: hidden;
}

.hero-image-card {
  min-height: 0;
  padding: 0;
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.phone-panel {
  width: min(280px, 76%);
  aspect-ratio: 0.55;
  margin: 0 auto;
  border: 12px solid #0c0f10;
  border-radius: 36px;
  background:
    radial-gradient(circle at 60% 28%, rgba(216, 239, 0, 0.35), transparent 18%),
    linear-gradient(135deg, #1b2427, #071011);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  position: relative;
}

.phone-panel::before,
.phone-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--lime);
}

.phone-panel::before {
  width: 54px;
  height: 54px;
  top: 28%;
  left: 24%;
  box-shadow: 76px 58px 0 rgba(216, 239, 0, 0.85), 34px 128px 0 rgba(216, 239, 0, 0.62);
}

.phone-panel::after {
  width: 70%;
  height: 12px;
  left: 15%;
  bottom: 24%;
  opacity: 0.9;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-tight + .section {
  padding-top: 24px;
}

.section-dark {
  background: var(--surface-dark);
  color: #fff;
}

.section-soft {
  background: var(--surface-soft);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.container.section-head {
  max-width: var(--container);
}

.container.section-head p {
  max-width: 760px;
}

.section-head.left {
  text-align: left;
}

.compact-head {
  margin-bottom: 20px;
}

.full-head {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.section-head h1,
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 24px;
}

.flow {
  display: grid;
  gap: 24px;
}

.flow .section-head {
  margin-bottom: 20px;
}

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

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

.card {
  border: 1px solid rgba(23, 26, 28, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: #050606;
  color: #fff;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.35;
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: #4d5400;
  font-weight: 800;
  font-size: 0.75rem;
}

.app-card {
  display: grid;
  gap: 20px;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--surface-soft);
  object-fit: contain;
  padding: 12px;
}

.store-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.store-row img {
  width: auto;
  height: 40px;
}

.app-store-links {
  margin-bottom: 16px;
}

.screen-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: flex-start;
}

.screen-row img {
  width: min(190px, 45%);
  height: auto;
}

.app-screen-row {
  padding: 24px;
  border-radius: 24px;
  background: #101416;
  box-shadow: var(--shadow);
}

.app-screen-row img {
  max-height: 420px;
  object-fit: contain;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--lime);
  flex: 0 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.access-layout {
  align-items: stretch;
}

.access-layout > * {
  min-height: 100%;
}

.access-map {
  order: 1;
  display: grid;
}

.access-photo {
  order: 2;
}

.access-map .map-box {
  height: 100%;
}

.media-box {
  border-radius: 24px;
  overflow: hidden;
  background: #101416;
  box-shadow: var(--shadow);
}

.media-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.map-box {
  overflow: hidden;
  border: 1px solid rgba(23, 26, 28, 0.08);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.access-guide {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    url("/assets/company_access_ill.png") right 24px top 24px / 150px auto no-repeat,
    var(--surface);
}

.access-guide h3 {
  margin: 0 0 16px;
}

.access-guide .feature-list {
  max-width: 760px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table th {
  width: 32%;
  color: var(--muted);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 18px;
}

.form-page {
  display: grid;
  gap: 28px;
  max-width: 760px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #eef0f2;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}

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

.form-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.privacy-consent {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 14px;
  background: #eef0f2;
}

.privacy-consent h2 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.privacy-consent ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.confirm-view {
  display: grid;
  gap: 20px;
}

.confirm-view h2,
.confirm-view p {
  margin: 0;
}

.confirm-actions {
  margin-top: 4px;
}

.complete-view {
  display: grid;
  gap: 18px;
}

.complete-view p {
  margin: 0;
  color: var(--muted);
}

.complete-view .button {
  justify-self: start;
}

.notice {
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--lime-soft);
  color: #383d00;
}

.error {
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffe4e4;
  color: #8a1111;
}

.policy h2,
.policy h3 {
  margin-top: 34px;
}

.policy p {
  color: var(--muted);
}

.site-footer {
  padding: 56px 0 28px;
  background: #050606;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-grid p,
.footer-grid a,
.copyright {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--lime);
}

.copyright {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 64px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 22px;
    background: rgba(248, 249, 250, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    position: static;
  }

  .nav .button {
    position: static;
    transform: none;
  }

  .nav .button:hover {
    transform: none;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-inner,
  .split,
  .grid-2,
  .grid-3,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 64px 0;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-actions,
  .actions,
  .store-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .table th,
  .table td {
    display: block;
    width: 100%;
  }

  .table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .table td {
    padding-top: 0;
  }
}
