/* ---------------------------
  Base
--------------------------- */
:root{
  --bg: #fff;
  --bg2: #f3e9e9;
  --card: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.12);
  --text: #000;
  --muted: #000;
  --accent: #7dd3fc;      /* 水色寄り：差し替えOK */
  --accent2: #a78bfa;     /* 紫寄り：差し替えOK */
  /* --shadow: 0 16px 40px rgba(0,0,0,.35); */
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(125,211,252,.18), transparent 55%),
              radial-gradient(900px 650px at 100% 10%, rgba(167,139,250,.14), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{
  width:min(var(--container), 100% - 40px);
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:12px; top:12px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  color:#000;
  border-radius:10px;
  z-index:9999;
}

html, body{
  overflow-x: hidden;
}


/* ---------------------------
  Header / Nav
--------------------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.18);

  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand__logo{
  width:40px; height:40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight:700;
  letter-spacing:.08em;
  background: linear-gradient(135deg, rgba(125,211,252,.9), rgba(167,139,250,.9));
  color:#071018;
}
.brand__name{ font-weight:700; display:block; font-size:14px; line-height:1.1; }
.brand__sub{ display:block; font-size:11px; letter-spacing:.18em; opacity:.75; margin-top:2px; }

.nav-toggle{ display:none; }
.nav-btn{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  cursor:pointer;
  margin-left:auto;
}
.nav-btn span{
  display:block;
  width:20px; height:2px;
  background: rgba(255,255,255,.85);
  margin:6px auto;
  border-radius: 2px;
}

.gnav{ margin-left:auto; }
.gnav__list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:18px;
  padding:0;
  margin:0;
}
.gnav__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color: rgba(0, 0, 0, 0.82);
  padding:10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}
.gnav__link:hover,
.gnav__link:focus-visible{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95);
}

.gnav__item{ position:relative; }
.gnav__dropdown{
  list-style:none;
  position:absolute;
  top:44px;
  left:0;
  min-width: 200px;
  padding:10px;
  margin:0;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(12,18,26,.92);
  opacity:0;
  visibility:hidden;
  transform: translateY(-6px);
  transition: .2s ease;
}
.gnav__drop{
  display:block;
  padding:10px 10px;
  border-radius: 12px;
  font-size:13px;
  color: rgba(255,255,255,.82);
}
.gnav__drop:hover,
.gnav__drop:focus-visible{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95);
}
.gnav__item--has:hover .gnav__dropdown,
.gnav__item--has:focus-within .gnav__dropdown{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}

.header__entry{ margin-left:6px; }

/* ---------------------------
  Buttons
--------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  font-weight:700;
  letter-spacing:.04em;
  font-size:13px;
  border:1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, rgba(125,211,252,.95), rgba(167,139,250,.95));
  color:#071018;
}
.btn--primary:hover{ filter: brightness(1.03); }

.btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: #000;
}
.btn--ghost:hover{ background: rgba(255,255,255,.07); }

/* ---------------------------
  Hero
--------------------------- */
.hero{
  position:relative;
  min-height: 74vh;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero__bg{
  position:absolute;
  inset:0;
}
.hero__img{
  width:100%;
  height:100%;
  object-fit:cover;
  /* filter: contrast(1.05) brightness(.72); */
  transform: scale(1.02);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
}

.hero__inner{
  position:relative;
  padding: 96px 0 72px;
  max-width: 880px;
}
.kicker{
  display:inline-block;
  font-size:12px;
  letter-spacing:.22em;
  color: rgba(0, 0, 0, 0.7);
  border:1px solid rgba(255,255,255,.16);
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
.hero__title{
  margin:18px 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.08;
  letter-spacing: .02em;
}
.hero__accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__lead{
  margin:0;
  color: #071018;
  line-height:1.9;
  font-size: 15px;
}
.hero__cta{
  display:flex;
  gap:12px;
  margin-top: 22px;
  flex-wrap:wrap;
}

/* CTAが押せない原因（.hero::after がクリックを塞ぐ）対策 */
.hero__bg,
.hero::after{
  pointer-events: none;
}

.hero__inner{
  position: relative;
  z-index: 2;
}


/* ---------------------------
  Sections
--------------------------- */
.section{
  padding: 72px 0;
}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{
  margin-bottom: 22px;
}
.section__eyebrow{
  margin:0;
  font-weight:700;
  letter-spacing:.18em;
  font-size: 12px;
  color: rgba(255,255,255,.62);
}
.section__title{
  margin:10px 0 10px;
  font-size: 28px;
  letter-spacing:.03em;
}
.section__desc{
  margin:0;
  color: rgba(255,255,255,.72);
  line-height:1.8;
}

/* ---------------------------
  Panel & checks
--------------------------- */
.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding: 22px;
}
.panel__title{
  margin:0 0 10px;
  letter-spacing:.06em;
}
.panel__text{
  margin:0 0 14px;
  color: rgba(255,255,255,.78);
  line-height:1.9;
}
.checks{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.checks li{
  position:relative;
  padding-left: 26px;
  color: rgba(255,255,255,.78);
}
.checks li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color: rgba(125,211,252,.95);
  font-weight:900;
}

/* ---------------------------
  Cards
--------------------------- */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.cards--wide{ grid-template-columns: repeat(3, 1fr); }

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: var(--radius2);
  overflow:hidden;
}
.card__link{ display:block; height:100%; }
.card__media{
  aspect-ratio: 16/10;
  overflow:hidden;
}
.card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: contrast(1.05) brightness(.9);
  transition: transform .35s ease;
}
.card__body{ padding: 16px 16px 18px; }
.card__num{
  margin:0 0 8px;
  font-weight:700;
  letter-spacing:.12em;
  font-size: 12px;
  color: rgba(255,255,255,.62);
}
.card__title{
  margin:0 0 10px;
  font-size: 16px;
  line-height:1.35;
}
.card__text{
  margin:0 0 14px;
  color: rgba(255,255,255,.72);
  line-height:1.75;
  font-size: 13px;
}
.card__more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  letter-spacing:.06em;
  font-size: 12px;
  color: rgba(125,211,252,.95);
}
.card__more::after{ content:"→"; }
.card:hover .card__media img{ transform: scale(1.05); }

/* ---------------------------
  Tiles (quick links)
--------------------------- */
.tiles{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.tile{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding: 16px;
  background: rgba(255,255,255,.03);
  transition: background .2s ease, transform .15s ease;
}
.tile:hover{ background: rgba(255,255,255,.06); transform: translateY(-1px); }
.tile__k{
  margin:0 0 8px;
  font-weight:700;
  letter-spacing:.18em;
  font-size: 11px;
  color: rgba(255,255,255,.62);
}
.tile__t{ margin:0 0 10px; font-size: 16px; }
.tile__d{ margin:0; color: rgba(255,255,255,.72); line-height:1.7; font-size: 13px; }

/* ---------------------------
  Quote grid
--------------------------- */
.quote-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.quote{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  border:1px solid var(--line);
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.quote__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: contrast(1.05) brightness(.92);
}
.quote__body{ padding:16px 16px 18px; }
.quote__title{ margin:0 0 10px; font-size: 16px; }
.quote__text{ margin:0 0 12px; color: rgba(255,255,255,.72); line-height:1.8; font-size: 13px; }
.quote__sign{ margin:0 0 12px; color: rgba(255,255,255,.62); font-size: 12px; }
.quote__more{
  font-weight:800;
  letter-spacing:.06em;
  color: rgba(125,211,252,.95);
  font-size: 12px;
}
.quote__more::after{ content:" →"; }

/* ---------------------------
  Steps / bullets / about
--------------------------- */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(255,255,255,.03);
}
.step__n{
  margin:0 0 10px;
  font-weight:900;
  font-size: 22px;
  letter-spacing:.06em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.step__t{ margin:0 0 8px; font-size: 16px; }
.step__d{ margin:0; color: rgba(255,255,255,.72); line-height:1.75; font-size: 13px; }

.bullets{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.bullet{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(255,255,255,.03);
}
.bullet h3{ margin:0 0 8px; font-size: 16px; }
.bullet p{ margin:0; color: rgba(255,255,255,.72); line-height:1.75; font-size: 13px; }

.about{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.about__box{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(255,255,255,.03);
}
.about__box h3{ margin:0 0 8px; font-size: 16px; }
.about__box p{ margin:0; color: rgba(255,255,255,.72); line-height:1.75; font-size: 13px; }

/* ---------------------------
  FAQ
--------------------------- */
.faq{
  display:grid;
  gap:10px;
}
.faq__item{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:700;
}
.faq__item p{
  margin:10px 0 0;
  color: rgba(255,255,255,.72);
  line-height:1.75;
  font-size: 13px;
}

/* ---------------------------
  Entry
--------------------------- */
.entry{
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.06);
}
.entry__inner{
  border:1px solid var(--line);
  border-radius: calc(var(--radius2) + 8px);
  padding: 26px;
  background: rgba(255,255,255,.03);
}
.entry__title{
  margin:0 0 6px;
  font-size: 24px;
}
.entry__lead{
  margin:0 0 18px;
  color: rgba(255,255,255,.72);
  line-height:1.75;
}
.entry__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.entry__box{
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius2);
  padding:16px;
  background: rgba(0,0,0,.12);
}
.entry__box h3{ margin:0 0 8px; font-size: 16px; }
.entry__box p{ margin:0 0 12px; color: rgba(255,255,255,.72); line-height:1.75; font-size: 13px; }
.entry__btns{ display:flex; gap:10px; flex-wrap:wrap; }

/* ---------------------------
  Footer
--------------------------- */
.site-footer{
  border-top:1px solid var(--line);
  padding: 26px 0;
  background: rgba(0,0,0,.12);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap:14px;
  align-items:center;
}
.footer__name{ margin:0; font-weight:900; letter-spacing:.04em; }
.footer__sub{ margin:4px 0 0; opacity:.7; letter-spacing:.16em; font-size: 11px; }
.footer__nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
}
.footer__nav a{
  color: #000;
  font-size: 12px;
}
.footer__nav a:hover{ color: rgba(255,255,255,.92); }
.footer__copy{ color: #000; }

/* ---------------------------
  Responsive
--------------------------- */
@media (max-width: 1100px){
  .gnav__link{
    font-size: 11px;
    padding: 8px 6px;
    gap: 4px;
  }
  .gnav__list{ gap: 6px; }
}
@media (max-width: 980px){
  .gnav__list{ gap:4px; }
  .cards, .tiles, .steps, .bullets, .about{ grid-template-columns: 1fr 1fr; }
  .quote-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav-btn{ display:block; }
  .gnav{
    position:absolute;
    top: 62px;
    left: 0;
    right: 0;
    padding: 12px 0 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(10,14,20,.92);
    backdrop-filter: blur(10px);
    transform: translateY(-10px);
    opacity:0;
    visibility:hidden;
    transition:.2s ease;
  }
  .gnav__list{
    width:min(var(--container), 100% - 40px);
    margin-inline:auto;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }
  .gnav__dropdown{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    background: rgba(255,255,255,.03);
    border-color: rgba(255,255,255,.10);
    margin-top:8px;
    display:none;
  }
  .gnav__item--has:hover .gnav__dropdown,
  .gnav__item--has:focus-within .gnav__dropdown{
    display:block;
  }

  .nav-toggle:checked ~ .gnav{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
  }

  .header__entry{
    display:none;
  }

  .hero__inner{ padding: 88px 0 64px; }
  .footer__inner{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .container{ width: min(var(--container), 100% - 28px); }
  .cards, .tiles, .steps, .bullets, .about{ grid-template-columns: 1fr; }
  .entry__grid{ grid-template-columns: 1fr; }
  .quote{ grid-template-columns: 1fr; }
  .quote__img{ aspect-ratio: 16/9; }
}


/* ===== 文字色を黒系に（ライトテーマ用） ===== */
:root{
  --muted: rgba(0,0,0,.72);
  /* 枠線が見えにくいなら任意で */
  --line: rgba(0,0,0,.12);
}

.section__eyebrow,
.section__desc,
.panel__text,
.checks li,
.card__text,
.tile__d,
.quote__text,
.step__d,
.bullet p,
.about__box p,
.faq__item p,
.entry__lead,
.entry__box p{
  color: var(--muted);
}

.card__num,
.tile__k,
.quote__sign{
  color: rgba(0,0,0,.60);
}


/* =========================
   Towadenki-like (Vision / Interview)
========================= */
.section--vision,
.section--interview{
  color:#111;
}

/* ---- Vision（薄いブルー背景＋センター見出し） ---- */
.section--vision{
  position: relative;
  padding: 120px 0 110px;
  background: #dfeef5;
  overflow: hidden;
}

/* うっすら幾何学っぽい柄（画像がなくても雰囲気出ます） */
.section--vision::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(120deg, rgba(29,78,216,.08) 0 1px, transparent 1px 140px),
    repeating-linear-gradient(60deg,  rgba(0,0,0,.03) 0 1px, transparent 1px 160px);
  opacity:.55;
  pointer-events:none;
}

/* 下の斜めカット（それっぽい） */
.section--vision::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 90px;
  background:#fff;
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
  pointer-events:none;
}

.section--vision .section__head{
  text-align:center;
  margin-bottom: 18px;
}
.section--vision .section__eyebrow{
  margin:0;
  font-weight:700;
  letter-spacing:.22em;
  color:var(--brand-blue);
  font-size: 12px;
}
.section--vision .section__title{
  margin: 10px 0 10px;
  font-size: clamp(64px, 9vw, 112px);
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 800;
  color:var(--brand-blue);
}
.section--vision .vision__tagline{
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color:#111;
}
.section--vision .section__desc{
  margin: 0 auto;
  max-width: 640px;
  color: rgba(0,0,0,.62);
  line-height: 2.1;
  font-size: 13px;
}

/* Vision内の“パネル”をカードっぽさ消して、本文として馴染ませる */
.section--vision .panel{
  margin: 18px auto 0;
  max-width: 740px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.section--vision .panel__title{
  display:none; /* タグラインと被るので非表示 */
}
.section--vision .panel__text,
.section--vision .checks li{
  color: rgba(0,0,0,.62);
}
.section--vision .checks li::before{
  color:var(--brand-blue);
}

/* ---- Interview（白背景＋超でかタイトル＋下線） ---- */
.section--interview{
  padding: 96px 0 72px;
  background:#fff;
}

.section--interview .section__head{
  text-align:left;
  margin-bottom: 26px;
}

.section--interview .section__eyebrow{
  margin:0;
  font-weight:700;
  letter-spacing:.22em;
  color:#1d4ed8;
  font-size: 12px;
}

.section--interview .section__title{
  margin: 10px 0 10px;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 800;
  color:var(--brand-blue);
  display:inline-block;
  position:relative;
  padding-bottom: 14px;
}
.section--interview .section__title::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:100%;
  height:6px;
  background:var(--brand-blue);
}

.section--interview .section__desc{
  margin: 12px 0 0;
  max-width: 520px;
  color: rgba(0,0,0,.62);
}

/* Interviewのカードも“白×薄影”に寄せる */
.section--interview .card{
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
}
.section--interview .card__title{ color:#111; }
.section--interview .card__num,
.section--interview .card__text{ color: rgba(0,0,0,.62); }
.section--interview .card__more{ color:#1d4ed8; }
.section--interview .card__media img{ filter:none; }



/* =========================================================
   Headline sections (Interview / Work / Message / Career / Benefits / Q&A)
========================================================= */

:root{
  --brand-blue: #0b2aa6;
  --ink: #0b1220;
  --ink-muted: rgba(0,0,0,.62);
  --line-dark: rgba(0,0,0,.12);
}

/* セクション全体を“白地＋黒文字”に */
.section--headline{
  background:#fff;
  color: var(--ink);
  border: 0; /* section--alt の境界線を使わない想定 */
}

/* 見出し：日本語ラベル → 大きい英字 → 下線 */
.section--headline .section__eyebrow{
  color: var(--brand-blue);
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 700;
}

.section--headline .section__title{
  color: var(--brand-blue);
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
  position: relative;
  padding-bottom: 18px;
}

.section--headline .section__title::after{
  content:"";
  display:block;
  height: 4px;
  width: min(520px, 100%);
  background: var(--brand-blue);
  border-radius: 999px;
  margin-top: 14px;
}

.section--headline .section__desc{
  color: var(--ink-muted);
  line-height: 1.9;
  max-width: 62ch;
}

/* 中身（カード等）も黒系に統一 */
.section--headline .card,
.section--headline .quote,
.section--headline .step,
.section--headline .bullet,
.section--headline .faq__item{
  background:#fff;
  border-color: var(--line-dark);
}

.section--headline .card__num,
.section--headline .quote__sign{
  color: rgba(0,0,0,.55);
}

.section--headline .card__text,
.section--headline .quote__text,
.section--headline .step__d,
.section--headline .bullet p,
.section--headline .faq__item p{
  color: var(--ink-muted);
}

.section--headline .card__more,
.section--headline .quote__more{
  color: var(--brand-blue);
}


/* About 内の箱も headline と同じトーンに */
.section--headline .about__box{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
}

.section--headline .about__box h3{
  color:#0b1220;
}

.section--headline .about__box p{
  color: rgba(0,0,0,.62);
}


/* =========================
   Entry を Vision と同じ雰囲気に
========================= */
.section--entry-vision{
  /* Visionより少し詰めたいなら調整 */
  padding: 110px 0 96px;
}

/* Entryのグリッドを中央寄せで見栄え良く */
.section--entry-vision .entry__grid{
  margin: 26px auto 0;
  max-width: 920px;
  gap: 16px;
}

/* Vision背景の上に“白カード”を置く */
.section--entry-vision .entry__box{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 26px;
  padding: 18px;
}

.section--entry-vision .entry__box h3{
  margin: 0 0 10px;
  color:#111;
  font-size: 16px;
}

.section--entry-vision .entry__box p{
  margin: 0 0 12px;
  color: rgba(0,0,0,.62);
  line-height: 1.8;
  font-size: 13px;
}

/* ゴーストボタンをライト背景用に */
.section--entry-vision .btn--ghost{
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.14);
  color:#111;
}

/* SPのとき1列 */
@media (max-width: 560px){
  .section--entry-vision .entry__grid{
    grid-template-columns: 1fr;
  }
}



/* =========================
   Interview：東和電気っぽい段違いカード
========================= */
#interview .cards{
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  justify-items: center;
}

/* Interviewだけ “カード感” を消して白ベースへ */
#interview .card{
  border: none;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;

  /* 段違い用 */
  --offset: 0px;
  --lift: 0px;
  transform: translateY(var(--offset)) translateY(var(--lift));
  transition: transform .22s ease;
  max-width: 360px;
  width: 100%;
}

#interview .card:hover{ --lift: -6px; }

/* 段違い（左：低い / 中：中 / 右：高い） */
#interview .card:nth-child(1){ --offset: 72px; }
#interview .card:nth-child(2){ --offset: 18px; }
#interview .card:nth-child(3){ --offset: -34px; }

/* 画像：四角・主役・タグを画像に乗せる */
#interview .card__media{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  background: #eee;
}

#interview .card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1);
  transition: transform .35s ease;
}

#interview .card:hover .card__media img{
  transform: scale(1.04);
}

/* 画像上の「Interview 001.」ラベル */
#interview .card__num{
  position: absolute;
  left: 0;
  bottom: 14px;
  margin: 0;
  padding: 6px 12px;
  background: rgba(255,255,255,.92);
  color: #1d2aa7;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;
}

/* テキストは画像の下に、余白たっぷり */
#interview .card__body{
  padding: 14px 0 0;
}

#interview .card__title{
  margin: 0 0 10px;
  color: #111;
  font-size: 16px;
  line-height: 1.4;
}

#interview .card__text{
  margin: 0 0 14px;
  color: rgba(0,0,0,.62);
  line-height: 1.8;
  font-size: 13px;
}

/* READ MORE を右寄せ＋矢印 */
#interview .card__more{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 12px;
}

#interview .card__more::after{ content: "→"; }

#interview .card__link:hover .card__more{
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px){
  #interview .cards{ grid-template-columns: 1fr 1fr; }

  /* 段違い(translateY)を無効化して重なり防止 */
  #interview .card{
    --offset: 0px;
    transform: translateY(var(--lift));
  }
}

@media (max-width: 560px){
  #interview .cards{ grid-template-columns: 1fr; }

  /* SPは1列・段違い無し */
  #interview .card{
    --offset: 0px;
    max-width: 520px;
    transform: translateY(var(--lift));
  }
}




/* =========================
   Work：Interviewと同じノリ（画像主役＋ラベル＋段違い）
========================= */
#work .cards{
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  justify-items: center;
}

/* Workだけ “カード感” を消して白ベースへ */
#work .card{
  border: none;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;

  --offset: 0px;
  --lift: 0px;
  transform: translateY(var(--offset)) translateY(var(--lift));
  transition: transform .22s ease;
  max-width: 380px;
  width: 100%;
}

#work .card:hover{ --lift: -6px; }

/* 段違い（好みで数値調整OK） */
#work .card:nth-child(1){ --offset: 56px; }
#work .card:nth-child(2){ --offset: 10px; }
#work .card:nth-child(3){ --offset: -22px; }

/* 画像：縦長で主役にする */
#work .card__media{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  background: #eee;
}

#work .card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1);
  transition: transform .35s ease;
}

#work .card:hover .card__media img{
  transform: scale(1.04);
}

/* 画像上の「Work 001.」ラベル */
#work .card__num{
  position: absolute;
  left: 0;
  bottom: 14px;
  margin: 0;
  padding: 6px 12px;
  background: rgba(255,255,255,.92);
  color: #1d2aa7;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;
}

/* テキストは画像の下に、余白たっぷり */
#work .card__body{
  padding: 14px 0 0;
}

#work .card__title{
  margin: 0 0 10px;
  color: #111;
  font-size: 16px;
  line-height: 1.4;
}

#work .card__text{
  margin: 0 0 14px;
  color: rgba(0,0,0,.62);
  line-height: 1.8;
  font-size: 13px;
}

#work .card__more{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 12px;
}
#work .card__more::after{ content: "→"; }

#work .card__link:hover .card__more{
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px){
  #work .cards{ grid-template-columns: 1fr 1fr; }

  /* 段違い無効で重なり防止 */
  #work .card{
    --offset: 0px;
    transform: translateY(var(--lift));
  }
}

@media (max-width: 560px){
  #work .cards{ grid-template-columns: 1fr; }

  /* SPは1列・段違い無し */
  #work .card{
    --offset: 0px;
    max-width: 520px;
    transform: translateY(var(--lift));
  }
}




/* =========================
   福利厚生(#welfare)：青背景＋文字白（カードは白のまま）
========================= */
#welfare{
  /* キャリアプランっぽい青 */
  background: linear-gradient(135deg, #0b2aa6, #2563eb);
  color: #fff;
}

/* 見出し（日本語ラベル／英大見出し／下線／説明）を白に */
#welfare .section__eyebrow{
  color: rgba(255,255,255,.85);
}

#welfare .section__title{
  color: #fff;
}

#welfare .section__title::after{
  background: rgba(255,255,255,.92);
}

#welfare .section__desc{
  color: rgba(255,255,255,.82);
}

/* --- カード(.bullet)は“そのまま”（白カード＋黒文字）に戻す --- */
#welfare .bullet{
  background: #fff;
  border-color: rgba(255,255,255,.25); /* 青背景上でも馴染むように */
}

#welfare .bullet h3{
  color: #111;
}

#welfare .bullet p{
  color: rgba(0,0,0,.62);
}


/* =========================
   Quick links（tiles）：青背景＋文字白／カードは白
========================= */

/* 「下層ページへの導線」セクションだけを青背景に */
.section[aria-label="下層ページへの導線"]{
  background: linear-gradient(135deg, #0b2aa6, #2563eb);
  color:#fff;
  border: 0;                 /* section--altの線を消したい場合 */
  padding: 88px 0;           /* 余白は好みで */
}

/* カード（tile）は白 */
.section[aria-label="下層ページへの導線"] .tile{
  background:#fff;
  border: 1px solid rgba(255,255,255,.28); /* 青背景上で馴染ませ */
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

/* カード内の文字は黒系に戻す（カードだけ読みやすく） */
.section[aria-label="下層ページへの導線"] .tile__k{
  color: rgba(0,0,0,.55);
}
.section[aria-label="下層ページへの導線"] .tile__t{
  color:#111;
}
.section[aria-label="下層ページへの導線"] .tile__d{
  color: rgba(0,0,0,.62);
}

/* hover（少しだけ浮かせる） */
.section[aria-label="下層ページへの導線"] .tile:hover{
  transform: translateY(-3px);
  background:#fff;
}


/* =========================
   Message（#message）：東和電気っぽいレイアウト
   - 大きい斜め画像
   - 左右交互
   - READ MORE をボタン化
========================= */
#message .quote-grid{
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 6vw, 86px);
}

/* 1件のメッセージ：2カラム（画像＋本文） */
#message .quote{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 64px);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

/* 偶数は左右反転（画像を左へ） */
#message .quote:nth-child(even){
  flex-direction: row-reverse;
}

/* 画像エリア：大きめ＋斜めカット */
#message .quote__img{
  flex: 0 0 min(46%, 520px);
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 0;
  background: #eee;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  /* 右側が斜めになる形 */
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

/* 左に来る画像は斜め方向を反転 */
#message .quote:nth-child(even) .quote__img{
  clip-path: polygon(0 0, 88% 0, 100% 100%, 12% 100%);
}

#message .quote__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease;
}

#message .quote:hover .quote__img img{
  transform: scale(1.04);
}

/* 本文エリア */
#message .quote__body{
  flex: 1 1 auto;
  max-width: 560px;
}

#message .quote__title{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
  color: #111;
  font-weight: 800;
}

#message .quote__text{
  margin: 0 0 18px;
  color: rgba(0,0,0,.62);
  line-height: 2.0;
  font-size: 13px;
}

#message .quote__sign{
  margin: 0 0 22px;
  text-align: right;
  color: #111;
  font-weight: 700;
}

/* READ MORE を四角いボタン風に */
#message .quote__more{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 18px 22px;
  border: 1px solid #1d2aa7;
  color: #1d2aa7;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  background: transparent;
}

#message .quote__more::after{
  content: " →";
  margin-left: 10px;
}

#message .quote__more:hover{
  background: rgba(29,42,167,.06);
}

/* レスポンシブ：縦並び */
@media (max-width: 900px){
  #message .quote{
    flex-direction: column;
    align-items: flex-start;
  }
  #message .quote:nth-child(even){
    flex-direction: column; /* 交互解除 */
  }
  #message .quote__img{
    flex-basis: auto;
    width: 100%;
    max-width: 640px;
  }
  #message .quote__body{
    max-width: 640px;
  }
}


/* =========================
   Hero 右下：白斜め＋青パネル＋人物
========================= */
.hero{
  position: relative;
  overflow: hidden;
}

/* 背景は一番後ろ */
.hero__bg{ position: absolute; inset: 0; z-index: 0; }

/* 既存の暗いオーバーレイがある場合もクリックを塞がない */
.hero::after{ pointer-events: none; }

/* 文字（CTA含む）を最前面に */
.hero__inner{
  position: relative;
  z-index: 5;
}

/* ① 白い斜めカット（参考の白い帯） */
/* .hero__wedge{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(180px, 28vh, 320px);
  background: #dfeef5;
  clip-path: polygon(0 55%, 100% 12%, 100% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
} */


/* 人物（透過PNG）をいい感じに乗せる */
.hero__corner-img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  transform: translateY(8px);
}

/* SPは崩れやすいので小さく（or 非表示も可） */
@media (max-width: 720px){
  .hero__corner{
    width: min(280px, 54vw);
    height: min(420px, 48vh);
    padding: 22px 14px 0;
  }
  .hero__wedge{
    height: 180px;
    clip-path: polygon(0 62%, 100% 28%, 100% 100%, 0 100%);
  }
}



/* =========================
   Hero：右下の人物を“突き抜け”配置
========================= */

/* ヒーローははみ出し許可（突き抜けのため） */
.hero{
  position: relative;
  overflow: visible; /* ←ここが重要 */
}

/* 背景だけははみ出さないように包む（hero__bgで隠す） */
.hero__bg{
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* 文字やCTAは最前面 */
.hero__inner{
  position: relative;
  z-index: 5;
}

/* 右下の人物：ヒーローを突き抜けて下へはみ出す */
.hero__corner{
  position: absolute;
  right: clamp(160px, 6vw, 200px);

  bottom: clamp(-110px, -10vh, -60px); /* マイナスで下に突き抜け */
  width: min(520px, 42vw);
  height: auto;
  z-index: 4;          /* 背景より上、文字より下/上は好み */
  pointer-events: none; /* クリックを邪魔しない */
}

/* 人物PNG */
.hero__corner-img{
  width: 150%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* もし人物が文字に被るなら、PCだけ少し右寄せ/透明度調整も可 */
@media (min-width: 900px){
  .hero__corner{ z-index: 3; } /* 文字を優先したい場合 */
}

/* SPでは邪魔になりやすいので小さく＆突き抜け量を減らす */
@media (max-width: 720px){
  .hero__corner{
    width: min(320px, 62vw);
    bottom: -70px;
    right: 10px;
    opacity: .95;
  }
}


/* Entry：2つのボックスを中央揃えに */
.entry__grid{
  justify-content: center;  /* グリッド全体を中央へ */
  justify-items: center;    /* 各アイテムも中央へ */
}

/* ボックス内の文字も中央にしたい場合 */
.entry__box{
  text-align: center;
}

/* ボタン並びも中央 */
.entry__btns{
  justify-content: center;
}
/* Entry：2枚を同じ幅で、等間隔に */
.section--entry-vision .entry__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px)); /* ←カード幅を固定寄りに */
  gap: 28px;                                         /* ←間隔（好みで 20〜36） */
  justify-content: center;                            /* ←全体を中央寄せ */
  align-items: stretch;
}

/* カードはカラム幅いっぱいに広げる */
.section--entry-vision .entry__box{
  width: 100%;
}

/* SPは1列 */
@media (max-width: 720px){
  .section--entry-vision .entry__grid{
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}



/* =========================
   Vision：左に画像（2枚重ね）＋右に文章
========================= */
.section--vision .vision__grid{
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
}

/* 左の画像枠 */
.vision__media{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 420px;
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  background: #111;
}

/* 2枚とも枠いっぱい */
.vision__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 上に重ねる「手」の画像：なじませ */
.vision__img--overlay{
  opacity: .78;                 /* まずはこの辺が安全 */
  mix-blend-mode: screen;       /* いい感じに重なる（合わなければ下の調整参照） */
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);

  /* 左側がスッと溶ける（重ねた感） */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 100%);
}

/* ほんの薄い色味レイヤー（統一感） */
.vision__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(29,42,167,.10), rgba(0,0,0,.18));
  pointer-events:none;
}

/* タグライン */
.vision__tagline{
  margin: 6px 0 12px;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .75;
}

/* SPは縦積み */
@media (max-width: 900px){
  .section--vision .vision__grid{
    grid-template-columns: 1fr;
  }
  .vision__media{
    min-height: 300px;
  }
}


/* =========================
   Vision：2枚を“少し重ねて”見せる（overlayを斜め）
========================= */

.section--vision .vision__media{
  position: relative;
  overflow: visible;                 /* 斜め写真を少しはみ出させる */
  border-radius: 18px;
  min-height: 420px;                 /* 高さは好みで */
}

/* ベース画像（職人後ろ）は枠いっぱい */
.section--vision .vision__img--base{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;

}

/* 上に重ねる画像（手と配線）を“斜めの写真”として配置 */
.section--vision .vision__img--overlay{
  position: absolute;
  width: 72%;
  aspect-ratio: 4 / 3;
  height: auto;

  /* ここで「少し重なる」位置を決める */
  top: 18px;
  right: -300px;

  object-fit: cover;
  border-radius: 16px;

  /* 斜めにする */
  transform: rotate(-10deg);


  /* ここは“完全重ね”をやめる設定 */
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
  z-index: 2;
}

.section--vision .vision__img--overlay{
  right: -300px;               /* ここはそのままでもOK */
  transform: translateX(-240px) rotate(-10deg); /* マイナスで左へ */
}


/* ほんの薄い統一トーン（必要なければ削除OK） */
.section--vision .vision__media::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  /* background: linear-gradient(135deg, rgba(29,42,167,.06), rgba(0,0,0,.08)); */
  pointer-events:none;
  z-index: 1; /* ベースの上、斜め写真の下 */
}

/* SP調整（斜めを弱く＆中央寄せ気味に） */
@media (max-width: 900px){
  .section--vision .vision__media{
    min-height: 320px;
  }
  .section--vision .vision__img--overlay{
    width: 78%;
    right: -10px;
    top: 10px;
    transform: rotate(-7deg);
    border-width: 5px;
  }
}


/* 右下：トップへ戻るCTA */
.toTop{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;

  background: #0b1a5b;      /* 濃いネイビー */
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  z-index: 999;              /* どの要素より前へ */
  transition: transform .15s ease, opacity .15s ease;
}

.toTop:hover{
  transform: translateY(-2px);
  opacity: .92;
}

/* SP調整 */
@media (max-width: 600px){
  .toTop{
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}



/* FAQ：背景に画像＋薄い黒をかける */
.section--faqbg{
  position: relative;
  color: #fff; /* 背景が暗くなるので文字は白が見やすい */
  background: url("assets/背景.jpg") center / cover no-repeat;
}

/* 上から薄い黒（オーバーレイ） */
.section--faqbg::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.42); /* ←濃さはここで調整（.25〜.55） */
  pointer-events:none;
  z-index:0;
}

/* 中身をオーバーレイより上に */
.section--faqbg > .container{
  position: relative;
  z-index: 1;
}

/* 見出し下線などが暗背景で見えにくい場合の調整（任意） */
.section--faqbg .section__title{
  color:#fff;
}
.section--faqbg .section__eyebrow,
.section--faqbg .section__desc{
  color: rgba(255,255,255,.85);
}
/* FAQカード内は黒文字にする（背景画像の上でも読みやすく） */
.section--faqbg .faq__item{
  background: #fff;
  color: #111;
}

/* 見出し（summary）も黒 */
.section--faqbg .faq__item > summary{
  color: #111;
}

/* 開いた中の本文も黒 */
.section--faqbg .faq__item p,
.section--faqbg .faq__item li{
  color: #111;
}


/* SP：ハンバーガーメニュー内の文字を白にする */
@media (max-width: 820px){
  /* メニュー全体の文字色 */
  .gnav{
    color: #fff;
  }

  /* メニュー内リンク（親・ドロップ両方） */
  .gnav a,
  .gnav .gnav__link,
  .gnav .gnav__drop{
    color: rgba(255,255,255,.92);
  }
}



/* SP：ヒーロー背景画像を「全体が入る（切れない）」表示にする */
@media (max-width: 820px){
.hero{
    margin-top: -300px;
}

.kicker{
    color: #fff;
}

  .hero__bg{
    overflow: hidden;
    background: #fff; /* 余白が出ても白で自然に */
  }

  .hero__img{
    width: 100%;
    height: 100%;
    object-fit: contain;        /* ← これがポイント（全体が入る） */
    object-position: center;    /* 中央に配置 */
  }
}



.hero,
.section--vision,
.section--headline{
  overflow-x: hidden;
}



/* SP：右下の人物を小さくする */
@media (max-width: 560px){
  .hero__corner{
    width: min(240px, 48vw);   /* ←小ささ（ここを調整） */
    right: 12px;
    bottom: -22px;            /* はみ出し量も少し控えめに */
  }

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


/* SP：人物を下のセクションへ突き抜けさせる */
@media (max-width: 560px){

  /* 1) はみ出しOKにする（ここがないと切れることがあります） */
  .hero{
    position: relative;
    overflow: visible;
    z-index: 2;           /* 次セクションより上に */
  }

  /* heroの中身が人物より前に来るように */
  .hero__inner{
    position: relative;
    z-index: 3;
  }

  /* 2) 人物：下にはみ出す（＝突き抜け） */
  .hero__corner{
    width: min(240px, 48vw);
    right: 12px;
    bottom: -64px;        /* ←ここをもっとマイナスにすると突き抜け増える */
    z-index: 4;           /* 背景・次セクションより上 */
    pointer-events: none;
  }

  /* 4) 次セクションに少し余白を作って、被りすぎを防ぐ */
  #vision{
    position: relative;
    z-index: 1;
    padding-top: 72px;    /* ←被りが気になるなら増やす */
  }
}


@media (max-width: 560px){
  .hero__inner{
    position: relative;
    top: -16px; /* ←ここを -8〜-24px くらいで微調整 */
  }
}



/* =========================
   SP：ハンバーガー（三本線）＆ 閉じる（×）
   ========================= */

.nav-close,
.nav-overlay{
  display: none;
}

@media (max-width: 900px){

  /* ハンバーガーを「白線＋濃いめボタン」で見やすく */
  .nav-btn{
    background: rgba(0,0,0,.28);
    border-color: rgba(255,255,255,.25);
    z-index: 65;
  }
  .nav-btn span{
    background: rgba(255,255,255,.95); /* 三本線 */
  }

  /* メニュー本体を前面に */
  .gnav{
    z-index: 60;
  }

  /* ×（閉じる）ボタン */
  /* .nav-close{
    display: grid;
    place-items: center;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;

    color: #fff;
    font-size: 30px;
    line-height: 1;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
    cursor: pointer;
    user-select: none;
  } */

  /* 任意：背景クリックで閉じる用の暗幕 */
  .nav-overlay{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 55;
  }
  .nav-toggle:checked ~ .nav-overlay{
    opacity: 1;
    pointer-events: auto;
  }
}


/* ハンバーガー：中身を上下中央に */
.nav-btn{
  width:48px;
  height:48px;
  display:flex;
  flex-direction:column;
  justify-content:center; /* ← 縦中央 */
  align-items:center;     /* ← 横中央 */
  gap:6px;                /* 線と線の間隔 */
  border-radius:14px;
  border:1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255,255,255,.08);
}

/* span の margin で位置決めしてたのをやめる */
.nav-btn span{
  display:block;
  width:22px;
  height:2px;
  margin:0;              /* ← これが重要 */
  background:#000;
  border-radius:2px;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

/* （ついでに）開いたら×に変える：チェック時 */
.nav-toggle:checked + .nav-btn span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle:checked + .nav-btn span:nth-child(2){
  opacity:0;
}
.nav-toggle:checked + .nav-btn span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}


/* PCではハンバーガーボタンを隠す */
.nav-btn{
  display: none;
}

/* SPだけ表示（ブレイクポイントは必要に応じて変更OK） */
@media (max-width: 900px){
  .nav-btn{
    display: flex;
  }
}


@media (min-width: 1400px) and (max-width: 1480px){
  .hero__corner-img{
    transform: translateX(96px); /* +で右へ */
  }
}
/* PC：ヒーローのコピー文字を白（アクセントはそのまま） */
@media (min-width: 1024px){
  .hero__copy{
    color: #fff;
  }

  /* 念のため個別にも指定（アクセント以外を白に） */
  .hero__copy .kicker,
  .hero__copy .hero__title,
  .hero__copy .hero__lead{
    color: #fff;
  }

}








/* =========================
   ヒーロー人物を次セクションに突き抜けさせる
========================= */

/* 親を基準にして、はみ出しを許可 */
.hero{
  position: relative;
  overflow: visible; /* ← これがないと下が切れます */
}

/* 人物：右下から下へはみ出す */
.hero__corner{
  position: absolute;
  right: clamp(18px, 3vw, 70px);
  bottom: clamp(-140px, -10vw, -90px); /* マイナスで次セクションに突き抜け */
  width: min(520px, 36vw);
  z-index: 30;          /* 次セクションより前に */
  pointer-events: none;
}

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

/* 次のセクションが上に被って隠す場合の保険 */
.section--vision{
  position: relative;
  z-index: 1;
}

/* SPでは小さめにしつつ、突き抜けは維持 */
@media (max-width: 820px){
  .hero__corner{
    right: 10px;
    bottom: -110px;
    width: min(260px, 56vw);
  }
}







@media (min-width: 1024px){
  .hero__copy{
    transform: translateY(48px); /* ←数値を増やすほど下がる */
  }
}


/* SP：右下の人物を小さく＆はみ出し量も控えめに */
@media (max-width: 768px){
  .hero__corner{
    right: 12px;
    bottom: -12px;                  /* ここを -40px とかにすると被りやすい */
    width: clamp(160px, 36vw, 220px); /* ←サイズを小さめに */
    height: auto;
  }

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

/* 360px以下：CTAと人物の被りを防止 */
@media (max-width: 360px){
  .hero__corner{
    bottom: -60px;
    width: clamp(130px, 34vw, 170px);
  }
}


@media (min-width: 1024px){
  .hero__copy .hero__lead{ font-size: 18px; }
}







@media (min-width: 1024px){
  .hero__copy{ color:#0f172a; } /* ベース：墨ネイビー */

  .hero__copy .kicker{
    color:#ffffff;              /* すこし薄め */
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
  }

  .hero__copy .hero__title{
    color:#ffffff;              /* タイトルはさらに締める */
    text-shadow:
      /* 0 3px 22px rgba(255,255,255,.92),
      0 0 2px rgba(255,255,255,.95); */
  }

  .hero__copy .hero__lead{
    color:#ffffff;              /* 読みやすい濃さ */
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
  }
  /* hero__accent はグラデのままでOK */
}



/* PCだけ例（必要なら media は外してOK） */
@media (min-width: 1024px){
  .hero__title{
    text-shadow:
      0 3px 22px rgba(0, 0, 0, 0.92),
      0 0 2px rgba(0, 0, 0, 0.95);
  }

  /* 電気技術だけ shadow を無効化（グラデを綺麗に保つ） */
  .hero__title .hero__accent{
    text-shadow: none !important;
  }
}


@media (min-width: 1024px){
  .hero__lead{
    font-size: clamp(15px, 1.15vw, 18px); /* ちょい大きめ */
    line-height: 1.75;                   /* 読みやすく */
    font-weight: 500;
    max-width: 48ch;                     /* 行が長くなりすぎない */
  }
}


@media (min-width: 1024px){
  .hero__lead{
    position: relative;
    display: inline-block;
    padding: 10px 14px;
  }

.hero__lead::before{
  content:"";
  position:absolute;
  inset:-6px -10px;
  border-radius: 14px;

  /* ほぼ透明の下地 */
  background: rgba(255,255,255,.06);

  /* 枠も影も無し */
  border: none;
  box-shadow: none;

  /* ぼかしは極弱（ダサさの原因なので弱く） */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  z-index:-1;
}



}
