body, html { margin: 0 !important; padding: 0; box-sizing: border-box; font-size: 100%; font-weight: 400; }

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.sp-only {
  display: none;
}

@media (max-width: 1040px) {
  html {
    font-size: 87.5%;
  }

  .sp-only {
    display: block;
  }
}

/* ===== Hero Base ===== */
:root {
  --lp-bg: #E4E8EB;
  /* ヒーロー背景色（薄いグレー）*/
  --lp-sec-bg: #f3f8fa;
  /* セクション背景色（とても薄いグレー）*/
  --lp-brand: #018dc5;
  /* ブランド色（見出し・ボタン）*/
  --lp-text: #1a1a1a;
  /* 文字色 */
  --lp-muted: #5b6b7a;
  /* 補助テキスト */
  --lp-card-bg: #ffffff;
  /* 画像カード背景 */
  --lp-radius: 18px;
  --lp-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.lp-hero-section {
  width: 100%;
  background-color: var(--lp-bg);
  background: var(--lp-bg);
  padding: 128px 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lp-hero-section {
    width: 100%;
    background-color: var(--lp-bg);
    background: var(--lp-bg);
    padding: 30px 20px;
  }
}

.lp-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
}

/* ===== Copy ===== */
.lp-hero__eyebrow {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--lp-text);
  margin: 0 0 .25rem;
}

.lp-hero__title {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--lp-brand);
  margin: 6px 0 14px;
}

.lp-hero__lead {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.9;
  color: var(--lp-muted);
  margin: 0 0 20px;
}

/* ===== CTA Button ===== */
.lp-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 14px 18px;
  border-radius: 5px;
  background: var(--lp-brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(1, 141, 197, .25);
  transition: transform .02s ease, filter .2s ease, box-shadow .2s ease;
}

.lp-hero__cta:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(1, 141, 197, .3);
}

.lp-hero__cta:active {
  transform: translateY(1px);
}

.lp-hero__cta-icon {
  translate: 0 1px;
}

/* ===== Media Card ===== */
.lp-hero__media {
  background: var(--lp-card-bg);
  border-radius: calc(var(--lp-radius) + 6px);
  box-shadow: var(--lp-shadow);
  padding: clamp(8px, 1.4vw, 14px);
  border: 1px solid rgba(0, 0, 0, .06);
}

.lp-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--lp-radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  /* 画像比率を整える（必要なら変更）*/
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
  }

  .lp-hero__media {
    order: -1;
    /* モバイルで画像→テキストの順に */
  }
}

/* ===== Service Section ===== */
.lp-detail-section {
  background: var(--lp-sec-bg);
  padding: 180px 20px;
  gap: 90px;
  /* 子要素間の間隔をここで管理 */
  display: grid;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lp-detail-section {
    padding: 40px 20px;
    gap: 40px;
  }
}

/* Service 見出しのリセットと余白 */
.lp-service__header {
  position: static;
  /* 浮かせない */
  z-index: 0;
  /* 重なり順を下げる（必要なら 0 でOK） */
  background: transparent;
  /* 白帯を消す */
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 auto 32px;
  /* 下に十分な余白 */
  max-width: 900px;
  /* センター細めにしたい場合 */
  text-align: center;
  display: block;
  /* ← flexを打ち消して縦並びに */
  text-align: center;
  /* 中央寄せ */
  margin-bottom: 40px;
  /* 下に余白 */
}

/* カード側を前面に */
.lp-service {
  position: relative;
}

.lp-service__cards {
  position: relative;
  z-index: 1;
}

.lp-service__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
.lp-service__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--lp-text);
}

.lp-service__lead {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--lp-muted);
  margin: 0 0 40px;
}

/* カード一覧 */
.lp-service__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

/* カード本体 */
.lp-service__card {
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, .06);
}


/* アイコン部分 */
.lp-service__icon {
  display: block;
  width: 35px;
  height: 35px;
  margin-top: .35em;
  /* 一行目のベースラインに合わせて微調整 */
  flex-shrink: 0;
  margin-bottom: 10px;
}

/* カードタイトル */
.lp-service__card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--lp-text);
}

/* 本文 */
.lp-service__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-muted);
  margin: 0;
}

/* スマホ対応 */
@media (max-width: 900px) {
  .lp-service__cards {
    grid-template-columns: 1fr;
  }
}

/* ===== Case Section ===== */
/* case 見出しのリセットと余白 */
.lp-case__header {
  position: static;
  /* 浮かせない */
  z-index: 0;
  /* 重なり順を下げる（必要なら 0 でOK） */
  background: transparent;
  /* 白帯を消す */
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 auto 32px;
  /* 下に十分な余白 */
  max-width: 900px;
  /* センター細めにしたい場合 */
  text-align: center;
  display: block;
  /* ← flexを打ち消して縦並びに */
  text-align: center;
  /* 中央寄せ */
  margin-bottom: 40px;
  /* 下に余白 */
}

/* カード側を前面に */
.lp-case {
  position: relative;
}

.lp-case__cards {
  position: relative;
  z-index: 1;
}

.lp-case__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
.lp-case__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--lp-text);
}

.lp-case__lead {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--lp-muted);
  margin: 0 0 40px;
}

/* カード一覧 */
.lp-case__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

/* カード本体 */
.lp-case__card {
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, .06);
}


/* カードタイトル */
.lp-case__card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--lp-text);
}

.lp-case__card-ocupation {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: var(--lp-brand);
}

.lp-case__card-age {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--lp-text);
}

/* 本文 */
.lp-case__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-muted);
  margin: 0;
}

/* スマホ対応 */
@media (max-width: 900px) {
  .lp-case__cards {
    grid-template-columns: 1fr;
  }
}

/* ===== Member Section ===== */
/* member 見出しのリセットと余白 */
.lp-member__header {
  position: static;
  /* 浮かせない */
  z-index: 0;
  /* 重なり順を下げる（必要なら 0 でOK） */
  background: transparent;
  /* 白帯を消す */
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 auto 32px;
  /* 下に十分な余白 */
  max-width: 900px;
  /* センター細めにしたい場合 */
  text-align: center;
  display: block;
  /* ← flexを打ち消して縦並びに */
  text-align: center;
  /* 中央寄せ */
  margin-bottom: 40px;
  /* 下に余白 */
}

/* カード側を前面に */
.lp-member {
  position: relative;
}

.lp-member__cards {
  position: relative;
  z-index: 1;
}

.lp-member__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
.lp-member__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--lp-text);
}

.lp-member__lead {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--lp-muted);
  margin: 0 0 40px;
}

/* カード一覧 */
.lp-member__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

/* カード本体 */
.lp-member__card-wrap {
  padding: 0px;
}

.lp-member__card {
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  padding: 24px;
  margin-top: 20px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, .06);
  height: 350px;
}

.lp-member__card-photo {
  width: 70%;
  height: auto;
  border-radius: 18px;
  /* 角丸半径（お好みで調整） */
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  /* ソフトな影 */
  overflow: hidden;
  /* はみ出しをカット */
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* カードタイトル */
.lp-member__card-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--lp-text);
}

.lp-member__card-post {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 10px 0;
  color: var(--lp-brand);
}

/* 本文 */
.lp-member__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-muted);
  margin: 0;
}

/* スマホ対応 */
@media (max-width: 900px) {
  .lp-member__cards {
    grid-template-columns: 1fr;
  }
}


/* ===== Insight Section ===== */
/* member 見出しのリセットと余白 */
.lp-insight__section-header {
  position: static;
  /* 浮かせない */
  z-index: 0;
  /* 重なり順を下げる（必要なら 0 でOK） */
  background: transparent;
  /* 白帯を消す */
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 auto 32px;
  /* 下に十分な余白 */
  max-width: 900px;
  /* センター細めにしたい場合 */
  text-align: center;
  display: block;
  /* ← flexを打ち消して縦並びに */
  text-align: center;
  /* 中央寄せ */
  margin-bottom: 40px;
  /* 下に余白 */
}

/* 見出し */
.lp-insight__section-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--lp-text);
}

.lp-insight__section-lead {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--lp-muted);
  margin: 0 0 40px;
}

.lp-insight__section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.lp-insight__section-card {
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  /* padding: 24px; */
  /* margin-top: 20px; */
  text-align: left;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.lp-insight__section-inner {
  max-width: 1200px;
  margin: 0 auto;
  /* センター */
  width: 100%;
  box-sizing: border-box;
}

/* スマホ対応 */
@media (max-width: 900px) {
  .lp-insight__section-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA Section ===== */
.lp-cta-section {
  --cta-bg: #082c45;
  /* 濃紺の帯色 */
  --cta-fg: #ffffff;
  /* 見出し色 */
  --cta-muted: rgba(255, 255, 255, .75);
  --cta-btn: #4899e8;
  /* ボタン色（お好みで #3a8be0 #4aa3ff など） */
  --cta-btn-text: #fff;
  --cta-btn-shadow: 0 10px 22px rgba(72, 153, 232, .25);

  background: var(--cta-bg);
  /* padding: 180px 20px; */
}

.lp-section-cta-section {
  --cta-bg: #082c45;
  /* 濃紺の帯色 */
  --cta-fg: #ffffff;
  /* 見出し色 */
  --cta-muted: rgba(255, 255, 255, .75);
  --cta-btn: #4899e8;
  /* ボタン色（お好みで #3a8be0 #4aa3ff など） */
  --cta-btn-text: #fff;
  --cta-btn-shadow: 0 10px 22px rgba(72, 153, 232, .25);

  background: var(--cta-bg);
  padding: 180px 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lp-section-cta-section {
    padding: 40px 20px;
  }
}

.lp-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-cta__title {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--cta-fg);
  letter-spacing: .02em;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.25;
}

.lp-cta__lead {
  margin: 0 0 22px;
  color: var(--cta-muted);
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.9;
}

.lp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 12px 18px;
  border-radius: 9999px;
  /* pill */
  background: var(--cta-btn);
  color: var(--cta-btn-text);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--cta-btn-shadow);
  transition: transform .06s ease, filter .2s ease, box-shadow .2s ease;
}

.lp-cta__btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 26px rgba(72, 153, 232, .32);
}

.lp-cta__btn:active {
  transform: translateY(1px);
}

.lp-cta__btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, .6),
    0 0 0 6px rgba(72, 153, 232, .55),
    var(--cta-btn-shadow);
}

.lp-cta__icon {
  display: inline-grid;
  place-items: center;
  translate: 0 1px;
  /* 視覚調整 */
}

/* 小さな画面用の改行制御 */
.sp-only {
  display: none;
}

@media (max-width: 640px) {
  .sp-only {
    display: inline;
  }
}

.po-remark{
font-size: 12px !important;
}

/* ===== Why Section ===== */
.lp-why-section {
  background: var(--lp-sec-bg, #f3f8fa);
  padding: 0 0 180px 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lp-why-section {
    padding: 0;
  }
}

.lp-why__panel {
  /* セクション内の淡いパネル */
  max-width: 1200px;
  margin: 0 auto;
  background: #eaf4f8;
  /* ほんのり濃い水色 */
  border-radius: var(--lp-radius, 18px);
  padding: clamp(20px, 4vw, 28px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lp-why__panel {
    margin: 0 auto;
    background: #eaf4f8;
    padding: clamp(35px, 4vw, 40px);
    border-radius: var(--lp-radius, 0px);
  }
}

.lp-why__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  /* 左テキスト広め／右画像 */
  gap: clamp(24px, 3.5vw, 40px);
  align-items: center;
}

/* 左側テキスト */
.lp-why__title {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--lp-text, #1a1a1a);
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: .02em;
}

.lp-why__lead {
  margin: 0 0 14px;
  color: var(--lp-muted, #5b6b7a);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.9;
}

/* チェック付きリスト */
.lp-why__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.lp-why__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  /* アイコン / テキスト */
  align-items: start;
  /* 複数行でも上揃え */
  gap: 10px;
  line-height: 1.8;
  color: var(--lp-text, #1a1a1a);
}

.lp-why__icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: .35em;
  /* 一行目のベースラインに合わせて微調整 */
  flex-shrink: 0;
  color: var(--lp-brand, #018dc5);
  /* テーマカラーに合わせたい場合はSVG側で currentColor を使う（下のSVG例） */
}


/* 右側画像（角丸＋影） */
.lp-why__media {
  margin: 0;
  background: #fff;
  border-radius: calc(var(--lp-radius, 18px));
  box-shadow: var(--lp-shadow, 0 8px 24px rgba(0, 0, 0, .08));
  padding: clamp(6px, 1.2vw, 10px);
  border: 1px solid rgba(0, 0, 0, .06);
}

.lp-why__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--lp-radius, 18px) - 4px);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  /* スクショの比率に近づける */
}

/* レスポンシブ */
@media (max-width: 900px) {
  .lp-why__inner {
    grid-template-columns: 1fr;
  }

  .lp-why__media {
    order: -1;
  }

  /* 画像→テキストの順にしたければ外す */
}





















/* ===== Insight Page ===== */
/* セクション */
.lp-insight-section {
  /* background: var(--lp-sec-bg); */
  padding: 96px 20px;
}

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

/* 見出し */
.lp-insight__header {
  position: static;
  /* 浮かせない */
  z-index: 0;
  /* 重なり順を下げる */
  background: transparent;
  /* 白い帯を消す */
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 auto 32px;
  /* 下に十分な余白 */
  max-width: 900px;
  text-align: center;
  display: grid;
}


.lp-insight__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 8px;
  color: #018dc5;
}

.lp-insight__lead {
  color: var(--lp-muted);
}

/* グリッド */
.lp-insight__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  position: relative;
  /* カードを前面に */
  z-index: 1;
}

@media (max-width: 900px) {
  .lp-insight__cards {
    grid-template-columns: 1fr;
	margin-top: 100px;
  }
}

/* カード */
.lp-insight__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-insight__in {
  display: block;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

.lp-insight__in:hover .lp-insight__more {
  transform: translateX(4px);
}

/* カード上部 */
.lp-insight__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.lp-insight__date {
  color: var(--lp-muted);
  font-size: 14px;
}

/* バッジ（カテゴリ） */
.lp-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0a3d57;
  background: #dff1fa;
  border-radius: 5px;
  padding: 6px 10px;
  margin-right: 6px;
}

/* タイトル・抜粋 */
.lp-insight__card-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  margin: 6px 0 10px;
}

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

/* メタ */
.lp-insight__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lp-insight__reading {
  color: var(--lp-muted);
  font-size: 13px;
}

.lp-insight__more {
  font-weight: 700;
  color: #0b4a6b;
  transition: transform .15s ease;
}

/* ===== Insight list: stable sizing ===== */

/* 1) 列幅を固定気味に（PC:3 / タブ:2 / SP:1） */
.lp-insight__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  /* ここで列幅を確保 */
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  /* 各セルは等高に */
}

@media (max-width: 1024px) {
  .lp-insight__cards {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-insight__cards {
    grid-template-columns: 1fr;
  }
}

/* 2) カードは等高ボックスに */
.lp-insight__card {
  height: 100%;
  display: flex;
}

.lp-insight__in {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 3) タイトル/要約/抜粋の高さを揃える（必要行数は好みで変更） */
.lp-insight__card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* タイトル2行で切る */
  overflow: hidden;
  min-height: calc(1em * 1.3 * 2);
  /* 行高ぶんの下駄。テーマのline-heightに合わせて調整 */
}

.lp-insight__youyaku,
.lp-insight__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 抜粋/要約は3行で切る */
  overflow: hidden;
  line-height: 1.8;
  min-height: calc(1em * 1.8 * 3);
  /* 3行ぶんの高さを確保 */
  margin: 6px 0 16px;
}

/* 4) フッター（読了時間＋続きを読む）を底に固定 */
.lp-insight__meta {
  margin-top: auto;
  /* これで常にカード下部へ */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 5) 文字が長いカテゴリバッジの折返し防止（任意） */
.lp-badge {
  white-space: nowrap;
}

/* ===== Insight Single (cleaned) ===== */

/* Palette & site header */
:root {
  --brand-50: #e6f5fb;
  --brand-100: #d4eef9;
  --brand-200: #bfe6fb;
  --brand-600: #0b6fa0;
  --ink-900: #0f2533;
  --ink-700: #203644;
  --ink-500: #3f5564;
  --ink-400: #5b6b7a;
  --bg-soft: #f5fbff;
  --site-header-h: 72px;
  /* 固定ヘッダー高さ */
}

.lp-insight-single {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 94px 20px;
}

/* タイトルや本文がはみ出さないように */
.lp-insight__title,
.lp-insight-article__title,
.lp-insight-article__content {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 画像などのオブジェクトが横はみ出ししないように */
.lp-insight-article__content img,
.lp-insight-article__content table,
.lp-insight-abstract {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* モバイル時の余白を少しタイトに */
@media (max-width: 768px) {
  .lp-insight-article__header {
    padding: 16px 0;
  }

  .lp-insight-abstract {
    margin: 16px 0 24px;
    padding: 16px;
  }
}

/* コンテナ：横一列＋必要なら折り返し */
.lp-insight-article__cats {
  display: flex;
  flex-wrap: wrap;
  /* ここがミソ：次の行に折り返せる */
  align-items: center;
  column-gap: 8px;
  /* タグの横間隔 */
  row-gap: 8px;
  /* H1とタグ列の縦間隔＆タグ行の縦間隔 */
  margin: 0;
}

.lp-insight-article__title {
  flex: 1 1 100%;
  /* これで必ず1行まるごと使う */
  margin: 0;
  /* お好みで下にだけ余白付けてもOK */
}

/* 記事カード本体 */
.lp-insight-article {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, rgba(1, 141, 197, .25), rgba(1, 141, 197, 0)) border-box;
}

/* セクション内ヘッダー（浮かせない） */
.lp-insight-article__header {
  position: static !important;
  z-index: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  /* ← 縦方向 */
  align-items: flex-start;
  /* 左寄せ */
  gap: 8px;
  /* バッジ間の縦スペース */
  padding: 24px 0;
}

/* タイトル / 日付 */
.lp-insight-article__title {
  color: var(--ink-900);
  letter-spacing: .01em;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.lp-insight-article__date {
  color: var(--ink-500);
}


/* 本文 */
.lp-insight-article__content {
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.9;
}

.lp-insight-article__content>*:first-child {
  margin-top: 0;
}

/* 見出し＆アンカーオフセット */
.lp-insight-article__content h2,
.lp-insight-article__content h3,
.lp-insight-article__content h4 {
  scroll-margin-top: calc(var(--site-header-h) + 16px);
}

.lp-insight-article__content h2,
.lp-insight-article__content h3 {
  position: relative;
  color: var(--ink-900);
}

/* 見出しはブロックのまま（行幅いっぱい） */
.lp-insight-article__content h2 {
  position: relative;
  /* 下線の基準にする */
  display: block;
  /* ← inline-block にしてたら上書き */
  font-size: 140%;
  font-weight: 700;
  margin: 40px 0 10px;
}

.lp-insight-article__content h3 {
  font-size: 120%;
  font-weight: 400;
  margin: 20px 0 10px;
}

/* 下線：コンテナの横幅100% */
.lp-insight-article__content h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  /* left+right でもOK（＝ width:100%） */
  bottom: -.1em;
  /* 文字と線の間隔。お好みで */
  height: 2px;
  background: linear-gradient(90deg, var(--lp-brand), var(--brand-200));
  border-radius: 2px;
  pointer-events: none;
}

/* 引用 */
.lp-insight-article__content blockquote {
  background: var(--brand-50);
  border-left: 6px solid var(--lp-brand);
  color: var(--ink-700);
  padding: 12px 16px;
  border-radius: 10px;
}

/* リンク */
.lp-insight-article__content a {
  color: var(--lp-text);
  text-decoration: none;
  transition: color .2s, border-color .2s;
}

.lp-insight-article__content a:hover {
  color: var(--brand-600);
  border-bottom-color: rgba(1, 141, 197, .6);
}

/* テーブル */
.lp-insight-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 15px;
}

.lp-insight-article__content th,
.lp-insight-article__content td {
  border: 1px solid #e6edf2;
  padding: .75em .9em;
}

.lp-insight-article__content th {
  background: var(--brand-100);
  color: var(--ink-900);
}

.lp-insight-article__content tr:nth-child(even) td {
  background: #fbfeff;
}

/* コード */
.lp-insight-article__content pre {
  background: #0b1f2b;
  color: #e7f4ff;
  padding: 14px;
  border-radius: 10px;
  overflow: auto;
}

.lp-insight-article__content code {
  background: #eef8ff;
  color: #0b3a52;
  padding: 2px 6px;
  border-radius: 6px;
}

/* 画像 */
.lp-insight-article__content img {
  box-shadow: 0 10px 24px rgba(1, 50, 80, .09);
  border-radius: 12px;
}

/* リスト */
.lp-insight-article__content ul,
.lp-insight-article__content ol {
  margin: 1em 0 1em 1.3em;
}

.lp-insight-article__content li {
  margin: .45em 0;
}

/* 区切り線 */
.lp-insight-article__content hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfe6f4, transparent);
  margin: 2.2em 0;
}

/* 要約（youyaku） */
.lp-insight-abstract {
  background: #fff;
  border: 1px solid var(--brand-200);
  padding: 20px 22px;
  margin: 20px 0 28px;
}

.lp-insight-abstract__ttl {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-600);
}

.lp-insight-abstract__body {
  color: var(--ink-700);
  line-height: 1.85;
}

/* タグ＋タイトルを折り返し行レイアウトに */
.lp-insight-article__cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

/* タイトルは必ず1行ぜんぶ使う（=タグの次の行へ） */
.lp-insight-article__title {
  flex: 0 0 100%;
  margin: 0;
  /* 余白は必要に応じて */
}

/* 日付は絶対配置/floatを無効化して“次の段”に置く */
.lp-insight-article__date {
  position: static !important;
  float: none !important;
  display: block !important;
  clear: both;
  /* 念のため */
  margin-top: 4px;
  /* お好みで調整 */
}

/* 要約ボックスが被らないように（保険） */
.lp-insight-abstract {
  position: relative;
  z-index: 0;
}


.lp-cta-section2 {
  --cta-bg: #082c45;
  /* 濃紺の帯色 */
  --cta-fg: #ffffff;
  /* 見出し色 */
  --cta-muted: rgba(255, 255, 255, .75);
  --cta-btn: #4899e8;
  /* ボタン色（お好みで #3a8be0 #4aa3ff など） */
  --cta-btn-text: #fff;
  --cta-btn-shadow: 0 10px 22px rgba(72, 153, 232, .25);
  background: var(--cta-bg);
  margin-top: 84px;
  padding: 80px 20px;
}

/* 目次 */

.lp-toc {
  background-color: #e4f7ff;
  padding: 20px 0;
  margin-bottom: 28px;
}

h3.sumarry,
h3.summary {
  position: relative;
  margin: 0 0 10px;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  letter-spacing: .02em;
  color: #0f2533;
  /* 見出し色 */
  padding-left: 1.1em;
  /* アイコン分の余白 */
}


/* ===== Lists inside the article ===== */
.lp-insight-article__content ul,
.lp-insight-article__content ol {
  margin: 1.1em 0 1.1em 0;
  /* 上下の間隔 */
  padding-left: 2.5em;
  /* 外側のインデント */
  list-style-position: outside;
  /* ぶら下げ見出し */
}

.lp-insight-article__content li {
  margin: .45em 0;
  /* 行間 */
}

/* 点リスト（●） */
.lp-insight-article__content ul {
  list-style: disc;
}

.lp-insight-article__content ul li::marker {
  color: var(--lp-brand);
  font-size: .9em;
  font-weight: 700;
}

/* 数字リスト（1. 2. 3.） */
.lp-insight-article__content ol {
  list-style: decimal;
}

.lp-insight-article__content ol li::marker {
  color: var(--lp-brand);
  font-weight: 700;
	    font-family: sans-serif;
}

/* ネスト（入れ子）時の微調整 */
.lp-insight-article__content ul ul,
.lp-insight-article__content ol ol,
.lp-insight-article__content ul ol,
.lp-insight-article__content ol ul {
  margin-top: .45em;
  margin-bottom: .45em;
}

.lp-insight-article__content ul ul {
  list-style: circle;
}

.lp-insight-article__content ul ul ul {
  list-style: square;
}

.lp-insight-article__content ul ul li::marker {
  color: var(--ink-400);
}

/* テキストが2行以上で折り返す時の“ぶら下げ”を綺麗に */
.lp-insight-article__content li {
  text-indent: 0;
}

.lp-insight-article__content li>p {
  margin: .25em 0;
}

/* ---- 便利なバリエーション（クラスを付けて使う） ---- */

/* チェックリスト： <ul class="is-checklist"> */
.lp-insight-article__content ul.is-checklist {
  list-style: none;
  padding-left: 20px;
}

.lp-insight-article__content ul.is-checklist li {
  position: relative;
  padding-left: 1.8em;
  margin: .5em 0;
}

.lp-insight-article__content ul.is-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .15em;
  width: 1.2em;
  height: 1.2em;
  line-height: 1.2em;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: var(--lp-brand);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(1, 50, 80, .18);
}

/* バツ/注意リスト： <ul class="is-crosslist"> */
.lp-insight-article__content ul.is-crosslist {
  list-style: none;
  padding-left: 0;
}

.lp-insight-article__content ul.is-crosslist li {
  position: relative;
  padding-left: 1.8em;
  margin: .5em 0;
}

.lp-insight-article__content ul.is-crosslist li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: .15em;
  width: 1.2em;
  height: 1.2em;
  line-height: 1.2em;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #d36363;
  border-radius: 6px;
}

/* ステップ（バッジ番号）： <ol class="is-steps"> */
.lp-insight-article__content ol.is-steps {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}

.lp-insight-article__content ol.is-steps>li {
  counter-increment: step;
  position: relative;
  padding-left: 2.2em;
  margin: .7em 0;
}

.lp-insight-article__content ol.is-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: .03em;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  text-align: center;
  font-weight: 700;
  color: var(--brand-600);
  background: var(--brand-100);
  border: 2px solid var(--brand-200);
  border-radius: 999px;
}

/* ===== 修正：ステップ（番号バッジ）の重複マーカーを消す ===== */
.single-insight .lp-insight-article__content ol.is-steps,
.single-insight .entry-content ol.is-steps,
.single-insight .wp-block-post-content ol.is-steps {
  list-style: none !important;
  /* decimal !important の上書き */
  padding-left: 0;
  /* バッジ分は li 側で確保 */
}

/* 念のため：marker を完全に無効化（Safari 対策） */
.single-insight .lp-insight-article__content ol.is-steps>li::marker,
.single-insight .entry-content ol.is-steps>li::marker,
.single-insight .wp-block-post-content ol.is-steps>li::marker {
  content: "";
}

/* 用語定義： <dl class="is-def"> */
.lp-insight-article__content dl.is-def {
  margin: 1.2em 0;
}

.lp-insight-article__content dl.is-def dt {
  font-weight: 700;
  color: var(--ink-900);
  margin-top: .9em;
}

.lp-insight-article__content dl.is-def dd {
  margin: .3em 0 0 0;
  color: var(--ink-700);
  border-left: 3px solid var(--brand-200);
  padding-left: .75em;
}

/* 1) disc/decimal の強制は .is-steps を除外する */
.single-insight .lp-insight-article__content ul:not(.is-checklist):not(.is-crosslist),
.single-insight .entry-content ul:not(.is-checklist):not(.is-crosslist),
.single-insight .wp-block-post-content ul:not(.is-checklist):not(.is-crosslist) {
  list-style: disc !important;
}

.single-insight .lp-insight-article__content ol:not(.is-steps),
.single-insight .entry-content ol:not(.is-steps),
.single-insight .wp-block-post-content ol:not(.is-steps) {
  list-style: decimal !important;
}

/* 2) マーカー色も .is-steps を除外 */
.single-insight .lp-insight-article__content ul:not(.is-checklist):not(.is-crosslist) li::marker,
.single-insight .entry-content ul:not(.is-checklist):not(.is-crosslist) li::marker,
.single-insight .wp-block-post-content ul:not(.is-checklist):not(.is-crosslist) li::marker {
  color: var(--lp-brand);
  font-weight: 700;
}

.single-insight .lp-insight-article__content ol:not(.is-steps) li::marker,
.single-insight .entry-content ol:not(.is-steps) li::marker,
.single-insight .wp-block-post-content ol:not(.is-steps) li::marker {
  color: var(--lp-brand);
  font-weight: 700;
}

/* 3) .is-steps を“完全リセット”してバッジだけにする */
.lp-insight-article__content ol.is-steps,
.entry-content ol.is-steps,
.wp-block-post-content ol.is-steps {
  list-style: none !important;
  /* decimal の上書き */
  padding-left: 20px;
  /* 左の余白は li 側で作る */
  counter-reset: step;
}

/* li 自体の marker を殺す（ブラウザ差対策） */
.lp-insight-article__content ol.is-steps>li,
.entry-content ol.is-steps>li,
.wp-block-post-content ol.is-steps>li {
  list-style: none;
  /* 念押し */
  position: relative;
  counter-increment: step;
  padding-left: 2.2em;
  margin: .7em 0;
}

.lp-insight-article__content ol.is-steps>li::marker,
.entry-content ol.is-steps>li::marker,
.wp-block-post-content ol.is-steps>li::marker {
  content: none;
  /* ← "" ではなく none が堅牢 */
}

/* 番号バッジ */
.lp-insight-article__content ol.is-steps>li::before,
.entry-content ol.is-steps>li::before,
.wp-block-post-content ol.is-steps>li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: .03em;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  text-align: center;
  font-weight: 700;
  color: var(--brand-600);
  background: var(--brand-100);
  border: 2px solid var(--brand-200);
  border-radius: 999px;
}

/* モバイル時の左右余白と読みやすさ */
@media (max-width: 768px) {

  .lp-insight-article__content ul,
  .lp-insight-article__content ol {
/*     padding-left: 1.2em; */
  }
}

/* ===== Lists for CPT "insight" ===== */
/* 対象: ①あなたのラッパー ②テーマのentry-content ③Gutenbergのwp-block-post-content */
.single-insight .lp-insight-article__content,
.single-insight .entry-content,
.single-insight .wp-block-post-content,
.post-type-archive-insight .entry-content {
  /* ベースは既存の本文色・行間に従うのでここでは何もしない */
}

/* UL/OL 基本 */
.single-insight .lp-insight-article__content ul,
.single-insight .entry-content ul,
.single-insight .wp-block-post-content ul,
.post-type-archive-insight .entry-content ul,
.single-insight .lp-insight-article__content ol,
.single-insight .entry-content ol,
.single-insight .wp-block-post-content ol,
.post-type-archive-insight .entry-content ol {
  margin: 1.1em 0;
  padding-left: 1.4em;
  /* インデント */
  list-style-position: outside;
}

/* li の間隔 */
.single-insight .lp-insight-article__content li,
.single-insight .entry-content li,
.single-insight .wp-block-post-content li {
  margin: .45em 0;
}

/* disc / decimal を強制（テーマが list-style:none を当てている対策） */
.single-insight .lp-insight-article__content ul,
.single-insight .entry-content ul,
.single-insight .wp-block-post-content ul {
  list-style: disc !important;
}

.single-insight .lp-insight-article__content ol,
.single-insight .entry-content ol,
.single-insight .wp-block-post-content ol {
  list-style: decimal !important;
}

/* マーカーの色 */
.single-insight .lp-insight-article__content ul li::marker,
.single-insight .entry-content ul li::marker,
.single-insight .wp-block-post-content ul li::marker {
  color: var(--lp-brand);
  font-weight: 700;
}

.single-insight .lp-insight-article__content ol li::marker,
.single-insight .entry-content ol li::marker,
.single-insight .wp-block-post-content ol li::marker {
  color: var(--lp-brand);
  font-weight: 700;
}

/* ネスト（入れ子）微調整 */
.single-insight .lp-insight-article__content ul ul,
.single-insight .entry-content ul ul,
.single-insight .wp-block-post-content ul ul {
  list-style: circle;
  margin: .45em 0;
}

.single-insight .lp-insight-article__content ul ul ul,
.single-insight .entry-content ul ul ul,
.single-insight .wp-block-post-content ul ul ul {
  list-style: square;
}

.button-wpar {
  text-align: center;
  /* 子要素のインライン要素を中央寄せ */
  margin: 84px 0 24px auto;
}

.button-wpar a {
  display: inline-block;
  /* インラインブロック化で均等に並ぶ */
  margin: 0 8px;
  /* ボタン同士の余白 */
}

/* モバイルで“縦積み”にしたい場合（好みでON） */
@media (max-width: 600px) {
  .button-wpar {
    justify-content: center;
    /* 念のため再指定 */
  }

  .button-wpar>.lp-hero__cta {
    width: 100%;
    max-width: 320px;
    /* 見た目を締める */
    margin-bottom: 20px;
  }
}

/* is-steps の中の ul/li は普通の箇条書きに戻す */
.lp-insight-article__content ol.is-steps ul,
.entry-content ol.is-steps ul,
.wp-block-post-content ol.is-steps ul {
  list-style: disc;
  /* 黒ポチに戻す */
  padding-left: 1.6em;
  /* 適度なインデント */
  margin-top: .4em;
}

.lp-insight-article__content ol.is-steps ul li,
.entry-content ol.is-steps ul li,
.wp-block-post-content ol.is-steps ul li {
  position: static;
  /* 番号バッジの配置を解除 */
  counter-increment: none;
  /* カウンタ進めない */
  padding-left: 0;
  /* 左余白リセット */
}

.lp-insight-article__content ol.is-steps ul li::before,
.entry-content ol.is-steps ul li::before,
.wp-block-post-content ol.is-steps ul li::before {
  content: none !important;
  /* サブリストにはバッジ非表示 */
}

/* サブULは通常の黒ポチに戻す */
.lp-insight-article__content ol.is-steps>li>ul,
.entry-content ol.is-steps>li>ul,
.wp-block-post-content ol.is-steps>li>ul {
  list-style: disc !important;
  /* ← 強制的に黒ポチ */
  padding-left: 1.6em !important;
  /* ← 強制インデント */
  margin: 10px 0 0 !important;
}

/* サブLIの::before（番号バッジ）を強制的に消す */
.lp-insight-article__content ol.is-steps>li>ul>li::before,
.entry-content ol.is-steps>li>ul>li::before,
.wp-block-post-content ol.is-steps>li>ul>li::before {
  content: none !important;
  /* ← バッジを出さない */
}

/* サブLIの::markerは落ち着いた黒系に */
.lp-insight-article__content ol.is-steps>li>ul>li::marker,
.entry-content ol.is-steps>li>ul>li::marker,
.wp-block-post-content ol.is-steps>li>ul>li::marker {
  color: #333 !important;
  /* ← 黒ポチ色 */
  font-weight: normal !important;
}

/*------------------------------------------------------
contact form
------------------------------------------------------*/
.po-canentryform table {
  width: 100%;
  border-spacing: 0 16px;
}

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

.contact_lead {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 40px;
}

.po-canentryform table {
  width: 100%;
}

.contact_wrap th {
  font-size: 16px;
  width: 42% !important;
  padding: 0 0 0 16px !important;
  box-sizing: border-box;
  border-left: solid 4px #018dc5;
}

.contact_wrap id {
  padding: 0 0 10px 20px !important;
}

.po-label.po-normal.po-not-required {
  font-size: 16px;
}

.contact_wrap input {
  width: 100%;
  border: solid 1px #ccc;
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
}

.contact_wrap .po-normal {
  padding: 0 0 10px 0;
  width: auto;
}

.contact_wrap textarea {
  border: solid 1px #ccc;
  border-radius: 6px;
  width: 100%;
  min-height: 160px;
  padding: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.contact_wrap .po-file input {
  border: none;
  padding: 0;
}

.po-privacy-policy {
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  padding: 20px;
  border: solid 1px #ccc;
  max-height: 120px;
  overflow-y: scroll;
  margin-bottom: 40px;
}

.po-input.po-dropdown select {
  border: solid 1px #ccc;
  background: #fff;
  font-size: 16px;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
}

.contact_wrap input[type="file"] {
  /*  opacity: 0;*/
  z-index: 1;
  position: relative;
}

.contact_wrap input[type="radio"] {
  width: auto;
}

.contact_wrap .po-input span {
  padding: 0 20px 0 5px;
  font-size: 14px;
  letter-spacing: normal;
}

.contact_wrap input {
  width: 100%;
  border: solid 1px #ccc;
  font-size: 16px;
  padding: 10px;
  border-radius: 6px;
  box-sizing: border-box;
}

.po-file {
  position: relative;
}

/*.po-file::after {
  content: "ファイルを選択";
  width: 100%;
  height: 32px;
  background: #018dc5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 160px;
  border-radius: 50px;
  text-align: center;
  line-height: 32px;
  color: #fff;
  font-size: 14px;
}*/
.po-input {
  letter-spacing: -0.4em;
}

.po-year {
  display: inline-block;
  width: 20% !important;
  letter-spacing: normal;
}

.po-month {
  display: inline-block;
  width: 20% !important;
  margin-left: 10px;
  letter-spacing: normal;
}

.po-day {
  display: inline-block;
  width: 20% !important;
  margin-left: 10px;
  letter-spacing: normal;
}

.po-checkbox-parent {
  width: auto !important;
}

.po-button-send {
  font-size: 14px;
  background: #018dc5;
  padding: 0 10px;
  border-radius: 2px;
  color: #fff;
  height: 50px;
  border: solid 2px #fff;
  max-width: 320px;
  width: 100%;
  box-sizing: border-box;
}

.po-required {
  position: relative;
}

.po-required::after {
  content: "必須";
  background: #018dc5;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  position: absolute;
  top: 0;
  right: 20px;
  border-radius: 2px;
}

.contact_wrap tr:nth-child(1) th {
  position: relative;
}

.contact_wrap tr:nth-child(1) th::after {
  content: "必須";
  background: #018dc5;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  position: absolute;
  top: 0;
  /* right: 20px; */
  border-radius: 2px;
}

.main_contact_button {
  font-size: 14px;
  background: #d18b00;
  padding: 0 10px;
  border-radius: 50px;
  color: #fff;
  height: 50px;
  border: solid 2px #fff;
  max-width: 320px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 20px;
}

/** チェックOFFなら非表示 */
.message {
  opacity: 0.3;
  pointer-events: none;
}

/** チェックONなら表示 */
input:checked~.message {
  opacity: 1;
  pointer-events: visible;
}

.contact_btn_wrap .toggle {
  width: 40px !important;
  display: inline-block;
}

.contact_btn_wrap a {
  display: inline-block;
  font-size: 14px;
  color: #018dc5;
  ;
}

.contact_btn_wrap {
  font-size: 14px;
  margin-top: 40px;
}


@media screen and (max-width:768px) {
  .contact_wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .contact_wrap th {
    font-size: 16px;
    width: 100% !important;
    padding: 0 0 0 16px !important;
    box-sizing: border-box;
    border-left: solid 4px #018dc5;
    display: block;
  }

  .contact_wrap td {
    display: block;
    width: 100% !important;
  }

  .po-required::after {
    content: "必須";
    font-size: 11px;
    padding: 2px 6px;
    right: 0;
  }

  .contact_wrap th {
    font-size: 16px;
    width: 100% !important;
    padding: 0 0 6px 0 !important;
    box-sizing: border-box;
    border-left: none;
    display: block;
  }

  .po-year {
    width: 28% !important;
    letter-spacing: normal;
  }

  .po-month {
    width: 28% !important;
    margin-left: 10px;
    letter-spacing: normal;
  }

  .po-day {
    width: 28% !important;
    margin-left: 10px;
    letter-spacing: normal;
  }

  .po-button-send {
    font-size: 13px;
  }

  .main_contact_button {
    max-width: 240px;
  }
}

.entry-section {
  background-color: #fcfcfc;
  text-align: center;
  /* padding: 42px 0 0; */
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.8;
  color: #333;
  /* margin-bottom: 64px; */
  padding-bottom: 80px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
.entry-section {
  padding-bottom: 40px;
}

}

.entry-attention:first-of-type {
  font-size: clamp(10px, 1.7vw, 12px);
  line-height: 1.8;
  color: #333;
  margin-top: 12px;
  /* letter-spacing: 0.1em; */
}

.entry-attention:last-of-type {
  font-size: clamp(10px, 1.7vw, 12px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
  /* letter-spacing: 0.1em; */
}

.entry-title {
  margin: 0 0 12px;
  font-weight: 700;
  color: #018dc5;
  letter-spacing: .02em;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.25;
}

.entry-title:last-of-type {
  padding-top: 64px;
}

.entry-lead {
  /* margin: 0 0 22px; */
  color: #333;
  font-size: clamp(14px, 1.7vw, 16px);
  /* line-height: 1.9; */
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
.entry-lead {
  padding: 0 10px;
  color: #333;
  font-size: clamp(14px, 1.7vw, 16px);
}
}