@charset "UTF-8";
/* ==========================================================================
   GLOBAL ALS — Renewal (Apple-inspired)
   素材で見せる / 文言は最小 / 詳細はタップで
   ========================================================================== */

:root{
  /* brand green (既存ロゴグリーンを継承) */
  --g:        #4fbe7c;
  --g-bright: #6ee79b;
  --g-deep:   #2f9a57;
  --g-dark:   #0f3d24;

  /* neutrals — Apple 系 */
  --black:    #000000;
  --near:     #0a0a0a;
  --ink:      #1d1d1f;
  --ink-2:    #6e6e73;
  --paper:    #fbfbfd;
  --paper-2:  #f5f5f7;

  --nav-h:    48px;
  --sub-h:    52px;

  --max:      1180px;
  --max-narrow: 780px;

  --ease: cubic-bezier(.28,.11,.32,1);
}

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

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--nav-h) + var(--sub-h));
  background:var(--black);
}

body{
  margin:0;
  background:var(--black);
  color:#f5f5f7;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro JP","SF Pro Text","Hiragino Sans",
              "Hiragino Kaku Gothic ProN","Noto Sans JP","Yu Gothic",sans-serif;
  font-feature-settings:"palt";
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  letter-spacing:.01em;
  overflow-x:hidden;
}

img,video{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }

.wrap{ width:100%; max-width:var(--max); margin:0 auto; padding:0 22px; }
.wrap--narrow{ max-width:var(--max-narrow); }
.center{ text-align:center; }
.sr{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

/* ── タイポグラフィ ─────────────────────────────────────── */
.display{
  font-size:clamp(38px,7.2vw,88px);
  line-height:1.1;
  font-weight:700;
  letter-spacing:-.028em;
  margin:0;
}
.headline{
  font-size:clamp(30px,5.2vw,60px);
  line-height:1.14;
  font-weight:700;
  letter-spacing:-.024em;
  margin:0;
}
.subhead{
  font-size:clamp(19px,2.1vw,26px);
  line-height:1.5;
  font-weight:500;
  letter-spacing:-.01em;
  margin:0;
}
.eyebrow{
  display:block;
  font-size:12px;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--g-bright);
  margin:0 0 18px;
}
.body-copy{
  font-size:16px;
  line-height:1.9;
  color:#a1a1a6;
  margin:0;
}
.grad{
  background:linear-gradient(96deg,var(--g-bright) 0%,var(--g) 42%,#9fe9bd 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ── リンク / ボタン ───────────────────────────────────── */
.link{
  display:inline-flex; align-items:center; gap:5px;
  font-size:17px; font-weight:500; color:var(--g-bright);
  letter-spacing:0;
  transition:opacity .2s var(--ease);
}
.link:hover{ opacity:.72; }
.link svg{ transition:transform .25s var(--ease); }
.link:hover svg{ transform:translateX(3px); }
.link--lg{ font-size:19px; }
.link--dark{ color:var(--g-deep); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:48px; padding:0 26px;
  border-radius:999px;
  font-size:16px; font-weight:600; letter-spacing:0;
  transition:transform .2s var(--ease), background .2s var(--ease), opacity .2s var(--ease);
}
.btn:hover{ transform:translateY(-1px); }
.btn--fill{ background:linear-gradient(120deg,var(--g-deep),var(--g)); color:#fff; }
.btn--fill:hover{ background:linear-gradient(120deg,var(--g),var(--g-bright)); }
.btn--glass{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
}
.btn--glass:hover{ background:rgba(255,255,255,.18); }
.btn--ink{ background:var(--ink); color:#fff; }
.btn--sm{ min-height:38px; padding:0 18px; font-size:14px; }

/* ── グローバルナビ ─────────────────────────────────────── */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:9000;
  height:var(--nav-h);
  background:rgba(6,10,7,.72);
  backdrop-filter:saturate(180%) blur(20px);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav__in{
  height:100%; max-width:1024px; margin:0 auto; padding:0 22px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.nav__logo{ display:flex; align-items:center; gap:9px; }
.nav__logo img{ height:24px; width:auto; }
.nav__logo span{ font-size:15px; font-weight:700; letter-spacing:.08em; color:#fff; }
.nav__links{ display:flex; align-items:center; gap:30px; }
.nav__links a{
  font-size:12.5px; font-weight:400; color:#f5f5f7; opacity:.86;
  transition:opacity .2s var(--ease);
}
.nav__links a:hover{ opacity:1; }
.nav__cta{
  font-size:12.5px; font-weight:500; color:#0a0a0a !important;
  background:var(--g-bright); padding:6px 14px; border-radius:999px; opacity:1 !important;
}
.nav__burger{ display:none; padding:8px; margin-right:-8px; color:#fff; }

.drawer{
  position:fixed; inset:var(--nav-h) 0 0 0; z-index:8900;
  background:rgba(6,10,7,.96);
  backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  padding:14px 22px 40px;
  transform:translateY(-8px); opacity:0; pointer-events:none;
  transition:opacity .28s var(--ease), transform .28s var(--ease);
  overflow-y:auto;
}
.drawer.is-open{ transform:none; opacity:1; pointer-events:auto; }
.drawer a{
  display:flex; align-items:center; justify-content:space-between;
  padding:17px 2px; font-size:19px; font-weight:600;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.drawer .btn{
  width:100%; margin-top:26px;
  justify-content:center; border-bottom:0;
  font-size:16px; color:#fff;
}

/* ── サブナビ（Apple のプロダクトバー） ─────────────────── */
.subnav{
  position:fixed; left:0; right:0; top:var(--nav-h); z-index:8800;
  height:var(--sub-h);
  background:rgba(10,14,11,.86);
  backdrop-filter:saturate(180%) blur(20px);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(255,255,255,.08);
  transform:translateY(-100%);
  transition:transform .35s var(--ease);
}
.subnav.is-visible{ transform:none; }
.subnav__in{
  height:100%; max-width:1024px; margin:0 auto; padding:0 22px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.subnav__title{ font-size:19px; font-weight:700; letter-spacing:-.01em; white-space:nowrap; }
.subnav__links{
  display:flex; align-items:center; gap:26px;
  overflow-x:auto; scrollbar-width:none; -ms-overflow-style:none;
}
.subnav__links::-webkit-scrollbar{ display:none; }
.subnav__links a{ font-size:12.5px; color:#d2d2d7; white-space:nowrap; transition:color .2s var(--ease); }
.subnav__links a:hover{ color:#fff; }

/* ── セクション土台 ─────────────────────────────────────── */
.sec{ position:relative; padding:clamp(88px,12vw,160px) 0; }
.sec--tight{ padding:clamp(64px,8vw,110px) 0; }
.sec--light{ background:var(--paper-2); color:var(--ink); }
.sec--light .body-copy{ color:var(--ink-2); }
.sec--light .eyebrow{ color:var(--g-deep); }

/* ── HERO ──────────────────────────────────────────────── */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:flex-end;
  padding-bottom:clamp(56px,9vh,110px);
  overflow:hidden;
  background:#000;
}
.hero__media{ position:absolute; inset:0; }
.hero__media video,
.hero__media img{
  width:100%; height:100%; object-fit:cover;
  object-position:62% center;
  transform:scale(1.04);
}
.hero__scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.72) 26%,rgba(0,0,0,.3) 56%,rgba(0,0,0,.12) 76%,rgba(0,0,0,.55) 100%),
    linear-gradient(to right,rgba(0,0,0,.62) 0%,rgba(0,0,0,.18) 46%,transparent 72%),
    radial-gradient(120% 80% at 18% 100%,rgba(15,61,36,.55) 0%,transparent 62%);
}
.hero__in{ position:relative; z-index:2; width:100%; }
.hero__title{ max-width:15em; text-shadow:0 2px 30px rgba(0,0,0,.5); }
.hero__links{ display:flex; flex-wrap:wrap; gap:30px; margin-top:30px; }
.hero__cue{
  position:absolute; left:50%; bottom:22px; z-index:2;
  transform:translateX(-50%);
  color:rgba(255,255,255,.55);
  animation:cue 2.4s var(--ease) infinite;
}
@keyframes cue{ 0%,100%{ transform:translate(-50%,0); opacity:.35 } 50%{ transform:translate(-50%,7px); opacity:.9 } }

/* ── ステートメント ─────────────────────────────────────── */
.statement{ text-align:center; }
.statement .display{ margin-bottom:26px; }

/* ── 数字 ──────────────────────────────────────────────── */
.stats{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:clamp(18px,4vw,56px);
  text-align:center;
}
.stat__n{
  font-size:clamp(50px,9vw,110px); font-weight:700; line-height:1;
  letter-spacing:-.04em;
}
.stat__n sub{ font-size:.26em; font-weight:600; letter-spacing:0; bottom:.12em; margin-left:.14em; }
.stat__l{ margin-top:14px; font-size:13px; color:#a1a1a6; letter-spacing:.02em; }

/* ── 強み：横スクロールカード ───────────────────────────── */
.rail{
  display:flex; gap:20px;
  overflow-x:auto; scroll-snap-type:x mandatory;
  padding:6px 22px 30px;
  scrollbar-width:none; -ms-overflow-style:none;
  scroll-padding-left:22px;
}
.rail::-webkit-scrollbar{ display:none; }
@media (min-width:1240px){
  .rail{ padding-left:calc((100vw - var(--max))/2 + 22px); padding-right:calc((100vw - var(--max))/2 + 22px); }
}
.card{
  position:relative; flex:0 0 auto;
  width:min(78vw,392px); height:min(96vw,500px);
  border-radius:26px; overflow:hidden;
  scroll-snap-align:start;
  background:linear-gradient(158deg,#12291d 0%,#0a1610 100%);
  border:1px solid rgba(110,231,155,.16);
  padding:32px 30px;
  display:flex; flex-direction:column;
  transition:transform .4s var(--ease), border-color .4s var(--ease);
}
.card:hover{ transform:translateY(-6px); border-color:rgba(110,231,155,.42); }
.card__num{
  position:absolute; right:-8px; bottom:-34px;
  font-size:190px; font-weight:700; line-height:1; letter-spacing:-.05em;
  color:rgba(110,231,155,.07);
  pointer-events:none;
}
.card__eye{ font-size:11.5px; font-weight:600; letter-spacing:.2em; color:var(--g-bright); }
.card__t{
  margin:16px 0 0; font-size:27px; line-height:1.34; font-weight:700; letter-spacing:-.015em;
}
.card__d{ margin:16px 0 0; font-size:14.5px; line-height:1.85; color:#a9b3ac; }
.card__go{
  position:relative; margin-top:auto; display:inline-flex; align-items:center; gap:6px;
  font-size:15px; font-weight:500; color:var(--g-bright);
}
.card--photo{ padding:0; border:0; background:linear-gradient(158deg,#12291d,#0a1610); }
.card--photo video,.card--photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.card--photo::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(to top,rgba(2,8,4,.96) 0%,rgba(2,8,4,.82) 30%,rgba(2,8,4,.34) 58%,rgba(2,8,4,.05) 82%);
}
.card--photo .card__body{
  position:relative; z-index:2; margin-top:auto; padding:30px;
  width:100%;
}
.card--photo .card__t{ margin-top:8px; }
.card--photo .card__go{ margin-top:18px; }

.rail-ctrl{ display:flex; gap:10px; justify-content:flex-end; margin-top:4px; }
.rail-ctrl button{
  width:38px; height:38px; border-radius:999px;
  background:rgba(255,255,255,.1); color:#fff;
  display:grid; place-items:center;
  transition:background .2s var(--ease), opacity .2s var(--ease);
}
.rail-ctrl button:hover{ background:rgba(255,255,255,.2); }
.rail-ctrl button[disabled]{ opacity:.28; cursor:default; }
.sec--light .rail-ctrl button{ background:rgba(0,0,0,.07); color:var(--ink); }
.sec--light .rail-ctrl button:hover{ background:rgba(0,0,0,.14); }

/* ── サービス 2枚タイル ─────────────────────────────────── */
.tiles{
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
}
.tile{
  position:relative; overflow:hidden;
  border-radius:28px;
  min-height:min(112vw,560px);
  display:flex; flex-direction:column; justify-content:flex-end;
  isolation:isolate;
  background:linear-gradient(158deg,#12291d,#070f0a);
}
.tile video,.tile img{
  position:absolute; inset:0; z-index:-2;
  width:100%; height:100%; object-fit:cover;
  transition:transform .8s var(--ease);
}
.tile::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(to top,rgba(2,8,4,.96) 2%,rgba(2,8,4,.84) 26%,rgba(2,8,4,.42) 56%,rgba(2,8,4,.08) 86%);
}
.tile:hover video,.tile:hover img{ transform:scale(1.05); }
.tile__body{ padding:clamp(26px,3.2vw,42px); }
.tile__t{ margin:10px 0 0; font-size:clamp(24px,2.6vw,34px); font-weight:700; letter-spacing:-.02em; line-height:1.3; }
.tile__d{ margin:12px 0 20px; font-size:15px; line-height:1.8; color:#c8cfca; max-width:26em; }

/* ── フルブリード映像セクション ─────────────────────────── */
.showcase{
  position:relative; min-height:min(92svh,760px);
  display:flex; align-items:center;
  overflow:hidden;
}
.showcase video,.showcase img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.showcase__scrim{
  position:absolute; inset:0;
  background:linear-gradient(105deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.58) 42%,rgba(0,0,0,.18) 100%);
}
.showcase__in{ position:relative; z-index:2; }
.flags{ display:flex; flex-wrap:wrap; gap:10px; margin:26px 0 30px; }
.flag{
  padding:8px 16px; border-radius:999px;
  border:1px solid rgba(255,255,255,.26);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  font-size:13px; font-weight:600; letter-spacing:.06em;
}

/* ── お知らせ ─────────────────────────────────────────── */
.news-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:34px; }
.news-list{ border-top:1px solid rgba(0,0,0,.1); }
.news-item{
  display:grid; grid-template-columns:auto auto 1fr auto; align-items:center; gap:18px;
  padding:22px 4px;
  border-bottom:1px solid rgba(0,0,0,.1);
  transition:background .2s var(--ease);
}
.news-item:hover{ background:rgba(0,0,0,.03); }
.news-item time{ font-size:13px; color:var(--ink-2); letter-spacing:.04em; font-variant-numeric:tabular-nums; }
.news-item .tag{
  font-size:11.5px; font-weight:600; padding:4px 11px; border-radius:999px;
  background:rgba(79,190,124,.14); color:var(--g-deep);
}
.news-item .t{ font-size:16px; font-weight:500; }
.news-item .go{ color:var(--g-deep); }

/* ── クロージング CTA ───────────────────────────────────── */
.closing{
  position:relative; text-align:center; overflow:hidden;
  padding:clamp(96px,13vw,180px) 0;
  background:radial-gradient(90% 130% at 50% 0%,#123a25 0%,#050805 62%);
}
.closing::before{
  content:""; position:absolute; left:50%; top:-40%;
  width:min(1100px,140vw); aspect-ratio:1; transform:translateX(-50%);
  background:radial-gradient(circle,rgba(110,231,155,.16) 0%,transparent 62%);
  pointer-events:none;
}
.closing__btns{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:36px; }

/* ── フッター ─────────────────────────────────────────── */
.ftr{ background:var(--paper-2); color:var(--ink-2); padding:44px 0 40px; font-size:12px; line-height:1.9; }
.ftr__cols{
  display:grid; grid-template-columns:repeat(4,1fr); gap:26px;
  padding-bottom:28px; border-bottom:1px solid rgba(0,0,0,.1);
}
.ftr h5{ margin:0 0 12px; font-size:12px; font-weight:600; color:var(--ink); letter-spacing:.02em; }
.ftr__cols a{ display:block; padding:3px 0; transition:color .2s var(--ease); }
.ftr__cols a:hover{ color:var(--ink); text-decoration:underline; }
.ftr__lic{ padding:22px 0; border-bottom:1px solid rgba(0,0,0,.1); }
.ftr__btm{ padding-top:20px; display:flex; flex-wrap:wrap; gap:10px 22px; justify-content:space-between; }

/* ── スクロールリビール ─────────────────────────────────── */
.rv{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.rv.is-in{ opacity:1; transform:none; }
.rv--d1{ transition-delay:.09s } .rv--d2{ transition-delay:.18s } .rv--d3{ transition-delay:.27s }
@media (prefers-reduced-motion:reduce){
  .rv{ opacity:1; transform:none; }
  .hero__cue{ animation:none; }
  html{ scroll-behavior:auto; }
}

/* ── レスポンシブ ───────────────────────────────────────── */
@media (max-width:900px){
  .tiles{ grid-template-columns:1fr; }
  .tile{ min-height:min(104vw,460px); }
}
@media (max-width:820px){
  .nav__links{ display:none; }
  .nav__burger{ display:block; }
  .subnav__links{ gap:20px; }
  .subnav__title{ font-size:16px; }
  /* 縦画面では左右が大きく切り取られるため、被写体（画面横45%付近）を中央に寄せる */
  .hero__media video,
  .hero__media img{ object-position:45% center; }
  .rail-ctrl{ display:none; }
  .stats{ grid-template-columns:1fr; gap:38px; }
  .stat__n{ font-size:clamp(56px,17vw,86px); }
  .news-item{ grid-template-columns:auto 1fr; row-gap:8px; }
  .news-item .t{ grid-column:1 / -1; }
  .news-item .go{ display:none; }
  .ftr__cols{ grid-template-columns:1fr 1fr; }
}
@media (max-width:520px){
  :root{ --sub-h:48px; }
  .hero__links{ gap:20px; }
  .card{ width:80vw; height:118vw; max-height:520px; }
}
