:root {
  --blue: #0B57D0;
  --text: #111;
  --muted: #555;
  --card: #fff;
  --cta: #00B900;
  --cta-hover: #00d300;
  --hl: #F6D86B;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP",
    "Hiragino Sans",
    "Yu Gothic",
    "Segoe UI",
    system-ui,
    sans-serif;
  color: var(#111);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.inner {
	width:96%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sectionpd {
  padding: 70px 0;
}

.inner h2 {
  padding-bottom: 50px;
  font-weight: 700;
  font-size: 28px;
  color: #111;
  margin: 0;
}

.beigeBg {
  background: #F6F1E8;
  /* 薄ベージュ */
}

.pcnone {
  display: none;
}

@media (max-width:820px) {
  .inner {
    width: calc(100% - 40px);
  }

  h2 {
    font-size: 18px;
  }

  .pcnone {
    display: block;
  }
}
@media (max-width:600px) {
.inner h2 {
  padding-bottom: 30px;
  font-size: 5vw;
}
}
/* ===== MV ===== */
.mv {
  /* ▼ 上限は作らず、詰まり防止 */
  padding: 35px 0 35px;
  overflow: hidden;

  background: url("../img/main_bg.png") no-repeat;
  background-size: cover;
  background-position: 85% 35%;
  background-color: #F0F1F4;
}



.mv__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  position:relative;
}

.mv__content {
  max-width: 575px;
  width: min(575px, 100%);
}

.mv__title {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--blue);
  overflow-wrap: anywhere;
}

.mv-strong {
  font-size: 40px;
  position: relative;
  display: inline-block;
  z-index: 0;
}

.mv-strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  background: #fff372;
  z-index: -1;
  border-radius: 5px;
}


.hl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 14px;
  background: #fff372;
  z-index: -1;
  border-radius: 2px;
}

.mv__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--#111);
  font-weight: 600;
}
.mv__image {
	/*position:absolute;
	right:1vw;
	bottom:-1vw;*/
	margin:5px 0;
}
.mv__image img {
	width:100%;
}
.mv__points {
	position:absolute;
	right:1vw;
	bottom:0;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mv__point {
  /*flex: 1;*/
  background: var(--card);
  border-radius: 12px;
  padding: 17px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
}

.blue {
  color: var(--blue);
}

.mv__note {
  margin: 0 0 12px;
  font-size: 12px;
  color: #111;
  line-height: 1.5;
}

.mv__cta {
  display: inline-flex;
  justify-content: center;
  width: min(520px, 100%);
  border-radius: 10px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
  transition: .15s ease;
  font-size: 24px;
  padding: 12px 15px;
}

.mv__cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.mv__cta-sub {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 500;
}

.mv__disclaimer {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  text-align: right;
}

/* ===== SP ===== */
@media (max-width:820px) {
  .mv {
    background: url("../img/sp_main_bg.png") no-repeat;
    background-size: cover;
    background-position: bottom;
  }

  .mv__inner {
	  width: 90%;
    height: 125vw;	  
  }

  .spnone {
    display: none;
  }

  .mv__content {
	  width:auto;
    max-width: 100%;
  }

  .mv__title {
    font-size: 4.4vw;
  }

  .mv__lead {
    font-size: 2.2vw;
  }

  .mv-strong {
    font-size: 4.8vw;
  }

  .mv-strong::after {
    bottom: 1px;
    height: 13px;
  }
  .mv__image {
	  margin:0;
  }
  .mv__points {
	  right:0;
	  left:0;
	  bottom:14vw;
	  margin:auto;
    align-items: center;
  }
  .mv__point {
	  flex:1;
  }

  .mv__note {
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 12px;
    backdrop-filter: blur(2px);
    /* 対応ブラウザでは上品に */
  }

  .mv__cta {
    width: 100%;
	position:absolute;
	bottom:1vw;
	left: 0;
    right: 0;
	margin:auto;
  }
  .mv__cta-sub {
  }

  .mv__disclaimer {
    font-size: 11px;
  }

}
@media (max-width:600px) {
.mv {
	padding: 25px 0;
}
  .mv__inner {
	  width: 94%;
    height: 160vw;	  
  }
  .mv__title {
    font-size: 5.9vw;
  }

  .mv__lead {
    font-size:3.8vw;
  }

  .mv-strong {
    font-size: 5.5vw;
  }
  .mv__points {
	  gap:10px;
	  bottom: 23vw;
  }
  .mv__point {
	  font-size:3.7vw;
	  padding:2vw 1.5vw;

  }
  .mv__note {
    font-size: 11px;
  }
  .mv__cta {
	  font-size:5vw;
	  bottom:0;
  }
  .mv__cta-sub {
	  font-size:4vw;	  
  }
  .mv__disclaimer {
    font-size: 9px;
  }	
	
}

/* ===== worries ===== */
.worries {
  padding: 20px 0 250px 0;
  position:relative;
}
.worries::before {
    content: "";
    display: block;
    background: url(../img/bg_family.png) no-repeat;
    background-size: contain;
    width: 720px;
    height: 240px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
	margin:auto;
    z-index: 500;
}
/* Card */
.worries__card {
  background: #F6F1E8;
  border-radius: 26px;
  padding: 30px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: 750px;
  margin: 0 auto;
  position:relative;
}
.worries__card:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -50px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #F6F1E8 transparent transparent transparent;
    border-width: 50px 50px 0 50px;
}
/* List */
.worries__list {
  margin: 0;
  padding: 0px;
  list-style: none;
  gap: 18px;
}

.worries__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #111;
  padding: 10px 0;
}

/* SVG icon */
.worries__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  /* ベースライン微調整 */
}

/* Illustration */
.worries__illust {
  flex: 0 0 260px;
  display: grid;
  place-items: center;
}

.worries__illust img {
  width: 100%;
  max-width: 280px;
  height: auto;
}
/* Headline */
.worries__headline {
  margin: 60px 0 0;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.5;
}
.worries__headline span {
	position: relative;
	font-size:1.2em;
}
.worries__headline span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 15px;
  background: #fff372;
  z-index: -1;
  border-radius: 5px;
}

/* ===== SP ===== */
@media (max-width: 820px) {
  .worries {
    padding: 28px 0 26vw;
  }
  .worries::before {
	  width:75vw;
	  height:25vw;
  }
  .worries__card {
    padding: 26px 22px;
	gap: 10px;
	max-width:none;
  }

  .worries__item {
    font-size: 2.4vw;
  }

  .worries__illust {
	  display: block;
	  width:35%;
	  flex:auto;
  }

  .worries__illust img {
  }

  .worries__dots {
    margin: 22px 0;
  }

  .worries__headline {
    font-size: 2.8vw;
  }
}
@media (max-width:600px) {
  .worries {
    padding: 28px 0 32vw;
  }
  .worries::before {
	  width:90vw;
	  height:30vw;
  }
  .worries__card {
	  display:block;
    padding: 15px;
  }

  .worries__item {
    font-size: 4.3vw;
	text-align:left;
  }

  .worries__illust {
	  width:50%;
	  margin:0 auto;
  }
  .worries__headline {
    font-size: 4.6vw;
  }	
	
}

/* ===== solutions ===== */
.solutions__inner {
  text-align: center;
  position: relative;
}

/* 3カラム（PC） */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
  justify-items: center;
}

/* Card */
.solutions__card {
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 26px;
  padding: 30px 15px 26px;
  text-align: center;
}

/* 画像サイズ（デザイン寄せ） */
.solutions__img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 22px;
}

/* テキスト */
.solutions__text {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  color: var(#111);
}

/* 右下注釈（PC） */
.solutions__note {
  margin: 22px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #111;
  text-align: right;
}

/* ===== SP ===== */
@media (max-width: 820px) {
  .solutions {
    padding: 40px 0 50px;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solutions__card {
    max-width: 520px;
    padding: 24px 18px 22px;
    border-radius: 20px;
  }

  .solutions__img {
    width: 120px;
    margin-bottom: 14px;
  }

  .solutions__text {
    font-size: 2.4vw;
  }

  .solutions__note {
    text-align: center;
    /* SPは中央寄せが自然 */
    font-size: 12px;
    margin-top: 16px;
  }
}
@media (max-width:600px) {
  .solutions__text {
    font-size: 4.6vw;
  }	
}
/* ===== case ===== */
.flex3 {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
	margin:0;
	padding:0;
}
.flex3 li {
	width:calc(32.5% - 2px);
	border:1px solid #CCC ;/*線の太さ・種類・色*/
	border-radius: 4px;
	/*box-shadow: 3px 4px #CCC;*/
	list-style:none;
}
.flex3 li h3 {
    font-size: clamp(18px, 1.6vw, 22px);
	line-height:1;
	font-weight:600;
    text-align: center;
    margin: 15px 0;
}
.flex3 li img {
	width:100%;
	border-radius: 4px;
}
@media (max-width:820px) {
.flex3 {
    justify-content:space-evenly;
}	
.flex3 li {
	width:calc(46% - 2px);
	margin-bottom:30px;
}
.flex3 li:last-child {
	margin-bottom:0;
}
}
@media (max-width:600px) {
.flex3 li {
	width:calc(100% - 2px);
	margin-bottom:25px;
}	
}
/* ===== perspective ===== */
.perspective {
  background: #fff;
}

.perspective__kicker {
  margin: 0 0 22px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.perspective__lead {
  text-align: center;
  margin: 0 auto 26px;
  max-width: 980px;
}

.perspective__lead p {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.8;
}

.perspective__note {
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  line-height: 1.6;
  text-align: right;
  /* PCは右寄せ */
}

/* 黄色ハイライト（下線っぽいやつ） */
.perspective__hl {
  position: relative;
  display: inline-block;
  z-index: 0;
  font-size: 40px;
  /* 強調 */
  font-weight: 700;
}

.perspective__hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.12em;
  height: 0.38em;
  background: #fff372;
  z-index: -1;
  border-radius: 6px;
}

.perspective__figure {
  margin: 34px auto 0;
  max-width: 1120px;
}

.perspective__figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== SP ===== */
@media (max-width: 820px) {
  .perspective__kicker {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .perspective__lead {
    margin-bottom: 18px;
  }

  .perspective__lead p {
    font-size: 2.4vw;
    line-height: 1.9;
  }

  .perspective__hl {
    font-size: 1.3em;
  }

  .perspective__note {
    text-align: center;
    /* SPは中央 */
    font-size: 10px;
  }

  .perspective__figure {
    margin-top: 18px;
    max-width: 420px;
    /* SPの見え方をそれっぽく */
  }
}
@media (max-width:600px) {
.perspective__lead p {
    font-size: 4.6vw;
  }
}

/* ===== Flow ===== */
.flowArea__title {
  margin: 0 0 46px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  color: #111;
}

.flowArea__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  justify-items: center;
  align-items: stretch;
  margin: 0 auto;
}

.flowCard {
  position: relative;
  width: 100%;
  max-width: 240px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 30px;
  text-align: center;
  min-height: 300px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.flowCard__num {
  margin: 0;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: #F28B7B;
  margin-bottom: 20px;
}

.flowCard__icon {
  width: 72px;
  height: auto;
  display: block;
  margin: 0;
  margin-bottom: 20px;
}

.flowCard__text {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  color: #111;
}

/* 矢印（1〜3の右側だけ） */
.flowCard:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: url("../img/flow_icon.png") no-repeat center / contain;
}

/* dots */
.flowArea__dots {
  display: grid;
  justify-content: center;
  gap: 10px;
  margin: 36px 0 18px;
}

.flowArea__dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #111;
}

.flowArea__bottom {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: #111;
  font-size: 30px;
  line-height: 1.7;
}

/* ===== SP ===== */
@media (max-width: 820px) {
  .flowArea {
    padding: 56px 0 60px;
  }

  .flowArea__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    max-width: 520px;
  }

  .flowCard {
    max-width: none;
    min-height: 200px;
    padding: 20px;
    border-radius: 18px;
  }

  .flowCard__num {
    font-size: 30px;
  }

  .flowCard__icon {
    width: 50px;
  }

  .flowCard__text {
    font-size: 14px;
    line-height: 1.4;
  }

  /* SPは「1→2」「3→4」だけ矢印を出す（奇数番目のみ） */
  .flowArea__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    max-width: 520px;
  }

  .flowCard {
    max-width: none;
    min-height: 200px;
    padding: 20px;
    border-radius: 18px;
  }

  .flowCard__num {
    font-size: 30px;
  }

  .flowCard__icon {
    width: 50px;
  }

  .flowCard__text {
    font-size: 2vw;
    line-height: 1.4;
  }

  /* ✅ SP：矢印は 1〜3 だけ表示（=最後以外） */
  .flowCard:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url("../img/flow_icon.png") no-repeat center / contain;
  }

  /* ✅ 重要：全体に出す指定が残ってると競合するので無効化 */
  .flowCard::after {
    content: none;
  }

  .flowArea__dots {
    margin: 22px 0 14px;
  }

  .flowArea__bottom {
    font-size: 28px;
    line-height: 1.6;
  }

  .flowArea__dots {
    margin: 22px 0 14px;
  }

  .flowArea__bottom {
    font-size: 2.8vw;
    line-height: 1.6;
  }
}
@media (max-width:600px) {
.flowCard__text {
    font-size: 4vw;
  }	
.flowArea__bottom {
	font-size:4vw;
}
}

/* ===== CTA Area ===== */
.ctaArea {
  position: relative;
  padding: 54px 0;
  color: #fff;
  background: url("../img/cta_bg.png") no-repeat center / cover;
  overflow: hidden;
}

.ctaArea__inner {
  position: relative;
  /* overlayより手前 */
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.ctaArea__label {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 16px;
}

.ctaArea__text {
  margin: 0 0 26px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
}

.ctaArea__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(640px, 100%);
  padding: 18px 20px;
  border-radius: 10px;
  background: var(--cta);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
  transition: .15s ease;
}

.ctaArea__btn:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.ctaArea__btnMain {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.ctaArea__btnSub {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* ===== SP ===== */
@media (max-width: 820px) {
  .ctaArea {
    padding: 38px 0 44px;
    background-image: url("../img/cta_bg_sp.png");
  }

  .ctaArea__label {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .ctaArea__text {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .ctaArea__btn {
    width: 100%;
    padding: 16px 16px;
  }

  .ctaArea__btnMain {
    font-size: 22px;
  }

  .ctaArea__btnSub {
    font-size: 15px;
    margin-top: 4px;
  }
}
/* ===== reasons ===== */

.reasons__list {
  display: grid;
  gap: 42px;
}

.reasons__text {
  text-align: left;
}

.reasons__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
}

.reasons__item--reverse .reasons__text {
  order: 2;
}

.reasons__item--reverse .reasons__media {
  order: 1;
}

.reasons__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.reasons__heading {
  margin: 10px 0 8px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  color: var(--text);
  letter-spacing:0.02em;
}
.reasons__heading span {
	color:var(--blue);
	position:relative;	
}
.reasons__heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  background: #fff372;
  z-index: -1;
  border-radius: 5px;
}
.reasons__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}

.reasons__media {
  margin: 0;
}

.reasons__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* ===== SP ===== */
@media (max-width: 820px) {
  .reasons__title {
    margin-bottom: 22px;
  }

  .reasons__list {
    gap: 26px;
  }

  .reasons__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* SPは「文章→画像」の順にしたい（添付デザイン通り） */
  .reasons__item--reverse .reasons__text,
  .reasons__item--reverse .reasons__media {
    order: initial;
  }

  .reasons__heading {
    font-size: 3vw;
  }

  .reasons__desc {
    font-size: 2vw;
  }

  .reasons__media img {
    border-radius: 12px;
  }
}
@media (max-width:600px) {
.reasons__heading {
    font-size: 5.2vw;
  }	
.reasons__desc {
    font-size: 3.8vw;
  }	
}
/* ===== FAQ ===== */
/* ===== FAQ ===== */
.faq {
  background: #F6F1E8;
}

.faq__inner {
  /* あなたの .inner が text-align:center なので、タイトルはそのままでOK */
}

/* カードリスト */
.faq__list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

/* カード */
.faq__item {
  background: #fff;
  border-radius: 16px;
  padding: 26px 34px;
  text-align: left;
  /* ← ここで中央寄せを確実に潰す */
}

/* Q/A 2行 */
.faq__row {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 14px;
  align-items: start;
}

.faq__row--q {
  margin-bottom: 12px;
}

.faq__badge {
  font-weight: 700;
  font-size: 24px;
  color: var(--blue);
  line-height: 1;
  margin-top: 2px;
}

.faq__q {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  color: #111;
}

.faq__a {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.85;
  color: #111;
}

/* ===== SP ===== */
@media (max-width: 820px) {
  .faq {
    padding: 40px 0;
  }

  .faq__item {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .faq__row {
    grid-template-columns: 30px 1fr;
    column-gap: 12px;
  }

  .faq__badge {
    font-size: 2.2vw;
  }

  .faq__q {
    font-size: 2.2vw;
  }

  .faq__a {
    font-size: 2vw;
  }
}
@media (max-width:600px) {
.faq__row {
    column-gap: 2px;
  }	
  .faq__badge {
    font-size: 4.3vw;
  }

  .faq__q {
    font-size: 4.3vw;
  }

  .faq__a {
    font-size: 3.7vw;
  }
	
}
/* ===== Footer ===== */
.siteFooter {
  background: #fff;
}

.siteFooter__body {
  padding: 48px 0 34px;
}

.siteFooter__inner {
  /* 既存 .inner の text-align:center をここで上書き */
  text-align: left;
  max-width: 1200px;
}

/* 3カラム */
.siteFooter__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* 見出し */
.siteFooter__title {
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
}

.siteFooter__subtitle {
  margin: 18px 0 10px;
  font-weight: 700;
  font-size: 18px;
  color: #111;
}

/* 会社概要（dl） */
.siteFooter__dl {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.siteFooter__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
  margin: 0 0 8px;
}

.siteFooter__row dt,
.siteFooter__row dd {
  margin: 0;
}

/* links */
.siteFooter__link {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* list */
.siteFooter__list {
  margin: 0;
  padding-left: 18px;
  color: #111;
  font-size: 14px;
  line-height: 1.8;
}

.siteFooter__small {
  margin: 0;
  color: #111;
  font-size: 12px;
  line-height: 1.9;
}

/* 下の青帯 */
.siteFooter__bar {
  background: var(--blue);
  padding: 18px 0;
}

.siteFooter__barInner {
  text-align: center;
  color: #fff;
  font-size: 16px;
  letter-spacing: .02em;
}

/* ===== SP ===== */
@media (max-width: 600px) {
  .siteFooter__body {
    padding: 34px 0 22px;
  }

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

  .siteFooter__title {
    font-size: 24px;
    margin-bottom: 0;
  }

  .inner .siteFooter__col h2 {
    padding-bottom: 10px;
  }

  .siteFooter__row {
    grid-template-columns: 90px 1fr;
  }

  .siteFooter__bar {
    padding: 14px 0;
  }

  .siteFooter__barInner {
    font-size: 16px;
  }
}
.spshow {
	display:none;
}
@media all and (max-width: 600px) {
.spshow {
	display:block;
}
}
/* ▼ 追従CTA（スマホ用） -------------------------- */
@media all and (max-width: 600px) {
  .cta-fixed-sp .btn-cv {
    text-align: center;
    margin: 0;
  }

  .cta-fixed-sp .btn-cv a {
    font-size: 1.4rem;
    padding: 10px 5px;
    margin: 0;
    width: 90%;
    border-radius: 10px;
    color: #fff;
    background-color: #00b900;
  }

  .cta-fixed-sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 15px 0;
    z-index: 999;
  }

  .cta-fixed-sp .btn-cv .material-symbols-outlined {
    margin: 0;
  }

  footer {
    padding-bottom: 100px;
  }

}

/* ▲ 追従CTAここまで ---------------------------- */