:root {
  --blue: #37b8ee;
  --blue-deep: #008fd1;
  --blue-dark: #152d37;
  --cyan: #67d9d1;
  --orange: #f79b59;
  --paper: #fbfbf7;
  --ink: #172631;
  --muted: #5c6d77;
  --line: rgba(21, 45, 55, 0.14);
  --shadow: 0 18px 50px rgba(20, 75, 100, 0.14);
  --header-h: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 20%, rgba(55, 184, 238, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(12, 124, 184, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(12, 124, 184, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 28px 28px, 28px 28px, auto;
  font-family: "Arial", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

main section,
article[id] {
  scroll-margin-top: 128px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  pointer-events: none;
}

.brand {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(300px, 34vw);
  height: 116px;
  padding: 0 32px;
  color: #fff;
  background: var(--blue);
  border-radius: 0 0 34px 0;
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 35px;
  flex: 0 0 auto;
  border: 5px solid currentColor;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.brand-mark::before {
  left: 16px;
  top: -16px;
  width: 5px;
  height: 45px;
  border-radius: 99px;
}

.brand-mark::after {
  left: 14px;
  top: 13px;
  width: 33px;
  height: 5px;
  border-radius: 99px;
}

.brand-mark.large {
  width: 80px;
  height: 62px;
  border-width: 7px;
}

.brand-mark.large::before {
  left: 29px;
  top: -28px;
  width: 7px;
  height: 78px;
}

.brand-mark.large::after {
  left: 27px;
  top: 24px;
  width: 60px;
  height: 7px;
}

.brand-word {
  font-size: clamp(24px, 2.5vw, 39px);
  line-height: 1;
  white-space: nowrap;
}

.global-nav {
  position: absolute;
  top: 36px;
  right: 36px;
  width: min(760px, calc(100vw - 420px));
  min-height: 58px;
  pointer-events: auto;
}

.global-nav ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  min-height: 58px;
  margin: 0;
  padding: 0 0 0 22px;
  list-style: none;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.global-nav li {
  position: relative;
  display: flex;
  align-items: center;
}

.global-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 13px;
  color: #13242d;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.has-menu > a::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 8px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, #fff 48% 52%, transparent 53%),
    var(--blue);
}

.nav-contact {
  min-width: 170px;
  margin-left: 8px;
  color: #fff !important;
  background: var(--blue);
  border-radius: 999px;
}

.sub-menu {
  position: absolute;
  top: 64px;
  left: 50%;
  min-width: 170px;
  padding: 13px;
  background: #fff;
  border: 1px solid rgba(55, 184, 238, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sub-menu a {
  justify-content: flex-start;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 10px;
}

.sub-menu a:hover {
  color: var(--blue-deep);
  background: rgba(55, 184, 238, 0.08);
}

.has-menu:hover .sub-menu,
.has-menu:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.menu-toggle {
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 80;
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(211, 243, 255, 0.88), rgba(255, 255, 255, 0.18) 24%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.64));
}

.hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 92svh;
  padding: 150px 24px 80px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--blue-deep);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(56px, 8vw, 116px);
  font-weight: 900;
  line-height: 1.05;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-shadow: 0 10px 25px rgba(55, 184, 238, 0.14);
}

.hero-sign {
  margin: 18px 0 0;
  color: var(--blue);
  font-family: "Trebuchet MS", cursive, sans-serif;
  font-size: clamp(30px, 4vw, 58px);
  font-style: italic;
}

.statement {
  position: relative;
  min-height: 1080px;
  padding: 170px 0 180px;
  overflow: hidden;
}

.statement-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.86)),
    url("../images/hero-collage.png") center / cover no-repeat;
  filter: saturate(0.78);
  transform: scale(1.04);
}

.statement-copy {
  position: sticky;
  top: 170px;
  width: min(620px, calc(100% - 48px));
  margin-left: clamp(24px, 20vw, 300px);
}

.statement-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.45;
}

.statement-copy p,
.statement-copy strong {
  display: block;
  max-width: 550px;
  margin: 0 0 28px;
  font-size: 19px;
  line-height: 2.15;
}

.statement-copy strong {
  margin-top: 42px;
  color: var(--blue-deep);
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.25;
}

.section-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.section-wave {
  position: relative;
  padding: 155px 0 120px;
  background: var(--paper);
}

.section-wave::before,
.section-wave::after,
.product::before,
.policy::before,
.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 130vw;
  height: 160px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateX(-50%);
}

.section-wave::before {
  top: -78px;
}

.section-wave::after {
  bottom: -80px;
  z-index: 1;
  transform: translateX(-50%) rotate(180deg);
}

.work-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px 72px;
  align-items: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(60px, 11vw, 138px);
  line-height: 0.88;
  letter-spacing: 0;
}

.section-heading h2 span,
.inline-heading h2 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue-dark) 0 22%, var(--blue) 22% 46%, var(--cyan) 46% 68%, var(--blue-dark) 68%);
  -webkit-background-clip: text;
  background-clip: text;
}

.label {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.5vw, 34px);
}

.work-copy p,
.policy-copy p,
.company-copy p {
  margin: 0 0 36px;
  font-size: 19px;
  line-height: 2.1;
}

.dark-cta {
  display: inline-grid;
  grid-template-columns: minmax(210px, 310px) 64px;
  align-items: stretch;
  min-height: 88px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.dark-cta span {
  display: grid;
  place-items: center;
  padding: 0 24px;
  font-size: 23px;
}

.dark-cta i,
.outline-button i {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffc173, var(--orange));
}

.dark-cta i::before,
.outline-button i::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.work-visual {
  position: relative;
  min-height: 360px;
}

.float-card {
  position: absolute;
  border-radius: 14px;
  background: linear-gradient(180deg, #34bcf0, #9bdff6);
  box-shadow: var(--shadow);
}

.float-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
}

.card-shirt {
  top: 10px;
  right: 30px;
  width: 245px;
  height: 260px;
  clip-path: polygon(22% 0, 42% 12%, 58% 12%, 78% 0, 100% 24%, 82% 42%, 82% 100%, 18% 100%, 18% 42%, 0 24%);
  transform: rotate(6deg);
}

.card-ticket {
  left: 24px;
  top: 110px;
  width: 190px;
  height: 118px;
  transform: rotate(-11deg);
}

.card-device {
  right: 110px;
  bottom: 18px;
  width: 150px;
  height: 120px;
  border-radius: 40px;
  transform: rotate(12deg);
}

.service-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 72px;
}

.service-card {
  min-height: 240px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(55, 184, 238, 0.15);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(20, 75, 100, 0.08);
}

.service-card span {
  color: var(--blue);
  font-size: 17px;
}

.service-card h3 {
  margin: 22px 0 16px;
  font-size: 34px;
  line-height: 1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.product {
  position: relative;
  padding: 160px 0 120px;
  background: var(--paper);
}

.product::before {
  top: -72px;
  z-index: 0;
}

.inline-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: clamp(22px, 6vw, 82px);
  margin-bottom: 76px;
}

.product-panels {
  display: grid;
  gap: 72px;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 0.72fr);
  min-height: 430px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.product-panel.reverse {
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
}

.product-panel.reverse .product-text {
  order: 2;
}

.product-text {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 54px 38px;
  text-align: center;
  background:
    radial-gradient(circle at 8% 10%, rgba(55, 184, 238, 0.2) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(55, 184, 238, 0.09), transparent 42%),
    #fff;
}

.product-text::before,
.product-text::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  height: 8px;
  background-image: radial-gradient(circle, var(--blue) 2px, transparent 2.7px);
  background-size: 18px 8px;
  opacity: 0.35;
}

.product-text::before {
  top: 52px;
}

.product-text::after {
  bottom: 52px;
}

.vertical-label {
  margin: 0;
  color: var(--blue-deep);
  font-size: 12px;
  writing-mode: vertical-rl;
  position: absolute;
  left: 58px;
  top: 94px;
}

.product-text h3 {
  margin: 0 0 30px;
  color: var(--blue);
  font-size: clamp(58px, 7vw, 98px);
  line-height: 0.9;
}

.product-text p:not(.vertical-label) {
  margin: 0 0 34px;
  font-size: 19px;
  line-height: 1.8;
}

.product-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.blue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 62px;
  padding: 0 28px;
  color: #fff;
  background: var(--blue);
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(55, 184, 238, 0.22);
}

.product-illustration {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 68% 36%, rgba(255, 255, 255, 0.92) 0 8%, transparent 9%),
    linear-gradient(140deg, #dff5fc, #36b9ed 62%, #058fd3);
}

.product-illustration span {
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.capsule {
  left: 16%;
  top: 22%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
}

.ticket {
  right: 18%;
  top: 21%;
  width: 190px;
  height: 120px;
  border-radius: 12px;
  transform: rotate(12deg);
}

.badge {
  left: 50%;
  bottom: 18%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.blue-company {
  position: relative;
  min-height: 720px;
  padding: 150px 0 160px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 55%, rgba(255, 255, 255, 0.14) 0 12%, transparent 13%),
    linear-gradient(145deg, #0794d0, #33bee9 72%);
}

.blue-company::before,
.blue-company::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 130vw;
  height: 170px;
  background: var(--paper);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: translateX(-50%);
}

.blue-company::before {
  top: -1px;
}

.blue-company::after {
  bottom: -1px;
  transform: translateX(-50%) rotate(180deg);
}

.blue-company-map {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(860px, 80vw);
  height: 330px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(ellipse at 52% 80%, rgba(0, 113, 190, 0.95), rgba(0, 143, 209, 0.2) 64%, transparent 65%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.2) 0 1px, transparent 1px 8px);
  transform: translateX(-50%);
  opacity: 0.8;
}

.company-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 230px;
  color: var(--blue-deep);
  background: #fff;
  border-radius: 52% 48% 50% 43% / 45% 54% 42% 56%;
  box-shadow: var(--shadow);
  font-size: clamp(34px, 5vw, 68px);
}

.section-heading.light h2 {
  color: #fff;
  font-size: clamp(58px, 7.5vw, 100px);
}

.section-heading.light p {
  margin: 10px 0 44px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.company-copy p {
  max-width: 520px;
}

.policy {
  position: relative;
  padding: 130px 0 150px;
  background: var(--paper);
  overflow: hidden;
}

.policy::before {
  top: -70px;
}

.policy-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.policy-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.policy .section-heading {
  position: relative;
  z-index: 2;
}

.policy-people {
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 1;
  width: min(360px, 38vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), #9ce6f9);
  opacity: 0.34;
  pointer-events: none;
}

.policy-people span {
  position: absolute;
  bottom: 16%;
  width: 26%;
  height: 54%;
  border: 4px solid #fff;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.policy-people span:nth-child(1) {
  left: 18%;
  transform: rotate(-8deg);
}

.policy-people span:nth-child(2) {
  left: 38%;
  height: 66%;
}

.policy-people span:nth-child(3) {
  left: 58%;
  transform: rotate(8deg);
}

.news {
  padding: 100px 0 130px;
  background: #fff;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 130px 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 98px;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  font-size: 16px;
}

.news-list span {
  color: var(--blue);
  font-size: 14px;
}

.news-list span::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 10px;
  background: rgba(55, 184, 238, 0.2);
  border-radius: 50%;
}

.news-list a {
  font-size: 18px;
  line-height: 1.6;
}

.outline-button {
  display: inline-grid;
  grid-template-columns: minmax(170px, auto) 42px;
  align-items: center;
  min-height: 66px;
  margin-top: 38px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(20, 75, 100, 0.04);
}

.outline-button:not(.entry-card .outline-button) {
  margin-left: 0;
}

.outline-button {
  padding-left: 28px;
}

.outline-button i {
  width: 42px;
  height: 42px;
  margin: 0 12px 0 18px;
  border-radius: 50%;
}

.kuji {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #8ed5f1, #37b8ee);
}

.kuji-bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/product-goods.png") center / cover no-repeat;
  opacity: 0.26;
  filter: saturate(1.25) contrast(0.9);
}

.kuji::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.4), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 9px);
}

.kuji-card {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(470px, calc(100% - 48px));
  min-height: 380px;
  padding: 48px;
  text-align: center;
  background: #fff;
  border-radius: 50% 50% 48% 52% / 48% 46% 54% 52%;
  box-shadow: var(--shadow);
}

.kuji-card p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.kuji-card h2 {
  margin: 12px 0 10px;
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(64px, 10vw, 112px);
  line-height: 0.9;
}

.kuji-card span {
  margin-bottom: 30px;
  color: var(--blue-dark);
  font-size: 22px;
}

.entry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding: 120px 0 140px;
}

.entry-card {
  min-width: 0;
}

.entry-image {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 10px;
}

.entry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(55, 184, 238, 0.08), rgba(0, 143, 209, 0.68));
}

.entry-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blue-filter img {
  filter: saturate(0.95);
}

.entry-card h2 {
  margin: 34px 0 20px;
  color: var(--blue);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.9;
}

.entry-card h2 span {
  color: var(--blue-deep);
  font-size: 24px;
}

.entry-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 130px 6vw 80px;
  color: #fff;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 12px),
    linear-gradient(145deg, #0794d0, #28b9e9);
}

.site-footer::before {
  top: -86px;
  background: var(--paper);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 55px;
  font-size: clamp(46px, 7vw, 82px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 34px 64px;
  max-width: 1040px;
  margin: 0 auto 70px;
}

.footer-links a {
  display: grid;
  gap: 9px;
  min-height: 58px;
  font-size: 24px;
}

.footer-links small {
  font-size: 13px;
}

.copyright {
  margin: 0;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  text-align: center;
  font-size: 13px;
}

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

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

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

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

@media (max-width: 1100px) {
  .brand {
    width: 250px;
    height: 94px;
    padding: 0 26px;
  }

  .global-nav {
    right: 22px;
    width: calc(100vw - 300px);
  }

  .global-nav a {
    padding: 0 9px;
    font-size: 12px;
  }

  .nav-contact {
    min-width: 130px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-h: 76px;
  }

  .brand {
    width: 190px;
    height: 76px;
    padding: 0 20px;
    border-radius: 0 0 24px 0;
  }

  .brand-mark {
    width: 34px;
    height: 28px;
    border-width: 4px;
  }

  .brand-mark::before {
    left: 12px;
    top: -13px;
    width: 4px;
    height: 36px;
  }

  .brand-mark::after {
    left: 11px;
    top: 10px;
    width: 26px;
    height: 4px;
  }

  .brand-word {
    font-size: 22px;
  }

  .menu-toggle {
    display: block;
    pointer-events: auto;
  }

  .global-nav {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    width: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-open .global-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    min-height: 0;
    padding: 14px;
    border-radius: 20px;
  }

  .global-nav li,
  .global-nav a {
    width: 100%;
  }

  .global-nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 14px;
  }

  .nav-contact {
    justify-content: center !important;
    margin-left: 0;
  }

  .sub-menu {
    display: none;
  }

  .statement {
    min-height: 880px;
    padding: 120px 0;
  }

  .statement-copy {
    position: relative;
    top: auto;
    margin: 0 auto;
  }

  .work-grid,
  .company-grid,
  .policy-grid,
  .entry {
    grid-template-columns: 1fr;
  }

  .work-visual {
    min-height: 280px;
  }

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

  .inline-heading {
    display: block;
  }

  .inline-heading .label {
    margin-top: 20px;
  }

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

  .product-panel.reverse .product-text {
    order: initial;
  }

  .product-panel img,
  .product-illustration {
    min-height: 300px;
  }

  .policy-people {
    position: relative;
    width: min(340px, 86vw);
    margin: 20px auto 0;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    padding: 22px 0;
  }

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

@media (max-width: 560px) {
  .section-inner {
    width: min(100% - 32px, 1080px);
  }

  .hero-center {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .statement-copy p,
  .statement-copy strong,
  .work-copy p,
  .policy-copy p,
  .company-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .section-wave,
  .product,
  .policy,
  .news,
  .entry {
    padding-top: 96px;
    padding-bottom: 96px;
  }

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

  .label {
    font-size: 22px;
  }

  .dark-cta {
    grid-template-columns: minmax(0, 1fr) 56px;
    width: 100%;
    min-height: 72px;
  }

  .dark-cta span {
    font-size: 19px;
  }

  .card-shirt {
    right: 0;
    width: 180px;
    height: 190px;
  }

  .card-ticket {
    left: 0;
    width: 150px;
    height: 96px;
  }

  .card-device {
    right: 78px;
    width: 120px;
    height: 96px;
  }

  .product-text {
    padding: 48px 24px;
  }

  .vertical-label {
    left: 24px;
    top: 72px;
  }

  .blue-company {
    padding: 110px 0 130px;
  }

  .company-logo {
    min-height: 160px;
    font-size: 32px;
  }

  .kuji {
    min-height: 480px;
  }

  .kuji-card {
    padding: 38px 24px;
  }

  .entry-image img {
    height: 230px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
