/* ========================
  RESET / BASE
======================== */

/* 全要素のボックスサイズをborder-boxに */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ブラウザの余白をリセット */
body {
  margin: 0;
  padding: 0;
  line-height: normal;
  font-family: var(--font-zen);
  color: #000;
  background-color: #fff;
  font-size: var(--font-sm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-noto);
}

/* 見出しのデフォルトマージン除去・フォントサイズ調整は別途 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
  font-family: var(--font-noto);
}

/* 段落とリストのマージン除去 */
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
  font-family: var(--font-noto);
}

/* リストのスタイル初期化 */
ul,
ol {
  list-style: none;
}

/* リンクの初期化 */
a {
  color: inherit;
  text-decoration: none;
}

/* ボタンの初期化 */
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 画像のはみ出し防止 */
img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================
  検索機能スタイル
======================== */



/* 検索入力フィールド */
#power_supplier_type_others_search {
  margin-bottom: 12px;
}

/* 検索ボタンのスタイル */
#power_supplier_type_others_search_btn {
  background-color: var(--color-main);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: var(--font-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#power_supplier_type_others_search_btn:hover {
  background-color: var(--color-sub);
}

/* 検索結果リストのスタイル */
#search_result3_list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
}

#search_result3_list li {
  border-bottom: 1px solid #f0f0f0;
}

#search_result3_list li:last-child {
  border-bottom: none;
}

#search_result3_list li a.search_result3_choice {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  font-size: 14px;
  line-height: 1.5;
}

#search_result3_list li a.search_result3_choice:hover {
  background-color: #fff5f5;
  color: var(--color-main);
}

#search_result3_list li a.search_result3_choice:active {
  background-color: #ffe0e0;
}



:root {
  /* Font Families */
  --font-zen: "Noto Sans JP", sans-serif;
  /* デザイン指定によりNoto Sans JPに変更 */
  --font-noto: "Noto Sans JP", sans-serif;

  /* Font Sizes (clamp: SP最小 → PC最大) */
  --font-xs: clamp(13px, 2.5vw, 15px);
  /* 注釈・補足 */
  --font-sm: clamp(15px, 3vw, 18px);
  /* 本文・ボタン */
  --font-md: clamp(17px, 3.6vw, 21px);
  /* リード文など */
  --font-lg: clamp(19px, 4.2vw, 24px);
  /* 小見出し */
  --font-xl: clamp(21px, 4.8vw, 27px);
  /* 見出し（中） */
  --font-xxl: clamp(23px, 5.2vw, 30px);
  /* 見出し（大） */
  --font-3xl: clamp(24px, 5.5vw, 32px);
  /* 最大見出し・FV */

  /* Main Colors */
  --color-main: #C00000;
  --color-sub: #c75656;

  /* Accent Colors */
  --color-accent: #5683c7;

  /* Text / Base */
  --color-text: #333333;
  --color-bg-white: #ffffff;
  --color-bg-lightblue: #dbe8ef;
  --color-bg-cream: #fbf7ed;

  /* Spacing (PC default) */
  --space-4: 4px;
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-60: 60px;
  --space-64: 64px;
  --space-72: 72px;
  --space-80: 80px;
  --space-88: 88px;
  --space-96: 96px;
  --space-104: 104px;
  --space-120: 120px;
}

.inner {
  max-width: 1120px;
  width: 90%;
  margin-inline: auto;
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

.nowrap {
  white-space: nowrap;
}

.sp-hide {
  display: inline;
}

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

  .pc-only {
    display: none;
  }

  .sp-hide {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  :root {
    /* Spacing (SP override) */
    --space-4: 4px;
    --space-8: 8px;
    --space-16: 12px;
    --space-24: 16px;
    --space-32: 24px;
    --space-40: 32px;
    --space-48: 36px;
    --space-56: 40px;
    --space-60: 40px;
    --space-64: 44px;
    --space-72: 48px;
    --space-80: 48px;
    --space-88: 52px;
    --space-96: 56px;
    --space-104: 60px;
    --space-120: 64px;
  }
}

.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-fadein.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
  Header
======================== */
header {
  background: var(--color-main);
  padding: 0.8rem 3rem;
}

.header__logo {
  display: block;
  height: 40px;
  width: auto;
  background: white;
  padding: 4px 2rem;
  border-radius: 2rem;
}

@media screen and (max-width: 767px) {
  header {
    padding: 0.3rem 1rem;
  }

  .header__logo {
    height: 1.5rem;
    padding: 2px 1rem;
  }
}

/* ========================
  First View (fv)
======================== */

.fv {
  position: relative;
}

.fv__note {
  text-align: right;
}

@media (max-width: 767px) {
  .fv__note {
    position: static;
    text-align: left;
    font-size: 0.8rem;
  }
}





/* ========================
  cta-fv
======================== */

.cta-fv {
  background: transparent;
  padding: 44px 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  position: relative;
}

/* 吹き出し */
.cta__bubble {
  position: relative;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 18px 34px;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.25;
  text-align: center;
  border: 3px solid;
  font-family: var(--font-noto);
  z-index: 2;
  margin-bottom: 20px;
}

/* 吹き出しのしっぽ */
.cta__bubble::after {
  content: "";
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  bottom: -32px;
  width: 0;
  height: 0;
  /* border-left: 18px solid transparent; */
  border-right: 40px solid transparent;
  border-top: 34px solid #fff;
  /* 三角形 */
}

.cta__bubble::before {
  content: "";
  position: absolute;
  left: 60%;
  transform: translateX(-44%);
  bottom: -34px;
  width: 42px;
  height: 0;
  /* border-left: 18px solid transparent; */
  border-right: 40px solid transparent;
  border-top: 34px solid #000000;
  /* 三角形 */
}

/* きらりアニメーション */
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ボタン */
.cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(540px, 92vw);
  padding: 18px 28px;
  background: #f2c200;
  color: #fff;
  text-decoration: none;
  border-radius: 18px;
  font-family: var(--font-noto);
  position: relative;
  overflow: hidden;
}

/* きらりエフェクト */
.cta__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 2.5s ease-in-out infinite;
}

/* 上の小さめ行 */
.cta__btnTop {
  font-size: 34px;
  font-weight: 1000;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

/* 下の大きい行 */
.cta__btnMain {
  font-size: 40px;
  font-weight: 1000;
  line-height: 1.05;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

/* hover（任意） */
.cta__btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  transition: .15s;
}

/* レスポンシブ */
@media (max-width: 720px) {
  .cta-fv {
    margin-left: auto;
    margin-right: auto;
    padding: 44px 16px 56px;
    gap: 0;
  }

  .cta__bubble {
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 28px;
    box-sizing: border-box;
    margin-bottom: 26px;
  }

  .cta__bubble::after {
    bottom: -40px;
    border-left-width: 45px;
    border-right-width: 40px;
    border-top-width: 40px;
  }

  .cta__bubble::before {
    width: 45px;
    border-right: 42px solid transparent;
    bottom: -40px;
    border-top: 40px solid rgb(0, 0, 0);
  }

  .cta__btnTop {
    font-size: 24px;
  }

  .cta__btnMain {
    font-size: 28px;
  }

  .cta__btn {
    padding: 18px 16px;
    width: min(540px, 80vw);
    max-width: none;
    box-sizing: border-box;
  }
}


/* ========================
  Compare
======================== */
.compare {
  background-color: var(--color-bg-white);
  /* padding-block: var(--space-80); */
}

.compare__heading {
  font-size: var(--font-xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-40);
  font-family: var(--font-zen);
  color: var(--color-main);
}

.compare__heading .compare__heading--black {
  color: #000;
}

.compare__note {
  margin-top: var(--space-24);
  font-size: var(--font-xs);
  font-family: var(--font-noto);
  line-height: 1.6;
  color: var(--color-text);
  text-align: left;
}

/* --- セクション全体 --- */
.campaign-section {
  width: 100%;
  margin: 40px auto;
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
  border-radius: 20px;
  /* 全体の角丸 */
  overflow: hidden;
  /* はみ出し防止 */
}

/* --- 赤い見出し部分 --- */
.cp-header {
  background-color: #BF0000;
  /* 濃い赤 */
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  /* 三角形の配置基準 */
}

.cp-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.cp-title__item+.cp-title__item {
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .cp-title__item+.cp-title__item {
    padding-left: 0;
  }

  .cp-title__item {
    display: inline;
  }
}

/* 下向きの三角形（吹き出しのツノ） */
.cp-header::after {
  content: "";
  position: absolute;
  bottom: -19px;
  /* 下にはみ出させる */
  left: 50%;
  transform: translateX(-50%);
  border-top: 20px solid #BF0000;
  /* 赤い色 */
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  z-index: 10;
}

@media (max-width: 600px) {
  .cp-header::after {
    display: none;
  }
}

/* --- ピンクのコンテンツ部分 --- */
.cp-body {
  background-color: #FEEEEE;
  /* 薄いピンク */
  padding: 40px 15px;
  text-align: center;
  font-family: var(--font-noto);
}

.cp-intro .main-text {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.cp-intro .main-text__inline {
  display: inline;
}

@media (max-width: 600px) {
  .cp-intro .main-text {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* --- 白いカード共通 --- */
.white-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* --- 上段：2列カード --- */
.benefit-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.benefit-item {
  flex: 1;
  /* 横幅を均等に */
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-item p {
  color: #000;
  font-size: 20px;
  line-height: normal;
}

.icon-area {
  font-size: 40px;
  /* アイコンサイズ仮 */
  margin-bottom: 26px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.icon-area img {
  max-height: 70px;
  width: auto;
}

/* --- 中央の青枠ラベル --- */
.middle-label {
  margin: 0 auto 30px;
  text-align: center;
}

.middle-label__text {
  display: inline-block;
  color: #bf0000;
  /* 赤い文字 */
  font-weight: 900;
  font-size: var(--font-xl);
  padding: 5px 15px;
}

@media (max-width: 768px) {
  .middle-label__text {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .middle-label .pc-only {
    display: none !important;
  }
}

/* --- 下段：実績数字 --- */
.stats-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 10px;
  gap: 54px;
}

.stat-item {
  text-align: center;
}

.badgeTitle {
  display: flex;
  gap: 2px;
  /* 箱の間隔 */
  margin: 0;
  padding: 0;
  background: transparent;
  /* 背景透過 */
  justify-content: center;
}

.badgeTitle__cell {
  width: 34px;
  /* 箱サイズ（調整） */
  aspect-ratio: 1 / 1;
  /* 正方形 */
  background: #C00000;
  background: var(--color-main, #C00000);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 2px 0 rgba(255, 255, 255, .25) inset;
  /* うっすら上ハイライト任意 */
}

/* スマホで縮める（任意） */
@media (max-width: 600px) {
  .badgeTitle {
    gap: 3px;
  }

  .badgeTitle__cell {
    width: 32px;
    font-size: 28px;
  }
}

/* 数字のデザイン */
.stat-num {
  color: #C00000;
  color: var(--color-main, #C00000);
  font-weight: bold;
  font-size: 32px;
  margin-top: 1.5rem;
}

.stat-num__number {
  font-size: 48px;
  line-height: 1;
}

.stat-item small {
  font-size: 12px;
  color: #666;
  display: block;
}

/* --- スマホ対応（レスポンシブ） --- */
@media screen and (max-width: 768px) {
  .benefit-row {
    flex-direction: column;
    /* 縦並びにする */
  }

  .stats-row {
    flex-direction: column;
    /* 縦並びにする */
    gap: 30px;
  }

  .stat-item {
    width: 100%;
    border-bottom: 1px dashed #ccc;
    /* 区切り線 */
    padding-bottom: 20px;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* モーダル */
.modal__content {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 980px;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: #5683c7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  background-color: #fff;
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .modal__close {
    left: 97%;
  }

  .compare__heading {
    margin-bottom: -1rem;
  }
}



/* ========================
   Happy Section
======================== */
.happy {
  background-color: #BCAEAE;
  padding: var(--space-56) var(--space-24);
  text-align: center;
  position: relative;
}

.happy__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
}

.happy__icon {
  width: clamp(40px, 5vw, 64px);
  margin-bottom: var(--space-16);
}

.happy__icon-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
}

.happy__title-wrap {
  position: relative;
  display: flex;
  margin-bottom: var(--space-40);
  justify-content: space-between;
  width: 100%;
}

.happy__title {
  color: var(--color-main);
  font-size: var(--font-xl);
  font-family: var(--font-zen);
  font-weight: 700;
  line-height: 1.4;
  width: 100%;
}

/* マーカー強調 */
.highlight {
  font-size: 40px;
}

.happy-sub {
  color: #fff;
  margin-top: 1rem;
}

.text-color {
  color: #C00000;
  color: var(--color-main, #C00000);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .happy {
    padding: 56px 0 20px;

  }

  .happy__icon-wrap {
    justify-content: space-between;
  }

  .happy__cards {
    grid-template-columns: 1fr;
    margin-bottom: var(--space-32);
  }

  .happy__note {
    text-align: left;
    font-size: var(--font-sm);
  }

  .happy__illust--women {
    left: 10%;
  }

  .happy__illust--men {
    right: 10%;
  }
}

.service-section {
  width: 100%;
  margin: 20px auto;
  font-family: sans-serif;
}

.service-note {
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-top: 16px;
  padding-right: 8px;
}

/* カテゴリタイトル */

/* サービスアイテムの並び（グリッド） */
/* テキスト部分 */

.life-gourmet {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  max-width: 1200px;
}

.title {
  margin: 0;
  padding: 12px 16px;
  background: #5b86c2;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  font-family: var(--font-noto);
}

/* サービスカード */
.service-grid {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(16px, 3vw, 24px);
  background: #fff;
}

.service-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-grid--3 {
  grid-template-columns: repeat(3, auto);
  justify-content: space-evenly;
}

.service-card {
  display: flex;
  gap: clamp(8px, 1.5vw, 16px);
  align-items: center;
}

.service-grid--3 .service-card {
  gap: clamp(6px, 1vw, 12px);
}

.service-card__image {
  width: clamp(80px, 18vw, 200px);
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}

.service-grid--3 .service-card__image {
  width: clamp(60px, 14vw, 160px);
}

.service-card__content {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vw, 8px);
  align-items: flex-start;
  text-align: left;
  width: fit-content;
}

.service-card__logo {
  max-height: clamp(24px, 4vw, 40px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-card__deal {
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
  width: fit-content;
}

.service-card__deal .red {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  vertical-align: middle;
}

.service-card__deal sub {
  font-size: inherit;
  vertical-align: middle;
}

.service-card__note {
  font-size: clamp(11px, 1.5vw, 14px);
  color: #333;
  margin: 0;
}

.service-card__big {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  vertical-align: middle;
}

.service-card__strong {
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 900;
  vertical-align: middle;
}

/* サービスパネル（トラベル・レジャー） */
.service-panel {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-panel__title {
  margin: 0;
  padding: clamp(10px, 1.5vw, 16px);
  background: #5b86c2;
  color: #fff;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
}

.service-panel__body {
  padding: clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 28px);
  flex: 1;
  justify-content: space-between;
}

/* SP対応 */
@media (max-width: 768px) {
  .service-grid--2,
  .service-grid--3 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .service-card__image,
  .service-grid--3 .service-card__image {
    width: 100%;
    max-width: 100%;
  }

  .service-card__content {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .service-card__logo {
    max-width: 160px;
    max-height: 50px;
  }

  .service-card__deal {
    font-size: 16px;
  }

  .service-card__deal .red {
    font-size: 28px;
  }

  .service-card__big {
    font-size: 32px;
  }

  .service-card__strong {
    font-size: 28px;
  }

  .service-card__note {
    font-size: 14px;
  }

  .service-card__logo--large {
    max-width: 280px;
    max-height: 80px;
  }
}

/* 共通スタイル */
.red {
  color: #d7261e;
}

.strike {
  text-decoration: line-through;
  color: #222;
  margin-right: 4px;
}

sub {
  font-size: clamp(12px, 1.8vw, 18px);
  vertical-align: middle;
}

/* サービスセクション専用アコーディオン */
@media screen and (min-width: 769px) {
  .service-accordion__btn {
    display: none !important;
  }

  .service-accordion__pc-only,
  .service-accordion .panel__title.service-accordion__pc-only {
    display: block !important;
  }

  .service-accordion .panel__title.service-accordion__pc-only {
    background: #5b86c2;
    color: #fff;
  }

  .service-accordion__content {
    display: block !important;
    overflow: visible;
    padding: 0 !important;
    background: transparent !important;
    margin: 0;
    height: 100%;
  }

  .service-accordion__two-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0;
    align-items: stretch;
  }

  .service-accordion__item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .service-accordion__item .service-accordion__content {
    flex: 1;
    display: flex !important;
    flex-direction: column;
  }

  .service-accordion__item .service-panel {
    flex: 1;
  }
}

@media screen and (max-width: 768px) {
  .service-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
  }

  .service-accordion__item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #5b86c2;
  }

  .service-accordion__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
    padding: var(--space-16) var(--space-24);
    background: #5b86c2;
    color: #fff;
    font-size: var(--font-sm);
    font-family: var(--font-noto);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    border: none;
    border-radius: 8px;
  }
  .service-accordion__item.service-accordion__open .service-accordion__btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .service-accordion__label {
    flex: 1;
  }

  .service-accordion__toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .service-accordion__content {
    display: none;
    overflow: hidden;
    padding: 0;
    background: #fff;
    margin: 0;
  }

  .service-accordion__item.service-accordion__open .service-accordion__content {
    display: block;
  }

  .service-accordion__pc-only {
    display: none;
  }

  .service-accordion__two-panels {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
  }
}

/*========================
 優待サービスの詳細はこちらボタン 
 ========================*/
.btn-container {
  text-align: center;
  /* ボタンを中央に配置する場合 */
  margin: 72px 0;
}

.red-detail-btn {
  display: inline-block;
  background-color: #BF0000;
  /* 画像に近い濃い赤色 */
  color: #FFFFFF;
  /* 文字色（白） */
  text-decoration: none;
  /* 下線を消す */
  font-size: 34px;
  /* 文字サイズ（適宜調整） */
  font-weight: bold;
  /* 太字 */
  line-height: 1.3;
  /* 行間 */
  padding: 28px 174px;
  /* 上下・左右の余白 */
  border-radius: 15px;
  /* 角丸（画像に合わせ少し大きめ） */
  transition: background-color 0.3s, transform 0.2s;
  /* アニメーション */
  box-shadow: 0 4px 0 #800000;
  /* 少し暗い赤で立体感を出す */
}

/* マウスを乗せた時の動き */
.red-detail-btn:hover {
  background-color: #D60000;
  /* 少し明るい赤にする */
  transform: translateY(-2px);
  /* 少し上に浮く */
  box-shadow: 0 6px 0 #800000;
  /* 影を強調 */
}

/* クリックした時の動き */
.red-detail-btn:active {
  transform: translateY(2px);
  /* 押し込まれる動き */
  box-shadow: 0 2px 0 #800000;
  /* 影を薄く */
}

/* スマホ表示の調整 */
@media screen and (max-width: 480px) {
  .red-detail-btn {
    font-size: 20px;
    padding: 12px 30px;
    width: 80%;
    /* 横幅いっぱいに近くする */
  }
}


/*========================
 なぜお得なの？ 
 ========================*/

.reason {
  background: #5b86c2;
  padding: 54px 32px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
}

/* 中央の白カード */
.reason__card {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  box-sizing: border-box;
}

/* カード内の左右レイアウト */
.reason__inner {
  display: flex;
  gap: 36px;
  padding: 30px;
  align-items: center;
}

.reason__left {
  flex: 0 0 430px;
  /* 左の幅（必要なら調整） */
  display: flex;
  justify-content: center;
}

.reason__illust {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  padding: 40px;
}

/* 右側テキスト */
.reason__right {
  flex: 1 1 auto;
  font-family: var(--font-noto);
}

.reason__title {
  margin: 0 0 18px;
  color: #d7261e;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.2;
}

.reason__p {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  line-height: 1.7;
}

.reason__p .text-color {
  display: inline;
}

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

.reason__note {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

/* スマホ：画像+タイトル横並び、本文は下 */
@media (max-width: 900px) {
  .reason {
    padding: 28px 16px;
  }

  .reason__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 24px 18px;
    gap: 18px;
    align-items: start;
  }

  .reason__right {
    display: contents;
  }

  .reason__left {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    width: 100%;
  }

  .reason__title {
    font-size: 18px;
    align-self: center;
    line-height: 1.2;
    margin: 0;
  }

  .reason__body {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .reason__p {
    font-size: 16px;
  }

  .reason__p .text-color {
    display: inline;
  }

  .reason__note {
    font-size: 14px;
    margin-top: 16px;
  }

  .reason__illust {
    padding: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}


/*========================
 電気料金プラン 
 ========================*/

.pricing {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 100px;
}

.pricing__title {
  font-size: 40px;
  color: var(--color-bg-white);

}

.pricing__heading {
  color: var(--color-bg-white);
  font-size: 25px;
  font-weight: 700;
  background-color: var(--color-main);
  padding: 2rem;
}

.pricing-text {
  margin-top: 2rem;
  font-size: x-large;
  font-weight: 600;
}

@media (max-width: 767px) {
  .pricing {
    margin-top: 30px;
  }

  .pricing__heading {
    font-size: 1.3rem;
  }

  .pricing-text__inline {
    display: inline-block;
  }
}

.tab-container {
  display: flex;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  border-bottom: 1px solid #ccc;
  margin-top: 3rem;
}

.tab-button {
  flex: 1;
  padding: 15px;
  border: none;
  background-color: #f4f4f4;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  border-right: 1px solid #ddd;
}

.tab-button:last-child {
  border-right: none;
}

/* アクティブなタブ（現在選択されているもの） */
.tab-button.active {
  background-color: var(--color-main);
  /* 動画のような濃い青 */
  color: white;
}

.tab-button:hover:not(.active) {
  background-color: #e0e0e0;
}

/* --- コンテンツ（表）部分のスタイル --- */
.tab-content {
  display: none;
  /* 最初は隠しておく */
  max-width: 1120px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* アクティブなコンテンツだけ表示 */
.tab-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

/* --- テーブルのデザイン --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 18px;
  font-family: var(--font-noto);
}

th,
td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  text-align: center;
}

/* ヘッダー行（従量電灯B相当など） */
.table-header-row {
  background-color: #FBE8E8;
  font-weight: bold;
  color: var(--color-main);
}

/* 左側の項目列（基本料金など） */
.category-col {
  background-color: #fcfcfc;
  width: 25%;
  vertical-align: middle;
}

.detail-col {
  width: 30%;
  padding-left: 20px;
}

.price-col {
  width: 25%;
}

.pricing-table {
  width: 100%;
  max-width: 1120px;
  /* 横幅の最大値（調整可） */
  border-collapse: collapse;
  /* 枠線を重ねて1本にする */
  font-family: var(--font-noto);
  color: #333;
  font-size: 14px;
  margin: 20px auto;
  /* 中央寄せ */
}

/* --- 全セルの共通設定 --- */
.pricing-table th,
.pricing-table td {
  border: 1px solid #ccc;
  /* 薄いグレーの枠線 */
  padding: 20px;
  /* 余白を広めにとる */
  text-align: center;
  /* 文字を中央揃え */
  vertical-align: middle;
  /* 上下中央揃え */
  font-size: 18px;
}

/* --- ヘッダー（青い部分） --- */
.pricing-table thead th {
  background-color: #FBE8E8;
  font-weight: bold;
  color: var(--color-main);
}

/* --- 左側のグレー背景のカラム --- */
.bg-gray {
  background-color: #f5f5f5;
  /* 薄いグレー */
  width: 30%;
  /* 左列の幅目安 */
}

/* --- 詳細カラム（真ん中の列） --- */
.detail-col {
  width: 45%;
  /* 中央列の幅目安 */
}

/* --- 金額カラム（右の列） --- */
.price-col {
  width: 25%;
  /* 右列の幅目安 */
}

@media screen and (max-width: 767px) {
  .tab-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }

  .tab-button {
    width: 100%;
    padding: 10px 0;
  }
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}





/* <!-- ========================
        家族みんなで使えば超お得
        ======================== --> */
.family-savings {
  background-color: #7A5F5F;
  text-align: center;
  margin-top: 100px;
  padding: 30px;
}

.family-savings__heading {
  font-weight: 700;
  font-size: 35px;
  color: var(--color-bg-white);
}

.family-savings__heading p {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .family-savings__heading {
    font-size: 28px;
  }
}

img {
  display: inline;
}

@media screen and (max-width: 768px) {
  .family-savings__heading--img {
    width: 400px;
    margin: 0 auto;
  }
}

/* ========================
   Benefits Section （得点利用例）
======================== */
.benefits-examples {
  position: relative;
  padding: var(--space-80) var(--space-24);
  background-color: var(--color-main);
  background-position: 0 0, 25px 25px;
  background-size: 50px 50px;
  border-radius: 400px 0 400px 0;
  margin-top: 1.6rem;
}

.benefits-examples__heading-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.benefits-examples__heading {
  font-family: var(--font-zen);
  font-size: 40px;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 auto var(--space-60);
  max-width: 600px;
}


.benefits-examples__list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: var(--space-80);
}

.benefits-examples__item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 280px;
  padding: 30px 30px 70px 30px;
}

.benefits-examples__image,
.benefits-examples__content {
  text-align: center;
}

.benefits-examples__image {
  flex: 1;
  min-width: 0;
}

.benefits-examples__content {
  margin-top: 3rem;
}

.benefits-examples__image picture,
.benefits-examples__image img {
  display: block;
  height: auto;
  border-radius: 8px;
  width: 100%;
  margin-top: 1rem;
}

.benefits-examples__image--title {
  font-size: 25px;
}

.benefits-examples__title {
  position: relative;
  font-family: var(--font-zen);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
}

.benefits-examples__red {
  color: var(--color-main);
  font-weight: bold;
  font-size: 76px;
}

.benefits-examples__note,
.benefits-examples__note--small {
  color: #ffffff;
}


.benefits-examples__title-wrap {
  display: flex;
  align-items: center;
  gap: 75px;
  padding: 30px;
  width: 100%;
  justify-content: center;
}

.benefits-examples__image--content {
  display: flex;
  gap: 30px;
}

.benefits-examples__image--text {
  margin-top: 10px;
  text-align: left;
  padding: 0 26px;
  font-size: 1rem;
}

.benefits-examples__inline {
  display: inline-block;
}

.benefits-examples__image--cost {
  text-align: center;
  font-size: 25px;
  margin-top: 10px;
}

@media screen and (min-width: 600px) {
  .spbr {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .benefits {
    padding: var(--space-80) 0;
  }

  .benefits-examples__title {
    font-size: 24px;
  }

  .benefits-examples__title .price-line {
    white-space: nowrap;
  }

  .benefits-examples__red {
    font-size: 46px;
  }

  .benefits-examples {
    border-radius: 60px 0 60px 0;
  }

  .benefits__list {
    flex-direction: column;
    gap: var(--space-40);
  }

  .benefits__item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .benefits__item--reverse {
    flex-direction: column;
  }

  .benefits__title::before {
    width: 28px;
    height: 28px;
  }

  .benefits__image {
    padding-bottom: 0;
  }

  .benefits__title-wrap {
    display: block;
    padding: var(--space-32) var(--space-24) 0;
  }

  .benefits__content .benefits__title {
    display: none;
  }

  .benefits__button {
    padding: 25px 32px 20px;
    box-shadow: 0px 4px 0px #ffd600;
  }

  .benefits-examples__title-wrap {
    flex-direction: column;
    gap: 45px;
  }

  .benefits-examples__title-wrap picture {
    width: 120px;
    height: auto;
  }

  .benefits-examples__image--content {
    flex-direction: column;
  }

  .benefits-examples__image--text {
    padding: 0;
  }
}



/* ========================
    もったいないbunner 
========================*/
.bunner {
  margin-top: 6rem;
}






/* ========================
     ベネポがたまる 
========================*/

.benefit {
  background: #fff;
  padding: 26px 22px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  color: #111;
  margin-top: 4rem;
}

.benefit__wrap {
  max-width: 1050px;
  margin: 0 auto;
}

/* 上段：2カラム */
.benefit__top {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
}

.benefit__lead {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 55px);
  font-weight: 900;
  letter-spacing: .02em;
  text-align: center;
}

.benefit__sub {
  margin-left: 3rem;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
}

.benefit__title {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 1000;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}

.red {
  color: #d7261e;
}

/* ロゴ画像 */
.benefit__logo {
  height: auto;
  display: block;
  width: 250px;
  margin: 0 auto;
}

/* 右側イラスト */
.benefit__right {
  display: flex;

}

.benefit__illust {
  /* width: min(420px, 100%); */
  height: auto;
  display: block;
}

/* 中〜下 */
.benefit__desc {
  margin: 0 0 14px;
  font-size: clamp(18px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.benefit__desc--big {
  margin-top: 10px;
  font-size: clamp(20px, 3.8vw, 40px);
}

.benefit__desc-inline {
  display: inline-block;
}

.benefit__note {
  margin: 0 0 20px;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 800;
  text-align: center;
}

/* 「のマーク」部分（必要なら太さ変更） */
.benefit__mark {
  font-weight: 1000;
}

/* 下の赤コピー */
.benefit__cta {
  margin: 18px 0 0;
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 1000;
  color: #d7261e;
  text-align: center;
  letter-spacing: .01em;
}

/* レスポンシブ：縦積み */
@media (max-width: 900px) {
  .benefit__top {
    grid-template-columns: 1fr;
    display: grid;
  }

  .benefit__logo {
    width: clamp(150px, 20vw, 180px);
    height: auto;
  }

  .benefit__right {
    order: -1;
    justify-content: center;
  }

  .benefit__left {
    order: 0;
  }

  .benefit__title {
    white-space: nowrap;
  }

  .benefit__illust {
    width: clamp(150px, 20vw, 180px);
    height: auto;
  }

  .benefit__desc-inline {
    display: inline;
  }
}




/* ========================
   2個目のCTA
   ハーモニーでんきに申し込む
======================== */

.cta__second {
  background: transparent;
  padding: 44px 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
}

/* 吹き出し */
.cta__second-bubble {
  position: relative;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 18px 34px;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.25;
  text-align: center;
  border: 3px solid;
  font-family: var(--font-noto);
  z-index: 2;
  margin-bottom: 20px;
}

/* 吹き出しのしっぽ */
.cta__second-bubble::after {
  content: "";
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  bottom: -32px;
  width: 0;
  height: 0;
  /* border-left: 18px solid transparent; */
  border-right: 40px solid transparent;
  border-top: 34px solid #fff;
  /* 三角形 */
}

.cta__second-bubble::before {
  content: "";
  position: absolute;
  left: 60%;
  transform: translateX(-44%);
  bottom: -34px;
  width: 42px;
  height: 0;
  /* border-left: 18px solid transparent; */
  border-right: 40px solid transparent;
  border-top: 34px solid #000000;
  /* 三角形 */
}

/* ボタン */
.cta__second-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(540px, 92vw);
  padding: 18px 28px;
  background: #f2c200;
  color: #fff;
  text-decoration: none;
  border-radius: 18px;
  font-family: var(--font-noto);
  position: relative;
  overflow: hidden;
}

/* きらりエフェクト */
.cta__second-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 2.5s ease-in-out infinite;
}

/* 上の小さめ行 */
.cta__second-btnTop {
  font-size: 34px;
  font-weight: 1000;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

/* 下の大きい行 */
.cta__second-btnMain {
  font-size: 40px;
  font-weight: 1000;
  line-height: 1.05;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

/* hover（任意） */
.cta__second-btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  transition: .15s;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .cta-wrapper {
    height: 224px;
  }

  .cta__second-bubble {
    font-size: 22px;
    padding: 14px 18px;
    border-radius: 28px;
    margin-bottom: 22px;
  }

  .cta__second-bubble::after {
    bottom: -35px;
    border-left-width: 45px;
    border-right-width: 40px;
    border-top-width: 37px;
  }

  .cta__second-bubble::before {
    width: 23px;
    border-right: 38px solid transparent;
    bottom: -35px;
    border-top: 35px solid #000000;
  }

  .cta__second-btnTop {
    font-size: 24px;
  }

  .cta__second-btnMain {
    font-size: 28px;
  }

  .cta__second-btn {
    padding: 18px 16px;
    width: min(540px, 80vw);
  }
}

.cta-wrapper {
  position: relative;
  height: 330px;

  @media (max-width: 720px) {
    height: 224px;
  }
}

/* ========================
   Support Section
======================== */
.support {
  margin-top: 2rem;
}

.support__heading {
  display: flex;
  font-family: var(--font-zen);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
  color: var(--color-bg-white);
  margin-bottom: var(--space-16);
  background-color: #547DBB;
  padding: 20px;
  font-size: x-large;
}

.support__title {
  font-size: 0;
}

.support__title-text {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .support__title-text {
    font-size: 18px;
  }
}

.support__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.support__card {
  text-align: center;
  background-color: #BCAEAE;
}

.support__card-title {
  font-family: var(--font-zen);
  font-size: var(--font-md);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-16);
  position: relative;
  padding-left: 53px;
  text-align: left;
  margin: 20px;
}

.support__card-title::before {
  content: attr(data-number);
  position: absolute;
  top: -7px;
  left: -3px;
  width: 46px;
  height: 46px;
  background-color: var(--color-accent);
  color: var(--color-bg-white);
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support__card-image {
  margin-bottom: var(--space-16);
  margin: 20px;
}

.support__card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;

}

.support__card-text {
  font-size: var(--font-sm);
  font-family: var(--font-noto);
  color: var(--color-text);
  line-height: 1.6;
  text-align: left;
  padding: 16px;
  background-color: var(--color-bg-white);
  margin: 20px;
  min-height: 110px;
}

.support__card-text-sub {
  font-size: 0.85rem;
}

@media screen and (max-width: 768px) {
  .support__cards {
    grid-template-columns: 1fr;
  }

  .support__card-title {
    font-size: var(--font-md);
  }

  .support__card-text {
    font-size: var(--font-xs);
    min-height: auto;
  }

  .support__heading h2 {
    font-size: 22px;
  }
}




/* ========================
   簡単手続き Section
======================== */
:root {
  --pink: #fde9ea;
  --red: #c5151a;
  --blueNum: #5c7fb3;
  --ink: #111;
  --card: #fff;
  --shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.procedure {
  max-width: 980px;
  margin: 0 auto;
  background: var(--pink);
  border-radius: 26px;
  padding: 34px 34px 40px;
  position: relative;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  color: var(--ink);
  box-shadow: var(--shadow);
  margin-top: 8rem;
}

/* 上のリボン（中央の赤） */
.procedure__ribbon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #C00000;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  padding: 3px 42px 0 42px;
}

.procedure__ribbon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 0;
  height: 0;
  border-left: 93px solid transparent;
  border-right: 93px solid transparent;
  border-top: 20px solid #C00000;
  /* 少し濃い影 */
}


/* 見出し行 */
.block {
  margin-top: 18px;
}

.block--spaced {
  margin-top: 28px;
}

.block__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.checkIcon {
  width: 45px;
  height: 45px;

}

.block__title {
  margin: 0;
  font-size: 28px;
}

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

/* NG 3つ */
.ng3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}

.ng {
  text-align: center;
}

.ng__circle {
  width: 150px;
  height: 150px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ng__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.procedure__note {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.6;
}

/* ステップ 1-3 */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 18px;
  margin-top: 66px;
}

.step {
  background: var(--card);
  border-radius: 6px;
  padding: 16px 16px 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  position: relative;
  min-height: 260px;
  position: relative;
}

.step__num {
  font-size: 84px;
  font-weight: normal;
  color: var(--blueNum);
  line-height: 1;
  margin-bottom: 8px;
  position: absolute;
  top: -40px;
  /* マイナスで上にはみ出す */
  left: 4px;
  /* マイナスで左にはみ出す */
  width: 140px;
  /* 数字画像サイズ（調整） */
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  font-family: "Calistoga", serif;
}

.step__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  min-height: 42px;
  text-align: center;
  padding: 8px;
}

.step__img {
  border-radius: 3px;
  overflow: hidden;
  background: #f3f3f3;
}

.step__img img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.step__fine {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}

/* 横矢印（>>） */
.arrow {
  width: 34px;
  height: 34px;
  margin-top: 120px;
  position: relative;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--red);
}

.arrow::before {
  left: 0;
}

.arrow::after {
  left: 12px;
  opacity: .9;
}

/* 下向き矢印 */
.downArrow {
  position: relative;
  width: 0;
  height: 26px;
  /* 矢印2個分の高さ */
  margin: 14px auto 12px;
}

/* 上の矢印 */
.downArrow::before,
.downArrow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(1565%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid #c5151a;
}

/* 上 */
.downArrow::before {
  top: 0;
}

/* 下 */
.downArrow::after {
  top: 14px;
  /* ここで上下の間隔を調整 */
}

/* ステップ4 横長 */
.step4 {
  display: grid;
  grid-template-columns: auto 460px;
  gap: 18px;
  align-items: center;
  background: var(--card);
  border-radius: 6px;
  padding: 35px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
  position: relative;
}

.step4__num {
  font-size: 84px;
  font-weight: normal;
  color: var(--blueNum);
  line-height: 1;
  padding-right: 6px;
  position: absolute;
  top: -40px;
  /* マイナスで上にはみ出す */
  left: 7px;
  /* マイナスで左にはみ出す */
  width: 140px;
  /* 数字画像サイズ（調整） */
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  font-family: "Calistoga", serif;
}

.step4__img {
  border-radius: 3px;
  overflow: hidden;
  background: #f3f3f3;
}

.step4__img img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.step4__headline {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 1000;
  line-height: 1.5;
}

.step4__body {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.step4__fine {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

.step4__fine a {
  color: #3a8dde;
}

.procedure-red {
  color: var(--red);
  font-weight: 1000;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .procedure {
    border-radius: 0;
  }

  .procedure__ribbon {
    font-size: 26px;
    padding: 8px 28px 0 28px;
  }

  .procedure__ribbon::after {
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
  }

  .ng3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ng__circle {
    width: 130px;
    height: 130px;
  }

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


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

  .step4__num {
    margin-bottom: 6px;
  }

  .step4__img img {
    height: 200px;
  }
}

@media (max-width: 767px) {

  .block {
    margin-top: 3rem;
  }

  .procedure__note {
    margin-top: 2rem;
  }

  .block__title {
    font-size: 24px;
  }

  /* 親要素を2列に変更 */
  .ng3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    /* 縦の余白を少し広めに */
  }

  /* 1番目の要素（紙の申込書）を2列分使って中央に配置 */
  .ng3 .ng:nth-child(1) {
    grid-column: 1 / 3;
    /* 1列目から3列目の手前まで＝全抜き */
    justify-self: center;
    /* 中央寄せ */
    width: 80%;
    /* 必要に応じて横幅を調整 */
  }

  /* 2番目と3番目は自動的に1列ずつ（左右）に並びます */

  /* スマホで見やすいよう円のサイズを微調整 */
  .ng__circle {
    width: 120px;
    height: 120px;
  }

  /* ラベルの文字サイズ調整 */
  .ng__label {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 8px;
  }

  .arrow,
  .downArrow {
    display: block;
    /* display: none を上書き */
    width: 40px;
    height: 40px;
    margin: 20px auto;
    /* 上下の余白を作り中央寄せ */
    position: relative;
    transform: none;
    /* 回転のリセット */
  }

  /* 2. 三角形を「右向き」から「下向き」に変更 */
  .arrow::before,
  .arrow::after,
  .downArrow::before,
  .downArrow::after {
    left: 50%;
    transform: translateX(-50%);
    border-left: 14px solid transparent;
    /* 左右を透明に */
    border-right: 14px solid transparent;
    /* 左右を透明に */
    border-top: 18px solid #c5151a;
    /* 上側に色をつけて下向きにする */
    border-bottom: 0;
    /* 下側のボーダーを消す */
  }

  /* 3. 2つの三角形の重なり（上下の間隔）を調整 */
  .arrow::before,
  .downArrow::before {
    top: 0;
  }

  .arrow::after,
  .downArrow::after {
    top: 15px;
    /* 下側の三角形を少しずらす */
  }

  /* 4. step自体の高さ制限を解除（スマホで文字がはみ出さないように） */
  .step {
    min-height: auto;
    margin-bottom: 0;
  }
}


/* ========================
   Price Info Section
======================== */
.price {
  background-color: var(--color-main);
  padding-top: 5rem;
  text-align: center;
  margin-top: 5rem;
}

.price__heading {
  margin-bottom: var(--space-40);
}

.price__title {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--color-bg-white);
  font-family: var(--font-zen);
}

.price__desc {
  font-size: var(--font-sm);
  font-family: var(--font-noto);
  color: var(--color-bg-white);
}

.price__diagram {
  background-color: var(--color-bg-white);
  border-radius: 8px;
  padding: 10px;
}

.price__diagram img {
  width: 100%;
  height: auto;
  display: block;
  background-color: var(--color-bg-white);
  border-radius: 10px;
}

.price__content {
  padding: var(--space-40);
  display: flex;
  flex-direction: column;
  gap: var(--space-60);
}

.price__divider {
  border: dashed 1px var(--color-sub);
  width: 100%;
}


.price__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}


.price__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 62px;
  background-color: #7A5F5F;
  padding: 40px;
}

.price__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-family: var(--font-noto);
  color: #7A5F5F;
  border: 2px solid var(--color-main);
  border-radius: 9999px;
  padding: 8px 18px;
  background-color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.price__button:hover {
  background-color: var(--color-bg-white);
}

.price__icon-external {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .price__compare {
    flex-direction: column;
  }

  .price__item {
    flex-direction: column;
  }

  .price__button {
    width: 100%;
    justify-content: center;
  }
}


.border-lightblue {
  border: solid 1px var(--color-bg-white);
  width: 100%;
}


.icon-external {
  width: 16px;
  height: 16px;
}

.prices__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  color: #111;
}

/* 各ブロック */
.prices__compare__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 見出し（アイコン＋文字） */
.prices__compare__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff;
  /* 黒背景想定 */
}

.icon {
  font-size: 20px;
  line-height: 1;
}

.icon img {
  max-height: 24px;
  width: auto;
}

.icon--red {
  color: #e60012;
}

.label {
  font-size: 16px;
  font-weight: 900;
}

/* 吹き出し共通 */
.prices__bubble {
  position: relative;
  padding: 20px 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: justify;
}

.prices__bubble-text {
  font-size: 0;
}

.prices__bubble-inline {
  font-size: 15px;
}

/* 上の三角 */
.prices__bubble::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 70px;
  /* 三角の位置調整 */
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 20px solid;
}

/* 色違い */
.bubble--white {
  background: #fff;
  margin-top: 1.5rem;
}

.bubble--white::before {
  border-bottom-color: #fff;
}

.bubble--pink {
  background: #f1dfde;
  margin-top: 1.5rem;
}

.bubble--pink::before {
  border-bottom-color: #f1dfde;
}

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

  .prices__compare__item {
    align-items: center;
  }

  .prices__bubble {
    border-radius: 24px;
    padding: 16px 20px;
    font-size: 14px;
    text-align: center;
  }

  .price__links {
    gap: 34px;
  }
}

.text-bold {
  font-weight: bold;
}

/* ========================
   FAQ Section
======================== */
.faq {
  background-color: #fff;
  padding: var(--space-80) var(--space-24);
}

.faq__heading {
  text-align: center;
  margin-bottom: var(--space-40);
}

.faq__en {
  font-size: var(--font-3xl);
  font-family: var(--font-zen);
  color: var(--color-sub);
  letter-spacing: 0.1em;
}

.faq__ja {
  font-size: var(--font-xl);
  font-weight: 700;
  font-family: var(--font-zen);
  color: var(--color-main);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.faq__item {
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-sub);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding: var(--space-16) var(--space-24);
  background-color: var(--color-sub);
  color: #fff;
  font-size: var(--font-sm);
  font-family: var(--font-noto);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border: none;
}

.faq__icon {
  color: var(--color-bg-white);
  font-family: var(--font-zen);
  font-size: var(--font-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq__question-text {
  flex: 1;
}

.faq__toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__answer {
  display: none;
  padding: var(--space-16) var(--space-24);
  background-color: #fbe8e8;
  font-size: var(--font-sm);
  font-family: var(--font-noto);
  color: var(--color-text);
  line-height: 1.6;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.faq__item.is-open .faq__toggle {
  transform: rotate(0deg);
}

.faq__confirm {
  background-color: var(--color-bg-cream);
  padding: var(--space-80) 0;
  margin-top: var(--space-60);
}

.faq__confirm-title {
  font-size: var(--font-md);
  font-weight: 700;
  font-family: var(--font-zen);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-40);
}

.faq__documents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-16);
  margin: 0 auto var(--space-40);
}

.faq__document {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-sm);
  font-family: var(--font-noto);
  font-weight: 500;
  background-color: #fff;
  color: var(--color-text);
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-decoration: none;
  transition: background-color 0.2s;
}

.faq__document:hover {
  background-color: #f8f8f8;
}

.faq__label {
  font-size: var(--font-xs);
  font-weight: 700;
  font-family: var(--font-noto);
  padding: 0 10px;
  border-radius: 9999px;
  color: #fff;
  white-space: nowrap;
}

.faq__label--pdf {
  background-color: #00c48d;
}

.faq__label--web {
  background-color: #3a8dde;
}

.faq__note {
  font-size: var(--font-xs);
  font-family: var(--font-noto);
  color: var(--color-text);
  line-height: 1.8;
  text-align: left;
  margin: 0 auto;
}

.faq__note p {
  margin-bottom: var(--space-16);
}

@media screen and (max-width: 768px) {
  .faq__documents {
    grid-template-columns: 1fr;
  }
}


/* ========================
  footer
======================== */
.footer {
  background-color: #292e37;
  /* 背景：ダークグレー */
  color: #fff;
  padding: var(--space-80) 0 var(--space-60);
  font-family: var(--font-noto);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-24);
  text-align: center;
}

.footer__link {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer_border {
  border: solid 1px #3d424c;
  width: 100%;
}

.footer__logo img {
  height: 42px;
  /* お好みで調整 */
  width: auto;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-24);
  justify-content: center;
  font-size: var(--font-sm);
  color: #fff;
}

.footer__nav li {
  position: relative;
  list-style: none;
}

.footer__nav li::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: #555;
}

.footer__nav li:last-child::after {
  display: none;
}

.footer__nav a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__copyright {
  font-size: var(--font-xs);
  color: #888;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    align-items: center;
  }

  .footer__nav {
    flex-direction: column;
  }

  .footer__link {
    flex-direction: column;
    gap: var(--space-24);
  }

  .footer__nav li::after {
    content: none;
  }
}

/* ========================
  追従CTAバー
======================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(192, 0, 0, 0.9);
  z-index: 9999;
  padding: 14px 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-noto);
  transition: transform 0.2s ease;
  flex: 1;
  max-width: 420px;
}

.sticky-cta__btn:hover {
  transform: translateY(-2px);
}

.sticky-cta__btn--phone {
  background-color: #fff;
  color: #C00000;
  box-shadow: 0 6px 0 #a00000;
}

.sticky-cta__btn--web {
  background-color: #FFD700;
  color: #C00000;
  box-shadow: 0 6px 0 #e6c200;
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.sticky-cta__label {
  font-size: 12px;
  font-weight: 500;
}

.sticky-cta__title {
  font-size: 18px;
  font-weight: 700;
}

.sticky-cta__arrow {
  font-size: 18px;
  color: inherit;
}

@media screen and (max-width: 768px) {
  .sticky-cta {
    padding: 10px 12px;
  }

  .sticky-cta__inner {
    gap: 8px;
  }

  .sticky-cta__btn {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 4px 0 #a00000;
  }

  .sticky-cta__btn--web {
    box-shadow: 0 4px 0 #e6c200;
  }

  .sticky-cta__text {
    align-items: center;
  }

  .sticky-cta__label {
    font-size: 10px;
  }

  .sticky-cta__title {
    font-size: 14px;
    line-height: 110%;
  }

  .sticky-cta__arrow {
    display: none;
  }
}