/* ============================================================
   more inc. corporate site — shared stylesheet
   brand: #0068ff / gradient(#7aeb9e → #00c1ff → #0041ff) / navy #06203f
   tone: 白基調・明るく誠実、現行サイトの雰囲気を踏襲
   ============================================================ */

:root {
  --blue: #0068ff;
  --blue-dark: #0041ff;
  --cyan: #00c1ff;
  --mint: #7aeb9e;
  --navy: #06203f;
  --ink: #1a2433;
  --text: #2c3a4e;
  --muted: #64748b;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --bg-tint: #eef4ff;
  --grad: linear-gradient(90deg, #7aeb9e, #00c1ff 41%, #0041ff);
  --grad-soft: linear-gradient(135deg, rgba(122, 235, 158, 0.14), rgba(0, 193, 255, 0.12) 45%, rgba(0, 65, 255, 0.1));
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Montserrat", "Noto Sans JP", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --header-h: 72px;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(6, 32, 63, 0.07);
  --shadow-hover: 0 16px 40px rgba(6, 32, 63, 0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HTMLのwidth/height属性はCLS防止のためのもの。実寸ではなく比率として使うので height:auto が必須 */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 32, 63, 0.06);
}
.header__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: flex; align-items: center; }
.header__logo img { height: 44px; width: auto; }

.gnav { display: flex; align-items: center; gap: 28px; }
.gnav a {
  font-size: 14px; font-weight: 500; color: var(--text);
  position: relative; padding: 4px 0;
}
.gnav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width 0.25s;
}
.gnav a:hover::after, .gnav a[aria-current="page"]::after { width: 100%; }
.gnav__cta {
  background: var(--grad); color: #fff !important; padding: 10px 24px !important;
  border-radius: 8px; font-weight: 700 !important; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 104, 255, 0.28);
}
.gnav__cta::after { display: none; }
.gnav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 104, 255, 0.38); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px; z-index: 120;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-open .nav-toggle span { background: #fff; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .gnav {
    position: fixed; inset: 0; background: var(--navy);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s;
  }
  .nav-open .gnav { opacity: 1; visibility: visible; }
  .gnav a { color: #fff !important; font-size: 18px; }
}

/* ---------- footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.8); margin-top: 120px; }
.footer__cta {
  position: relative; overflow: hidden;
  padding: 90px 0; text-align: center; color: #fff;
  background: linear-gradient(135deg, #0a2c52, var(--navy) 60%);
}
.footer__cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(0, 193, 255, 0.16), transparent 60%),
    radial-gradient(600px 300px at 80% 100%, rgba(122, 235, 158, 0.1), transparent 60%);
}
.footer__cta > .container { position: relative; }
.footer__cta .en-label { justify-content: center; }
.footer__cta h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 16px; }
.footer__cta p { color: rgba(255, 255, 255, 0.75); max-width: 620px; margin: 0 auto 36px; }
.footer__main { padding: 60px 0 0; }
.footer__grid {
  display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand img { height: 48px; width: auto; }
.footer__brand p { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-top: 16px; }
.footer__nav { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__nav h3 {
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  color: var(--cyan); margin-bottom: 16px; letter-spacing: 0.1em;
}
.footer__nav li { margin-bottom: 10px; }
.footer__nav a { font-size: 14px; color: rgba(255, 255, 255, 0.78); transition: color 0.2s; }
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 12px; color: rgba(255, 255, 255, 0.5);
}
.footer__bottom nav { display: flex; gap: 24px; }
.footer__bottom a:hover { color: #fff; }

/* ---------- common parts ---------- */
.en-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--blue); margin-bottom: 14px;
}
.section { padding: 96px 0 0; }
.section-head { margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--ink);
  line-height: 1.4; letter-spacing: 0.01em;
}
.section-head .lead { margin-top: 16px; color: var(--muted); max-width: 720px; }
.section-head--center { text-align: center; }
.section-head--center .en-label { justify-content: center; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; padding: 14px 36px; border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(0, 104, 255, 0.3); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 104, 255, 0.4); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--white { background: #fff; color: var(--navy); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2); }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13px; color: #fff;
  background: var(--grad); padding: 8px 20px; border-radius: 6px;
  align-self: flex-start; transition: transform 0.2s, box-shadow 0.2s;
}
.text-link:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 104, 255, 0.3); }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- hero (top) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 96px) 0 110px;
  background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 100%);
  text-align: center;
}
.hero__geo {
  position: absolute; inset: 0; pointer-events: none; user-select: none;
}
.hero__geo svg { width: 100%; height: 100%; }
.hero__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; padding: 0 24px; }
/* レイヤーの弧が見出しの背後を通るため、文字の周りだけ白く抜いて可読性を確保する */
.hero__inner::before {
  content: ""; position: absolute; inset: -40px -48px -24px; z-index: -1;
  background: radial-gradient(ellipse 62% 60% at 50% 46%,
    rgba(255,255,255,.94) 0%, rgba(255,255,255,.86) 46%, rgba(255,255,255,0) 78%);
}
.hero__inner .en-label { justify-content: center; }
.hero__inner h1 {
  font-size: clamp(30px, 5vw, 52px); font-weight: 800; line-height: 1.45;
  letter-spacing: 0.01em; margin-bottom: 26px; color: var(--ink);
}
.hero__inner .sub {
  color: var(--text); font-size: clamp(15px, 1.6vw, 17px);
  max-width: 740px; margin: 0 auto 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
/* スマホは画面に対して弧が大きく出るため、密度を落として文字を優先する */
@media (max-width: 720px) {
  .hero__geo { opacity: .5; }
  .hero__inner::before { inset: -28px -20px -16px; }
  /* 「基準を、」の強制改行が幅に収まらず「を、」だけが行に落ちるため、
     スマホでは改行をブラウザ任せにして行長を均す */
  .hero__inner h1 br { display: none; }
  .hero__inner h1 { text-wrap: balance; }
}

/* stats */
.stats { padding: 0; margin-top: -40px; position: relative; z-index: 2; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px; text-align: center;
  /* 数値カードと「取引先の層」カードは高さが揃わないため、中身を縦中央に置いて重心を合わせる */
  display: flex; flex-direction: column; justify-content: center;
}
.stat b {
  display: block; font-family: var(--font-en); font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800; line-height: 1.2; color: var(--blue);
}
.stat b small { font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.stat span { font-size: 12.5px; color: var(--muted); }
.stats__grid--3 { grid-template-columns: repeat(3, 1fr); }

/* 数値の下に添える補足行。主役は数字なので一段小さく落とす */
.stat__sub {
  font-size: 11px; color: var(--muted); opacity: .8;
  line-height: 1.6; margin-top: 3px;
}
@media (max-width: 720px) {
  .stats__grid, .stats__grid--3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats { margin-top: -24px; }
  /* 2カラムだと横幅が足りずキャプションが折れるため、左右の余白を詰める */
  .stat { padding: 24px 12px; }
  .stat__sub { font-size: 10.5px; }
}

/* ---------- VMV ---------- */
.vmv-block {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 44px 40px; text-align: center;
}
.vmv-block + .vmv-block { margin-top: 24px; }
.vmv-block .vmv-tag {
  font-family: var(--font-en); font-weight: 800; font-size: 14px; letter-spacing: 0.2em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.vmv-block h3 { font-size: clamp(19px, 2.6vw, 26px); font-weight: 700; color: var(--ink); line-height: 1.7; }
.vmv-block p { margin-top: 12px; color: var(--muted); font-size: 14.5px; max-width: 680px; margin-left: auto; margin-right: auto; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 24px; }
@media (max-width: 1000px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; text-align: left;
}
.value-card .num {
  font-family: var(--font-en); font-weight: 800; font-size: 22px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 8px;
}
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.6; margin-bottom: 8px; }
.value-card p { font-size: 12.5px; color: var(--muted); line-height: 1.7; }

/* ---------- cards ---------- */
.card-grid { display: grid; gap: 24px; }
/* グリッドアイテムの min-width:auto を打ち消す（中身の min-content でトラックが広がるのを防ぐ） */
.card-grid > * { min-width: 0; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .card-grid--3 { grid-template-columns: 1fr; } .card-grid--2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; gap: 12px; position: relative;
  box-shadow: var(--shadow);
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(0, 104, 255, 0.4); }
.card__illust {
  background: var(--bg-soft); border-radius: 12px; padding: 18px;
  display: flex; align-items: center; justify-content: center;
}
.card__illust img { width: 150px; height: 150px; object-fit: contain; }
/* 写真サムネイル（店舗カードなど） */
.card__photo {
  border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9;
  background: var(--bg-soft);
}
.card__photo img { width: 100%; height: 100%; object-fit: cover; }

.card__logo {
  background: var(--bg-soft); border-radius: 12px; padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
.card__logo img { width: 120px; height: 120px; object-fit: contain; }

.card__num {
  font-family: var(--font-en); font-weight: 800; font-size: 13px; color: var(--blue); letter-spacing: 0.1em;
}
.card h3 { font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.5; }
.card p { font-size: 14px; color: var(--muted); flex: 1; }
/* .case など .card 以外でも折り返すように、スコープを外している
   （タグ間に空白がないHTMLなので、flex-wrap がないと1行に伸びて横スクロールが出る） */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-size: 11.5px; color: var(--blue); font-weight: 500;
  background: var(--bg-tint); border: 1px solid rgba(0, 104, 255, 0.18);
  padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}

/* 代表プロフィール */
.card.ceo { flex-direction: row; gap: 36px; align-items: flex-start; }
.ceo__photo {
  flex: 0 0 240px; border-radius: 12px; overflow: hidden; background: var(--bg-soft);
}
.ceo__photo img { width: 100%; height: auto; }
.ceo__body { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 700px) {
  .card.ceo { flex-direction: column; }
  .ceo__photo { flex: none; max-width: 200px; }
}

/* strength cards (gradient numbers) */
.strength { counter-reset: strength; }
.strength .card { padding: 36px 30px; }
.strength .card::before {
  counter-increment: strength; content: "0" counter(strength);
  font-family: var(--font-en); font-weight: 800; font-size: 44px; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- case study ---------- */
.case {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s; box-shadow: var(--shadow);
}
.case:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.case__client { font-family: var(--font-en); font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 0.05em; }
.case h3 { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.6; }
.case p { font-size: 14px; color: var(--muted); flex: 1; }
.case__metric {
  display: flex; align-items: baseline; gap: 8px; padding: 14px 18px;
  background: var(--bg-tint); border-radius: 10px;
}
.case__metric b { font-family: var(--font-en); font-size: 28px; font-weight: 800; color: var(--blue); line-height: 1; }
.case__metric span { font-size: 12px; color: var(--muted); }

/* clients */
.clients { display: flex; flex-wrap: wrap; gap: 12px; }
.clients li {
  font-weight: 600; font-size: 14px; color: var(--text);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 22px;
  box-shadow: var(--shadow);
}
.client-logos { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; margin-top: 28px; }
.client-logos img { height: 40px; width: auto; object-fit: contain; }

/* ---------- page hero (sub pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 72px) 0 80px;
  background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 100%);
}
.page-hero__geo { position: absolute; inset: 0; pointer-events: none; }
.page-hero__geo svg { width: 100%; height: 100%; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; line-height: 1.45; color: var(--ink); }
.page-hero .lead { margin-top: 18px; color: var(--text); max-width: 680px; }
.breadcrumb {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
  font-size: 12px; color: var(--muted); font-family: var(--font-en); font-weight: 600;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: 0.5; }

/* ---------- feature rows ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.feature-row + .feature-row { margin-top: 72px; }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
}
.feature-row h3 { font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 14px; line-height: 1.5; }
.feature-row p { color: var(--muted); font-size: 15px; }
.feature-row .visual {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 240px; display: flex; align-items: center; justify-content: center; padding: 32px;
}

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
table.data { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }
table.data th, table.data td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
table.data thead th {
  font-size: 12.5px; letter-spacing: 0.05em; color: var(--muted);
  background: var(--bg-soft); font-weight: 600; white-space: nowrap;
}
table.data tbody tr:last-child th, table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody th { font-weight: 700; color: var(--ink); white-space: nowrap; background: #fff; }
table.data .price { font-family: var(--font-en); font-weight: 700; color: var(--blue); }
table.data .maru { color: var(--blue); font-weight: 700; }
table.data .batsu { color: #c34a4a; }
table.data .sankaku { color: #b98a2c; }
table.data td.hl { background: var(--bg-tint); font-weight: 700; color: var(--ink); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
/* 3ステップ用。以降のメディアクエリに上書きされるよう、必ずこの位置に置くこと
   （HTMLのインラインstyleで列数を指定するとメディアクエリが効かずスマホで崩れる） */
.steps--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step; content: "STEP 0" counter(step);
  font-family: var(--font-en); font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 12px;
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); }

/* ---------- recruit ---------- */
.job {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; margin-bottom: 32px; box-shadow: var(--shadow);
}
.job__head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-bottom: 8px; }
.job__head h3 { font-size: 22px; font-weight: 700; color: var(--ink); }
.job__badge {
  font-size: 12px; font-weight: 700; color: var(--blue);
  background: var(--bg-tint); padding: 4px 14px; border-radius: 999px;
}
.job__sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.job dl { display: grid; grid-template-columns: 160px 1fr; border-top: 1px solid var(--line); }
@media (max-width: 640px) { .job dl { grid-template-columns: 1fr; } }
.job dt {
  font-weight: 700; font-size: 14px; color: var(--ink); padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.job dd { font-size: 14.5px; color: var(--text); padding: 18px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 640px) {
  .job dt { border-bottom: 0; padding-bottom: 4px; }
  .job dd { padding-top: 0; }
}
.job dd ul { padding-left: 1.2em; }
.job dd ul li { list-style: disc; margin-bottom: 4px; }

/* ---------- prose (privacy etc.) ---------- */
.prose h2 { font-size: 22px; font-weight: 700; color: var(--ink); margin: 48px 0 16px; }
.prose h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; font-size: 15px; }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: 16px; font-size: 15px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }

/* definition table */
.def-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.def-table dl { display: grid; grid-template-columns: 220px 1fr; }
@media (max-width: 640px) { .def-table dl { grid-template-columns: 1fr; } }
.def-table dt {
  background: var(--bg-soft); font-weight: 700; font-size: 14px; color: var(--ink);
  padding: 20px 24px; border-bottom: 1px solid var(--line);
}
.def-table dd { padding: 20px 24px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.def-table dl > dt:last-of-type, .def-table dl > dd:last-of-type { border-bottom: 0; }
@media (max-width: 640px) { .def-table dt { border-bottom: 0; padding-bottom: 6px; } .def-table dd { padding-top: 0; } }

/* notice */
.note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* section alt background */
.section--soft { background: var(--bg-soft); padding: 96px 0; margin-top: 96px; }
.section--tint {
  background: linear-gradient(135deg, #f0fbf4, #eef6ff 55%, #eef1ff);
  padding: 96px 0; margin-top: 96px;
}
.section:last-of-type { padding-bottom: 0; }

/* recruit band on top */
.recruit-band {
  position: relative; overflow: hidden; background: var(--navy);
  border-radius: 20px; padding: 64px 48px; color: #fff;
}
.recruit-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 280px at 85% 20%, rgba(0, 193, 255, 0.25), transparent 60%),
    radial-gradient(400px 240px at 10% 90%, rgba(122, 235, 158, 0.15), transparent 60%);
}
.recruit-band > div { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.recruit-band h2 { font-size: clamp(22px, 3.4vw, 32px); font-weight: 700; margin-bottom: 12px; }
.recruit-band p { color: rgba(255, 255, 255, 0.78); max-width: 560px; font-size: 14.5px; }
.recruit-band .en-label { color: var(--cyan); }

/* misc */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---------- contact form (Web3Forms) ---------- */
.cform-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 44px 40px;
}
@media (max-width: 640px) { .cform-card { padding: 28px 20px; } }
.cform { display: grid; gap: 20px; }
.cform .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .cform .frow { grid-template-columns: 1fr; } }
.cform .field { display: flex; flex-direction: column; gap: 8px; }
.cform label { font-size: 14px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.cform .req, .cform .opt {
  font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 999px;
}
.cform .req { background: #ffe9e9; color: #c34a4a; }
.cform .opt { background: var(--bg-soft); color: var(--muted); }
.cform input[type="text"], .cform input[type="email"], .cform input[type="tel"],
.cform select, .cform textarea {
  font-family: var(--font-jp); font-size: 15px; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 16px; transition: border-color 0.2s, background 0.2s; width: 100%;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.cform textarea { resize: vertical; }
.cform .btn-submit {
  border: 0; cursor: pointer; justify-content: center;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-jp); font-weight: 700; font-size: 16px;
  padding: 16px 36px; border-radius: 8px;
  background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(0, 104, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.cform .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 104, 255, 0.4); }
.cform .btn-submit:disabled { opacity: 0.6; transform: none; cursor: default; }
.form-error {
  display: none; color: #c34a4a; font-size: 14px; font-weight: 700;
  background: #ffe9e9; border-radius: 8px; padding: 12px 16px;
}
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success .ok {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; background: var(--grad); margin-bottom: 18px;
}
.form-success .ok svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.form-success b { display: block; font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14.5px; }
