/* ===== TITANページ 共通：横スクロール防止・幅100%に収める ===== */
html {
  overflow-x: hidden;
  box-sizing: border-box;
}

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

body.company-page {
  overflow-x: hidden;
  max-width: 100%;
  padding-bottom: 120px;
}

/* style.css の .main { max-width: 1200px; margin: 0 auto } を打ち消し、main を画面幅いっぱいに */
.company-main {
  padding: 0;
  max-width: none !important;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow-x: hidden;
}

.company-main > section {
  box-sizing: border-box;
  max-width: 100%;
}

/* ===== TITANページ ヒーローセクション ===== */
:root {
  --ink: #2F4566;
  --muted: rgba(47, 69, 102, 0.7);
  --purple: #2F4566;
  --purple2: #3d5a80;
  --blue: #2F4566;
  --gold: #f6c000;
  --bg: #f6f7fb;
  --card: #ffffff;
  --line: rgba(47, 69, 102, 0.15);
}

/* style.css の汎用 .hero を上書き。ヒーローを画面幅いっぱいに（100vw） */
.company-main .hero {
  height: auto;
  min-height: 60vh;
  max-height: none;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0;
  box-sizing: border-box;
  padding: 0 clamp(24px, 4vw, 48px);
  overflow: visible;
  position: relative;
  z-index: 0;
  background:
    radial-gradient(1200px 520px at 20% 0%, rgba(47, 69, 102, 0.12), transparent 55%),
    url("../img/titan-hero.png") center / cover no-repeat;
  background-color: var(--bg);
}

/* style.css の .hero::after（暗いオーバーレイ）を無効化 */
.company-main .hero::after {
  display: none;
}

.hero__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 60vh;
  box-sizing: border-box;
}

.hero__inner > .hero__left {
  overflow: visible;
}

.hero__inner > .hero__right {
  overflow: visible;
}

.hero__left {
  padding: clamp(28px, 4vw, 52px);
  position: relative;
  background: transparent;
}

.hero__eyebrow {
  margin: 30px 0 16px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.hero__ribbonRow {
  margin-bottom: 18px;
  width: 100%;
}

.hero__ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  border-radius: 0;
  color: #fff;
  font-weight: 1000;
  font-size: 18px;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 16px 34px rgba(47, 69, 102, 0.22);
}

.hero__title {
  margin: 0 0 22px;
  line-height: 1;
  position: relative;
}

.hero__titleMain {
  display: block;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 1000;
  letter-spacing: 0.02em;
  color: var(--purple);
}

.hero__titleScript {
  position: absolute;
  left: clamp(120px, 14vw, 200px);
  top: 6px;
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(246, 192, 0, 0.55);
  transform: rotate(-2deg);
  font-family: ui-serif, "Times New Roman", serif;
  pointer-events: none;
}

.hero__price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__priceBlock {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__priceBig {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero__priceLabel {
  font-weight: 1000;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: 0.02em;
}

.hero__priceZero {
  font-weight: 1100;
  font-size: clamp(48px, 6vw, 64px);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(47, 69, 102, 0.25);
}

.hero__priceUnit {
  font-weight: 1100;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--ink);
  letter-spacing: 0.02em;
}

.hero__priceNote {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 15px;
  text-align: left;
}

.hero__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 0;
  border: none;
  color: var(--ink);
  font-weight: 1000;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}

.hero__proof {
  margin-top: 20px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 0;
  background: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.08);
  max-width: 560px;
}

.hero__proof p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.9;
}

.hero__proof strong {
  color: #E3342B;
  font-weight: 1100;
}

.hero__hint {
  margin: 16px 0 12px;
  color: var(--blue);
  font-weight: 1000;
  letter-spacing: 0.02em;
}

.hero__hintHighlight {
  color: #E3342B;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 18px;
  background: #E3342B;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 44px rgba(227, 52, 43, 0.35);
  transition: 0.18s ease;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(227, 52, 43, 0.4);
}

.cta__arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 1100;
}

/* 画面下部に常時固定のお問い合わせボタン */
.fixedCtaBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(47, 69, 102, 0.1);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.fixedCtaBar__hint {
  margin: 0;
  width: 100%;
  display: block;
  font-size: 13px;
  font-weight: 1000;
  color: #2F4566;
  letter-spacing: 0.02em;
  text-align: center;
  order: 1;
}

.fixedCtaBar__hintHighlight {
  color: #E3342B;
}

.fixedCtaBar__btn {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  background: #E3342B;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(227, 52, 43, 0.35);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fixedCtaBar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(227, 52, 43, 0.4);
}

.fixedCtaBar__arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 1100;
}

.hero__right {
  position: relative;
  background: transparent;
}

.hero__credit {
  position: absolute;
  right: 0;
  bottom: 24px;
  padding: 16px 20px;
  max-width: 100%;
  text-align: right;
  background: linear-gradient(to top, rgba(47, 69, 102, 0.92), rgba(47, 69, 102, 0.85));
  color: #fff;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.5;
}

.hero__creditName {
  margin: 0 0 4px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero__creditMeta {
  margin: 0;
  opacity: 0.9;
  font-size: 12px;
  letter-spacing: 0.01em;
}

@media (max-width: 980px) {
  .company-main .hero {
    background:
      radial-gradient(1200px 520px at 20% 0%, rgba(47, 69, 102, 0.12), transparent 55%),
      url("../img/titan-hero-sp.png") center / cover no-repeat;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 60vh;
    grid-template-rows: auto 1fr;
  }

  .hero__right {
    min-height: 140px;
  }

  .hero__chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .company-main .hero {
    min-height: 60vh;
  }

  .hero__inner {
    min-height: 60vh;
    grid-template-rows: auto 1fr;
  }

  .hero__right {
    min-height: 120px;
  }

  .hero__left {
    padding: 18px 16px 24px;
  }

  .hero__eyebrow {
    margin-bottom: 8px;
  }

  .hero__ribbonRow {
    margin-bottom: 8px;
  }

  .hero__title {
    margin: 22px 0 22px;
  }

  .hero__titleMain {
    font-size: clamp(36px, 10vw, 44px);
    color: #E3342B;
    text-shadow:
      0 0 2px #fff,
      1px 0 0 #fff,
      -1px 0 0 #fff,
      0 1px 0 #fff,
      0 -1px 0 #fff,
      1px 1px 0 #fff,
      -1px -1px 0 #fff,
      1px -1px 0 #fff,
      -1px 1px 0 #fff,
      2px 0 0 #fff,
      -2px 0 0 #fff,
      0 2px 0 #fff,
      0 -2px 0 #fff,
      2px 2px 0 #fff,
      -2px -2px 0 #fff,
      2px -2px 0 #fff,
      -2px 2px 0 #fff;
  }

  .hero__ribbon {
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .hero__chips {
    gap: 6px;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .hero__chips .chip {
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.1);
  }

  .hero__price {
    margin-bottom: 8px;
  }

  .hero__priceZero {
    font-size: clamp(36px, 10vw, 44px);
    color: #E3342B;
    text-shadow:
      0 0 2px #fff,
      1px 0 0 #fff,
      -1px 0 0 #fff,
      0 1px 0 #fff,
      0 -1px 0 #fff,
      1px 1px 0 #fff,
      -1px -1px 0 #fff,
      1px -1px 0 #fff,
      -1px 1px 0 #fff,
      2px 0 0 #fff,
      -2px 0 0 #fff,
      0 2px 0 #fff,
      0 -2px 0 #fff,
      2px 2px 0 #fff,
      -2px -2px 0 #fff,
      2px -2px 0 #fff,
      -2px 2px 0 #fff;
  }

  .hero__priceUnit {
    color: #E3342B;
    text-shadow:
      0 0 2px #fff,
      1px 0 0 #fff,
      -1px 0 0 #fff,
      0 1px 0 #fff,
      0 -1px 0 #fff,
      1px 1px 0 #fff,
      -1px -1px 0 #fff,
      1px -1px 0 #fff,
      -1px 1px 0 #fff,
      2px 0 0 #fff,
      -2px 0 0 #fff,
      0 2px 0 #fff,
      0 -2px 0 #fff,
      2px 2px 0 #fff,
      -2px -2px 0 #fff,
      2px -2px 0 #fff,
      -2px 2px 0 #fff;
  }

  .hero__proof {
    padding: 8px 10px;
    margin-top: 14px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  }

  .hero__proof p {
    font-size: 12px;
    line-height: 1.65;
  }

  .hero__proof strong {
    font-size: 12px;
  }

  .hero__hint {
    margin: 6px 0 6px;
    font-size: 12px;
    color: #fff;
  }

  .hero__hintHighlight {
    color: #E3342B;
  }

  .hero__credit {
    padding: 10px 12px;
    font-size: 11px;
    bottom: 10px;
  }

  .hero__creditName {
    font-size: 11px;
  }

  .hero__creditMeta {
    font-size: 10px;
  }

  .cta {
    padding: 12px 18px;
    font-size: 15px;
    gap: 8px;
  }

  .cta__arrow {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

/* ===== TITANページ pain セクション ===== */
.company-main .pain {
  padding: 72px 20px 72px;
  background:
    linear-gradient(#fff, #fff),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0 2px, transparent 2px 10px);
  position: relative;
  z-index: 0;
}

.pain__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.pain__head {
  text-align: center;
  margin-bottom: 28px;
}

.pain__lead {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #2F4566;
}

.pain__lead span {
  color: var(--ink);
}

.pain__lead .pain__leadHighlight {
  color: #E3342B !important;
}

.pain__sub {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
  font-size: 14px;
}

.painCard {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.1),
    0 2px 8px rgba(15, 23, 42, 0.06);
  padding: 30px 26px 34px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.painCard__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.painItem {
  text-align: center;
  padding: 6px 10px;
}

.painAvatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(29, 111, 255, 0.2), rgba(29, 111, 255, 0.08) 55%, transparent 70%);
  display: grid;
  place-items: center;
  position: relative;
}

.painAvatar::before,
.painAvatar::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 111, 255, 0.1), transparent 60%);
  filter: blur(0.2px);
  opacity: 0.9;
}

.painAvatar::after {
  inset: -20px;
  opacity: 0.55;
}

.painIcon {
  font-size: 44px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.painText {
  margin: 0;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-size: 15px;
  display: inline-block;
  text-align: left;
}

.painDot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #1d6fff;
  margin: 0 10px 0 0;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(29, 111, 255, 0.25);
}

.painCard__notch {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 54px;
  height: 26px;
  background: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.12));
}

@media (max-width: 860px) {
  .painCard__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .painText {
    text-align: center;
  }

  .painCard__notch {
    width: 46px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  .company-main .pain {
    padding: 48px 16px 48px;
  }

  .pain__inner {
    max-width: 100%;
  }

  .pain__lead {
    font-size: 15px;
  }

  .pain__sub {
    font-size: 13px;
  }

  .painCard {
    padding: 14px 16px 18px;
  }

  .painCard__grid {
    gap: 10px;
    max-width: 280px;
    margin: 0 auto;
  }

  .painItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 6px 0;
  }

  .painAvatar {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
  }

  .painAvatar::before,
  .painAvatar::after {
    inset: -6px;
  }

  .painAvatar::after {
    inset: -12px;
  }

  .painIcon {
    font-size: 24px;
  }

  .painText {
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
  }
}

/* ===== TITANページ oneStop セクション ===== */
.oneStop {
  --oneStop-ink: var(--ink);
  --oneStop-muted: var(--muted);
  --oneStop-line: var(--muted);
  --oneStop-card: #39aeca;
  --oneStop-card2: #2fa3bf;
  --oneStop-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  padding: 72px 18px 72px;
  background: #fff;
}

.oneStop__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.oneStop__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.oneStop .mark {
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 50%, #73d86c 0 38%, transparent 40%),
    radial-gradient(circle at 72% 50%, #59a6ff 0 38%, transparent 40%),
    linear-gradient(90deg, #73d86c, #59a6ff);
  -webkit-mask:
    radial-gradient(circle at 28% 50%, #000 0 42%, transparent 44%),
    radial-gradient(circle at 72% 50%, #000 0 42%, transparent 44%),
    linear-gradient(#000, #000);
  -webkit-mask-composite: source-over;
  mask-composite: add;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.oneStop .brandText {
  font-size: 22px;
  font-weight: 800;
  color: var(--oneStop-ink);
  letter-spacing: 0.01em;
}

.oneStop .brandText b {
  font-weight: 1000;
}

.oneStop__headline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 6px 0 8px;
}

.oneStop .slash {
  height: 2px;
  background: transparent;
  position: relative;
}

.oneStop .slash::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;
  height: 2px;
  background: var(--oneStop-line);
  transform: translateY(-50%) rotate(-15deg);
}

.oneStop .slash--l::before {
  right: 10px;
}

.oneStop .slash--r::before {
  left: 10px;
  transform: translateY(-50%) rotate(15deg);
}

.oneStop__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 1000;
  color: var(--oneStop-ink);
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 2.7vw, 34px);
}

.oneStop .boxed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 2px solid rgba(47, 69, 102, 0.8);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.oneStop .mul {
  font-weight: 1000;
  opacity: 0.9;
}

.oneStop .tail {
  font-weight: 1000;
}

.oneStop__sub {
  margin: 8px 0 22px;
  font-weight: 700;
  color: var(--oneStop-muted);
}

.oneStopGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.oneStopCard {
  background: #253652;
  color: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  box-shadow: var(--oneStop-shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.18s ease;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oneStopCard h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: 0.02em;
}

.oneStopCard p {
  margin: 0;
  font-weight: 800;
  line-height: 1.7;
  opacity: 0.95;
}

.oneStopCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
}

@media (max-width: 820px) {
  .oneStop__headline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .oneStop .slash {
    display: none;
  }

  .oneStopGrid {
    grid-template-columns: 1fr;
  }

  .oneStopCard {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .oneStop {
    padding: 48px 16px 48px;
  }

  .oneStop__title {
    font-size: 20px;
  }

  .oneStopCard {
    padding: 22px 20px;
  }

  .oneStopCard h3 {
    font-size: 20px;
  }
}

/* ===== TITANページ serviceTags セクション ===== */
.serviceTags {
  --st-accent: #E3342B;
  --st-accentDeep: #c42d25;
  --st-ink: var(--ink);
  --st-bg: #ffffff;
  --st-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  background: var(--st-bg);
  padding: 72px 18px 72px;
}

.serviceTags__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.serviceTags__title {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 1000;
  color: var(--st-ink);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.serviceTags__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: rgba(47, 69, 102, 0.18);
  border-radius: 99px;
}

.serviceTags .tagGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 18px;
  justify-items: stretch;
  margin: 6px auto 44px;
  max-width: 980px;
}

.serviceTags .tagPill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 12px;
  border: 2px solid #1e7fb5;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.02em;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.serviceTags .ctaRow {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.serviceTags .ctaPill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 64px 16px 28px;
  border-radius: 999px;
  font-weight: 1000;
  text-decoration: none;
  transition: 0.18s ease;
  box-shadow: var(--st-shadow);
  border: 2px solid var(--st-accent);
  min-width: min(520px, calc(100vw - 48px));
  max-width: 100%;
}

.serviceTags .ctaPill--fill {
  background: linear-gradient(180deg, var(--st-accent), var(--st-accentDeep));
  color: #fff;
}

.serviceTags .ctaPill--outline {
  background: #fff;
  color: #E3342B;
}

.serviceTags .ctaArrow {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 1100;
  line-height: 1;
  border: 2px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.serviceTags .ctaPill--outline .ctaArrow {
  background: rgba(227, 52, 43, 0.16);
  color: var(--st-accentDeep);
  border: 2px solid rgba(227, 52, 43, 0.45);
}

.serviceTags .ctaPill:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.14);
}

.serviceTags .ctaPill:hover .ctaArrow {
  transform: translateX(2px);
}

@media (max-width: 920px) {
  .serviceTags .tagGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .serviceTags .ctaPill {
    min-width: min(560px, calc(100vw - 48px));
  }
}

@media (max-width: 640px) {
  .serviceTags {
    padding: 48px 16px 48px;
  }

  .serviceTags .tagGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 32px;
  }

  .serviceTags .tagPill {
    height: 52px;
    font-size: 14px;
  }

  .serviceTags .ctaPill {
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 32px);
    padding: 14px 56px 14px 20px;
    font-size: 15px;
  }
}

/* ===== TITANページ pricing セクション ===== */
.pricing .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing .sectionTitle {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 40px;
}

.pricing {
  padding: 72px 0;
  background: #f7f7f7;
}

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.planCard {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.planBadge {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  z-index: 1;
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: #E3342B;
  border-radius: 6px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(227, 52, 43, 0.4);
}

.planHead {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 26px;
  font-weight: 700;
}

.planHead.teal {
  background: #3ca9b8;
}

.planHead.blue {
  background: #1e7fb5;
}

.planHead.deepblue {
  background: #1469a8;
}

.planBody {
  padding: 30px;
  text-align: center;
}

.planBody .price {
  font-size: 20px;
  margin-bottom: 20px;
}

.planBody .price strong {
  font-size: 34px;
}

.planLabel {
  display: inline-block;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 8px 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.planText {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 860px) {
  .pricingGrid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
    padding: 8px 16px 16px;
    margin: 0 -16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pricingGrid::-webkit-scrollbar {
    display: none;
  }

  .pricingGrid .planCard {
    flex: 0 0 85%;
    min-width: 280px;
    max-width: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 640px) {
  .pricing {
    padding: 48px 0 48px;
  }

  .pricing .container {
    padding: 0 16px;
  }

  .pricing .sectionTitle {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .planBody {
    padding: 24px 20px;
  }

  .planBody .price strong {
    font-size: 28px;
  }
}

/* ===== TITANページ process（開発プロセス）セクション ===== */
.process {
  background: #fff;
  color: #2F4566;
  padding: 72px 20px;
}

.process .container {
  max-width: 900px;
  margin: 0 auto;
}

.processTitle {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #2F4566;
}

.processSub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 80px;
}

.process .timeline {
  position: relative;
  padding-left: 80px;
}

.process .timeline::before {
  content: "";
  position: absolute;
  left: 63px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(47, 69, 102, 0.12);
}

.timelineItem {
  position: relative;
  margin-bottom: 70px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.timelineItem:last-child {
  margin-bottom: 0;
}

.timelineNumber {
  position: absolute;
  left: -48px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #2F4566;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  background: #fff;
  color: #2F4566;
}

.timelineContent {
  margin-left: 28px;
  min-width: 0;
}

.timelineContent h3 {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 800;
  color: #2F4566;
}

.timelineContent p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 640px) {
  .process {
    padding: 48px 16px 48px;
  }

  .process .container {
    max-width: 100%;
  }

  .process .timeline {
    padding-left: 56px;
  }

  .process .timeline::before {
    left: 39px;
  }

  .timelineNumber {
    left: -40px;
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .timelineContent {
    margin-left: 20px;
  }

  .timelineItem {
    margin-bottom: 48px;
    gap: 16px;
  }

  .processTitle {
    font-size: 26px;
  }

  .processSub {
    margin-bottom: 48px;
  }

  .timelineContent h3 {
    font-size: 18px;
  }

  .timelineContent p {
    font-size: 13px;
  }
}

/* ===== TITANページ cases（導入事例）セクション ===== */
.cases {
  background: #fff;
  padding: 72px 24px;
  color: #2F4566;
}

.casesInner {
  max-width: 1200px;
  margin: 0 auto;
}

.casesTitle {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 70px;
  color: #2F4566;
}

.casesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.caseCard {
  background: #fff;
  border-radius: 14px;
  overflow: visible;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  cursor: pointer;
}

.caseImage {
  width: 200px;
  height: 200px;
  margin: 24px auto 0;
  border-radius: 50%;
  overflow: hidden;
}

.caseImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.caseContent {
  padding: 20px 24px 24px;
}

.caseClient {
  font-size: 17px;
  font-weight: 800;
  color: #2F4566;
  margin: 0 0 4px;
  line-height: 1.4;
}

.caseAccount {
  font-size: 13px;
  color: rgba(47, 69, 102, 0.65);
  margin: 0 0 8px;
}

.casePosition {
  font-size: 13px;
  color: rgba(47, 69, 102, 0.7);
  margin: 0 0 8px;
}

.caseMedia {
  font-size: 12px;
  color: rgba(47, 69, 102, 0.65);
  margin: 0 0 6px;
}

.caseMedia__link {
  color: #2F4566;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 69, 102, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.caseMedia__link:hover {
  color: #E3342B;
  border-bottom-color: #E3342B;
}

.caseMedia__sep {
  margin: 0 6px;
  color: rgba(47, 69, 102, 0.45);
  pointer-events: none;
}

.caseStartDate {
  font-size: 12px;
  color: rgba(47, 69, 102, 0.65);
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.caseFollowers,
.caseViews {
  font-size: 13px;
  color: rgba(47, 69, 102, 0.75);
  margin: 0 0 4px;
}

.caseViews {
  margin-bottom: 0;
}

.caseCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 23, 42, 0.12);
}

.caseCard:hover .caseImage img {
  transform: scale(1.05);
}

@media (max-width: 1000px) {
  .casesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cases {
    padding: 48px 16px 48px;
  }

  .casesTitle {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .casesGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .caseImage {
    width: 160px;
    height: 160px;
    margin-top: 20px;
  }

  .caseContent {
    padding: 16px 18px 20px;
  }

  .caseClient {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .caseImage {
    width: 140px;
    height: 140px;
  }
}

/* 実績カード（丸写真・名前・ポジション・フォロワー数） */
.achievementGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.achievementCard {
  text-align: center;
  background: #fff;
  border-radius: 14px;
  padding: 24px 16px 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievementCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.achievementCard__photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

.achievementCard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievementCard__name {
  font-size: 15px;
  font-weight: 800;
  color: #2F4566;
  margin: 0 0 6px;
  line-height: 1.3;
}

.achievementCard__position {
  font-size: 12px;
  color: rgba(47, 69, 102, 0.7);
  margin: 0 0 8px;
}

.achievementCard__followers {
  font-size: 12px;
  color: rgba(47, 69, 102, 0.75);
  margin: 0;
}

@media (max-width: 900px) {
  .achievementGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .achievementGrid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
    margin-top: 40px;
    padding: 8px 16px 16px;
    margin-left: -16px;
    margin-right: -16px;
    max-width: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .achievementGrid::-webkit-scrollbar {
    display: none;
  }

  .achievementGrid .achievementCard {
    flex: 0 0 72%;
    min-width: 200px;
    max-width: 260px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 18px 12px 22px;
  }

  .achievementCard__photo {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }

  .achievementCard__name {
    font-size: 14px;
  }

  .achievementCard__position,
  .achievementCard__followers {
    font-size: 11px;
  }
}

/* ===== TITANページ 事業責任者セクション ===== */
.director {
  background: #fff;
  padding: 72px 20px 72px;
  color: #2F4566;
}

.director__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.director__title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 48px;
  color: #2F4566;
}

.director__body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.director__photo {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(47, 69, 102, 0.06);
}

.director__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director__content {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.director__name {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #2F4566;
}

.director__role {
  font-size: 14px;
  color: rgba(47, 69, 102, 0.8);
  margin: 0 0 12px;
}

.director__career {
  font-size: 13px;
  color: rgba(47, 69, 102, 0.65);
  margin: 0 0 20px;
  line-height: 1.6;
}

.director__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(47, 69, 102, 0.85);
  margin: 0 0 24px;
  flex: 1;
}

.director__action {
  margin-top: auto;
  text-align: right;
}

.director__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #fff;
  color: #2F4566;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #2F4566;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
}

.director__btnArrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(47, 69, 102, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.director__btn:hover {
  background: #2F4566;
  color: #fff;
}

.director__btn:hover .director__btnArrow {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 720px) {
  .director {
    padding: 48px 20px 48px;
  }

  .director__title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .director__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .director__photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .director__content {
    min-height: 0;
  }

  .director__action {
    text-align: center;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .director {
    padding: 48px 16px 48px;
  }

  .director__inner {
    max-width: 100%;
  }

  .director__title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .director__body {
    gap: 24px;
  }

  .director__photo {
    max-width: 280px;
  }

  .director__name {
    font-size: 20px;
  }

  .director__role {
    font-size: 13px;
  }

  .director__career {
    font-size: 12px;
  }

  .director__text {
    font-size: 14px;
  }

  .director__btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

/* ===== TITANページ よくある質問セクション ===== */
.faq {
  background: #f6f7fb;
  padding: 72px 20px 72px;
  color: #2F4566;
}

.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq__title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 48px;
  color: #2F4566;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border: 1px solid rgba(47, 69, 102, 0.12);
  border-bottom: none;
  background: #fff;
}

.faq__list .faq__item:last-child {
  border-bottom: 1px solid rgba(47, 69, 102, 0.12);
}

.faq__q {
  padding: 20px 56px 20px 24px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: #2F4566;
  transition: background 0.2s ease;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #2F4566;
  line-height: 1;
}

.faq__item[open] .faq__q::after {
  content: "−";
}

.faq__q:hover {
  background: rgba(47, 69, 102, 0.04);
}

.faq__a {
  padding: 0 24px 24px;
}

.faq__a p {
  margin: 0;
  padding: 0 32px 20px 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(47, 69, 102, 0.85);
  border-top: 1px solid rgba(47, 69, 102, 0.08);
  padding-top: 16px;
}

@media (max-width: 640px) {
  .faq {
    padding: 48px 16px 48px;
  }

  .faq__inner {
    max-width: 100%;
  }

  .faq__title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .faq__q {
    padding: 16px 48px 16px 18px;
    font-size: 14px;
  }

  .faq__q::after {
    right: 18px;
    font-size: 18px;
  }

  .faq__a {
    padding: 0 18px 20px;
  }

  .faq__a p {
    padding: 0 0 16px 0;
    padding-top: 14px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .faq__q {
    padding: 14px 44px 14px 14px;
    font-size: 13px;
  }

  .faq__q::after {
    right: 14px;
  }
}
