/* ==========================================================================
   株式会社インフォメーション コーポレートサイト
   共通デザインシステム: 変数 / タイポグラフィ / レイアウト / ヘッダー / フッター / ボタン / アニメーション
   ========================================================================== */

:root {
  /* --- カラー --- */
  --blue: #1EB9EF;         /* メインアクセント(ボタン・リンク・下線) */
  --blue-light: #54C9F2;   /* ロゴグラデーション上部・ヘッダーCTA */
  --blue-dark: #1C86D8;    /* ホットペッパー帯など濃色アクセント */
  --ink: #242529;          /* 黒に近いダーク(見出し・フッター背景) */
  --text: #333333;         /* 本文 */
  --text-muted: #6B6D6F;   /* ナビ非アクティブ・補足テキスト */
  --text-faint: #999999;   /* 日付・キャプション等 */
  --line: #E5E7EB;         /* 罫線・カード枠 */
  --bg-gray: #F5F5F5;      /* セクション背景(NEWS帯など) */
  --bg-gray2: #F0F0F0;     /* セクション背景(SERVICEカード帯など) */
  --input-bg: #F8F8F8;     /* フォーム入力欄背景 */
  --white: #FFFFFF;
  --footer-bg: #242529;

  /* --- フォント --- */
  --font-jp: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-en: "Oswald", sans-serif;

  /* --- レイアウト --- */
  --page-max: 1680px;
  --content-max: 1200px;
  --content-pad: 40px;     /* content-maxを超えない画面幅での左右余白 */
  --header-h: 96px;
  --section-gap: 140px;
  --section-gap-sp: 72px;

  /* --- アニメーション --- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.35s;
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
    --content-pad: 24px;
  }
}

/* ==========================================================================
   ベース
   ========================================================================== */
html {
  font-size: 16px;
}
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  font-weight: 400;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-jp);
  color: var(--ink);
  font-weight: 700;
}
p { color: var(--text); }

.en {
  font-family: var(--font-en);
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}
@media (min-width: 1281px) {
  .container { padding: 0; }
}

.section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}
@media (max-width: 900px) {
  .section {
    padding-top: var(--section-gap-sp);
    padding-bottom: var(--section-gap-sp);
  }
}

/* 見出し英字(頭文字カラー分け): SERVICE / ABOUT / RECRUIT / MISSION 等 */
.kicker {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.kicker > .kicker__accent {
  color: var(--blue);
}

/* アンダーライン付き中見出し(社長メッセージ/会社概要/社員インタビュー等で使用) */
.heading-underline {
  display: inline-block;
  position: relative;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 12px;
}
.heading-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
}

.section-lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
}

/* ==========================================================================
   ボタン
   ========================================================================== */
.btn-pill,
.btn-pill:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 6px 16px rgba(30, 185, 239, 0);
}
.btn-pill svg { transition: transform var(--dur) var(--ease); flex-shrink: 0; }
.btn-pill:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 185, 239, 0.35);
}
.btn-pill:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  background: transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-outline:hover svg circle,
.btn-outline:hover svg path { stroke: var(--white); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

.round-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.round-link .round-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.round-link:hover .round-ico {
  background: var(--blue);
  transform: scale(1.1);
}

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
a:hover .arrow-circle,
button:hover .arrow-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: scale(1.08);
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  transition: box-shadow var(--dur) var(--ease);
}
.header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.header__inner {
  max-width: var(--page-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  height: 42px;
  transition: opacity var(--dur) var(--ease);
}
.header__logo:hover { opacity: 0.7; }
.header__logo img { height: 100%; width: auto; }

.header__nav { margin-left: auto; }
.header__nav > ul {
  display: flex;
  align-items: center;
  gap: 44px;
}
.header__nav-item { position: relative; }
.header__nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 8px 2px;
  position: relative;
}
.header__nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--dur) var(--ease);
}
.header__nav-item > a:hover,
.header__nav-item > a.is-current {
  color: var(--ink);
}
.header__nav-item > a:hover::after,
.header__nav-item > a.is-current::after {
  width: 100%;
}
.header__nav-item .dd-arrow {
  transition: transform var(--dur) var(--ease);
}
.js-dropdown:hover .dd-arrow { transform: rotate(180deg); }

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.js-dropdown:hover .header__dropdown,
.js-dropdown.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.header__dropdown li a {
  display: block;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.header__dropdown li a:hover {
  background: var(--bg-gray);
  color: var(--blue);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: var(--header-h);
  padding: 0 32px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 16px;
  margin-left: 40px;
  transition: background var(--dur) var(--ease);
}
.header__cta:hover { background: var(--blue-dark); }
.header__cta svg { transition: transform var(--dur) var(--ease); }
.header__cta:hover svg { transform: translateX(4px); }

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
body.is-nav-open .header__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.is-nav-open .header__hamburger span:nth-child(2) { opacity: 0; }
body.is-nav-open .header__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sp-nav {
  display: none;
}

@media (max-width: 900px) {
  .header__inner { padding: 0 24px; }
  .header__nav, .header__cta { display: none; }
  .header__hamburger { display: flex; }

  .sp-nav {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    z-index: 999;
  }
  body.is-nav-open .sp-nav { transform: translateX(0); }
  .sp-nav > ul > li { border-bottom: 1px solid var(--line); }
  .sp-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    font-family: var(--font-en);
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--ink);
    text-transform: uppercase;
  }
  .sp-nav .header__dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 12px;
    transition: none;
  }
  .sp-nav .js-dropdown.is-open .header__dropdown,
  .sp-nav .js-dropdown:hover .header__dropdown {
    display: block;
    transform: none;
    left: auto;
    top: auto;
  }
  .sp-nav .header__dropdown li a { color: var(--text-muted); }
  .sp-nav__cta {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
  }
}

/* ==========================================================================
   CTAカード (CONTACT / MATERIALS) — 全ページ共通、フッター直前
   ========================================================================== */
.cta-cards {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: -90px;
}
@media (min-width: 1281px) { .cta-cards { padding: 0; } }

.cta-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 56px 40px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}
.cta-card h3 {
  font-family: var(--font-en);
  font-size: clamp(32px, 3vw, 44px);
  color: var(--ink);
}
.cta-card p {
  margin-top: 4px;
  margin-bottom: 24px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .cta-cards { grid-template-columns: 1fr; margin-bottom: -60px; }
  .cta-card { padding: 40px 24px; }
}

/* ==========================================================================
   フッター
   ========================================================================== */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding-top: 150px;
  padding-bottom: 40px;
}
.footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}
@media (min-width: 1281px) { .footer__inner { padding: 0; } }

.footer__sns {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 56px;
}
.footer__sns-note {
  display: inline-flex;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  -webkit-mask-image: url("../img/fooder/note-icon.png");
  mask-image: url("../img/fooder/note-icon.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer__sns-note:hover { background-color: var(--blue); transform: translateY(-3px); }

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__nav {
  display: flex;
  gap: 80px;
}
.footer__col li { margin-bottom: 16px; }
.footer__col a,
.footer__col a:visited {
  font-size: 14px;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.footer__col a:hover { color: var(--blue); }

.footer__logo img { height: 24px; width: auto; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__copyright {
  font-family: var(--font-en), var(--font-jp);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
}
@media (max-width: 900px) {
  .footer__copyright { margin-left: 0; }
}

@media (max-width: 900px) {
  .footer { padding-top: 100px; }
  .footer__main { flex-direction: column; gap: 32px; }
  .footer__nav { gap: 40px; flex-wrap: wrap; }
  .footer__sns { margin-bottom: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   スクロールふわっとフェードイン (js-reveal / js-reveal-group で main.js が制御)
   ========================================================================== */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; transition: none; }
}

/* カード系ホバー共通(浮き上がり) */
.hover-lift {
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   ページ共通パーツ (hero / split / photo / page-title)
   ========================================================================== */
.hero-photo {
  position: relative;
}
.rounded-photo {
  border-radius: 28px;
  overflow: hidden;
}
.rounded-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-scroll-btn {
  position: absolute;
  right: 40px;
  bottom: -32px;
  z-index: 5;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(30, 185, 239, 0.4);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hero-scroll-btn:hover { transform: translateY(4px); background: var(--blue-dark); }
.hero-scroll-btn svg { width: 20px; height: 20px; transform: rotate(90deg); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split--reverse .split-body { order: 1; }

.page-title-block {
  padding: 56px 0 40px;
}
.page-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.page-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
}

.bg-gray { background: var(--bg-gray); }
.bg-gray2 { background: var(--bg-gray2); }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 1; }
  .split--reverse .split-body { order: 2; }
  .hero-scroll-btn { right: 20px; bottom: -26px; width: 52px; height: 52px; }
}

/* ==========================================================================
   SERVICE カードリスト (home の SERVICE セクション内 3施策リンク)
   ========================================================================== */
.svc-list {
  background: var(--bg-gray2);
  border-radius: 24px;
  padding: 8px 40px;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform var(--dur) var(--ease);
}
.svc-item:last-child { border-bottom: none; }
.svc-item:hover { transform: translateX(6px); }
.svc-icon {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.svc-icon svg { width: 38px; height: 38px; color: var(--blue); }
.svc-body { flex: 1; }
.svc-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.svc-body p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

@media (max-width: 900px) {
  .svc-list { padding: 4px 20px; border-radius: 16px; }
  .svc-item { gap: 16px; padding: 24px 0; }
  .svc-icon { width: 56px; height: 56px; border-radius: 12px; }
  .svc-icon svg { width: 26px; height: 26px; }
}

/* ==========================================================================
   NEWS 帯 (home / 一覧共通の3件リスト)
   ========================================================================== */
.news-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.news-row-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-row {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--dur) var(--ease);
}
.news-row:hover { transform: translateX(4px); }
.news-row:hover .news-title { color: var(--blue); }
.news-date { font-size: 12px; color: var(--text-faint); font-family: var(--font-en); }
.news-title { font-size: 15px; font-weight: 500; color: var(--ink); transition: color var(--dur) var(--ease); }

@media (max-width: 900px) {
  .news-row-list { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================================
   NEWS 一覧 / 詳細ページ用: 日付ブロック(31 / 2026/07)形式
   ========================================================================== */
.news-list-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: transform var(--dur) var(--ease);
}
.news-list-row:first-child { padding-top: 0; }
.news-list-row:hover { transform: translateX(6px); }
.news-list-row:hover .news-list-title { color: var(--blue); }
.news-day {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--ink);
  min-width: 70px;
}
.news-day + .news-ym { margin-top: 4px; }
.news-day-block { display: flex; flex-direction: column; align-items: flex-start; min-width: 90px; }
.news-ym { font-family: var(--font-en); font-size: 13px; color: var(--text-faint); }
.news-list-title { font-size: 17px; font-weight: 500; color: var(--ink); transition: color var(--dur) var(--ease); }

.article-head { display: grid; grid-template-columns: 140px 1fr; gap: 40px; margin-bottom: 40px; }
.article-body { font-size: 16px; line-height: 2; color: var(--text); white-space: pre-line; }
.article-body + hr, .article-head + hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

@media (max-width: 900px) {
  .article-head { grid-template-columns: 1fr; gap: 12px; }
}

/* ==========================================================================
   共通お問い合わせ / 資料請求フォーム
   ========================================================================== */
.form-block { max-width: 760px; }
.form-row { margin-bottom: 32px; }
.form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
}
.form-label .req { color: var(--text-muted); margin-left: 4px; font-weight: 400; }
.radio-group { display: flex; flex-wrap: wrap; gap: 20px 32px; }
.radio-item { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; cursor: pointer; }
.radio-item input {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid #C9CCD1;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--dur) var(--ease);
}
.radio-item input:checked { border-color: var(--blue); }
.radio-item input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--blue);
}
.field-text, .field-textarea, .field-select {
  width: 100%;
  background: var(--input-bg);
  border: none;
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--ink);
  transition: box-shadow var(--dur) var(--ease);
}
.field-text:focus, .field-textarea:focus, .field-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--blue);
}
.field-text::placeholder, .field-textarea::placeholder { color: #AAAAAA; }
.field-textarea { min-height: 220px; resize: vertical; }

.consent-link { font-size: 13px; color: var(--ink); text-decoration: underline; }
.consent-row { display: flex; align-items: center; gap: 10px; margin: 18px 0 32px; }
.consent-row input {
  appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid #CCCCCC;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}
.consent-row input:checked { border-color: var(--blue); background: var(--blue); }
.consent-row input:checked::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(40deg);
}
.consent-row label { font-size: 14px; }

.btn-dark:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-dark:disabled:hover { background: var(--ink); transform: none; }

.form-thanks { padding: 60px 0; text-align: center; }
.form-thanks h2 { font-size: 24px; margin-bottom: 12px; }

/* ==========================================================================
   SERVICE ページ: 番号見出し / 色帯 / お悩みリスト / 実績 / 選ばれる理由
   ========================================================================== */
.svc-hero-photo { margin-bottom: 80px; }

.num-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.num-heading .num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.num-heading .num .accent { color: var(--blue); }
.num-heading h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; }

.svc-lead {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 24px;
}
.svc-illustration { max-width: 720px; margin: 48px auto 0; }

.band {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  padding: 26px 24px;
  border-radius: 4px;
  margin: 72px 0 40px;
}
.band--dark { background: var(--blue-dark); }

.check-list { display: flex; flex-direction: column; gap: 18px; }
.check-item { display: flex; align-items: center; gap: 16px; font-size: 16px; font-weight: 500; }
.check-item .box {
  width: 26px; height: 26px;
  border: 2px solid #E0483C;
  border-radius: 4px;
  color: #E0483C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-item .box svg { width: 14px; height: 14px; }

.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}
.case-band {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  padding: 20px;
}
.case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px; }
.case-stat h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.case-bars { display: flex; align-items: flex-end; gap: 10px; }
.case-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  font-size: 18px;
}
.case-bar--before { background: #C9CCD1; color: #55575B; }
.case-bar--after { background: var(--blue); position: relative; }
.case-bar-label { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 10px; }
.case-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.case-voice { padding: 32px 40px 40px; border-top: 1px solid var(--line); }
.case-voice h4 { font-size: 18px; margin-bottom: 14px; }
.case-voice p { font-size: 15px; line-height: 2; color: var(--text); }

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reason-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.reason-card .num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 34px;
  color: var(--ink);
  display: block;
  margin-bottom: 18px;
}
.reason-card .num .accent { color: var(--blue); }
.reason-card svg { width: 44px; height: 44px; color: var(--blue); margin-bottom: 18px; }
.reason-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.reason-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

@media (max-width: 900px) {
  .case-stats { grid-template-columns: 1fr; padding: 28px 24px; gap: 24px; }
  .case-voice { padding: 24px; }
  .reason-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reason-card { padding: 24px 20px; }
  .band { margin: 48px 0 32px; }
}
@media (max-width: 560px) {
  .reason-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   RECRUIT ページ専用
   ========================================================================== */
.recruit-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(120deg, #0b2138 0%, #163a5c 55%, #1b5583 100%);
  overflow: hidden;
}
.recruit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 28, 0.32);
}
.recruit-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.recruit-hero-title {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.25;
}
.recruit-hero-copy { display: flex; flex-direction: column; gap: 20px; font-size: 15px; line-height: 1.9; }

.value-list { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.value-item h3 { font-size: 22px; margin-bottom: 6px; }
.value-item p { font-size: 15px; color: var(--text); }

.hire-banner {
  position: relative;
  background: var(--bg-gray);
  border-radius: 24px;
  overflow: hidden;
  padding: 56px;
}
.hire-banner-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }
.hire-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.hire-banner-content { position: relative; z-index: 1; max-width: 640px; }
.hire-cta-list { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.hire-pill {
  display: inline-flex;
  align-items: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hire-pill:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(30, 185, 239, 0.35); }

.interview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.interview-card { display: block; }
.interview-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  transition: transform var(--dur) var(--ease);
}
.interview-card:hover .interview-photo { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.16); }
.interview-photo img { width: 100%; height: 100%; object-fit: cover; }
.interview-card .round-link { margin-top: 14px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 24px; }
.benefit-item h3 { font-size: 16px; font-weight: 700; margin: 14px 0 8px; }
.benefit-item p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.benefit-item svg { width: 32px; height: 32px; color: var(--blue); }

.gallery {
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.gallery-nav { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.gallery-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}
.gallery-nav button:hover { background: var(--blue-dark); }
.gallery-nav svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .recruit-hero .container { grid-template-columns: 1fr; }
  .recruit-hero { min-height: 460px; padding: 100px 0 60px; }
  .hire-banner { padding: 32px 24px; }
  .interview-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .gallery-track img { width: 220px; height: 280px; }
}

/* ==========================================================================
   ABOUT ページ専用
   ========================================================================== */
.president-block { display: grid; grid-template-columns: 320px 1fr; gap: 56px; }
.president-photo { border-radius: 20px; overflow: hidden; }
.president-photo img { width: 100%; object-fit: cover; }
.president-msg { font-size: 16px; line-height: 2; color: var(--text); white-space: pre-line; }
.president-msg .sign { display: block; margin-top: 28px; font-weight: 700; }

.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--line); }
.company-table tr:first-child { border-top: 1px solid var(--line); }
.company-table th, .company-table td { text-align: left; padding: 20px 16px 20px 0; vertical-align: top; font-size: 15px; }
.company-table th { width: 160px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.company-table td { color: var(--text); line-height: 1.9; }

.company-block { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.map-frame { border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 1; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.sub-en { font-family: var(--font-en); color: var(--text-muted); font-size: 16px; margin-left: 12px; }

@media (max-width: 900px) {
  .president-block { grid-template-columns: 1fr; gap: 28px; }
  .president-photo { max-width: 280px; }
  .company-block { grid-template-columns: 1fr; gap: 32px; }
  .company-table th { width: 120px; }
}

/* ==========================================================================
   SP共通(design.md: sp幅540px, 左右余白)
   ========================================================================== */
@media (max-width: 600px) {
  .container,
  .footer__inner,
  .cta-cards {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ==========================================================================
   幾何学デコレーション(サイト全体で使う控えめな線画の円・線)
   使い方: 装飾を入れたい section に position:relative を付け、その最初の子として
   <div class="geo-deco geo-deco--xxx" aria-hidden="true"><svg>...</svg></div> を置く。
   ・pointer-events:none / DOM上で最初の子 = 後続のコンテンツが自然に上に重なる
   ・文字と重ならない余白(角・背景の空きスペース)にだけ置くこと
   ・stroke-width が細く、opacity も低いので、目立たせすぎない
   ========================================================================== */
.geo-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.geo-deco svg { display: block; width: 100%; height: 100%; }
.geo-deco circle,
.geo-deco line,
.geo-deco rect {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
}
.geo-deco .geo-accent { stroke: var(--blue); }
.geo-deco .geo-dot { fill: var(--blue); stroke: none; }

.geo-deco--tr { top: -60px; right: -60px; width: 260px; height: 260px; }
.geo-deco--tl { top: -60px; left: -60px; width: 260px; height: 260px; }
.geo-deco--br { bottom: -50px; right: -50px; width: 220px; height: 220px; }
.geo-deco--bl { bottom: -40px; left: -40px; width: 200px; height: 200px; }
.geo-deco--corner { top: 24px; right: 24px; width: 120px; height: 120px; }
.geo-deco--corner-tl { top: 24px; left: 24px; width: 120px; height: 120px; }
.geo-deco--wide { top: 50%; right: 6%; width: 180px; height: 180px; transform: translateY(-50%); }
.geo-deco--wide-left { top: 50%; left: 6%; width: 160px; height: 160px; transform: translateY(-50%); }

.geo-deco .geo-spin { transform-box: fill-box; transform-origin: center; animation: geoSpin 60s linear infinite; }
.geo-deco .geo-pulse { transform-box: fill-box; transform-origin: center; animation: geoPulse 7s ease-in-out infinite; }
.geo-deco .geo-drift { transform-box: fill-box; transform-origin: center; animation: geoDrift 10s ease-in-out infinite; }
.geo-deco .geo-drift--delay { animation-delay: -4s; }

@keyframes geoSpin { to { transform: rotate(360deg); } }
@keyframes geoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.6; }
}
@keyframes geoDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -8px); }
}
@media (prefers-reduced-motion: reduce) {
  .geo-deco .geo-spin,
  .geo-deco .geo-pulse,
  .geo-deco .geo-drift { animation: none; }
}
@media (max-width: 900px) {
  .geo-deco--tr,
  .geo-deco--tl { width: 160px; height: 160px; top: -30px; }
  .geo-deco--tr { right: -30px; }
  .geo-deco--tl { left: -30px; }
  .geo-deco--bl,
  .geo-deco--br { width: 130px; height: 130px; }
  .geo-deco--corner,
  .geo-deco--corner-tl { width: 56px; height: 56px; top: 8px; }
  .geo-deco--corner { right: 8px; }
  .geo-deco--corner-tl { left: 8px; }
  .geo-deco--wide,
  .geo-deco--wide-left { display: none; }
}
