/* ==========================================================
   省エネ家電買い換えキャンペーン2026 — 共通スタイル
   対象ページ: index.html（市民向け）/ stores.html（店舗向け）
   ========================================================== */

/* ---------- Variables ---------- */
:root {
  --color-primary:    #013938;   /* dark teal-green（ボタン・フッター・お問い合わせ等） */
  --color-lime:       #CFD200;   /* lime green（アクセント） */
  --color-teal-bg:    #C9EAEB;   /* 事業の目的 section bg */
  --color-yellow:     #F5E634;   /* yellow（対象家電・対象者 headerバー） */
  --color-yellow-mid: #F0C000;   /* darker yellow */
  --color-red:        #E60000;   /* warning red */
  --color-navy:       #2B377E;   /* エアコンカード */
  --color-green-mid:  #005219;   /* 冷蔵庫カード */
  --color-cream:      #F1F6E8;   /* lead / FAQ section bg */
  --color-store-bg:   #E4EB8E;   /* 登録店舗 wave bg */
  --color-white:      #FFFFFF;
  --color-text:       #242424;
  --color-text-light: #707070;
  --color-border:     #DDDDDD;
  --color-lime-light: #CCE850;  /* label-bar / products-badge */
  --color-lime-bg:    #CBE850;  /* campaign-period label */
  --color-green-answer: #CBE2A2; /* FAQ answer bg */
  --color-orange-answer: #EA5609; /* FAQ A badge */
  --color-shadow-navy: #878FC3; /* aircon btn shadow */
  --color-shadow-green: #71BA88; /* fridge btn / CTA shadow */
  --color-hover-bg:     #f5f5f5; /* nav hover bg */
  --color-red-dark:     #D93025; /* alert / warning text */
  --color-green-border: #227d29; /* 対象ボックス border */
  --color-knowledge-bg: #f0f8f0; /* 豆知識 body bg */
  --color-bullet:       #4D8500; /* list bullet */
  --color-gray-light:   #EBEBEB; /* YouTube placeholder bg */

  --inner-width: 1130px;
  --inner-width-wide: 1210px;
  --section-gap: 65px;
  --radius: 8px;
  --font: 'Noto Sans JP', sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
}
.page-stores { padding-bottom: 140px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .8; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.inner {
  max-width: var(--inner-width);
  margin: 0 auto;
}
.inner--wide {
  max-width: var(--inner-width-wide);
}
.deco-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sp-only  { display: none; }
.md-only  { display: none; }
.pc-only  { display: inline; }
.section--triangle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 100vw solid transparent;
  border-right: 100vw solid transparent;
  pointer-events: none;
}

span.sub {
  font-size: 0.8em;
  vertical-align: baseline;
  line-height: 0;
}

.mt-sm {
  margin-top: 20px !important;
}

.mb-sm {
  margin-bottom: 16px !important;
}

.color-primary {
  color: var(--color-primary) !important;
}

.color-red-dark {
  color: #D93025 !important;
}

  /* -------------------------------------------------------------------------
   * アクセシビリティ：スクリーンリーダー用テキスト
   * ------------------------------------------------------------------------- */
   .screenReaderText {
	  position: absolute !important;
	  width: 1px;
	  height: 1px;
	  padding: 0;
	  margin: -1px;
	  overflow: hidden;
	  clip: rect(0, 0, 0, 0);
	  white-space: nowrap;
	  border: 0;
  }


/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: relative;
  z-index: 10;
  max-width: 1438px;
  margin: 0 auto;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1438px;
  margin: 0 auto;
  height: 121px;
  padding: 0 24px;
  background: var(--color-white);
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 72px;
  /* width: clamp(160px, 20vw, 240px); */
}
.header__cta {
  display: flex;
  gap: 25px;
  flex-shrink: 0;
  position: absolute;
  right: 24px;
  top: 0;
  height: 121px;
  align-items: center;
}

/* PC ナビゲーション行 */
.header__nav {
  padding-inline: 24px;
}
.header__nav ul {
  display: flex;
  list-style: none;
  max-width: 1438px;
  margin: 0 auto;
  background: var(--color-white);
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
.header__nav li {
  flex: 1;
  border-right: 1px solid var(--color-primary);
}
.header__nav li:first-child {
  border-left: 1px solid var(--color-primary);
}
.header__nav a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 78px;
  padding: 0 46px 0 10px;
  font-weight: 700;
  line-height: 1.4;
  /* white-space: nowrap; */
  transition: background .2s;
}
.header__nav a:hover {
  background: var(--color-hover-bg);
  opacity: 1;
}
.header__nav-arrow {
  width: 26px;
  height: 26px;
  position: absolute;
  right: 16px;
}
.hamburger {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 23px 45.5px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.btn__icon {
  width: 16px;
  height: 16px;
}
.btn--citizen {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  box-shadow: 0 5px 0 var(--color-shadow-green);
}
.btn--citizen .btn__icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}
.btn--shop {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 5px 0 var(--color-shadow-green);
}
.btn--shop .btn__icon {
  width: 26px;
  height: 26px;
}
.btn--citizen:hover,
.btn--shop:hover { opacity: .8; }

.page-stores {
	& .btn--citizen {
		background: var(--color-white);
		color: var(--color-primary);
		border: 2px solid var(--color-primary);
		box-shadow: 0 5px 0 var(--color-shadow-green);

		& .btn__icon {
			filter: none;
		}
	}
	& .btn--shop {
		background: var(--color-primary);
		color: var(--color-white);
		border: 2px solid var(--color-primary);
		box-shadow: 0 5px 0 var(--color-shadow-green);
		& .btn__icon {
			filter: brightness(0) invert(1);
		}
	}
  }

/* ---------- SP Menu ---------- */
.sp-menu {
  display: none;
}


/* ==========================================================
   KV
   ========================================================== */
.kv {
  line-height: 0;
  margin-top: -80px; /* nav行の下からKVが始まるようにオーバーラップ */
}
.kv picture,
.kv img { width: 100%; }

@media (min-width: 768px) {
.kv {
  background-image: url('../images/kv_pc_back.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv picture {
  margin-top:clamp(60px, 6vw, 80px);
  height: 520px;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  & img {
    width: 100%;
    height: auto;
  }
}
}

/* ==========================================================
   キャンペーン期間
   ========================================================== */
.campaign-period {
  background: var(--color-cream);
  padding: 0 24px 40px;
}
.campaign-period__box {
  max-width: var(--inner-width-wide);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  top: -66px;
  margin-bottom: -66px;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}
.campaign-period__label {
  background: var(--color-lime-bg);
  color: var(--color-text);
  text-align: center;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
.campaign-period__date {
  background: var(--color-white);
  text-align: center;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(3.5vw, 38px);
  font-weight: 700;
  letter-spacing: .05em;
}


/* ==========================================================
   LEAD
   ========================================================== */
.lead {
  position: relative;
  background: var(--color-cream);
  padding: var(--section-gap) 0;
  overflow: hidden;
}
.lead__confetti-l {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(80px, 12vw, 180px);
}
.lead__confetti-r {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(80px, 12vw, 180px);
}
.lead .inner { position: relative; max-width: none; }
.lead__catchcopy {
  text-align: center;
  margin-bottom: 25px;
}
.lead__catchcopy img {
  width: 100%;
  max-width: 964px;
  margin: 0 auto;
}
.lead__text {
  text-align: center;
  margin-bottom: 40px;
}

/* --- 予算ボックス --- */
.budget {
  position: relative;
  background: var(--color-primary) url('../images/box_1.jpg') center/cover no-repeat;
  border-radius: 12px;
  padding: 40px 40px 50px 40px;
  max-width: var(--inner-width-wide);
  margin: 30px auto 0;
}
.budget__warning-strip {
  background: var(--color-white);
  border-radius: 6px;
  text-align: center;
  padding: 5px 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-red-dark);
  margin-bottom: 10px;
}
.budget__total {
  color: var(--color-white);
  font-size: 24px;
  margin-bottom: 18px;
  padding: 0 4px;
  text-align: center;
}
.budget__total strong {
  font-size: 48px;
  font-weight: 700;
  margin-left: 2px;
}
.budget__bottom-box {
  border-radius: 8px;
  overflow: hidden;
}
.budget__status-bar {
  background: var(--color-yellow);
  text-align: center;
  padding: 10px 16px;
  font-size: 28px;
  font-weight: 700;
}
.budget__status-bar em {
  font-style: normal;
  font-size: 32px;
  color: var(--color-red);
  line-height: 1;
}
.budget__amount-row {
  background: var(--color-white);
  padding: 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.budget__remaining-amount {
  font-size: 65px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  text-align: center;
  flex: 1;
  padding-bottom: 0.5rem;
}
.budget__remaining-unit {
  font-size: 36px;
  font-weight: 900;
}
.budget__remaining-date {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}
.budget__aside {
  position: absolute;
  right: -93px;
  bottom: -65px;
  width: 180px;
}
.budget__mascot {
  width: 180px;
  display: block;
}
.budget-note {
  font-size: 16px;
  color: var(--color-text);
  text-align: center;
  margin-top: 25px;
}


/* ==========================================================
   対象
   ========================================================== */
.target {
  position: relative;
  padding: 250px 0 var(--section-gap);
  background: var(--color-white);
  overflow: hidden;
}
.target::before { border-top: 150px solid var(--color-cream); }
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 40px;
}
.section-title__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.target .section-title__icon {
  height: 48px;
  width: auto;
}
.shops .section-title__icon {
  height: 48px;
  width: auto;
}
.application .section-title__icon {
  height: 48px;
  width: auto;
}
.faq .section-title__icon {
  height: 48px;
  width: auto;
}
.section-title--lime .section-title__icon {
  filter: none;
}

.target__box {
  max-width: var(--inner-width-wide);
  margin: 0 auto 80px;
  border: 3px solid var(--color-green-border);
  border-radius: 12px;
  overflow: hidden;
  padding: 37px 37px 30px;
}
.target__row {
  padding: 0;
}
.target__subtitle {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-yellow);
  border-radius: 12px;
  padding: 10px 34px;
  height: 81px;
  box-sizing: border-box;
}
.target__subtitle img { width: 33px; }

.target__appliance-body {
  display: flex;
  gap: 25px;
  padding: 20px 0;
}
.target__appliance-info { flex: 1; }
.target__appliance-img {
  flex-shrink: 0;
  width: 45%;
  display: flex;
  justify-content: center;
}
.target__appliance-img img {
  height: 205px;
  width: auto;
}
.target__check {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 32px; 
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.target__check img { width: 48px; }
.target__note {
  color: var(--color-text);
}
.target__note-em {
  font-style: normal;
  color: var(--color-red);
  font-weight: 700;
}
.target__person-body {
  padding: 20px 0 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.target__note--list {
  margin-top: 20px;
  color: var(--color-text);
}

.target__note--list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.target__note--list li::before {
  flex-shrink: 0;
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
}

.target__note--person {
  padding-bottom: 20px;
  color: var(--color-text);
}

.target__title-wrapper {
  max-width: var(--inner-width-wide);
  margin: 0 auto;
}

/* --- 対象製品一覧 --- */
.target-products {
  max-width: var(--inner-width-wide);
  margin: 20px auto 0;
}
.target-products__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.target-products__title img { width: 40px; }
.target-products__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}
.target-products__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  text-decoration: underline;
}
.target-products__pdf { width: 40px; }
.target-products__external {
  color: var(--color-text);
  white-space: nowrap;
}
.target-products__external a {
  color: var(--color-primary);
  text-decoration: underline;
}
.target-products__ext-icon { display: inline; width: 18px; vertical-align: middle; }


/* ==========================================================
   登録店舗
   ========================================================== */
.shops {
  background: transparent;
  padding: calc(var(--section-gap) + 60px) 0;
  position: relative;
}
.shops::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-store-bg);
  clip-path: polygon(0% 0%, 50% 13%, 100% 0%, 100% 87%, 50% 100%, 0% 87%);
  z-index: 0;
}
.shops__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  max-width: var(--inner-width-wide);
  margin: 0 auto;
  padding: 30px 0;
}
.shops__content { flex: 1; order: 1; }
.shops__mascot {
  flex-shrink: 0;
  order: 2;
}
.shops__mascot img {
  height: 277px;
  width: auto;
}
.shops__recruiting {
  margin-bottom: 10px;
}
.shops__recruiting-link {
  display: inline-block;
  color: var(--color-red);
  font-size: 28px;
  font-weight: 700;
}
.shops__text {
  margin-bottom: 10px;
}

.shops__link a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  text-decoration: underline;
  justify-content: space-between;
  @media (max-width: 767px) {
    justify-content: flex-start;
    gap:0;
  }
}
.shops__pdf { width: 40px; }


/* ==========================================================
   事業の目的
   ========================================================== */
.purpose {
  padding: var(--section-gap) 0;
}
.purpose .inner { max-width: var(--inner-width-wide); }
.purpose .section-title__icon { height: 48px; width: auto; }
.purpose__lead {
  font-size: 16px;
  margin-bottom: 24px;
}

/* --- カードエリア --- */
.purpose__cards-wrap {
  display: grid;
  grid-template-columns: 48% 22.5% 22.5%;
  justify-content: space-between;
  background: var(--color-teal-bg);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
  padding: 37px;
}
.purpose__card--reason {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.purpose__card--reason .purpose__card-title {
  background: var(--color-primary);
  height: 81px;
  display: flex;
  align-items: center;
  border-radius: 12px;
}
.purpose__card-title-img { height: 81px; width: auto; }
.purpose__card--reason .purpose__card-body {
  flex: 1;
  padding: 0;
}
.purpose__card--reason .purpose__nav-main {
  margin: 0;
}
.purpose__card--reason .purpose__card-body p {
  line-height: 1.8;
}
.purpose__nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 4px 0 var(--color-primary);
}
.purpose__nav-text { flex: 1; text-align: center; color: var(--color-primary); }
.purpose__nav-icon { width: 20px; flex-shrink: 0; }
.purpose__nav-ext { font-size: 16px; }

.purpose__card-title-bg {
  background: var(--color-white);
  border-radius: 12px 12px 0 0;
}
.purpose__card--aircon,
.purpose__card--fridge {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}
.purpose__card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 20px;
  color: var(--color-white);
  margin: 10px;
  height: 69px;
  box-sizing: border-box;
}
.purpose__card--aircon .purpose__card-title { background: var(--color-navy); border-radius: 10px; }
.purpose__card--fridge .purpose__card-title { background: var(--color-green-mid); border-radius: 10px; }
.purpose__card--reason .purpose__card-title { margin: 0; }
.purpose__card-body {
  padding: 20px;
  flex: 1;
  text-align: left;
  border-radius: 0 0 12px 12px;
}
.purpose__card--aircon .purpose__card-body,
.purpose__card--fridge .purpose__card-body {
  position: relative;
  z-index: 1;
  padding: 20px 10px;
  margin-bottom: 16px;
  text-align: center;
  background: var(--color-white);
}
.purpose__card--aircon .purpose__card-body::after,
.purpose__card--fridge .purpose__card-body::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--color-white);
  z-index: 1;
}
.purpose__card-desc { font-size: 21px; font-weight: 700; }
.purpose__reduction {
  font-size: 16px;
  font-weight: 700;
}
.purpose__reduction-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--color-orange-answer);
}

.purpose__knowledge-btn {
  position: relative;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  padding-left: 32px;
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-white);
  transition: opacity .2s;
  box-shadow: 0 4px 0 var(--color-shadow-navy);
}
.purpose__knowledge-btn:hover { opacity: .85; }
.purpose__knowledge-btn--aircon { background: var(--color-navy); }
.purpose__knowledge-btn--fridge { background: var(--color-green-mid); box-shadow: 0 4px 0 var(--color-shadow-green); }
.purpose__knowledge-btn-icon { position: absolute; top: 10px; left: 10px; width: 20px; height: 20px; filter: brightness(0) invert(1); }
.purpose__knowledge-icon { font-size: 40px; font-weight: 400;}
.purpose__knowledge-body {
  padding: 16px 20px;
  font-size: 14px;
  background: var(--color-knowledge-bg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.purpose__knowledge-body.is-open {
  max-height: 600px;
}

.luminous_box {
	max-width: 100%;
  z-index: 100;
}

.lum-lightbox {
  z-index: 100;
}

.lum-lightbox-inner {
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lum-lightbox-image-wrapper {
  max-width: 1130px !important;
  width: 100% !important;
}

.lum-lightbox-inner img{
  max-height: unset;
  width: 100%;
}

/* --- 対象者・受付期間 --- */
.purpose__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.purpose__meta-card {
  border-radius: 12px;
  overflow: hidden;
}
.label-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-lime-light);
  border-radius: 12px;
  padding: 12px 40px;
}
.purpose__meta-label img { height: 36px; width: auto; }
.purpose__meta-card p {
  padding: 16px 0;
  background: var(--color-white);
}
.purpose__meta-card:last-child p {
  font-size: 24px;
}

/* --- 補助額 --- */
.subsidy {
  margin-bottom: 25px;
}
.subsidy__title {
  width: 100%;
}
.subsidy__title img { height: 36px; width: auto; }
.subsidy__note {
  padding: 16px 0 36px;
  color: var(--color-text);
}
.subsidy__table-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-primary);
}
.subsidy__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-weight: 700;
}
.subsidy__table thead th:nth-child(1) { width: 20%; }
.subsidy__table thead th:nth-child(2) { width: 27%; }
.subsidy__table thead th:nth-child(3) { width: 27%; }
.subsidy__table thead th:nth-child(4) { width: 26%; }
.subsidy__table thead th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  border-left: 1px solid var(--color-white);
}
.subsidy__table thead th:first-child { border-left: none; }
.subsidy__table tbody td {
  padding: 9px 30px;
  border-top: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
  text-align: center;
  vertical-align: middle;
}
.subsidy__table tbody .subsidy__appliance { border-left: none; }
.subsidy__appliance { background: var(--color-cream); font-size: 24px; }
.subsidy__table tbody td:last-child {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-orange-answer);
  text-align: right;
}
.subsidy__table tbody tr:nth-child(4) .subsidy__appliance { border-radius: 0 0 0 11px; }
.subsidy__table tbody tr:last-child td:last-child              { border-radius: 0 0 11px 0; }


/* ==========================================================
   申請方法
   ========================================================== */
.application {
  padding: var(--section-gap) 0;
  background: var(--color-white);
}
.application .inner { max-width: var(--inner-width-wide); }
/* .application__text {
  margin-bottom: 75px;
} */
.application__text a {
  color: var(--color-primary);
  text-decoration: underline;
}
/* products box */
.products-box {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  padding: 40px;
  background: url('../images/box_2.jpg') center/cover no-repeat;
}
.products-box__header {
  background: var(--color-white);
  padding: 20px 24px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 20px;
}
.products-box__header img {
  display: block;
  margin: 0 auto;
  height: 62px;
  width: auto;
}
.products-box__tagline-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.products-box__left {
  flex: 1 0 auto;
  /* min-width: 0; */
  @media (max-width: 1279px) {
    flex: none;
  }
}
.products-box__tagline {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.products-box__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.products-box__pair {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 258px;
  padding: 8px 16px;
  background: var(--color-lime-light);
  border-radius: 6px;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
  @media (max-width: 767px) {
    gap: 6px;
  }
}
.products-badge::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--color-lime-light);
}
.products-badge img {
  width: auto;
  filter: brightness(0) saturate(100%) invert(14%) sepia(57%) saturate(900%) hue-rotate(149deg) brightness(90%);
  @media (max-width: 767px) {
    height: 20px;
  }
}
.products-box__mascot {
  width: auto;
}
.products-box__pair:first-child .products-box__mascot { height: 188px; }
.products-box__pair:last-child .products-box__mascot { height: 178px; margin-top: 8px; }
.products-box__right img {
  height: 300px;
  width: auto;
}

/* ==========================================================
   よくある質問
   ========================================================== */
.faq {
  position: relative;
  background: var(--color-cream);
  padding: 300px 0 100px;
  overflow: hidden;
}
.faq::before { border-top: 150px solid var(--color-white); }
.faq__confetti-l {
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: clamp(60px, 10vw, 140px);
}
.faq__confetti-r {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: clamp(60px, 10vw, 140px);
}
.faq .inner { position: relative; max-width: var(--inner-width-wide); }

/* --- FAQ list --- */
.faq__list {
  margin-bottom: 50px;
}

.faq__a-list {
  padding-top: 4px;
  padding-left: 20px;
  list-style: disc;
}
.faq__a-list li::marker {
  content: "⚫︎";
  color: var(--color-primary);
}

.faq__list.mb0 {
  margin-bottom: 0;
}
.faq__item {
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  list-style: none;
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-primary);
}
.faq__q::marker, .faq__q::-webkit-details-marker { display: none; }
.faq__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}
.faq__q-badge {
  background: var(--color-lime);
  color: var(--color-text);
}
.faq__toggle {
  margin-left: auto;
  font-size: 28px;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__a.is-open {
  max-height: 600px;
}
.faq__a-inner {
  display: flex;
  gap: 16px;
  background: var(--color-green-answer);
  padding: 18px 24px;
  margin: 20px 40px;
  border-radius: 12px;
}
.faq__a-badge {
  background: var(--color-white);
  color: var(--color-orange-answer);
}
.faq__a p { padding-top: 4px; }

/* --- なごっちゃアプリボタン --- */
.faq__app-btn-wrap { text-align: center; }
.faq__app-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.faq__app-btn-wrap-inner {
  flex: 1 1 calc(50% - 20px);
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px 60px;
  @media (max-width: 767px) {
    padding: 40px 15px;
  }
}

.faq__app-btn-wrap-inner-title {
  color: var(--color-orange-answer);
  font-size: 1.5rem;
  font-weight: 700;
  @media (max-width: 767px) {
    font-size: 1rem;
  }
}

.faq__app-btn-wrap-inner-text {
  color: #013938;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
}
.btn--nagoccha {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  padding: 0 60px 0 120px;
  font-size: 24px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  height: 110px;
  position: relative;
}
.btn--solar {
  padding: 0 60px;
}
.btn--nagoccha .btn__text {
  flex:1;
  font-size: 1.2rem;
}
.btn--nagoccha .btn__icon {
  position: absolute;
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.btn--nagoccha .btn__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  width: 100px;
  height: auto;
  object-fit: contain;
  object-position: center;
  object-fit: contain;
  @media (max-width: 767px) {
    left: 8px;
    width: clamp(50px, 15vw, 80px);
  }
}


/* ==========================================================
   お問い合わせ
   ========================================================== */
.contact {
  position: relative;
  background: var(--color-primary) url('../images/footer_pc.png') center calc(50% + 80px)/cover no-repeat;
  color: var(--color-white);
  padding: 225px 0 50px;
  overflow: hidden;
}
.contact::before { border-top: 150px solid var(--color-cream); }
.page-stores .contact::before { border-top-color: var(--color-white); }
.contact__deco-l {
  position: absolute; left: 0; bottom: 0;
  width: clamp(80px, 14vw, 200px);
  opacity: .6;
}
.contact__deco-r {
  position: absolute; right: 0; bottom: 0;
  width: clamp(80px, 14vw, 200px);
  opacity: .6;
}
.contact .inner { position: relative; text-align: center; }
.contact__bureau {
  font-size: 21px;
  margin-bottom: 25px;
}
.contact__title {
  margin-bottom: 50px;
}
.contact__title-img {
  display: block;
  margin: 0 auto;
  height: 57px;
  width: auto;
}
.contact__boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, 565px);
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  text-align: left;
}
.contact__box {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  color: var(--color-text);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.contact__box-inner {
  background: var(--color-white);
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__box-title {
  font-size: 21px;
  font-weight: 700;
  background: var(--color-lime);
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 12px 12px 0 0;
}
.contact__tel {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
.contact__tel a { color: var(--color-text); }
.contact__mail {
  line-height: 1.5;
}
.contact__fax {
  font-size: 28px;
  font-weight: 700;
}

.contact__tel-time {
  font-size: 18px;
  vertical-align: middle;
  /* color: var(--color-text-light); */
}

/* --- プライバシーポリシー --- */
.privacy__wrap {
  text-align: center;
  margin-top: 20px;
}
.privacy__link {
  color: var(--color-white);
  font-size: 1rem;
  text-decoration: underline;
}

/* ==========================================================
   COMING SOON PAGE
   ========================================================== */
.coming-banner {
  text-align: center;
  margin-top: -95px;
  position: relative;
}
.coming-banner picture,
.coming-banner img {
  width: 100%;
  max-width: 1285px;
  display: block;
  margin: 0 auto;
}


/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--color-primary);
  text-align: center;
  padding: 16px;
}
.footer__copy {
  color: var(--color-white);
  font-size: 14px;
}
.footer picture,
.footer img { width: 100%; }

  
/* ==========================================================
   RESPONSIVE — TABLET ( ≤1279px )
   ========================================================== */
@media (max-width: 1279px) {
  .md-only { display: inline; }
  .md-only.pc-only { display: none !important; }
  .budget { margin-inline: 24px; }
  .lead { overflow: visible; }
  .target { padding-inline: 4.13vw; }
  .inner { margin-inline: 24px; }
  .budget__amount-row { flex-direction: column; }
  .budget__aside {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 4.13vw;
    position: relative;
    right: unset;
    bottom: unset;
    bottom: unset;
    left: unset;
    transform: unset;
  }
  .budget__aside picture {
    display: block;
    width: clamp(320px, 80vw, 520px);
  }

  .budget__mascot {width: 100%;}
  .budget__remaining-date { position: static; text-align: right; }  
}

/* ==========================================================
   RESPONSIVE — SP ( ≤767px )
   ========================================================== */
@media (max-width: 767px) {

  :root {
    --section-gap: 48px;
  }

  body { font-size: 4vw; }

  /* --- Header --- */
  .header__nav { display: none; }

  .header__top { height: 17.6vw; border-bottom: 1px solid var(--color-primary); padding: 0; }

  .header__logo { padding-left: 4.13vw; }
  .header__logo img { height: 10.48vw; }

  .header__cta {
    position: static;
    height: auto;
    gap: 10px;
    padding: 10px 15px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
  }
  .header__cta .btn {
    flex: 1;
    justify-content: center;
    font-size: 4vw;
    padding: 9px 10px 9px 20px;
    gap: 10px;
  }
  .header__cta .btn__icon {
    width: 6.4vw;
    height: 6.4vw;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    background: var(--color-primary);
    border: none;
    border-radius: 0;
    padding: 8px 12px;
    cursor: pointer;
    width: 17.6vw;
    height: 17.6vw;
  }
  .hamburger__bar {
    display: block;
    width: 9.6vw;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .hamburger__label {
    color: var(--color-white);
    font-size: 3.2vw;
    font-weight: 700;
    letter-spacing: .08em;
    margin-top: 2px;
  }
  /* open state */
  .hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(28deg);
  }
  .hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-28deg);
  }

  /* --- SP Menu --- */
  .sp-menu {
    display: none;
    background: var(--color-white);
    border-top: 1px solid var(--color-primary);
  }
  .sp-menu.is-open { display: block; }
  .sp-menu__nav ul { border-top: 1px solid var(--color-primary); }
  .sp-menu__nav li { border-bottom: 1px solid var(--color-primary); }
  .sp-menu__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 15px;
  }
  .sp-menu__arrow { width: 18px; height: 18px; }

  /* --- Global SP horizontal gutter --- */
  .inner { padding: 0 4.13vw; margin-inline: 0;}

  /* --- KV --- */
  .kv { margin-top: 0; }
  .coming-banner { margin-top: -13.33vw; }

  /* --- Campaign period --- */
  .campaign-period { padding-left: 4.13vw; padding-right: 4.13vw; }
  .campaign-period__inner { flex-direction: column; gap: 8px; }
  .campaign-period__label { font-size: 5.33vw; }
  .campaign-period__date  { font-size: 6.5vw; padding: 4.13vw; height: auto; }

  /* --- Lead --- */
  .lead {
    padding: 0;
  }
  .lead__catchcopy img { max-width: 100%; }
  .lead__catchcopy { padding: 0; }
  .budget { max-width: 100%; margin: 4.13vw 4.13vw 0; padding: 4.13vw; }
  .budget__warning-strip { font-size: 5.33vw; }
  .budget__status-bar { font-size: 5.33vw; }
  .budget__status-bar em { font-size: 5.86vw; }
  .budget__remaining-amount { font-size: 12vw; }
  .budget__remaining-unit { font-size: 5.33vw; }
  .budget__amount-row { flex-direction: column; }
  .budget-note { padding-left: 4.13vw; padding-right: 4.13vw; font-size: 4vw; }
  .campaign-period .budget-note { margin-top: 4.13vw; }
  .budget__total { font-size: 5.33vw; }
  .budget__total strong { font-size: 10vw; }

  /* --- 対象 --- */
  .target .section-title__icon,
  .shops .section-title__icon,
  .application .section-title__icon,
  .faq .section-title__icon,
  .purpose .section-title__icon { height: 9.1vw; width: auto; }
  .target__title-wrapper { padding: 0 4.13vw; }
  .target__subtitle { font-size: 5.33vw; height: auto; }
  .target__subtitle img { height: 10.13vw; width: auto; }
  .target__box { padding: 15px 4.13vw 20px; }
  .target-products { padding: 0 4.13vw; }
  .target-products__title { font-size: 6vw; }
  .target-products__title img { height: 6vw; width: auto; }
  .target-products__external { white-space: normal; }
  .target__appliance-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .target__appliance-img { width: 100%; max-width: 100%; }
  .target__check { font-size: 6.93vw; }
  .target__check img { width: 28px; }
  .target__person-body   { grid-template-columns: 1fr; gap: 8px; }

  /* --- 登録店舗 --- */
  .shops__inner { display: block; }
  .shops__mascot { float: right; width: 30vw; margin-top: -30px; }
  .shops__recruiting-link { font-size: 5.33vw; }
  .shops__mascot img { height: auto; width: 100%; }
  .shops::before { clip-path: polygon(0% 0%, 50% 5%, 100% 0%, 100% 95%, 50% 100%, 0% 95%); }

  /* --- 事業の目的 --- */
  .purpose__lead { font-size: 4vw; }
  .purpose__card-title { font-size: 7.47vw; height: auto; }
  .purpose__card-desc { font-size: 5.6vw; }
  .purpose__reduction { font-size: 5.6vw; }
  .purpose__cards-wrap {
    grid-template-columns: 1fr;
    padding: 4.13vw;
  }
  .purpose__nav-main { font-size: 5vw; border-width: 1.1vw; }
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .purpose__card--reason .purpose__nav-main { margin-bottom: 8vw; }
  .purpose__knowledge-btn { margin-top: 4.13vw; font-size: 5.6vw; }
  .label-bar { font-size: 5.33vw; }
  .purpose__knowledge-btn--aircon { margin-bottom: 8vw; }
  .purpose__card--aircon,
  .purpose__card--fridge { border-left: none; border-top: 1px solid rgba(0,0,0,.08); }
  .purpose__meta {
    grid-template-columns: 1fr;
  }
  .purpose__meta-card:last-child p { font-size: 4.8vw; }

  /* --- Triangles & section padding --- */
  .target { padding-top: 48vw; }
  .target::before { border-top-width: 20vw; }
  .faq { padding-top: 150px; }
  .faq__confetti.deco-overlay { display: none; }
  .faq__a-inner { margin-left: 0; margin-right: 0; }
  .faq__q { padding-left: 20px; padding-right: 20px; }
  .faq::before    { border-top-width: 20vw; }
  .contact {
    background-image: url('../images/footer_sp.png');
    background-position: center top;
    padding-top: 35vw;
    padding-bottom: 25px;
  }
  .contact::before { border-top: 20vw solid var(--color-cream); }

  /* --- Contact --- */
  .contact__boxes {
    grid-template-columns: 1fr;
  }
  .contact__bureau { font-size: 4.53vw; }
  .contact__box-title { font-size: 4.76vw; }
  .contact__title-img { height: 9.1vw; width: auto; }
  .footer__copy { font-size: inherit; }
  .contact__title { margin-bottom: 40px; }

  /* --- なごっちゃボタン --- */
  .btn--nagoccha {
    width: 100%;
    white-space: normal;
    padding: 6vw 8vw;
    font-size: 6.4vw;
    gap: 4vw;
    justify-content: space-around;
  }

  /* --- Section title --- */
  .section-title { font-size: 18px; }

  /* --- Table --- */
  .subsidy__table { font-size: 4vw; table-layout: auto; }
  .subsidy__table thead th:nth-child(1),
  .subsidy__table thead th:nth-child(2),
  .subsidy__table thead th:nth-child(3) { width: auto; }
  .subsidy__appliance { font-size: 4.8vw; }
  .subsidy__table tbody td:last-child { font-size: 4.8vw; }
  .subsidy__table thead th,
  .subsidy__table tbody td { padding: 8px 10px; }

  /* --- 対象製品ボックス --- */
  .products-box { padding: 4.13vw; }
  .products-box__header img { height: 9.1vw; width: auto; }
  .products-box__tagline { font-size: 4.8vw; }
  .products-badge { width: 31.5vw; font-size: 4vw; }
  .products-box__body {
    flex-direction: column;
    gap: 16px;
  }
  .products-badge {
    padding: 8px;
  }
  .products-box__left .products-badge img{
    width:24px;
  }
  .products-box__right img {
    max-width: 100%;
    height: auto;
  }
  .products-box__mascots img {
    height: 80px;
  }
  .products-box__pair:first-child .products-box__mascot { height: 35vw; }
  .products-box__pair:last-child .products-box__mascot { height: 33vw; }

  .faq__app-btn-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .faq__app-btn-wrap-inner {
    flex: none;
  }
  
}


/* ==========================================================
   STORES PAGE（家電量販店の方）
   ========================================================== */

/* --- アラートバナー --- */
.store-alert {
  background: var(--color-cream);
  padding: 80px 24px 0; /* 上80px = navの高さぶん押し下げ、残りの領域でセンター寄せ */
  text-align: center;
  height: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -80px;
}
.store-alert__text {
  font-size: 36px;
  line-height: 1.8;
  color: var(--color-primary);
}
.store-alert__link {
  color: var(--color-red-dark);
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
}

/* --- セクション共通 --- */
.st-section {
  padding: 120px 0 0;
}
.st-inner {
  max-width: var(--inner-width-wide);
}
.st-section__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 32px;
  line-height: 1.4;
}
.st-section__lead {
  margin-bottom: 32px;
  line-height: 1.8;
}
.st-section__note {
  max-width: 1130px;
  margin: 8px auto 24px;
}
.st-section__note.list  {
  list-style: '※ ' inside;
  padding: 0 24px;
  margin-bottom: 24px;
  margin-inline: 0;
  @media (max-width: 767px) {
    padding: 0;
  }
}

.st-section__note.list li {
  text-indent: -1.2em;
  padding-left: 1em;
}

/* --- 補助対象者ボックス --- */
.st-infobox {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-bottom: 32px;
}
.st-infobox__title {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-text-light);
}
.st-infobox__body {
  padding: 16px 0;
  background: var(--color-white);
  line-height: 1.8;
}

/* --- CTAボタン行 --- */
.st-cta-row {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-cream);
  padding: 24px 0;
}
.st-cta-row__inner {
  display: flex;
  gap: 20px;
}
.st-cta-row__inner .st-btn--dark {
  box-shadow: none;
  justify-content: center;
  font-size: clamp(20px, 2.8vw, 28px);
  position: relative;
}
.st-cta-row__inner .btn__icon {
  filter: none;
  height: 40px;
  width: auto;
  flex-shrink: 0;
  position: absolute;
  right: 20px;
}
.st-btn--dark {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  box-shadow: 0 5px 0 var(--color-shadow-green);
  border-radius: var(--radius);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.375;
  padding: 25px 20px;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.st-btn--dark:hover { opacity: .8; }

/* st-cta-row 外の単体ボタン */
.st-btn--block {
  flex: none;
  width: 455px;
  margin-top: 16px;
  box-shadow: none;
  position: relative;
  justify-content: center;
  margin-left: -1em;
}
.st-btn--block .btn__icon {
  position: absolute;
  right: 20px;
}

.st-btn__laptop-icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

/* --- 申請フロー図 --- */
.st-flow {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
.st-flow img { width: 100%; display: block; }

/* --- マニュアルダウンロードボックス --- */
.st-dlbox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-top: 24px;
  width: 684px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: opacity .2s;
}
.st-dlbox:hover { opacity: .85; }
.st-dlbox__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
}
.st-dlbox__arrow {
  width: 36px;
  flex-shrink: 0;
  position: absolute;
  right: 28px;
}

/* --- 箇条書き --- */
.st-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 28px;
}
.stlist.mb0 {
  margin-bottom: 0;
}
.st-list li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.8;
}
.st-list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-bullet);
  @media (max-width: 767px) {
    top: 8px;
  }
}

.st-tools .st-list li::before {
  top: 16px;
}

/* --- リンク --- */
.st-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 700;
}
.st-link__icon { display: inline-block; width: 40px; height: 40px; flex-shrink: 0; vertical-align: middle; }
.st-link__icon--inline { width: 20px; vertical-align: middle; }
.st-link__ext-icon { width: 16px; display: inline; vertical-align: middle; }
.st-link-inline {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 700;
}

/* --- 提出書類ボックス --- */
.st-docbox {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-cream);
  padding: 40px;
}

.st-docbox.mb {
  margin-bottom: 24px;
}
.st-docbox__title {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
}

.st-external-text {
  padding-top: 8px;
  margin-bottom: 24px;
}

.st-external-text a {
  color: var(--color-primary);
  text-decoration: underline;
}
.st-docbox__list {
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.st-docbox__list li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8;
}
.st-docbox__list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-bullet);

  @media (max-width: 767px) {
    top: 8px;
  }
}

.st-docbox__list li:has(a)::before {
  top: 16px;

  @media (max-width: 767px) {
    top: 8px;
  }
}


.st-docbox__list a {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 700;
}
.st-docbox__list .st-link__icon {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-left: 4px;
}

/* --- 連絡先行 --- */
.st-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.st-contact-line a {
  color: var(--color-primary);
  text-decoration: underline;
}
.st-contact-line__icon {
  width: 20px;
  flex-shrink: 0;
}
.st-contact-line__sep { display: inline-block; width: 24px; }

/* --- 予備申請 2カラム（本文 + YouTube） --- */
.st-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(423px, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 30px;
  margin-bottom: 30px;
}
.st-external-ref {
  margin-top: 30px;
  color: var(--color-text);
}
.st-external-ref a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* --- YouTube プレースホルダー --- */
.st-youtube {
  border-radius: var(--radius);
  overflow: hidden;
}
.st-youtube--notice {
  padding: 0 24px;
  @media (max-width: 767px) {
    padding: 0;
  }
}
.st-youtube__embed {
  background: var(--color-gray-light);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: var(--color-white); */
  font-size: 36px;
  border-radius: var(--radius);
  flex-direction: column;
  overflow: hidden;
}
.st-youtube__embed iframe {
  width: 100%;
  height: 100%;
}
.st-youtube__label {
  text-align: center;
  padding: 8px;
  font-weight: 700;
  color: var(--color-text);
}

/* --- 登録店舗向けツール カテゴリラベル --- */
.st-tools-category {
  font-weight: 700;
  margin: 24px 0 12px;
}

/* --- FAQ（stores版）: confetti・triangle なし --- */
.st-faq {
  padding: 120px 0 0;
  background: none;
}
.st-faq::before { display: none; }

/* --- Contact（stores版）: 前セクション=white なので白三角 --- */
.st-contact::before { border-top: 150px solid var(--color-white); }

.faq__a-list_shop {
  position: relative;
  line-height: 1.8;
}

.faq__a-list_shop li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.8;
}

.faq__a-item_web {
  padding-bottom: 20px;
}

.faq__a-list_shop li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-text);
}

/* ==========================================================
   STORES PAGE — RESPONSIVE SP ( ≤767px )
   ========================================================== */
@media (max-width: 767px) {



  .st-contact::before { border-top: 20vw solid var(--color-white); }
  .st-tools { padding-bottom: 0; }

  .store-alert { padding: 12vw 9vw; height: auto; margin-top: 0; }
  .store-alert__text { font-size: 7.47vw; }
  .store-alert__link { font-size: 7.47vw; }

  .st-section { padding-top: 64px; }
  .st-section__title { font-size: 7.47vw; }
  .st-infobox__title { font-size: 5.87vw; }


  .st-cta-row__inner { flex-direction: row; gap: 2px; }
  .st-cta-row__inner .st-btn--dark {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3.77vw;
    padding: 14px 10px;
    white-space: normal;
    text-align: center;
  }
  .st-cta-row__inner .btn__icon {
    position: static;
    height: 8vw;
    width: auto;
    margin-bottom: 6px;
    order: -1;
  }
  .page-stores { padding-bottom: 100px; }
  .st-cta-row { padding: 0; }
  .st-cta-row .inner { padding: 0; }
  .st-cta-row__inner .st-btn--dark { border-radius: 0;}
  .st-btn--dark { font-size: 4.27vw; padding: 14px 20px; width: 100%; flex: none; gap: 5px; }
  .st-btn--block { width: calc(100% + 1em); font-size: 6.4vw; justify-content: flex-start; padding: 8vw 8vw; }

  .st-two-col { grid-template-columns: 1fr; }
  .st-two-col__aside { order: -1; }

  .st-dlbox { padding: 4.13vw 18vw; width: 100%; }
  .st-dlbox__arrow { right: 20px; }
  .st-dlbox__text { font-size: 4.27vw; }
  .st-dlbox__icon { width: 28px; }

  .st-docbox { padding: 4.13vw; }
  .st-docbox__title { font-size: 4.8vw; color: var(--color-text); }


  .st-contact-line { gap: 5px; font-size: 4.8vw; }
  .st-contact-line__icon { height: 20px; width: auto; }
  .st-contact-line__sep { width: 100%; height: 0; }

  .st-faq { padding: 64px 0 0 0; }
}
