@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;600;700&display=swap");

:root {
  --ink: #1b3551;
  --ink-soft: #5a6f86;
  --navy: #12355b;
  --teal: #2176c7;
  --teal-dark: #185fa8;
  --mint: #e8f4fb;
  --paper: #f7fafd;
  --white: #ffffff;
  --line: #d8e5f0;
  --blue-soft: #e6f1fb;
  --coral-soft: #edf5fc;
  --max-width: 1160px;
  --shadow: 0 24px 70px rgba(18, 53, 91, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 253, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 30px rgba(18, 53, 91, 0.07);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-logo-wrap {
  display: block;
  width: 340px;
  height: 70px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 340px;
  max-width: none;
  height: auto;
  transform: translateY(-55px);
}

.brand-mark {
  position: relative;
  display: flex;
  width: 27px;
  height: 27px;
  align-items: end;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(18, 53, 91, 0.22);
  border-radius: 7px;
  transform: rotate(-3deg);
}

.brand-mark span {
  width: 4px;
  background: var(--teal);
  border-radius: 2px 2px 1px 1px;
}

.brand-mark span:nth-child(1) { height: 7px; }
.brand-mark span:nth-child(2) { height: 12px; }
.brand-mark span:nth-child(3) { height: 17px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  transition: color 0.2s;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 9px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.nav-contact:hover {
  color: var(--white) !important;
  background: var(--teal-dark);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(33, 118, 199, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 118, 199, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 78%);
}

.hero-layout {
  position: relative;
  display: grid;
  min-height: 660px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  padding-top: 48px;
  padding-bottom: 68px;
}

.eyebrow,
.section-index,
.card-kicker,
.product-type,
.visual-label {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--teal-dark);
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(33, 118, 199, 0.12);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.3;
}

.hero h1 em {
  position: relative;
  color: var(--teal-dark);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 7px;
  background: url("data:image/svg+xml,%3Csvg width='300' height='8' viewBox='0 0 300 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5c70-4 145 2 296-3' fill='none' stroke='%23168b86' stroke-width='3' stroke-linecap='round' opacity='.42'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  content: "";
}

.hero-lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 10px 24px rgba(18, 53, 91, 0.15);
}

.button-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(18, 53, 91, 0.2);
}

.button-primary svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.65);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 53, 91, 0.08);
}

.hero-visual {
  position: relative;
  height: 480px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(33, 118, 199, 0.16);
  border-radius: 50%;
}

.orbit-one {
  inset: 32px 9px 28px 7px;
  transform: rotate(-12deg);
}

.orbit-two {
  inset: 88px -45px 72px 65px;
  border-style: dashed;
  transform: rotate(21deg);
}

.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 53, 91, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-main {
  top: 73px;
  left: 42px;
  width: 365px;
  padding: 30px 32px 26px;
  border-radius: 13px;
  transform: rotate(-2deg);
}

.visual-label {
  padding-bottom: 16px;
  color: var(--teal-dark);
  border-bottom: 1px solid var(--line);
}

.step-list {
  padding-top: 8px;
}

.step {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr;
  min-height: 64px;
}

.step span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 50%;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.step.active span {
  color: var(--white);
  background: var(--teal);
}

.step p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.step i {
  position: absolute;
  bottom: -7px;
  left: 13px;
  width: 1px;
  height: 23px;
  background: var(--line);
}

.card-note {
  right: 5px;
  bottom: 70px;
  display: flex;
  width: 168px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 9px;
  transform: rotate(4deg);
}

.card-note p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.note-icon {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.visual-dot {
  position: absolute;
  border-radius: 50%;
}

.dot-one {
  top: 42px;
  right: 68px;
  width: 14px;
  height: 14px;
  background: var(--teal);
  box-shadow: 0 0 0 9px rgba(33, 118, 199, 0.1);
}

.dot-two {
  bottom: 76px;
  left: 27px;
  width: 10px;
  height: 10px;
  background: #7ec8e3;
}

.section {
  padding: 120px 0;
}

.section-heading {
  margin-bottom: 58px;
}

.section-index {
  margin: 0 0 20px;
  color: var(--teal-dark);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.35;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.heading-note {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 14px;
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
}

.about-copy {
  padding-left: 8%;
}

.about-copy p:not(.large-copy) {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 15px;
}

.large-copy {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.8;
}

.values-card {
  padding: 36px 38px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 12px 12px 0 var(--mint);
}

.card-kicker {
  margin: 0;
  padding-bottom: 18px;
  color: var(--teal-dark);
  border-bottom: 1px solid var(--line);
}

.values-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 48px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.values-list li:last-child {
  border-bottom: 0;
}

.values-list li > span {
  color: var(--teal);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}

.values-list strong,
.values-list small {
  display: block;
}

.values-list strong {
  font-size: 15px;
}

.values-list small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::after {
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(33, 118, 199, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(33, 118, 199, 0.025), 0 0 0 140px rgba(33, 118, 199, 0.02);
  content: "";
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 285px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  border-color: rgba(33, 118, 199, 0.35);
  box-shadow: 0 16px 35px rgba(18, 53, 91, 0.07);
  transform: translateY(-4px);
}

.service-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.service-number {
  color: #91a9bf;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}

.service-icon {
  width: 38px;
  height: 38px;
  padding: 6px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.service-card h3 {
  margin: 27px 0 13px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.service-card p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.service-tags span {
  padding: 3px 10px;
  color: var(--teal-dark);
  background: #f1f7fc;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
}

.service-card-wide {
  display: grid;
  min-height: auto;
  align-items: center;
  grid-column: 1 / -1;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
}

.service-card-wide .service-top {
  flex-direction: column;
  gap: 22px;
}

.service-card-wide h3 {
  margin: 0 0 8px;
}

.service-card-wide .service-tags {
  justify-content: end;
  margin: 0;
}

.products {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-coral {
  color: #4a3040;
  background: #fff8fa;
  border-color: rgba(212, 184, 224, 0.55);
  box-shadow: 0 4px 24px rgba(200, 120, 150, 0.08);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-coral:hover {
  box-shadow: 0 18px 42px rgba(200, 120, 150, 0.16);
}

.product-labo {
  background: #f5f9fe;
  border-color: #c9dced;
}

.product-labo:hover {
  box-shadow: 0 18px 42px rgba(33, 118, 199, 0.14);
}

.product-art {
  position: relative;
  height: 265px;
  overflow: hidden;
}

.product-blue .product-art {
  background: var(--blue-soft);
}

.product-coral .product-art {
  background:
    linear-gradient(160deg, rgba(255, 217, 228, 0.68) 0 22%, transparent 22% 100%),
    linear-gradient(28deg, rgba(230, 214, 247, 0.64) 0 26%, transparent 26% 100%),
    linear-gradient(135deg, #ffeff5 0%, #fff8fa 48%, #f1e8fb 100%);
}

.product-labo .product-art {
  background: #e9f3fd;
}

.product-art::before {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(18, 53, 91, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 53, 91, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
}

.product-coral .product-art::before {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(232, 160, 176, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 160, 216, 0.12) 1px, transparent 1px);
}

.product-labo .product-art::before {
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(33, 118, 199, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 118, 199, 0.1) 1px, transparent 1px);
}

.status-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.status-badge i {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(33, 118, 199, 0.12);
}

.product-art-pen svg {
  position: absolute;
  right: 6%;
  bottom: 8px;
  width: 86%;
}

.draw-line {
  fill: none;
  stroke: rgba(18, 53, 91, 0.36);
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  stroke-width: 2;
}

.pen {
  fill: rgba(255, 255, 255, 0.54);
  stroke: var(--navy);
  stroke-linejoin: round;
  stroke-width: 2;
}

.pen-detail {
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-width: 2;
}

.tag-shape {
  position: absolute;
  z-index: 2;
  padding: 9px 17px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 53, 91, 0.15);
  border-radius: 5px;
  box-shadow: 0 9px 22px rgba(18, 53, 91, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.product-coral .tag-shape {
  color: #4a3040;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 183, 197, 0.48);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(200, 120, 150, 0.12);
}

.tag-a {
  top: 91px;
  left: 14%;
  transform: rotate(-7deg);
}

.tag-b {
  top: 150px;
  left: 33%;
  transform: rotate(3deg);
}

.tag-c {
  top: 66px;
  right: 12%;
  transform: rotate(7deg);
}

.bookmark-shape {
  position: absolute;
  right: 15%;
  bottom: 20px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: #d98167;
  border-radius: 50%;
  transform: rotate(8deg);
}

.product-coral .bookmark-shape {
  background: #e8a0b0;
  box-shadow: 0 12px 30px rgba(200, 120, 150, 0.2);
}

.review-report {
  position: absolute;
  top: 67px;
  left: 12%;
  z-index: 2;
  display: grid;
  width: 62%;
  gap: 11px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(33, 118, 199, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(33, 118, 199, 0.12);
}

.report-title {
  color: #12355b;
  font-size: 12px;
  font-weight: 700;
}

.review-row {
  display: grid;
  grid-template-columns: 7px 1fr 44px;
  align-items: center;
  gap: 7px;
}

.review-row i {
  width: 7px;
  height: 7px;
  background: #2176c7;
  border-radius: 50%;
}

.review-row b {
  color: #426178;
  font-size: 10px;
  font-weight: 600;
}

.review-row em {
  height: 5px;
  background: #8ecae6;
  border-radius: 999px;
}

.review-row:nth-child(3) em { width: 72%; }
.review-row:nth-child(4) em { width: 54%; }

.review-lens {
  position: absolute;
  right: 10%;
  bottom: 27px;
  z-index: 3;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  background: #2176c7;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(33, 118, 199, 0.25);
  transform: rotate(-10deg);
}

.review-lens svg {
  width: 31px;
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-width: 3;
}

.bookmark-shape svg {
  width: 28px;
  fill: rgba(255, 255, 255, 0.93);
}

.product-body {
  padding: 34px 36px 36px;
}

.product-type {
  margin: 0;
  color: var(--teal-dark);
  font-size: 10px;
}

.product-coral .product-type {
  color: #c47aa0;
}

.product-labo .product-type {
  color: #2176c7;
}

.product-body h3 {
  margin: 8px 0 17px;
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.product-coral .product-body h3 {
  color: #4a3040;
}

.product-labo .product-body h3 {
  color: #12355b;
}

.product-body > p:not(.product-type) {
  min-height: 101px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-coral .product-body > p:not(.product-type) {
  color: #806472;
}

.product-labo .product-body > p:not(.product-type) {
  color: #526b7d;
}

.use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.use-list li {
  padding: 4px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 10px;
}

.product-coral .use-list li {
  color: #4a3040;
  background: #fff8fa;
  border-color: rgba(255, 183, 197, 0.42);
  border-radius: 12px;
}

.product-labo .use-list li {
  color: #12355b;
  background: #f5f9fe;
  border-color: #bfd9ef;
}

.future-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  color: #7a898d;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.future-link span {
  font-size: 18px;
}

.product-coral .future-link {
  color: #c47aa0;
  border-top-color: rgba(212, 184, 224, 0.5);
}

.product-coral .future-link:hover {
  color: #4a3040;
}

.product-labo .future-link {
  color: #2176c7;
  border-top-color: #c9dced;
}

.product-labo .future-link:hover {
  color: #12355b;
}

.roadmap-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 38px;
  padding: 22px;
  background: var(--paper);
  border-radius: 7px;
}

.roadmap-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.roadmap-note strong {
  color: var(--ink);
}

.roadmap-line {
  position: relative;
  display: flex;
  width: 72px;
  justify-content: space-between;
}

.roadmap-line::before {
  position: absolute;
  top: 4px;
  right: 3px;
  left: 3px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.roadmap-line i {
  z-index: 1;
  width: 9px;
  height: 9px;
  background: var(--paper);
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.roadmap-line i:first-child {
  background: var(--teal);
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.contact-decoration {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(255, 255, 255, 0.02),
    0 0 0 120px rgba(255, 255, 255, 0.015);
}

.contact-decoration::after {
  position: absolute;
  right: 170px;
  bottom: 20px;
  width: 12px;
  height: 12px;
  background: #7ec8e3;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(126, 200, 227, 0.18);
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-index.light {
  color: #8ecae6;
}

.contact h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.05em;
}

.contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.email-link {
  display: flex;
  width: min(100%, 560px);
  align-items: center;
  justify-content: space-between;
  margin: 38px auto 17px;
  padding: 18px 23px;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(17px, 3vw, 21px);
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}

.email-link:hover {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.email-link svg {
  width: 25px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.business-info {
  width: min(100%, 760px);
  margin: 46px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
}

.business-info h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
}

.business-info dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin: 0;
}

.business-info dl > div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-info dl > div:nth-child(1),
.business-info dl > div:nth-child(2) {
  border-top: 0;
}

.business-info dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.business-info dd {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.business-info address {
  font-style: normal;
}

.business-info a {
  text-decoration: underline;
  text-decoration-color: rgba(142, 202, 230, 0.6);
  text-underline-offset: 3px;
}

.business-info a:hover {
  color: #bde4f6;
}

.business-info-wide {
  grid-column: 1 / -1;
}

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

.policy-container {
  width: min(calc(100% - 48px), 820px);
}

.policy-page h1 {
  margin: 8px 0 24px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.03em;
}

.policy-lead {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.policy-content {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.policy-content section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 18px;
}

.policy-content p,
.policy-content li,
.policy-details {
  color: var(--ink-soft);
  font-size: 14px;
}

.policy-content p {
  margin: 0;
}

.policy-content p + p {
  margin-top: 14px;
}

.policy-content ul {
  margin: 12px 0 0;
  padding-left: 1.4em;
}

.policy-content a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-details {
  display: grid;
  gap: 0;
  margin: 0;
}

.policy-details div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 9px 0;
}

.policy-details dt {
  color: var(--ink);
  font-weight: 600;
}

.policy-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.policy-date {
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer {
  padding: 48px 0 28px;
  background: #0f2f53;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 36px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-links {
  display: flex;
  gap: 30px;
  font-size: 11px;
}

.footer-links a {
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a span {
  margin-left: 5px;
  color: #8ecae6;
}

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

.reveal-delay {
  transition-delay: 0.12s;
}

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

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 82px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 560px);
    height: 420px;
    margin: 0 auto;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-copy {
    max-width: 720px;
    padding-left: 0;
  }

  .values-card {
    max-width: 650px;
  }

  .product-body > p:not(.product-type) {
    min-height: 151px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  html {
    scroll-padding-top: 70px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-logo-wrap {
    width: 205px;
    height: 42px;
  }

  .brand-logo {
    width: 205px;
    transform: translateY(-34px);
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-button span {
    width: 21px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.2s, opacity 0.2s;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(247, 250, 253, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 25px rgba(18, 53, 91, 0.08);
  }

  .site-nav.open {
    display: flex;
    flex-direction: column;
  }

  .site-nav a {
    padding: 12px 8px;
  }

  .nav-contact {
    margin-top: 6px;
    padding: 10px 16px !important;
    text-align: center;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    padding-top: 76px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-lead {
    font-size: 15px;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    height: 350px;
    margin-top: 20px;
  }

  .card-main {
    top: 45px;
    left: 2%;
    width: 88%;
    padding: 24px 25px 20px;
  }

  .card-note {
    right: 1%;
    bottom: 24px;
  }

  .orbit-one {
    inset: 16px 0 20px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .heading-row {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

  .large-copy {
    font-size: 18px;
  }

  .values-card {
    padding: 28px 24px 10px;
    box-shadow: 7px 7px 0 var(--mint);
  }

  .service-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card-wide {
    display: block;
  }

  .service-card-wide .service-top {
    flex-direction: row;
  }

  .service-card-wide h3 {
    margin-top: 27px;
  }

  .service-card-wide .service-tags {
    justify-content: start;
    margin-top: 24px;
  }

  .product-art {
    height: 230px;
  }

  .product-body {
    padding: 28px 25px 30px;
  }

  .product-body > p:not(.product-type) {
    min-height: auto;
  }

  .roadmap-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .contact h2 {
    font-size: 40px;
  }

  .email-link {
    padding: 16px 18px;
  }

  .business-info dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .business-info dl > div:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .policy-container {
    width: min(calc(100% - 32px), 820px);
  }

  .policy-content {
    margin-top: 40px;
  }

  .policy-content section {
    padding: 26px 0;
  }

  .policy-details div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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