:root {
  --blue: #0B57D0;
  --text: #111;
  --muted: #555;
  --card: #fff;
  --cta: #F28B7B;
  --cta-hover: #ef7a68;
  --hl: #F6D86B;
  --max: 1100px;
}

* {
  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 {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sectionpd {
  padding: 80px 0;
}

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

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

.pcnone {
  display: none;
}

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

  h2 {
    font-size: 18px;
  }

  .pcnone {
    display: block;
  }
}

/* ===== MV ===== */
.mv {
  position: relative;

  /* ▼ 上限は作らず、詰まり防止 */
  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;
}

.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: 5px;
  width: 100%;
  height: 15px;
  background: #F5D870;
  z-index: -1;
  border-radius: 5px;
}


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

.mv__lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--#111);
  font-weight: 600;
}

.mv__points {
  display: flex;
  gap: 15px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.mv__point {
  flex: 1;
  background: var(--card);
  border-radius: 20px;
  padding: 17px 10px;
  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.4;
}

.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: 12px;
  font-weight: lighter;
}

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

/* ===== SP ===== */
@media (max-width:768px) {
  .mv {
    height: 720px;
    padding: 34px 0 28px;

    background: url("../img/sp_main_bg.png") no-repeat;
    background-size: cover;
    background-position: 50% 80%;
  }

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

  .spnone {
    display: none;
  }

  .mv__content {
    max-width: 100%;
  }

  .mv__title {
    font-size: 28px;
  }

  .mv__lead {
    margin-bottom: 20px;
  }

  .mv-strong {
    font-size: 32px;
  }

  .mv-strong::after {
    bottom: 1px;
    height: 13px;
  }

  .mv__points {
    align-items: center;
  }

  .mv__point {
    font-size: 14px;
  }

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

  .mv__cta {
    width: 100%;
  }

  .cvWrap {
    position: absolute;
    left: 50%;
    bottom: 40px;
    /* ← MV下端から40px */
    transform: translateX(-50%);
    width: calc(100% - 30px);
    /* mv__innerと揃える */
    max-width: 575px;
  }

  .mv__cta-sub {
    font-size: 10px;
  }

  .mv__disclaimer {
    font-size: 9px;
  }

}

/* ===== worries ===== */
.worries {
  padding: 20px 0 80px 0;
}

/* 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;
}

/* 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: 180px;
  height: auto;
}

/* dots */
.worries__dots {
  display: grid;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.worries__dots span {
  width: 7px;
  height: 7px;
  background: #111;
  border-radius: 50%;
}

/* headline */
.worries__headline {
  margin: 0;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #0B57D0;
  line-height: 1.35;
}

/* Dots */
.worries__dots {
  display: grid;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

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

/* Headline */
.worries__headline {
  margin: 0;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.35;
}

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

  .worries__card {
    padding: 26px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .worries__item {
    font-size: 14px;
  }

  .worries__illust {
    width: 100%;
    flex: 0 0 auto;
    margin-top: 6px;
    justify-content: center;
  }

  .worries__illust img {
    max-width: 70px;
    margin: 0 auto;
  }

  .worries__dots {
    margin: 22px 0;
  }

  .worries__headline {
    font-size: 18px;
  }
}

/* ===== 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: 768px) {
  .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: 16px;
  }

  .solutions__note {
    text-align: center;
    /* SPは中央寄せが自然 */
    font-size: 11px;
    margin-top: 16px;
  }
}

/* ===== 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: #F5D870;
  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: 768px) {
  .perspective__kicker {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .perspective__lead {
    margin-bottom: 18px;
  }

  .perspective__lead p {
    font-size: 18px;
    line-height: 1.9;
  }

  .perspective__hl {
    font-size: 40px;
  }

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

  .perspective__figure {
    margin-top: 18px;
    max-width: 420px;
    /* SPの見え方をそれっぽく */
  }
}

/* ===== 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: 768px) {
  .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: 14px;
    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: 28px;
    line-height: 1.6;
  }
}

/* ===== 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: 768px) {
  .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: 10px;
    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);
}

.reasons__desc {
  margin: 0;
  font-size: 16px;
  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: 768px) {
  .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: 20px;
  }

  .reasons__heading {
    font-size: 26px;
  }

  .reasons__desc {
    font-size: 14px;
  }

  .reasons__media img {
    border-radius: 12px;
  }
}

/* ===== 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: 768px) {
  .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: 18px;
  }

  .faq__q {
    font-size: 16px;
  }

  .faq__a {
    font-size: 13px;
  }
}

/* ===== 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: 768px) {
  .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;
  }
}

/* ▼ 追従CTA（スマホ用） -------------------------- */
@media all and (max-width: 1024px) {
  .cta-fixed-sp .btn-cv {
    text-align: center;
    margin: 0;
  }

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

  .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ここまで ---------------------------- */