/* ================================================================
   ASVENTO — v3 「青空と追い風、前へ」
   明るい空 × 流れる風の曲線 × ロゴのスウッシュ角度の前進感
   ================================================================ */

/* ---------------- Tokens ---------------- */
:root {
  --sky-50: #f6fafd;
  --sky-100: #e9f4fb;
  --sky-200: #cfe8f8;
  --navy-900: #132646;
  --navy-700: #1d3a6e;
  --blue: #19469b;
  --cyan: #2fa8de;
  --cyan-deep: #2090c5;
  --teal: #79c0b6;
  --green: #b8d594;
  --ink: #22324e;
  --muted: #5d6f8c;
  --line: #dfe9f3;
  --white: #ffffff;
  --grad: linear-gradient(105deg, #b8d594 0%, #79c0b6 40%, #2fa8de 100%);
  --grad-deep: linear-gradient(105deg, #2fa8de 0%, #19469b 100%);
  --font-en: "Outfit", "Zen Kaku Gothic New", sans-serif;
  --font-jp: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-wind: cubic-bezier(.16, .84, .3, 1);
  --header-h: 74px;
  --skew: -10deg;
  --shadow-sm: 0 2px 14px rgba(29, 58, 110, .07);
  --shadow-md: 0 14px 40px rgba(29, 58, 110, .12);
  --shadow-lg: 0 28px 70px rgba(29, 58, 110, .16);
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
::selection { background: rgba(47, 168, 222, .3); }

.inner { width: min(1160px, calc(100% - 44px)); margin-inline: auto; }

/* ================================================================
   Splash — ロゴの開幕
   ================================================================ */
.splash {
  position: fixed; inset: 0; z-index: 300;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .55s ease, visibility .55s ease;
}
.splash.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-stage { position: relative; text-align: center; }
.splash-logo {
  width: min(210px, 44vw);
  margin-inline: auto;
  opacity: 0;
  transform: translateY(18px) scale(.92);
  animation: logoIn 1s var(--ease) .15s forwards;
}
.splash-swoosh {
  position: relative;
  width: min(300px, 62vw); height: 3px;
  margin: 26px auto 0;
  overflow: hidden;
  border-radius: 3px;
  transform: skewX(var(--skew));
  background: rgba(29, 58, 110, .08);
}
.splash-swoosh::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad);
  transform: translateX(-101%);
  animation: swoosh 1s var(--ease-wind) .45s forwards;
}
.splash-name {
  margin-top: 18px;
  font-family: var(--font-en);
  font-weight: 600; font-size: 15px; letter-spacing: .5em; text-indent: .5em;
  color: var(--navy-700);
  opacity: 0;
  animation: logoIn .8s var(--ease) .75s forwards;
}
@keyframes logoIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes swoosh { to { transform: translateX(0); } }
body.is-loading { overflow: hidden; }

/* ---------------- Scroll progress ---------------- */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 140;
  width: 100%; height: 3px;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
}

/* ================================================================
   Header
   ================================================================ */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 120;
  height: var(--header-h);
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(29,58,110,.06), var(--shadow-sm);
}
.header-inner {
  width: min(1320px, calc(100% - 40px));
  height: 100%; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-en);
  font-weight: 600; font-size: 21px; letter-spacing: .15em;
  color: var(--white);
  transition: color .4s ease;
}
.brand img { width: 34px; }
.brand .brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.brand .brand-mark img { width: 27px; }
.site-header.is-solid .brand { color: var(--navy-700); }
.site-header.is-solid .brand .brand-mark { background: var(--sky-100); }

.global-nav ul { display: flex; gap: clamp(14px, 2.2vw, 30px); align-items: center; }
.global-nav a {
  position: relative;
  font-family: var(--font-en);
  font-weight: 500; font-size: 13.5px; letter-spacing: .13em;
  color: rgba(255,255,255,.92);
  padding: 10px 4px;
  transition: color .35s ease;
}
.site-header.is-solid .global-nav a { color: var(--muted); }
.global-nav a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 5px;
  height: 2px; border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0) skewX(var(--skew)); transform-origin: left;
  transition: transform .4s var(--ease-wind);
}
.global-nav a:hover, .global-nav a.is-active { color: var(--white); }
.site-header.is-solid .global-nav a:hover,
.site-header.is-solid .global-nav a.is-active { color: var(--navy-700); }
.global-nav a:hover::after, .global-nav a.is-active::after {
  transform: scaleX(1) skewX(var(--skew));
}

/* hamburger */
.menu-btn {
  display: none; position: relative; z-index: 140;
  width: 52px; height: 52px; border: 0; cursor: pointer;
  background: transparent;
}
.menu-btn i, .menu-btn::before, .menu-btn::after {
  content: ""; position: absolute; left: 14px;
  width: 24px; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: all .4s var(--ease);
}
.site-header.is-solid .menu-btn i,
.site-header.is-solid .menu-btn::before,
.site-header.is-solid .menu-btn::after { background: var(--navy-700); }
.menu-btn::before { top: 19px; }
.menu-btn i { top: 25px; width: 17px; }
.menu-btn::after { top: 31px; }
body.menu-open .menu-btn::before { top: 25px; transform: rotate(45deg); background: var(--navy-700); }
body.menu-open .menu-btn i { opacity: 0; transform: translateX(8px); }
body.menu-open .menu-btn::after { top: 25px; transform: rotate(-45deg); background: var(--navy-700); }

/* ================================================================
   Hero — 明るい空
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--sky-100);
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(1.06) saturate(1.12);
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(168deg, rgba(19, 38, 70, .34) 0%, rgba(19, 38, 70, .10) 42%, rgba(246, 250, 253, 0) 68%),
    linear-gradient(to bottom, rgba(246,250,253,0) 72%, var(--sky-50) 99%);
}
#windCanvas { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }

.hero-ribbon {
  position: absolute; z-index: 2;
  left: -12%; right: -12%; bottom: 16%;
  height: clamp(90px, 16vh, 150px);
  transform: rotate(-8deg);
  background: linear-gradient(105deg, rgba(184,213,148,.18), rgba(121,192,182,.2) 40%, rgba(47,168,222,.16));
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.hero-ribbon::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.5) 12%, transparent 26%);
  animation: ribbonShine 5.5s var(--ease-wind) 2s infinite;
}
@keyframes ribbonShine {
  0% { transform: translateX(-60%); }
  55%, 100% { transform: translateX(110%); }
}

.hero-inner {
  position: relative; z-index: 4;
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
  padding-top: var(--header-h);
}
.hero-title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(58px, 11.5vw, 150px);
  line-height: 1;
  letter-spacing: .06em;
  color: var(--white);
  text-shadow: 0 4px 34px rgba(19, 38, 70, .35);
  display: flex;
}
.hero-title span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-.45em);
  animation: windIn .85s var(--ease-wind) forwards;
}
.hero-lead {
  margin-top: clamp(22px, 3.6vh, 36px);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(16px, 2.3vw, 22px);
  letter-spacing: .18em;
  line-height: 2.25;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(19, 38, 70, .45);
}
.hero-lead .mask { display: block; overflow: hidden; }
.hero-lead .mask span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-36px);
  animation: windIn .9s var(--ease-wind) forwards;
}
.hero-lead .mask:nth-child(1) span { animation-delay: .95s; }
.hero-lead .mask:nth-child(2) span { animation-delay: 1.12s; }
@keyframes windIn { to { opacity: 1; transform: translateX(0); } }

.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; z-index: 4;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-en);
  font-size: 10.5px; letter-spacing: .38em; text-indent: .38em;
  color: var(--navy-700);
}
.hero-scroll::after {
  content: ""; width: 1.5px; height: 54px; border-radius: 2px;
  background: linear-gradient(to bottom, var(--cyan), rgba(47,168,222,0));
  animation: scrollPulse 2.3s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); opacity: 1; }
  55% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ================================================================
   Sections
   ================================================================ */
.section { position: relative; padding: clamp(86px, 11vw, 150px) 0; }
.section.sky { background: var(--sky-50); }

.sec-head { margin-bottom: clamp(44px, 6.5vw, 76px); }
.sec-head .en {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(30px, 5.2vw, 50px);
  letter-spacing: .05em; line-height: 1.15;
  color: var(--navy-900);
}
.sec-head .en::before {
  content: ""; flex: 0 0 auto;
  width: clamp(30px, 4vw, 46px); height: clamp(14px, 2vw, 22px);
  background: var(--grad);
  transform: skewX(var(--skew));
  border-radius: 4px;
}
.sec-head .jp {
  margin-top: 8px;
  padding-left: calc(clamp(30px, 4vw, 46px) + 14px);
  font-family: var(--font-jp);
  font-weight: 500; font-size: 13.5px; letter-spacing: .3em;
  color: var(--cyan-deep);
}
.sec-head.center { text-align: center; }
.sec-head.center .en { justify-content: center; }
.sec-head.center .jp { padding-left: 0; }

/* 風の曲線(スクロールで描画) */
.windpath {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.windpath svg { position: absolute; width: 1700px; height: auto; }
.windpath path {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
}
.windpath.is-visible path { animation: windDraw 3s var(--ease-wind) forwards; }
.windpath path:nth-child(2) { animation-delay: .3s; }
.windpath path:nth-child(3) { animation-delay: .6s; }
@keyframes windDraw { to { stroke-dashoffset: 0; } }

/* ================================================================
   Information
   ================================================================ */
.news-list { border-top: 1px solid var(--line); }
.news-list .item { position: relative; border-bottom: 1px solid var(--line); }
.news-list .item::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease-wind);
}
.news-list .item:hover::after { transform: scaleX(1); }
.news-list .item a {
  display: grid;
  grid-template-columns: 118px 104px 1fr 44px;
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  padding: clamp(20px, 3vw, 30px) 8px;
}
.news-list .date {
  font-family: var(--font-en);
  font-weight: 500; font-size: 15px; letter-spacing: .08em;
  color: var(--muted);
  white-space: nowrap;
}
.news-list .category span {
  display: inline-block; min-width: 92px; text-align: center;
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  padding: 4px 14px;
  color: var(--cyan-deep);
  background: var(--sky-100);
  border-radius: 4px;
  transform: skewX(var(--skew));
}
.news-list .category span > i { display: inline-block; transform: skewX(calc(var(--skew) * -1)); font-style: normal; }
.news-list .category.cat-recruit span { color: #47803a; background: #eef5e2; }
.news-list .title {
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 500;
  color: var(--ink);
  transition: transform .45s var(--ease-wind), color .3s ease;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.news-list .item a:hover .title { transform: translateX(10px); color: var(--navy-700); }
.news-list .arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-deep);
  transition: all .4s var(--ease-wind);
}
.news-list .arrow svg { width: 15px; height: 15px; }
.news-list .item a:hover .arrow {
  background: var(--grad-deep); border-color: transparent;
  color: var(--white);
  transform: translateX(6px);
}
.news-more { margin-top: clamp(34px, 5vw, 48px); text-align: center; }

/* ---------------- Buttons ---------------- */
.btn-wind {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 44px;
  font-family: var(--font-jp);
  font-size: 14.5px; font-weight: 700; letter-spacing: .1em;
  color: var(--navy-700);
  border: 1.5px solid var(--navy-700);
  border-radius: 6px;
  transform: skewX(var(--skew));
  overflow: hidden;
  transition: color .35s ease, border-color .35s ease, transform .35s var(--ease-wind), box-shadow .35s ease;
  isolation: isolate;
}
.btn-wind > * { transform: skewX(calc(var(--skew) * -1)); }
.btn-wind::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-deep);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-wind);
}
.btn-wind:hover { color: var(--white); border-color: transparent; box-shadow: var(--shadow-md); }
.btn-wind:hover::before { transform: translateX(0); }
.btn-wind .ico { display: inline-flex; }
.btn-wind .ico svg { width: 15px; height: 15px; }

/* ================================================================
   Message — 空のセクション
   ================================================================ */
.sec-message { overflow: hidden; }
.cloud {
  position: absolute; pointer-events: none;
  background: var(--white);
  border-radius: 999px;
  filter: blur(28px);
  opacity: .85;
}
.msg-grid {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: clamp(36px, 5.5vw, 80px);
  align-items: center;
  position: relative;
}
.msg-photo { position: relative; }
.msg-photo .plate {
  position: absolute;
  inset: 8% -22px -22px 12%;
  background: var(--grad);
  opacity: .3;
  border-radius: 18px;
  transform: skewX(var(--skew)) skewY(2deg);
}
.msg-photo .frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.msg-photo img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.3s var(--ease);
}
.msg-photo.is-visible img { transform: scale(1); }
.msg-body p {
  font-size: clamp(15px, 1.8vw, 16.5px);
  line-height: 2.35;
}
.signature-container {
  margin-top: clamp(26px, 4vw, 40px);
  display: flex; align-items: flex-end; justify-content: flex-end; gap: 18px;
}
.signature-container .ceo-title {
  font-size: 13px; letter-spacing: .22em;
  color: var(--muted);
  padding-bottom: 12px;
}
.signature-image { width: clamp(125px, 14vw, 170px); }

/* ================================================================
   Company
   ================================================================ */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: clamp(46px, 6.5vw, 68px);
}
.stat {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(20px, 2.8vw, 30px) clamp(20px, 2.6vw, 30px) clamp(16px, 2.2vw, 24px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 56px; height: 5px;
  border-radius: 0 4px 4px 0;
  background: var(--grad);
  transform: translateX(-101%) skewX(var(--skew));
  transition: transform .8s var(--ease-wind) .25s;
}
.stat.is-visible::before { transform: translateX(0) skewX(var(--skew)); }
.stat .label {
  font-size: 12px; font-weight: 700; letter-spacing: .24em;
  color: var(--muted);
}
.stat .value {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 54px);
  line-height: 1.25;
  color: var(--navy-700);
  letter-spacing: .02em;
}
.stat .value small {
  font-family: var(--font-jp);
  font-size: .36em; font-weight: 700; letter-spacing: .1em;
  color: var(--muted);
  margin-left: 6px;
}
.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: clamp(32px, 4.6vw, 60px);
  align-items: start;
}
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table tr:first-child { border-top: 1px solid var(--line); }
.info-table th {
  position: relative;
  width: 178px;
  padding: 18px 16px 18px 20px;
  text-align: left; vertical-align: top;
  font-size: 13.5px; font-weight: 700; letter-spacing: .1em;
  color: var(--navy-700);
}
.info-table th::before {
  content: ""; position: absolute; left: 0; top: 25px;
  width: 5px; height: 15px; border-radius: 2px;
  background: var(--grad);
  transform: skewX(var(--skew));
}
.info-table td { padding: 18px 4px; font-size: 15px; line-height: 1.95; }
.bank-list .bank-row { display: flex; gap: 18px; }
.bank-list .bank-name { min-width: 8.5em; }
.link-line {
  color: var(--cyan-deep); font-weight: 700;
  border-bottom: 2px solid rgba(47,168,222,.35);
  transition: border-color .3s ease;
}
.link-line:hover { border-color: var(--cyan-deep); }

.map-card {
  position: sticky; top: calc(var(--header-h) + 24px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.map-card img { width: 100%; }
.map-card .cap {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  font-size: 12.5px; letter-spacing: .06em;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.map-card .cap svg { width: 15px; height: 15px; color: var(--cyan-deep); flex-shrink: 0; }

/* ================================================================
   Services — 斜めのアクセントカード
   ================================================================ */
.sec-services { background: var(--sky-50); overflow: hidden; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .45s var(--ease-wind), box-shadow .45s ease, border-color .35s ease;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad);
  transform: translateX(-101%) skewX(var(--skew));
  transition: transform .55s var(--ease-wind);
}
.service-card:hover {
  transform: translate(6px, -4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(47,168,222,.4);
}
.service-card:hover::before { transform: translateX(0) skewX(var(--skew)); }
.service-card .card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.service-card .icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(184,213,148,.2), rgba(47,168,222,.16));
  color: var(--navy-700);
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card .idx {
  font-family: var(--font-en);
  font-weight: 600; font-size: 30px; letter-spacing: .04em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  opacity: .9;
}
.service-card p {
  font-size: 15px; font-weight: 700; line-height: 1.85;
  color: var(--ink);
}

/* ================================================================
   Recruit
   ================================================================ */
.recruit-lead {
  max-width: 840px;
  font-size: clamp(15.5px, 2vw, 17.5px);
  font-weight: 500;
  margin-bottom: clamp(40px, 5.5vw, 60px);
}
.recruit-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.recruit-panel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--grad);
}
.recruit-note {
  margin-top: 26px;
  font-size: 13.5px; color: var(--muted);
  text-align: center;
}

/* ================================================================
   Contact — 空へ続く帯
   ================================================================ */
.sec-contact {
  position: relative;
  background:
    linear-gradient(170deg, var(--white) 0%, var(--sky-100) 40%, var(--sky-200) 100%);
  overflow: hidden;
}
.contact-info {
  text-align: center;
  color: var(--ink);
  font-size: 15.5px;
  max-width: 720px;
  margin: 0 auto clamp(42px, 5.5vw, 60px);
}
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin-inline: auto;
}
.contact-tile {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-md);
  padding: clamp(30px, 4vw, 44px) clamp(24px, 3.4vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
  transition: transform .45s var(--ease-wind), box-shadow .45s ease;
}
.contact-tile::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--grad-deep);
  transform: translateX(-101%) skewX(var(--skew));
  transition: transform .55s var(--ease-wind);
}
.contact-tile.tile-recruit::before { background: linear-gradient(105deg, #79c0b6, #b8d594); }
.contact-tile:hover { transform: translate(4px, -5px); box-shadow: var(--shadow-lg); }
.contact-tile:hover::before { transform: translateX(0) skewX(var(--skew)); }
.contact-tile .tile-icon {
  width: 56px; height: 56px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(47,168,222,.14), rgba(25,70,155,.1));
  color: var(--navy-700);
}
.contact-tile.tile-recruit .tile-icon {
  background: linear-gradient(135deg, rgba(184,213,148,.24), rgba(121,192,182,.2));
}
.contact-tile .tile-icon svg { width: 26px; height: 26px; }
.contact-tile .tile-label {
  font-size: clamp(15.5px, 1.9vw, 18px);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.65;
}
.contact-tile .tile-cta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-en);
  font-weight: 500; font-size: 13px; letter-spacing: .12em;
  color: var(--cyan-deep);
}
.contact-tile .tile-cta svg {
  width: 15px; height: 15px;
  transition: transform .4s var(--ease-wind);
}
.contact-tile:hover .tile-cta svg { transform: translateX(6px); }

/* ================================================================
   Footer
   ================================================================ */
.site-footer {
  position: relative;
  background: var(--navy-900);
  color: rgba(255,255,255,.82);
  padding: clamp(54px, 7.5vw, 80px) 0 40px;
  overflow: hidden;
}
.site-footer .windpath svg path { stroke-width: 1.2; }
.footer-grid {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 40px;
  align-items: flex-start; justify-content: space-between;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--font-en);
  font-weight: 600; font-size: 21px; letter-spacing: .16em;
  color: var(--white);
}
.footer-brand .brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.footer-brand .brand-mark img { width: 28px; }
.footer-tag {
  margin-top: 14px;
  font-size: 13px; letter-spacing: .12em; line-height: 2.1;
  color: rgba(255,255,255,.6);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  position: relative;
  font-size: 13.5px; letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  transition: color .3s ease, padding-left .35s var(--ease-wind);
}
.footer-links a:hover { color: var(--white); padding-left: 15px; }
.footer-links a::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 9px; height: 2px; border-radius: 2px;
  background: var(--grad);
  transform: skewX(var(--skew));
  opacity: 0; transition: opacity .3s ease;
}
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.copyright {
  font-family: var(--font-en);
  font-size: 11.5px; letter-spacing: .16em;
  color: rgba(255,255,255,.5);
}
.footer-wind {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 500; letter-spacing: .3em;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 12px;
}
.footer-wind::before {
  content: ""; width: 34px; height: 2px; border-radius: 2px;
  background: var(--grad);
  transform: skewX(var(--skew));
}

/* ---------------- Page top ---------------- */
#pageTop {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all .4s var(--ease);
}
#pageTop.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
#pageTop a {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-700);
  box-shadow: var(--shadow-md);
  transition: all .4s var(--ease-wind);
}
#pageTop a:hover { background: var(--grad-deep); color: var(--white); transform: translateY(-4px); border-color: transparent; }
#pageTop svg { width: 18px; height: 18px; }

/* ================================================================
   Sub pages
   ================================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(56px, 9vw, 104px)) 0 clamp(50px, 7vw, 84px);
  background:
    linear-gradient(160deg, var(--sky-200) 0%, var(--sky-100) 45%, var(--sky-50) 100%);
  overflow: hidden;
}
.page-hero .ribbon {
  position: absolute;
  left: -10%; right: -10%; bottom: -34px;
  height: 110px;
  transform: rotate(-6deg);
  background: linear-gradient(105deg, rgba(184,213,148,.25), rgba(121,192,182,.25) 45%, rgba(47,168,222,.2));
  border-top: 1px solid rgba(255,255,255,.7);
}
.page-hero .inner { position: relative; }
.page-hero .en {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-en);
  font-weight: 600; font-size: 13px; letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 12px;
}
.page-hero .en::before {
  content: ""; width: 26px; height: 12px; border-radius: 3px;
  background: var(--grad);
  transform: skewX(var(--skew));
}
.page-hero h2 {
  font-family: var(--font-jp);
  font-size: clamp(25px, 4.4vw, 42px);
  font-weight: 700; letter-spacing: .05em; line-height: 1.55;
  color: var(--navy-900);
}
.page-body { padding: clamp(64px, 9vw, 110px) 0 clamp(90px, 12vw, 150px); }
.page-body .inner-narrow { width: min(880px, calc(100% - 44px)); margin-inline: auto; }

/* news detail */
.news-meta {
  display: flex; align-items: center; gap: 18px;
  padding-bottom: 22px; margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.news-meta .news-date {
  font-family: var(--font-en); font-weight: 500;
  font-size: 14px; letter-spacing: .1em;
  color: var(--muted);
}
.news-meta .news-category {
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--cyan-deep);
  background: var(--sky-100);
  border-radius: 4px;
  padding: 4px 16px;
  transform: skewX(var(--skew));
}
.news-meta .news-category > i { display: inline-block; transform: skewX(calc(var(--skew) * -1)); font-style: normal; }
.news-content p { margin-bottom: 14px; font-size: 15.5px; }
.news-content h3 {
  position: relative;
  margin: 50px 0 22px;
  padding-left: 20px;
  font-family: var(--font-jp);
  font-size: clamp(19px, 2.6vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--navy-900);
}
.news-content h3::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 6px; border-radius: 2px;
  background: var(--grad);
  transform: skewX(var(--skew));
}
.news-content h4 { margin: 22px 0 8px; font-size: 16.5px; color: var(--navy-900); }
.news-content ol { counter-reset: item; }
.news-content ol > li {
  counter-increment: item;
  margin: 18px 0;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
}
.news-content ol > li > h4 { display: flex; gap: 12px; margin-top: 0; }
.news-content ol > li > h4::before {
  content: counter(item, decimal-leading-zero);
  font-family: var(--font-en); font-weight: 600;
  color: var(--cyan-deep);
}
.news-content ul li {
  position: relative; padding-left: 22px;
  font-weight: 700; font-size: 15px; margin-top: 16px;
}
.news-content ul li::before {
  content: ""; position: absolute; left: 0; top: .66em;
  width: 11px; height: 7px; border-radius: 2px;
  background: var(--grad);
  transform: skewX(var(--skew));
}
.news-content ul p {
  padding-left: 22px; font-size: 14px;
  color: var(--muted); margin-bottom: 0;
}
.content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  margin: 24px 0;
}
.content-wrapper .img-fluid img {
  margin-inline: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.news-navigation { margin-top: 60px; text-align: center; }

/* policy pages */
.policy-block + .policy-block { margin-top: 52px; }
.policy-block h3 {
  position: relative; padding-left: 20px; margin-bottom: 22px;
  font-family: var(--font-jp);
  font-size: clamp(20px, 2.7vw, 23px);
  font-weight: 700;
  color: var(--navy-900);
}
.policy-block h3::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 6px; border-radius: 2px;
  background: var(--grad);
  transform: skewX(var(--skew));
}
.policy-block h4 {
  margin: 28px 0 8px;
  font-size: 16px;
  color: var(--cyan-deep);
}
.policy-block p { font-size: 15px; }
.policy-sign { margin-top: 48px; text-align: right; font-size: 15px; }
.policy-sign p { margin-top: 6px; }

/* ================================================================
   Reveal — 風に押されて現れる
   ================================================================ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .95s var(--ease-wind), transform .95s var(--ease-wind);
  transition-delay: var(--d, 0s);
}
.reveal-wind {
  opacity: 0; transform: translateX(-44px);
  transition: opacity .95s var(--ease-wind), transform .95s var(--ease-wind);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible, .reveal-wind.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-wind { opacity: 1; transform: none; }
  .hero-title span, .hero-lead .mask span { opacity: 1; transform: none; }
  .splash-logo, .splash-name { opacity: 1; transform: none; }
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1024px) {
  .company-grid { grid-template-columns: 1fr; }
  .map-card { position: static; max-width: 620px; }
}

@media (max-width: 880px) {
  body { font-size: 15px; }

  .menu-btn { display: block; }
  .global-nav {
    position: fixed; inset: 0; z-index: 130;
    background: linear-gradient(165deg, rgba(246,250,253,.98) 0%, rgba(207,232,248,.98) 100%);
    backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
  }
  body.menu-open .global-nav { opacity: 1; visibility: visible; }
  .global-nav ul { flex-direction: column; gap: 4px; text-align: center; }
  .global-nav a {
    font-size: 25px; letter-spacing: .18em; font-weight: 600;
    color: var(--navy-700) !important;
    padding: 13px 24px;
    opacity: 0; transform: translateX(-30px);
    transition: opacity .55s var(--ease-wind), transform .55s var(--ease-wind);
  }
  body.menu-open .global-nav a { opacity: 1; transform: none; }
  body.menu-open .global-nav li:nth-child(1) a { transition-delay: .08s; }
  body.menu-open .global-nav li:nth-child(2) a { transition-delay: .14s; }
  body.menu-open .global-nav li:nth-child(3) a { transition-delay: .2s; }
  body.menu-open .global-nav li:nth-child(4) a { transition-delay: .26s; }
  body.menu-open .global-nav li:nth-child(5) a { transition-delay: .32s; }
  body.menu-open .global-nav li:nth-child(6) a { transition-delay: .38s; }
  body.menu-open { overflow: hidden; }

  .news-list .item a {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 8px;
  }
  .news-list .title { grid-column: 1 / -1; white-space: normal; }
  .news-list .arrow { display: none; }

  .msg-grid { grid-template-columns: 1fr; }
  .msg-photo { max-width: 500px; margin-inline: auto; }

  .stats-row { grid-template-columns: 1fr; gap: 12px; }
  .stat { display: flex; align-items: baseline; justify-content: space-between; }

  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding: 15px 0 2px 16px; }
  .info-table th::before { top: 20px; }
  .info-table td { padding: 0 0 15px 16px; }

  .contact-tiles { grid-template-columns: 1fr; }
  .content-wrapper { grid-template-columns: 1fr; }
  .content-wrapper .img-fluid img { max-width: 300px; }
  .footer-grid { flex-direction: column; gap: 30px; }
}

@media (max-width: 480px) {
  .brand { font-size: 17px; }
  .brand .brand-mark { width: 37px; height: 37px; }
  .brand .brand-mark img { width: 24px; }
  .hero-title { font-size: clamp(50px, 15.5vw, 82px); }
  .hero-ribbon { bottom: 22%; }
}
