@charset "UTF-8";
/* =========================================================
   合同会社セブンコネクト コーポレートサイト
   style.css
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  /* カラー */
  --c-primary:      #285CD8;
  --c-primary-dark: #1E49B4;
  --c-primary-soft: #E7EFFD;
  --c-ink:          #0F1A26;
  --c-body:         #5A5C63;
  --c-muted:        #8A8F9A;
  --c-line:         #E5E8EF;
  --c-line-soft:    #EEF0F4;
  --c-bg:           #FFFFFF;
  --c-bg-soft:      #FBFCFD;
  --c-hero:         #F7F8FB;
  --c-band:         #E7EAF2;

  /* タイポグラフィ */
  --f-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --f-en:   "Inter", "Noto Sans JP", sans-serif;

  /* レイアウト */
  --w-container: 1280px;
  --h-header: 78px;

  /* モーション */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--h-header) + 16px); }
body {
  margin: 0;
  font-family: var(--f-base);
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
h1, h2, h3, p, dt, dd, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; border-radius: 2px; }

/* ---------- 共通パーツ ---------- */
.container {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 88px; }
.section__head { text-align: center; margin-bottom: 56px; }

.eyebrow {
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--c-primary);
  margin-bottom: 14px;
}
.eyebrow--left { text-align: left; }

.section__title {
  font-size: clamp(25px, 2.6vw, 31px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--c-ink);
}
.section__title--left { text-align: left; margin-bottom: 28px; }

.section__lead {
  margin-top: 22px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-body);
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 48px;
  padding-inline: 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 3px;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
}
.btn__arrow { font-size: 16px; line-height: 1; transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-dark); box-shadow: 0 8px 22px rgba(40, 92, 216, .28); }

.btn--dark { height: 42px; background: var(--c-ink); color: #fff; }
.btn--dark:hover { background: var(--c-primary); }

.btn--outline {
  height: 54px;
  padding-inline: 30px;
  background: #fff;
  color: var(--c-ink);
  border: 1px solid #C9CEDC;
}
.btn--outline:hover { border-color: var(--c-primary); color: var(--c-primary); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--c-primary);
}
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--h-header);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled { border-bottom-color: var(--c-line); box-shadow: 0 1px 14px rgba(15, 26, 38, .05); }

.header__inner {
  max-width: var(--w-container);
  height: 100%;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ブランド */
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 31px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name {
  font-family: var(--f-en);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .005em;
  color: var(--c-ink);
}
.brand__sub { font-size: 10.5px; letter-spacing: .06em; color: var(--c-muted); }

/* グローバルナビ */
.gnav { display: flex; align-items: center; gap: 30px; }
.gnav__list { display: flex; align-items: center; gap: 30px; }
.gnav__link {
  position: relative;
  display: block;
  padding-block: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: #3E4756;
  transition: color .25s var(--ease);
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.gnav__link:hover { color: var(--c-primary); }
.gnav__link:hover::after,
.gnav__link.is-current::after { transform: scaleX(1); }
.gnav__link.is-current { color: var(--c-primary); }

/* ハンバーガー */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  margin-right: -8px;
}
.hamburger span {
  position: absolute;
  left: 9px;
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 19.5px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 26, 38, .35);
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 82vh, 880px);
  padding-top: calc(var(--h-header) + 40px);
  padding-bottom: 56px;
  background: var(--c-hero);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.webp") right center / cover no-repeat;
  opacity: .95;
}
.hero__inner { position: relative; width: 100%; }

.hero__title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .01em;
  color: var(--c-ink);
}
.hero__line { display: block; }
.hero__lead {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2.05;
  color: #4E5561;
}
.hero__btn { margin-top: 36px; }

/* ヒーロー要素のロード時アニメーション */
.hero__line, .hero__lead, .hero__btn {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn .85s var(--ease) forwards;
}
.hero__line:nth-child(1) { animation-delay: .08s; }
.hero__line:nth-child(2) { animation-delay: .2s; }
.hero__lead { animation-delay: .36s; }
.hero__btn  { animation-delay: .48s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- ミッション ---------- */
.mission { background: var(--c-bg); }

.pillars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-left: 1px solid var(--c-line-soft);
}
.pillar {
  padding: 8px 20px 4px;
  text-align: center;
  border-right: 1px solid var(--c-line-soft);
}
.pillar__icon {
  width: 54px; height: 54px;
  margin: 0 auto 20px;
  object-fit: contain;
  transition: transform .35s var(--ease);
}
.pillar:hover .pillar__icon { transform: translateY(-4px); }
.pillar__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-ink);
  margin-bottom: 12px;
}
.pillar__text { font-size: 13px; line-height: 1.95; color: #6B707A; }

/* ---------- 事業内容 ---------- */
.services { background: var(--c-bg-soft); }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.card {
  display: flex;
  gap: 18px;
  padding: 30px 24px;
  background: #fff;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 26, 38, .07);
  position: relative;
  z-index: 1;
}
.card__icon { width: 40px; height: 40px; flex: none; object-fit: contain; margin-top: 2px; }
.card__title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--c-ink);
  margin-bottom: 10px;
}
.card__text { font-size: 13px; line-height: 1.95; color: #6B707A; }

/* ---------- 会社概要 ---------- */
.company { background: var(--c-bg); padding-block: 80px; }
.profile__link {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.profile__link:hover { text-decoration: none; }

/* 以下の2カラム指定と沿革タイムラインは、会社の歩みセクションを
   再掲載する際に使用する（現状は未使用）。 */
.company__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.company__col--history { padding-left: 8px; }

/* 会社概要テーブル */
.profile__row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding-block: 17px;
  border-bottom: 1px solid var(--c-line);
}
.profile__row:first-child { border-top: 1px solid var(--c-line); }
.profile__term { font-size: 14px; font-weight: 500; color: var(--c-ink); }
.profile__desc { font-size: 14px; line-height: 1.85; color: #5F646E; }

/* 沿革タイムライン */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 8px; bottom: 12px;
  width: 1.5px;
  background: linear-gradient(180deg, var(--c-primary), rgba(40, 92, 216, .18));
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 22px;
  padding-bottom: 30px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -34px; top: 7px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 4px #fff;
}
.timeline__year {
  font-family: var(--f-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--c-ink);
  line-height: 1.7;
}
.timeline__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.7;
  margin-bottom: 5px;
}
.timeline__text { font-size: 13px; line-height: 1.85; color: #6B707A; }

/* ---------- お知らせ ---------- */
.news { background: var(--c-bg-soft); padding-block: 76px; }
.news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}
.news__head .section__title--left { margin-bottom: 0; }

.news__empty {
  margin-top: 26px;
  padding: 34px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--c-muted);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 3px;
}

.news__item { border-bottom: 1px solid var(--c-line); }
.news__item:first-child { border-top: 1px solid var(--c-line); }
.news__link {
  display: grid;
  grid-template-columns: 120px 116px 1fr;
  align-items: center;
  gap: 22px;
  padding: 20px 8px;
  transition: background-color .25s var(--ease);
}
a.news__link:hover { background: rgba(40, 92, 216, .04); }
a.news__link:hover .news__title { color: var(--c-primary); }
.news__date {
  font-family: var(--f-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding-inline: 11px;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: #5C687E;
  background: #EFF2F8;
  border-radius: 2px;
}
.tag--press { color: var(--c-primary); background: var(--c-primary-soft); }
.news__title {
  font-size: 14px;
  color: #4A505C;
  transition: color .25s var(--ease);
}

/* ---------- コンタクトバンド ---------- */
.cta { background: var(--c-band); padding-block: 46px; }
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.cta__text {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-ink);
}

/* ---------- フッター ---------- */
.footer { background: #fff; padding-top: 34px; padding-bottom: 22px; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.fnav__list { display: flex; flex-wrap: wrap; gap: 30px; }
.fnav__list a {
  font-size: 13px;
  color: #4A505C;
  transition: color .25s var(--ease);
}
.fnav__list a:hover { color: var(--c-primary); }
.copyright {
  margin-top: 30px;
  text-align: center;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--c-muted);
}

/* ---------- スクロール表示アニメーション ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   レスポンシブ
   ========================================================= */
/* 大画面では余白が広くなりすぎるため、コンテナ幅を拡張する */
@media (min-width: 1700px) {
  :root { --w-container: 1440px; }
}
@media (max-width: 1024px) {
  .gnav__list { gap: 24px; }
  .gnav { gap: 24px; }
  .pillars { grid-template-columns: repeat(3, 1fr); border-left: none; }
  .pillar { border: 1px solid var(--c-line-soft); margin: -0.5px; padding: 26px 18px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .company__grid { gap: 48px; }
}

@media (max-width: 860px) {
  .company__grid { grid-template-columns: 1fr; gap: 60px; }
  .company__col--history { padding-left: 0; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .company, .news { padding-block: 60px; }
  .hero {
    min-height: clamp(500px, 76vh, 660px);
    padding-top: calc(var(--h-header) + 32px);
    padding-bottom: 44px;
  }
  .hero__bg { opacity: .55; background-position: 72% center; }

  .hamburger { display: block; }
  .gnav {
    position: fixed;
    inset: var(--h-header) 0 auto;
    z-index: 95;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 28px;
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    box-shadow: 0 16px 30px rgba(15, 26, 38, .08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .gnav.is-open { opacity: 1; visibility: visible; transform: none; }
  .gnav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav__link {
    padding: 15px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--c-line-soft);
  }
  .gnav__link::after { display: none; }
  .gnav__cta { margin-top: 20px; width: 100%; }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .news__link {
    grid-template-columns: 116px 1fr;
    gap: 10px 18px;
    padding-block: 18px;
  }
  .news__title { grid-column: 1 / -1; }
  .cta__inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 22px; }
  .fnav__list { gap: 14px 22px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 20px; }
  .header__inner { padding-inline: 20px; }
  .pillars { grid-template-columns: 1fr; }
  .profile__row { grid-template-columns: 96px 1fr; gap: 14px; }
  .timeline__item { grid-template-columns: 1fr; gap: 6px; }
  .btn { width: 100%; }
  .hero__btn, .btn--outline { width: auto; }
}

/* ---------- モーション低減設定への配慮 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .hero__line, .hero__lead, .hero__btn { opacity: 1; transform: none; }
}

/* =========================================================
   下層ページ共通
   ========================================================= */
.page-head {
  padding-top: calc(var(--h-header) + 62px);
  padding-bottom: 46px;
  background: var(--c-hero);
  border-bottom: 1px solid var(--c-line);
}
.page-head__title {
  font-size: clamp(25px, 2.8vw, 33px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-ink);
}
.page-head__lead {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
  color: var(--c-body);
}

/* パンくずリスト */
.breadcrumb { padding-top: 18px; }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--c-muted);
}
.breadcrumb__list a { color: var(--c-muted); transition: color .25s var(--ease); }
.breadcrumb__list a:hover { color: var(--c-primary); }
.breadcrumb__list li[aria-current] { color: var(--c-ink); }
.breadcrumb__sep { color: #C5CAD4; }

.narrow { max-width: 780px; }

/* =========================================================
   お問い合わせフォーム
   ========================================================= */
.form { padding-block: 64px 88px; }

.form__note {
  margin-bottom: 34px;
  padding: 18px 20px;
  font-size: 13.5px;
  line-height: 1.95;
  color: #5F646E;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-line);
  border-radius: 3px;
}
.form__note a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }

.field { padding-block: 22px; border-top: 1px solid var(--c-line); }
.field:last-of-type { border-bottom: 1px solid var(--c-line); }

.field__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
}
.badge-req,
.badge-opt {
  display: inline-flex;
  align-items: center;
  height: 21px;
  padding-inline: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  border-radius: 2px;
}
.badge-req { color: #C0392B; background: #FDECEA; }
.badge-opt { color: #6B7280; background: #F1F3F7; }

.field__hint { margin-bottom: 10px; font-size: 13px; color: var(--c-muted); }

.input,
.textarea,
.select {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-ink);
  background: #fff;
  border: 1px solid #D5DAE4;
  border-radius: 3px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  appearance: none;
}
.input::placeholder,
.textarea::placeholder { color: #AEB4C0; }
.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(40, 92, 216, .12);
}
.textarea { min-height: 186px; resize: vertical; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 7px; height: 7px;
  margin-top: -5px;
  border-right: 1.5px solid #7A8394;
  border-bottom: 1.5px solid #7A8394;
  transform: rotate(45deg);
  pointer-events: none;
}
.select { padding-right: 38px; cursor: pointer; }

/* 入力エラー */
.input[aria-invalid="true"],
.textarea[aria-invalid="true"],
.select[aria-invalid="true"] { border-color: #D0554A; background: #FFFBFB; }
.field__error {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #C0392B;
}
.field.has-error .field__error { display: block; }

/* 同意チェックボックス */
.consent { padding-block: 30px; text-align: center; }
.checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  line-height: 1.7;
  color: #4A505C;
  cursor: pointer;
  text-align: left;
}
.checkbox input {
  flex: none;
  width: 17px; height: 17px;
  margin: 2px 0 0;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.checkbox a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.consent .field__error { text-align: center; }
.consent.has-error .field__error { display: block; }

/* 送信ボタン */
.form__actions { text-align: center; }
.btn--submit { min-width: 280px; height: 56px; font-size: 15px; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* 送信結果メッセージ */
.form__result {
  margin-top: 24px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.9;
  border-radius: 3px;
  text-align: left;
}
.form__result--error { color: #A9372B; background: #FDECEA; border: 1px solid #F3C9C3; }
.form__result a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ハニーポット（表示しない） */
.honeypot {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   送信完了
   ========================================================= */
.thanks { padding-top: calc(var(--h-header) + 92px); padding-bottom: 104px; text-align: center; }
.thanks__mark {
  width: 62px; height: 62px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-primary-soft);
}
.thanks__mark svg { width: 26px; height: 26px; stroke: var(--c-primary); }
.thanks__title {
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 20px;
}
.thanks__text { font-size: 15px; line-height: 2.05; color: var(--c-body); }
.thanks__note { margin-top: 22px; font-size: 13.5px; line-height: 2; color: var(--c-muted); }
.thanks .btn { margin-top: 38px; }

/* =========================================================
   規約・ポリシー本文
   ========================================================= */
.legal { padding-block: 60px 88px; }
.legal__intro { font-size: 15px; line-height: 2.05; color: var(--c-body); }
.legal__block { margin-top: 44px; }
.legal__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.7;
  padding-left: 13px;
  border-left: 3px solid var(--c-primary);
  margin-bottom: 16px;
}
.legal__text { font-size: 14.5px; line-height: 2.05; color: var(--c-body); }
.legal__text + .legal__text { margin-top: 14px; }
.legal__link {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal__link:hover { text-decoration: none; }
.legal__list { margin-top: 14px; }
.legal__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 2.05;
  color: var(--c-body);
}
.legal__list li::before {
  content: "";
  position: absolute;
  left: 3px; top: 12px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-primary);
}
.legal__meta {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  line-height: 2;
  color: var(--c-muted);
}

@media (max-width: 768px) {
  .page-head { padding-top: calc(var(--h-header) + 40px); padding-bottom: 34px; }
  .form { padding-block: 44px 64px; }
  .thanks { padding-top: calc(var(--h-header) + 56px); padding-bottom: 72px; }
  .legal { padding-block: 44px 64px; }
  .btn--submit { width: 100%; min-width: 0; }
}
