@charset "UTF-8";
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * line-heightの計算
******************************************/
/*****************************************
 * percentの計算
******************************************/
/*****************************************
 * emの計算
******************************************/
/*****************************************
 * fluid-font: 1440pxカンプのpxを渡すだけで
 * 768px〜1440px間を比例スケールするclamp()を生成
 *
 * 使い方:
 *   @include fluid-font(32);        // 1440px→32px, 768px→17px
 *   @include fluid-font(24, 768, 1440); // min-vw, max-vw を明示する場合
 ******************************************/
/*****************************************
 * fluid-padding: SP(320〜767px)・PC(768〜1440px)それぞれの
 * min/maxを渡すだけでclamp()を生成
 *
 * 使い方:
 *   @include fluid-padding(16, 40, 24, 60);
 *   // SP: 320px→16px, 767px→40px
 *   // PC: 768px→24px, 1440px→60px
 ******************************************/
/* Grid */
.grid {
  --grid-cols-sm: 1;
  --grid-gap-sm: 0;
  --grid-cols: var(--grid-cols-sm);
  --grid-gap: var(--grid-gap-sm);
  display: block grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(var(--grid-min-size, 0), 1fr));
  gap: var(--grid-gap);
}
@media (width >= 48rem) {
  .grid {
    --grid-cols-md: var(--grid-cols-sm);
    --grid-gap-md: var(--grid-gap-sm);
    --grid-cols: var(--grid-cols-md);
    --grid-gap: var(--grid-gap-md);
  }
}
@media (width >= 64rem) {
  .grid {
    --grid-cols-lg: var(--grid-cols-md);
    --grid-gap-lg: var(--grid-gap-md);
    --grid-cols: var(--grid-cols-lg);
    --grid-gap: var(--grid-gap-lg);
  }
}
.grid > * {
  --grid-col-sm: auto;
  --grid-row-sm: auto;
  --grid-order-sm: 0;
  --grid-col: var(--grid-col-sm);
  --grid-row: var(--grid-row-sm);
  --grid-order: var(--grid-order-sm);
  grid-column: var(--grid-col);
  grid-row: var(--grid-row);
  order: var(--grid-order);
}
@media (width >= 48rem) {
  .grid > * {
    --grid-col-md: var(--grid-col-sm);
    --grid-row-md: var(--grid-row-sm);
    --grid-order-md: var(--grid-order-sm);
    --grid-col: var(--grid-col-md);
    --grid-row: var(--grid-row-md);
    --grid-order: var(--grid-order-md);
  }
}
@media (width >= 64rem) {
  .grid > * {
    --grid-col-lg: var(--grid-col-md);
    --grid-row-lg: var(--grid-row-md);
    --grid-order-lg: var(--grid-order-md);
    --grid-col: var(--grid-col-lg);
    --grid-row: var(--grid-row-lg);
    --grid-order: var(--grid-order-lg);
  }
}

html {
  font-size: 16px;
}

:root {
  /* Space */
  --space-md: clamp(
    1rem,
    0.6479rem + 1.5023vi,
    2rem
  );
  --space-lg: clamp(
    1.5rem,
    0.9718rem + 2.2535vi,
    2rem
  );
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #000;
  max-width: 100%;
}

/* WP base.css の strong { font-weight: normal } を上書き */
strong {
  font-weight: 700 !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button,
::file-selector-button {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

*:focus-visible {
  outline: 2px solid magenta;
  outline-offset: 2px;
}

/* ========================================
  共通パーツ
======================================== */
/* ── セクション見出し ── */
.section-heading {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #0A8639;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .section-heading {
    padding: 1rem 2.5rem;
    font-size: 2.625rem;
  }
}

.section-heading strong {
  font-size: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .section-heading strong {
    font-size: clamp(4rem, 3.714rem + 0.595vi, 4.25rem);
  }
}

.section-heading--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .section-heading--center {
    margin-top: 3rem;
  }
}

/* ── 表示切替ユーティリティ ── */
.sp-only {
  display: inline;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: inline;
  }
}

/* ── インナー：最大幅1200px中央寄せ ── */
.inner {
  max-width: 75rem;
  margin-inline: auto;
  width: 100%;
  padding: 0 1rem;
}

/* ── 見出し：MD時に最大幅1200px中央寄せ ── */
@media screen and (min-width: 768px) {
  .heading {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

/* ── メールCTAボタン ── */
.mail-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 79.6666666667%;
  background-color: #005FCB;
  border-radius: 0.5rem;
  box-shadow: 0 0.4375rem 0.875rem 0 rgba(0, 0, 0, 0.16);
  overflow: visible;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .mail-btn {
    border-radius: 0;
    overflow: visible;
  }
}

.mail-btn__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .mail-btn__inner {
    gap: 1.1875rem;
    padding: 1.4375rem 4rem;
  }
}

.mail-btn__icon {
  width: clamp(1.5rem, 0.784rem + 3.579vi, 2.5rem);
  height: auto;
}
@media screen and (min-width: 768px) {
  .mail-btn__icon {
    width: clamp(3.75rem, 1.893rem + 3.869vi, 5.375rem);
  }
}

.mail-btn__text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.625rem, -0.27rem + 4.474vi, 1.875rem);
  color: #fff;
  letter-spacing: 0.022em;
}
@media screen and (min-width: 768px) {
  .mail-btn__text {
    font-size: clamp(1.25rem, 2.6388888889vw, 2.375rem);
  }
}

.mail-btn__arrow {
  position: absolute;
  right: -1.25rem;
  bottom: -0.625rem;
  width: 2.75rem;
  height: auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .mail-btn__arrow {
    right: -1.875rem;
    bottom: -1.25rem;
    width: clamp(5.375rem, 4.375rem + 2.083vi, 6.25rem);
  }
}

@media (any-hover: hover) {
  .mail-btn:hover {
    opacity: 0.85;
  }
}
.mail-btn:focus-visible {
  outline: 0.1875rem solid #fff;
  outline-offset: 0.125rem;
}

/* ── 電話CTAボタン ── */
.phone-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(148deg, #ff9e49 4%, #ff5300 78%);
  border: 0.375rem solid #fff;
  border-radius: 3.125rem;
  box-shadow: 0 0.375rem 1.25rem 0 rgba(0, 0, 0, 0.13);
  width: 100%;
  text-decoration: none;
  pointer-events: auto !important;
}
@media screen and (min-width: 768px) {
  .phone-btn {
    padding: 2.5rem 0.333em;
    border-radius: 8.375rem;
    border-width: 0.625rem;
    gap: 2.2222222222vw;
    container-type: inline-size;
    max-width: 66.375rem;
  }
}

.phone-btn__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  background-color: #fff;
  border-radius: 1.875rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #FA6219;
  letter-spacing: 0.022em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .phone-btn__badge {
    padding: 0.9375rem 2.375rem;
    font-size: 2.9190207156cqi;
  }
}

.phone-btn__sub {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: #fff;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .phone-btn__sub {
    font-size: clamp(1.5rem, 0.929rem + 1.19vi, 2rem);
  }
}

.phone-btn__badge-mark {
  font-size: 8px;
  align-self: flex-start;
}

.phone-btn__badge-note {
  font-size: 8px;
  font-weight: 700;
  align-self: flex-end;
}

.phone-btn__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 0.534rem + 3.579vi, 2.25rem);
  color: #ffff00;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .phone-btn__row {
    font-size: 7.7212806026cqi;
  }
}

.phone-btn__icon {
  max-width: clamp(1.125rem, 0.141rem + 4.922vi, 2.5rem);
  height: auto;
}
@media screen and (min-width: 768px) {
  .phone-btn__icon {
    width: 7.3446327684cqi;
  }
}

.phone-btn__number {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 0.534rem + 3.579vi, 2.25rem);
  color: #ffff00;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .phone-btn__number {
    font-size: 7.7212806026cqi;
  }
}

@media (any-hover: hover) {
  .phone-btn:hover {
    opacity: 0.85;
  }
}
.phone-btn:focus-visible {
  outline: 0.1875rem solid #FA6219;
  outline-offset: 0.25rem;
}

/* ── お支払い方法（共通） ── */
.payment-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.25rem 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .payment-box {
    max-width: 70.4375rem;
    border-radius: 1.5625rem;
    padding: 1.9375rem 3.0625rem 1.625rem;
    gap: 1.25rem;
  }
}

.payment-box__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .payment-box__body {
    max-width: 53.875rem;
    gap: 1.25rem;
  }
}

.payment-box__title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0A8639;
  text-align: center;
  letter-spacing: 0.011em;
  border-bottom: 0.125rem solid #0A8639;
  padding-bottom: 0.625rem;
  align-self: stretch;
}
@media screen and (min-width: 768px) {
  .payment-box__title {
    font-size: 1.8125rem;
    padding-bottom: 0.875rem;
  }
}

.payment-box__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .payment-box__badges {
    gap: clamp(0.5rem, -1.071rem + 3.274vi, 1.563rem);
  }
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.5rem;
  border-radius: 0.25rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .payment-badge {
    padding: clamp(0.375rem, -0.357rem + 1.527vi, 0.813rem) clamp(0.5rem, -0.357rem + 1.786vi, 1rem);
    border-radius: 0.3125rem;
    font-size: clamp(0.875rem, 0.116rem + 1.585vi, 1.563rem);
  }
}

.payment-badge--cash {
  background-color: #ffd000;
  color: #000;
}

.payment-badge--bank {
  background-color: #059705;
  color: #fff;
}

.payment-badge--card {
  background-color: #1bb4d3;
  color: #fff;
}

.payment-box__cards {
  width: 100%;
  max-width: 53.875rem;
  height: auto;
}

.payment-box__cards img {
  width: 100%;
  height: auto;
}

.payment-box__note {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  color: #333333;
  text-align: right;
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .payment-box__note {
    font-size: 1.1875rem;
  }
}

/* ========================================
  Header
======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .header__top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5625rem 1rem;
  }
}

.header__logo {
  display: block;
  max-width: 11.25rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 17.5rem;
  }
}

.header__logo img {
  width: 100%;
  height: auto;
}

/* ── PC CTA エリア ── */
.header__cta > * {
  flex-shrink: 1;
  min-width: 0;
}

.header__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__cta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }
}

.header__cta-pair {
  display: flex;
  align-items: center;
  gap: 0;
}

/* 相談CTA（オレンジ枠） */
.header__consult {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  height: 5.9375rem;
  border: 0.375rem solid #FA6219;
  background-color: #fff;
  color: #FA6219;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 968px) {
  .header__consult {
    display: flex;
  }
}

@media (any-hover: hover) {
  .header__consult:hover {
    background-color: #FA6219;
    color: #fff;
  }
  .header__consult:hover .header__consult-text {
    color: #fff;
  }
  .header__consult:hover .header__consult-arrow img {
    filter: brightness(0) invert(1);
  }
}
.header__consult:focus-visible {
  outline: 2px solid #FA6219;
  outline-offset: 2px;
}

.header__consult-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.19vw + 0.429rem, 1.5rem);
  line-height: 1.3;
  color: #FA6219;
}

.header__consult-text--sm {
  display: block;
}
@media screen and (min-width: 968px) {
  .header__consult-text--sm {
    display: none;
  }
}

.header__consult-text--lg {
  display: none;
}
@media screen and (min-width: 968px) {
  .header__consult-text--lg {
    display: block;
  }
}

@media (any-hover: hover) {
  .header__consult-text--lg:hover {
    color: #fff;
  }
}
.header__consult-arrow {
  display: none;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 968px) {
  .header__consult-arrow {
    display: inline-flex;
  }
}

.header__consult-arrow img {
  width: 100%;
  height: auto;
}

/* WP base.css の a[href^="tel:"] { pointer-events: none } を上書き */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto !important;
  }
}
/* 電話エリア（オレンジ背景） */
.header__phone {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.25rem;
  max-width: 20.1875rem;
  height: 5.9375rem;
  background-color: #FA6219;
  text-decoration: none;
  transition: opacity 0.3s;
}

.header__phone::before,
.header__phone::after {
  z-index: -1;
}

@media (any-hover: hover) {
  .header__phone:hover {
    opacity: 0.8;
    background-color: #FA6219;
    text-decoration: none;
  }
}
.header__phone-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background-color: #fff;
  border-radius: 2.625rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.022em;
  color: #FA6219;
  white-space: nowrap;
}

.header__phone-mark {
  font-size: 8px;
  align-self: flex-start;
}

.header__phone-note {
  font-size: 8px;
  font-weight: 700;
  align-self: flex-end;
}

.header__phone-num {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.header__phone-icon {
  display: inline-flex;
  align-items: center;
  width: 1.75rem;
  height: 1.375rem;
  flex-shrink: 0;
}

.header__phone-icon img {
  width: 100%;
  height: auto;
}

.header__phone-link {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  letter-spacing: 0.026em;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header__phone-link {
    font-size: clamp(1.625rem, 0.321rem + 1.935vi, 2.063rem);
  }
}

@media (any-hover: hover) {
  .header__phone-link:hover {
    opacity: 0.8;
    color: #fff;
    text-decoration: none;
  }
}
/* 問い合わせボタン（青・丸型） */
.header__inquiry,
.header__inquiry:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.6875rem;
  height: 4.8125rem;
  background-color: #005FCB;
  border-radius: 3.75rem;
  color: #fff;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .header__inquiry:hover {
    opacity: 0.8;
  }
}
.header__inquiry:focus-visible {
  outline: 2px solid #005FCB;
  outline-offset: 2px;
}

.header__inquiry-icon {
  display: inline-flex;
  align-items: center;
  width: 2.125rem;
  height: 1.625rem;
  flex-shrink: 0;
}

.header__inquiry-icon img {
  width: 100%;
  height: auto;
}

.header__inquiry-text {
  display: none;
  text-align: left;
}
@media screen and (min-width: 1100px) {
  .header__inquiry-text {
    display: block;
  }
}

/* ── SP アクションエリア ── */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .header__actions {
    display: none;
  }
}

.header__tel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background-color: #FA6219;
  border-radius: 50%;
}

.header__tel-btn img {
  width: 1.375rem;
  height: auto;
  filter: brightness(0) invert(1);
}

.header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.header__hamburger img {
  display: block;
  width: 2.5rem;
  height: auto;
}

.header__hamburger:focus-visible {
  outline: 2px solid #004A1C;
  outline-offset: 2px;
}

/* ── PCナビゲーション ── */
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
    justify-content: center;
    background-color: #004A1C;
    padding: 0.75rem 0;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 1.125rem;
  background-color: #0A8639;
  color: #fff;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.393rem + 0.744vi, 1.063rem);
  line-height: 1;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .header__nav-item a:hover {
    opacity: 0.7;
  }
}
.header__nav-item a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}

/* ── SP ドロワー ── */
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 20rem;
  height: 100%;
  background-color: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s;
  padding: 1rem 1rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .header__drawer {
    display: none;
  }
}

.header__drawer.is-open {
  transform: translateX(0);
}

/* ── ドロワー閉じるボタン ── */
.header__drawer-close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  flex-shrink: 0;
}

.header__drawer-close span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #004A1C;
}

.header__drawer-close span:nth-child(1) {
  transform: translateY(0.0625rem) rotate(45deg);
}

.header__drawer-close span:nth-child(2) {
  transform: translateY(-0.0625rem) rotate(-45deg);
}

.header__drawer-close:focus-visible {
  outline: 2px solid #004A1C;
  outline-offset: 2px;
}

.header__drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__drawer-item--home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EEEEEE;
}

.header__drawer-item--home a {
  padding: 1rem 0;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1E150E;
  transition: color 0.3s;
}

.header__drawer-item a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #EEEEEE;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1E150E;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .header__drawer-item a:hover {
    color: #FA6219;
  }
}
.header__drawer-item a:focus-visible {
  outline: 2px solid #004A1C;
  outline-offset: 2px;
}

.header__drawer-cta {
  margin-top: 2rem;
}

.header__drawer-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #FA6219;
  border-radius: 0.5rem;
  text-align: center;
}

.header__drawer-badge {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.688rem, 0.553rem + 0.671vi, 0.875rem);
  color: #fff;
}

.header__drawer-mark {
  font-size: 8px;
  align-self: flex-start;
}

.header__drawer-note {
  font-size: 8px;
  font-weight: 700;
  align-self: flex-end;
}

.header__drawer-num {
  display: block;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.321rem + 0.895vi, 1.75rem);
  letter-spacing: 0.05em;
  color: #fff;
  transition: opacity 0.3s;
}

.header__drawer-num::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1.375rem;
  margin-right: 0.5rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAzMiAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTkuOTIyIDEzLjVjMCAyLjc5OSAxLjg0IDQuMDUgMy42NjMgNC4wNSAxLjc5NSAwIDMuNzI3LTEuMjY3IDMuNzI3LTQuMDUgMC0yLjMzNC0xLjU4NS0zLjk0OC0zLjczNS00Ljk5M2wtLjA2LjAyOUMyMS4xMzMgOS43IDE5LjkyMyAxMS4zNyAxOS45MjMgMTMuNXptLTE1LjIzNCAwYzAgMS4yNjQuMzk3IDIuMzE2IDEuMTQ5IDMuMDQuNjY2LjY0MyAxLjYwNSAxLjAxIDIuNTc4IDEuMDEgMS44MjMgMCAzLjY2My0xLjI1MSAzLjY2My00LjA1IDAtMi4xMy0xLjIxLTMuOC0zLjU5Ni00Ljk2NGwtLjA1OS0uMDNjLTIuMTUgMS4wNDYtMy43MzUgMi42Ni0zLjczNSA0Ljk5NHoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzIgNy4wMnYtLjAxMWgtMS4wMDhjLTEuMzkgMC0yLjc2NS4xNDgtNC4wNDcuNDEyLS4yNjUuMDUyLS41MzIuMTAyLS43ODguMTY0bC4wMDguMDA2LS4wMTMuMDAzYzIuMDg1IDEuNTEzIDMuMTc1IDMuNTI3IDMuMTc1IDUuOTA2IDAgMi4zODktLjk4NiAzLjg0MS0xLjgxNCA0LjYzOWE1LjYyMiA1LjYyMiAwIDAxLTMuOTI4IDEuNTY1Yy0yLjgyMiAwLTUuNjc4LTIuMTMtNS42NzgtNi4yMDRhNy44MzMgNy44MzMgMCAwMS4wMi0uNTM3Yy4wMTktLjI3Ni4wNTItLjU0NS4wOTktLjgwNmwuMDEtLjA1M2E2Ljc3NyA2Ljc3NyAwIDAxMS4zMjUtMi45MjNjLjA0OC0uMDYyLjA5Ni0uMTI1LjE0Ny0uMTg2YTcuNzE0IDcuNzE0IDAgMDEuNzM3LS43NzRsLjA2Ni0uMDYzYy4yMjItLjE5Ny40NTgtLjM4Ny43MS0uNTdsLS4wMDgtLjAwMi4wMS0uMDA5QTIwLjExMiAyMC4xMTIgMCAwMDE2IDYuOTI3Yy0xLjIxOCAwLTIuNTk0LjEzMS0zLjk1Ny40MDgtLjM2LjA3LS43MTcuMTQ2LTEuMDYxLjIzNGwuMDA3LjAwNWMtLjAwNC4wMDItLjAwOS4wMDItLjAxMy4wMDMuMTA3LjA4LjIxMi4xNi4zMTUuMjQ0bC4wNzIuMDU4YzEuMzM2IDEuMDkzIDIuMjc1IDIuNDk2IDIuNjAyIDQuMjI4bC4wMDguMDQ0YTcuMzYxIDcuMzYxIDAgMDEuMTA4Ljk2Yy4wMDcuMTI5LjAxMi4yNTguMDEyLjM5IDAgNC4wNzItMi44NTYgNi4yMDMtNS42NzggNi4yMDMtMi44NTMgMC01Ljc0Mi0yLjEzLTUuNzQyLTYuMjA0IDAtMS44NzIuNjg1LTMuNTE0IDEuOTktNC44NjkuMzUyLS4zNjQuNzQtLjcxIDEuMTgzLTEuMDI3LS4wMDMgMC0uMDA2IDAtLjAwOS0uMDAybC4wMTEtLjAwOGExOS45MDkgMTkuOTA5IDAgMDAtNC44NC0uNTg2SDBWMjMuNWMwIC42NDYuNDkgMS4xNyAxLjA5NSAxLjE3aDI5LjgxYy42MDUgMCAxLjA5NS0uNTI0IDEuMDk1LTEuMTdWNy4wMnpNOC40MzQgNi4xODFjMi4xOTgtLjkgNC44OTctMS40MDggNy41NjYtMS40MDggMi42NjkgMCA1LjM2OC41MDcgNy41NjYgMS40MDggMi4yMDEtLjg5NyA0LjgxOS0xLjMyNiA3LjQyNi0xLjMyNkgzMlYxLjE3QzMyIC41MjQgMzEuNTEgMCAzMC45MDUgMEgxLjA5NUMuNDkgMCAwIC41MjQgMCAxLjE3djMuNjg1aDEuMDA3YzIuNjA4IDAgNS4yMjYuNDI5IDcuNDI3IDEuMzI2eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

@media (any-hover: hover) {
  .header__drawer-num:hover {
    opacity: 0.8;
  }
}
.header__drawer-btn {
  display: block;
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #005FCB;
  border-radius: 3.75rem;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff !important;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .header__drawer-btn:hover {
    opacity: 0.8;
  }
}
.header__drawer-btn:focus-visible {
  outline: 2px solid #005FCB;
  outline-offset: 2px;
}

/* ── オーバーレイ ── */
.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 190;
  cursor: pointer;
}

.header__overlay.is-active {
  display: block;
}

/* ========================================
  FV
======================================== */
.fv {
  display: block;
}

.fv__heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── PCヒーロー（SP非表示） ── */
.fv__hero {
  display: none;
}
@media screen and (min-width: 600px) {
  .fv__hero {
    display: block;
    width: 100%;
  }
}

.fv__hero picture {
  display: block;
  width: 100%;
}

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

/* ====================================================
  SP FV（PC非表示）
==================================================== */
.fv__sp {
  display: block;
}
@media screen and (min-width: 600px) {
  .fv__sp {
    display: none;
  }
}

/* ── SP FV 1枚画像 ── */
.fv__sp-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
  メディア掲載
======================================== */
@keyframes mediaScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.media {
  background-color: #fff;
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .media {
    padding: 2rem 0;
    gap: 1.25rem;
  }
}

.media__title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0A8639;
  letter-spacing: 0.1563em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .media__title {
    font-size: 2rem;
  }
}

.media__logos {
  width: 100%;
  overflow: hidden;
}

.media__logos-track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: mediaScroll 30s linear infinite;
}

.media__logo-slide {
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3.75rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .media__logo-slide {
    height: 5rem;
    margin-right: 5rem;
  }
}

.media__logo-slide picture {
  height: 100%;
  display: block;
}

.media__logo {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

/* ========================================
  FV直下CTA（問い合わせ・お支払い）
======================================== */
.inquiry {
  background-color: #e5f4e5;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .inquiry {
    padding: 2.5rem 3.5rem;
    gap: 1.375rem;
  }
}

/* ── 電話・メール CTAラッパー ── */
.inquiry__ctas {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .inquiry__ctas {
    max-width: 66.375rem;
    align-items: center;
    gap: 2.875rem;
  }
}

/* inquiry__payment → _common-parts.scss の .payment-box に移動 */
/* ========================================
  共感
======================================== */
.sympathy {
  background-color: #fff;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sympathy {
    padding: 2.5rem 5.84375rem;
    gap: 2rem;
  }
}

/* ── 赤バナー ── */
.sympathy__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background-color: #E70013;
  border-radius: 1rem;
  container-type: inline-size;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sympathy__banner {
    flex-direction: row;
    gap: 1.3125rem;
    padding: 1.5rem 4rem;
    border-radius: 1.375rem;
    max-width: 67.5rem;
  }
}

.sympathy__banner-icon:nth-of-type(2) {
  display: none;
}
@media screen and (min-width: 768px) {
  .sympathy__banner-icon:nth-of-type(2) {
    display: inline-flex;
  }
}

.sympathy__banner-icon {
  display: inline-flex;
  align-items: center;
  width: 2.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .sympathy__banner-icon {
    width: 10.1890756303cqi;
  }
}

.sympathy__banner-icon img {
  width: 100%;
  height: auto;
}

.sympathy__banner-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .sympathy__banner-body {
    flex: initial;
  }
}

.sympathy__banner-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .sympathy__banner-text {
    font-size: 3.3613445378cqi;
    line-height: 1.4;
  }
}

.sympathy__banner-strong {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .sympathy__banner-strong {
    margin-top: 0.5rem;
    font-size: 5.8823529412cqi;
  }
}

.sympathy__banner-line {
  display: block;
  width: 100%;
  max-width: 17.5rem;
  height: 0.25rem;
  background-color: #FFD117;
}
@media screen and (min-width: 768px) {
  .sympathy__banner-line {
    max-width: 42rem;
    height: 0.625rem;
  }
}

/* ── こんな事ありませんか？ボックス ── */
.sympathy__box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .sympathy__box {
    max-width: 78.3125rem;
    container-type: inline-size;
  }
}

.sympathy__box-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background-color: #7ec698;
  container-type: inline-size;
}
@media screen and (min-width: 768px) {
  .sympathy__box-header {
    padding: 0.75rem;
  }
}

.sympathy__box-title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .sympathy__box-title {
    font-size: 3.231292517cqi;
  }
}

.sympathy__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  padding: 1rem 1rem;
  background-color: #f9fff1;
  border: 0.1875rem solid #7ec698;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .sympathy__items {
    grid-template-columns: repeat(auto-fit, minmax(34.375rem, 1fr));
    gap: 0.8125rem 2.25rem;
    padding: 1.75rem 1.2rem;
  }
}

.sympathy__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .sympathy__item {
    gap: 0.75rem;
  }
}

.sympathy__item-icon {
  display: inline-flex;
  align-items: center;
  width: 1.25rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .sympathy__item-icon {
    width: 2.5rem;
  }
}

.sympathy__item-icon img {
  width: 100%;
  height: auto;
}

.sympathy__item-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: clamp(0.688rem, 0.016rem + 3.356vi, 1.625rem);
  color: #000;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .sympathy__item-text {
    font-size: clamp(1.375rem, 1.093rem + 0.587vi, 1.625rem);
  }
}
@media screen and (min-width: 1450px) {
  .sympathy__item-text {
    font-size: 1.625rem;
  }
}

.sympathy__item-text em {
  font-style: normal;
  font-weight: 700;
  color: #FA6219;
  font-size: clamp(0.7rem, -0.052rem + 3.758vi, 1.75rem);
}
@media screen and (min-width: 768px) {
  .sympathy__item-text em {
    font-size: clamp(1.5rem, 1.214rem + 0.595vi, 1.75rem);
  }
}

/* ── 矢印 ── */
.sympathy__arrow {
  width: 3rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .sympathy__arrow {
    width: clamp(3.813rem, 1.527rem + 4.762vi, 5.813rem);
  }
}

/* ── 締めテキスト ── */
.sympathy__message {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: clamp(0.813rem, 0.231rem + 2.908vi, 1.625rem);
  color: #000;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .sympathy__message {
    font-size: 2.625rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .sympathy__message {
    font-size: clamp(1.5625rem, 0.3482rem + 2.53vw, 2.625rem);
  }
}

.sympathy__message em {
  font-style: normal;
  font-weight: 700;
  color: #E70013;
}

.sympathy__message-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .sympathy__message-br {
    display: inline;
  }
}

/* ========================================
  リスク
======================================== */
.risk {
  background-color: #1E150E;
  padding: 2rem 0 calc(2.5rem + 13.33cqi);
  position: relative;
  container-type: inline-size;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25.33cqi), 50% 90%, 0 calc(100% - 25.33cqi));
}
@media screen and (min-width: 768px) {
  .risk {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 19.33cqi), 50% 90%, 0 calc(100% - 19.33cqi));
    padding: 3.5rem 0 calc(1.25rem + 13.33cqi);
  }
}

.risk__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .risk__inner {
    gap: 2rem;
  }
}

/* ── ヘッダー（緑バー） ── */
.risk__header {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 0.75rem 1.25rem;
  background-color: #0A8639;
}
@media screen and (min-width: 768px) {
  .risk__header {
    padding: 1rem 2.5rem;
  }
}

.risk__header-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .risk__header-text {
    font-size: 2.625rem;
  }
}

/* ── ダメージ写真 ── */
.risk__photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .risk__photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.risk__photo {
  width: calc(50% - 0.25rem);
  aspect-ratio: 285/218;
  overflow: hidden;
  background-color: #D9D9D9;
}
@media screen and (min-width: 768px) {
  .risk__photo {
    width: auto;
  }
}

.risk__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ── リスクカード ── */
.risk__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5625rem;
  margin-left: auto;
  margin-right: auto;
}
@media (width >= 64rem) {
  .risk__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.375rem;
    max-width: 65.625rem;
  }
}

.risk__card {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.risk__card-icon {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .risk__card-icon {
    justify-content: end;
    width: 5.25rem;
  }
}

.risk__card-icon img {
  max-width: clamp(2.5rem, 2.053rem + 2.237vi, 3.125rem);
  height: 100%;
}
@media screen and (min-width: 768px) {
  .risk__card-icon img {
    max-width: 3.75rem;
  }
}

.risk__card-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0.5625rem 1rem;
  background-color: #fff;
  border-radius: 0 0.5625rem 0.5625rem 0;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: clamp(0.813rem, 0.365rem + 2.237vi, 1.438rem);
  color: #000;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .risk__card-text {
    padding: 0.375rem 1.5625rem;
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1014px) {
  .risk__card-text {
    font-size: clamp(0.9375rem, -0.6234rem + 3.252vw, 1.4375rem);
  }
}
@media screen and (min-width: 1015px) and (max-width: 1440px) {
  .risk__card-text {
    font-size: clamp(1.5rem, 1.2015rem + 0.4706vw, 1.625rem);
  }
}

.risk__card-text em {
  font-style: normal;
  font-weight: 700;
  color: #ff0000;
}
@media screen and (min-width: 768px) {
  .risk__card-text em {
    font-size: clamp(0.95rem, 0.136rem + 1.696vi, 1.663rem);
  }
}

/* ── オレンジCTAバナー ── */
.risk__cta {
  position: relative;
  overflow: visible;
  margin: -1.25rem auto 0;
  max-width: 89.7435897436vw;
  padding: 1.25rem;
  background: linear-gradient(148deg, #ff9e49 0%, #ff5300 100%);
  border: 0.375rem solid #fff;
  border-radius: 2.5rem;
  box-shadow: 0 0.4375rem 1.5625rem 0 rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  container-type: inline-size;
}
@media screen and (min-width: 768px) {
  .risk__cta {
    margin: -3.125rem auto 0;
    max-width: 73.6111111111vw;
    padding: 2.5rem 18.75rem 2.5rem 5rem;
    border: 0.75rem solid #fff;
    border-radius: 5.875rem;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    min-height: 13.75rem;
  }
}

.risk__cta-worker-wrap {
  position: absolute;
  aspect-ratio: 144/134;
  width: 36.9230769231vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 8.375rem;
  right: 1.25rem;
  bottom: 0;
  flex-shrink: 0;
  order: 2;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .risk__cta-worker-wrap {
    position: absolute;
    width: 12.5rem;
    right: 1.25rem;
    bottom: 0;
    width: 30.8333333333vw;
    order: unset;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .risk__cta-worker-wrap {
    right: 3.25rem;
  }
}

.risk__cta-worker {
  width: 100%;
  height: auto;
  display: block;
}

.risk__cta-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15625rem;
  order: 1;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .risk__cta-body {
    align-items: flex-start;
    gap: 0.625rem;
    flex: 1;
    order: unset;
  }
}

.risk__cta-brand {
  width: 56.4102564103vw;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .risk__cta-brand {
    width: 36.1111111111vw;
    margin-left: -1.25rem;
  }
}

.risk__cta-label {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: 3.5897435897vw;
  color: #fff;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .risk__cta-label {
    font-size: 1.25rem;
    font-size: 3.4722222222vw;
    margin-inline: auto;
    white-space: nowrap;
  }
}

/* ── 手遅れになる前に！ ── */
.risk__warning {
  margin-block: 1.25rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: #FF0;
  text-align: center;
  text-decoration: underline;
  letter-spacing: 0.083em;
}
@media screen and (min-width: 768px) {
  .risk__warning {
    margin-block: 2rem 0;
    font-size: clamp(2.25rem, 1.393rem + 1.786vi, 3rem);
  }
}

/* ========================================
  対応・再発防止
======================================== */
.prevention {
  background-color: #fff;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .prevention {
    padding: 3.5rem 0;
  }
}

.prevention__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .prevention__inner {
    gap: 2.875rem;
  }
}

/* ── ヘッダー（緑バー） ── */
.prevention__header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background-color: #0A8639;
}
@media screen and (min-width: 768px) {
  .prevention__header {
    padding: 1rem 2.5rem;
  }
}

.prevention__header-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.668rem + 1.474vw, 1.375rem);
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .prevention__header-text {
    font-size: clamp(2.375rem, 2.089rem + 0.595vi, 2.625rem);
  }
}

/* ── 動物サークル ── */
.prevention__animals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .prevention__animals {
    gap: 1.5rem;
    padding: 0 7.5rem;
  }
}

.prevention__animals-row {
  display: flex;
  justify-content: center;
}

.prevention__animal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  flex: 0 0 auto;
  width: clamp(5rem, 26vw, 11.25rem);
  margin-left: clamp(-3.125rem, 1.822rem - 10.32vw, -0.5rem);
}
@media screen and (min-width: 768px) {
  .prevention__animal {
    margin-left: clamp(-0.625rem, 0.196rem + 0.893vi, -1rem);
    gap: 0.75rem;
  }
}

.prevention__animal:first-child {
  margin-left: 0;
}

.prevention__animal:first-child {
  margin-left: 0;
}

.prevention__animal-circle {
  max-width: 8.75rem;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  border: 0.1875rem solid #0A8639;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .prevention__animal-circle {
    max-width: 11.25rem;
    border-width: 0.375rem;
  }
}

.prevention__animal-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prevention__animal-name {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #0A8639;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .prevention__animal-name {
    font-size: clamp(1.125rem, 0.839rem + 0.595vi, 1.375rem);
  }
}

/* ── メッセージ ── */
.prevention__message {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .prevention__message {
    padding: 0;
    gap: 1.5rem;
  }
}

.prevention__message-sparkle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.prevention__message-sparkle img {
  width: 1.25rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .prevention__message-sparkle img {
    width: 5.5rem;
  }
}

.prevention__message-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .prevention__message-body {
    gap: 0.5rem;
  }
}

.prevention__message-lead {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(0.875rem, 0.786rem + 0.447vi, 1rem);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0;
  background: linear-gradient(90deg, #e70013 0%, #fa6219 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (min-width: 768px) {
  .prevention__message-lead {
    font-size: 2.5vw;
  }
}

.prevention__message-main {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 0.732rem + 1.342vi, 1.375rem);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  background: linear-gradient(90deg, #fa6219 0%, #e70013 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (min-width: 768px) {
  .prevention__message-main {
    font-size: clamp(2.125rem, 0.125rem + 4.167vi, 3.875rem);
  }
}

/* ========================================
  法令
======================================== */
.legal {
  background-color: #0A8639;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .legal {
    padding-bottom: 3.5rem;
  }
}

/* ── 上部エリア（ライトグリーン背景） ── */
.legal__top {
  background-color: #F0FFF1;
}

.legal__top::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 3.75rem solid transparent;
  border-right: 3.75rem solid transparent;
  border-top: 2.25rem solid #F0FFF1;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .legal__top::after {
    border-left: 7.1875rem solid transparent;
    border-right: 7.1875rem solid transparent;
  }
}

/* ── 黄色ヘッダーバー ── */
.legal__header {
  display: flex;
  flex-direction: column;
  background-color: #FFFF00;
}

.legal__header-top {
  position: relative;
}

.legal__header-deco-top {
  width: 100%;
  aspect-ratio: 1440/305;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.legal__header-deco-bottom {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.legal__header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(0.875rem, 0.159rem + 3.579vi, 1.875rem);
  color: #000;
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .legal__header-text {
    font-size: clamp(1.5rem, 3.96vw, 3.5625rem);
  }
}

.legal__header-warning {
  display: inline;
  color: #E70013;
  font-size: clamp(1.25rem, 0.534rem + 3.579vi, 2.25rem);
}
@media screen and (min-width: 768px) {
  .legal__header-warning {
    font-size: clamp(2rem, 5.76vw, 5.1875rem);
  }
}

/* ── カード群 ── */
.legal__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  gap: 1.25rem;
  padding: 1.5rem 1.875rem;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .legal__cards {
    gap: 1.5rem 1.25rem;
    padding: 2rem 3.75rem;
  }
}
@media screen and (min-width: 1360px) {
  .legal__cards {
    padding: 2rem 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .legal__card {
    position: relative;
    padding-top: 5.125rem;
  }
}

.legal__card-number {
  display: block;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #0A8639;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .legal__card-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(3.25rem, 1.536rem + 3.571vi, 4.75rem);
    line-height: 1.65;
    text-align: left;
  }
}

.legal__card-inner {
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .legal__card-inner {
    border-radius: 1.25rem;
    padding: 1.75rem 1.25rem 1.6875rem;
    gap: 1rem;
  }
}

.legal__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .legal__card-top {
    padding: 0;
    gap: 1.4375rem;
  }
}

.legal__card-title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .legal__card-title {
    font-size: clamp(1rem, -0.214rem + 2.53vi, 2.063rem);
  }
}

.legal__card-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.4375rem;
}

.legal__card-img--pc {
  display: none;
}

.legal__card-img--sp {
  display: block;
  width: auto;
  max-width: 12.5rem;
  height: 8.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .legal__card-img--sp {
    max-width: 10rem;
    height: 10rem;
  }
}

.legal__card-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #000;
  line-height: 1.6;
  padding: 0.75rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .legal__card-text {
    font-size: clamp(0.75rem, 0.107rem + 1.339vi, 1.313rem);
    line-height: 1.5;
    padding: 0;
  }
}

.legal__card-text em {
  font-style: normal;
  color: #0A8639;
}

/* ── カード間区切り ── */
.legal__divider {
  display: none;
}

/* ── 下部エリア上部の逆三角形 ── */
.legal__bottom-triangle {
  width: 7.5rem;
  height: 2.25rem;
  background-color: #F0FFF1;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto -1px;
}
@media screen and (min-width: 768px) {
  .legal__bottom-triangle {
    width: 14.375rem;
    height: 3.125rem;
  }
}

/* ── 下部テキスト ── */
.legal__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem 0;
}
@media screen and (min-width: 768px) {
  .legal__bottom {
    gap: 1.8125rem;
    padding: 2.5rem 7.5rem 0;
  }
}

.legal__cta-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(1.063rem, 0.928rem + 0.671vi, 1.25rem);
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .legal__cta-text {
    font-size: clamp(2rem, -0.214rem + 4.613vi, 3.938rem);
    line-height: 1.25;
  }
}

.legal__cta-highlight {
  text-decoration: underline;
  color: #FF0;
}

.legal__note {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.5625rem;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .legal__note {
    font-size: clamp(0.813rem, 0.17rem + 1.339vi, 1.375rem);
    line-height: 1.5;
  }
}

/* ========================================
  解決
======================================== */
.solution {
  background-color: #E5F4E5;
  padding-block: 1rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .solution {
    padding: 2.5rem 3.5rem;
  }
}

.solution__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .solution__inner {
    gap: 1.25rem;
  }
}

/* ── 見出し ── */
.solution__heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .solution__heading {
    gap: 1.1875rem;
  }
}

.solution__heading-deco {
  width: 0.8125rem;
  height: auto;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .solution__heading-deco {
    width: 2.1875rem;
  }
}

.solution__heading-body {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .solution__heading-body {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.75rem;
  }
}

.solution__brand {
  width: 8rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .solution__brand {
    width: clamp(9.375rem, -3.482rem + 26.786vi, 20.625rem);
  }
}

.solution__heading-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0;
  color: #FA6219;
}
@media screen and (min-width: 768px) {
  .solution__heading-text {
    font-size: clamp(1.5rem, -0.214rem + 3.571vi, 3rem);
  }
}

/* ── 説明文 ── */
.solution__desc {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .solution__desc {
    font-size: clamp(0.875rem, 0.161rem + 1.488vi, 1.5rem);
    line-height: 1.55;
    text-align: center;
  }
}

.solution__desc-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .solution__desc-br {
    display: inline;
  }
}

/* ── CTAエリア ── */
.solution__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .solution__ctas {
    gap: 2.875rem;
  }
}

/* ========================================
  比較表
======================================== */
.comparison {
  background-color: #fff;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .comparison {
    padding: 3.5rem 0 4rem;
  }
}

.comparison__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .comparison__inner {
    gap: 2.5rem;
  }
}

/* ── 見出しバー ── */
.comparison__heading {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #0A8639;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  position: relative;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .comparison__heading {
    padding: 1.25rem 2.5rem;
    font-size: clamp(1.75rem, 0.821rem + 1.935vi, 2.625rem);
    margin: 0 -1rem;
  }
}

.comparison__heading-sparkle {
  display: block;
  position: absolute;
  top: 50%;
  right: clamp(4.25rem, -0.045rem + 21.477vi, 10.25rem);
  transform: translateY(-70%);
  width: clamp(1.375rem, 0.838rem + 2.685vi, 2.125rem);
  height: auto;
}
@media screen and (min-width: 768px) {
  .comparison__heading-sparkle {
    right: clamp(9rem, 2rem + 7.292vi, 14.5rem);
    top: 50%;
    transform: translateY(-70%);
    width: clamp(3rem, 1rem + 3.125vi, 6.375rem);
    z-index: 2;
  }
}

.comparison__heading-loupe {
  display: block;
  position: absolute;
  z-index: 1;
  width: clamp(3.75rem, 1.423rem + 11.633vi, 7rem);
  height: auto;
  right: clamp(0.25rem, -0.69rem + 4.698vi, 1.563rem);
  top: clamp(0rem, -0.626rem + 3.132vi, -0.875rem);
}
@media screen and (min-width: 768px) {
  .comparison__heading-loupe {
    top: 50%;
    transform: translateY(-60%);
    right: -0.5rem;
    width: clamp(7rem, 4rem + 6.25vi, 14.5rem);
  }
}

/* ── テーブルラッパー ── */
.comparison__table-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .comparison__table-wrap {
    gap: 1rem;
  }
}

.comparison__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison__table-inner {
  position: relative;
  padding-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .comparison__table-inner {
    padding-top: 5rem;
  }
}

.comparison__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

/* ── 見出し行 ── */
.comparison__th {
  padding: 0.625rem 0.5rem;
  background-color: #7ec698;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.563rem, 0.249rem + 1.566vi, 1rem);
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .comparison__th {
    padding: 1.25rem 0.75rem;
    font-size: clamp(1.125rem, 0.196rem + 1.935vi, 1.938rem);
  }
}

.comparison__th--label {
  text-align: left;
  padding-left: 0.75rem;
  width: 40%;
}
@media screen and (min-width: 768px) {
  .comparison__th--label {
    padding-left: 1.5rem;
  }
}

.comparison__th--us {
  background-color: #0A8639;
  color: #fff;
  width: 20%;
}

.comparison__th--other {
  width: 20%;
}

/* ── 自社強調フレーム ── */
.comparison__us-frame {
  position: absolute;
  top: 0;
  left: 40%;
  width: 20%;
  height: 100%;
  border: 0.25rem solid #E70013;
  border-radius: 0.5rem;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .comparison__us-frame {
    border-width: 0.375rem;
    border-radius: 0.625rem;
  }
}

/* ── オススメバッジ ── */
.comparison__recommend {
  position: absolute;
  top: 2.25rem;
  left: 40%;
  width: 20%;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.563rem, 0.249rem + 1.566vi, 1rem);
  color: #E70013;
  line-height: 1;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .comparison__recommend {
    top: 3.25rem;
    font-size: clamp(0.813rem, 0.098rem + 1.488vi, 1.438rem);
  }
}

.comparison__th-name {
  display: block;
}

/* ── データ行 ── */
.comparison__row {
  background-color: #fff;
}

.comparison__row--alt {
  background-color: #e5f4e5;
}

.comparison__td {
  padding: 0.625rem 0.5rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.75rem;
  color: #000;
  border-bottom: 0.0625rem solid #d0d0d0;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .comparison__td {
    padding: 1.25rem 1rem;
    font-size: 1.25rem;
  }
}

.comparison__td--us {
  text-align: center;
  border-bottom: none;
}

.comparison__td--other {
  text-align: center;
}

.comparison__th:nth-child(3),
.comparison__td:nth-child(3) {
  border-right: 0.125rem solid #d0d0d0;
}
@media screen and (min-width: 768px) {
  .comparison__th:nth-child(3),
  .comparison__td:nth-child(3) {
    border-right-width: 0.1875rem;
  }
}

/* ── セル内アイテム ── */
.comparison__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.comparison__item-title {
  color: #0A8639;
  font-weight: 700;
  font-size: clamp(0.625rem, 0.446rem + 0.895vi, 0.875rem);
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .comparison__item-title {
    font-size: clamp(0.938rem, 0.223rem + 1.488vi, 1.563rem);
  }
}

.comparison__item-desc {
  font-weight: 500;
  font-size: clamp(0.5rem, 0.321rem + 0.895vi, 0.75rem);
  color: #555;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .comparison__item-desc {
    font-size: clamp(0.75rem, 0.321rem + 0.893vi, 1.125rem);
  }
}

/* ── マーク ── */
.comparison__mark {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .comparison__mark {
    font-size: clamp(2.5rem, 0.643rem + 3.869vi, 4.125rem);
  }
}

.comparison__mark--double-circle {
  color: #E70013;
}

.comparison__mark--circle {
  color: #000;
}

.comparison__mark--triangle {
  color: #000;
}

.comparison__mark--cross {
  color: #000;
}

.comparison__result {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: clamp(0.5rem, 0.321rem + 0.895vi, 0.75rem);
  color: #000;
  text-align: center;
  line-height: 1.4;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .comparison__result {
    font-size: clamp(0.875rem, 0.304rem + 1.19vi, 1.438rem);
    margin-top: 0.5rem;
  }
}

/* ── PC/SP BR 制御 ── */
.pc-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-br {
    display: inline;
  }
}

/* ── 注記 ── */
.comparison__note {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  color: #555;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .comparison__note {
    font-size: clamp(0.875rem, 0.554rem + 0.67vi, 1.156rem);
  }
}

@media (width < 23.4375rem) {
  .comparison__br--hide-xs {
    display: none;
  }
}
.comparison__br--show-xs {
  display: none;
}
@media (width < 23.4375rem) {
  .comparison__br--show-xs {
    display: inline;
  }
}

/* ========================================
  USP（選ばれる5つの理由）
======================================== */
.usp {
  background-color: #eeeeee;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .usp {
    padding: 2.5rem 3.5rem 3.5rem;
  }
}

.usp__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-inline: auto;
  width: 100%;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .usp__inner {
    gap: 3rem;
    max-width: 81.875rem;
    padding-bottom: 2.5rem;
  }
}

/* ── セクション共通見出し ── */
/* .usp__section-heading → .section-heading（_common-parts.scss） */
/* .usp__section-heading--steps → .section-heading.section-heading--center（_common-parts.scss） */
.usp__section-heading--steps strong {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 900;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .usp__section-heading--steps strong {
    font-size: clamp(3.75rem, 3.179rem + 1.19vi, 4.25rem);
  }
}

/* ── 5つの理由 ── */
.usp__reasons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .usp__reasons {
    gap: 2.75rem;
  }
}

/* ── 数字バッジ ── */
.usp__card-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 1.918rem + 2.908vi, 3.313rem);
  height: clamp(2.5rem, 1.918rem + 2.908vi, 3.313rem);
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .usp__card-num {
    width: clamp(2.5rem, -0.786rem + 6.845vi, 5.375rem);
    height: clamp(2.5rem, -0.786rem + 6.845vi, 5.375rem);
  }
}

.usp__card-num--red {
  background-color: #E70013;
}

.usp__card-num--green {
  background-color: #0A8639;
}

.usp__card-num span {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .usp__card-num span {
    font-size: clamp(1.75rem, 0.607rem + 2.381vi, 2.75rem);
  }
}

/* ── 理由1 メインカード ── */
.usp__main-card {
  background-color: #fff3f3;
  border: 0.25rem solid #E70013;
  border-radius: 0.75rem;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .usp__main-card {
    border-width: 0.5625rem;
    border-radius: 0.75rem;
    padding: 0.8125rem 2.0625rem;
    gap: 0.75rem;
  }
}

.usp__main-card-header {
  display: flex;
  align-items: center;
  gap: 0;
}

.usp__main-card-title-wrap {
  flex: 1;
  background-color: #fff;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.75rem 1.25rem;
  margin-left: -0.5rem;
}
@media screen and (min-width: 768px) {
  .usp__main-card-title-wrap {
    padding: 0.8rem 2rem 0.8rem 3.5625rem;
    border-radius: 0 0.75rem 0.75rem 0;
    margin-left: -2.5rem;
  }
}

.usp__main-card-title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.767rem + 1.79vi, 1.625rem);
  color: #E70013;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .usp__main-card-title {
    font-size: clamp(1.063rem, -0.866rem + 4.018vi, 2.75rem);
  }
}

.usp__main-card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .usp__main-card-body {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: center;
  }
}

.usp__main-card-text-area {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.usp__main-card-desc {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .usp__main-card-desc {
    font-size: clamp(0.813rem, 0.027rem + 1.637vi, 1.5rem);
  }
}

@media screen and (min-width: 768px) {
  .usp__badge {
    margin-top: 0.25rem;
  }
}

.usp__badge-img {
  width: 11.25rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .usp__badge-img {
    width: clamp(12.5rem, 30vw, 25.3125rem);
  }
}

.usp__main-card-photo {
  width: 100%;
  aspect-ratio: 524/333;
  overflow: hidden;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .usp__main-card-photo {
    border-radius: 0.4375rem;
    aspect-ratio: 524/333;
  }
}

.usp__main-card-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ── 理由2〜5 サブカード ── */
.usp__sub-cards {
  --grid-cols-sm: auto-fit;
  --grid-min-size: 15rem;
  --grid-cols-md: 2;
  --grid-gap-sm: 1rem;
  --grid-gap-md: 1.3125rem 1.5rem;
}

.usp__sub-card {
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
  min-width: 0;
}

.usp__sub-card-header {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
  gap: 0;
  padding-top: 0.75rem;
  padding-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .usp__sub-card-header {
    padding-top: 1.25rem;
    padding-inline: 0.75rem;
  }
}

.usp__sub-card-title-wrap {
  display: inline-flex;
  align-items: center;
  background-color: #fff5c8;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  margin-left: -0.5rem;
  width: auto;
}
@media screen and (min-width: 768px) {
  .usp__sub-card-title-wrap {
    padding: 0.25rem 1.25rem 0.25rem 1.75rem;
    margin-left: -1.875rem;
  }
}

.usp__sub-card-title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 0.767rem + 1.79vi, 1.625rem);
  color: #0A8639;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .usp__sub-card-title {
    font-size: 1.75rem;
    margin-left: 1rem;
  }
}

.usp__sub-card-desc {
  flex: 1;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.6;
  padding: 0.75rem 1.25rem 1.25rem 4.5rem;
  align-self: stretch;
}
@media screen and (min-width: 768px) {
  .usp__sub-card-desc {
    font-size: clamp(0.875rem, 0.446rem + 0.893vi, 1.25rem);
    padding: 1rem 1.25rem 1rem 4.25rem;
    line-height: 1.5;
  }
}

/* ── 再発防止ステップ ── */
.usp__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .usp__steps {
    gap: 2.5rem;
  }
}

.usp__steps-grid {
  --grid-cols-sm: 2;
  --grid-cols-md: auto-fit;
  --grid-min-size: 12rem;
  --grid-gap-sm: 1.25rem 1rem;
  --grid-gap-md: 1.75rem 1.5rem;
  background-color: #fff;
  border: 0.5rem solid #0A8639;
  border-radius: 1.5rem;
  padding: 2rem 2.375rem;
  margin-top: 2.5rem;
}

.usp__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .usp__step {
    gap: 1.125rem;
  }
}

.usp__step-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .usp__step-head {
    gap: 0.375rem;
  }
}

.usp__step-label {
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #0A8639;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .usp__step-label {
    font-size: clamp(1.875rem, 1.089rem + 1.637vi, 2.563rem);
  }
}

.usp__step-num {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #0A8639;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .usp__step-num {
    font-size: clamp(3rem, 1.429rem + 3.274vi, 4.375rem);
  }
}

.usp__step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1rem;
  background-color: #7ec698;
  border-radius: 2.5rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .usp__step-tag {
    padding: 0.9375rem 2.5rem;
    font-size: clamp(1rem, 2.0833333333vw, 1.875rem);
  }
}

.usp__step-img {
  width: 100%;
  max-width: 12.5rem;
  height: auto;
  aspect-ratio: 248/162;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .usp__step-img {
    max-width: 15.5rem;
    border-radius: 0.5625rem;
  }
}

.usp__step-desc {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #000;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .usp__step-desc {
    font-size: clamp(1rem, 0.429rem + 1.19vi, 1.5rem);
    line-height: 1.5;
  }
}

/* ── 締めメッセージ ── */
.usp__message-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .usp__message-wrap {
    padding-top: clamp(3rem, -5rem + 16.667vi, 10rem);
  }
}

.usp__message {
  background-color: #fff;
  border: 0.1875rem solid #000;
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .usp__message {
    padding: 2.125rem 6.25rem 2.125rem 2.8125rem;
    gap: 0.375rem;
    border-width: 0.375rem;
    border-radius: 0;
    align-items: flex-start;
  }
}

.usp__message-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .usp__message-text {
    gap: 0.375rem;
  }
}

.usp__message-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .usp__message-img {
    display: block;
    position: absolute;
    right: 0.625rem;
    bottom: 0.375rem;
    width: clamp(9.75rem, 2.964rem + 14.137vi, 15.688rem);
    height: auto;
    z-index: 10;
  }
}

.usp__message-sub {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  font-style: italic;
  color: #000;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .usp__message-sub {
    font-size: clamp(1.125rem, -0.446rem + 3.274vi, 2.5rem);
  }
}

.usp__message-main {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  font-style: italic;
  color: #000;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .usp__message-main {
    font-size: clamp(1.75rem, -0.893rem + 5.506vi, 4.063rem);
    line-height: 1.3;
  }
}

.usp__message-accent {
  color: #E70013;
}

/* ========================================
  USP SP専用レイアウト
======================================== */
/* PC専用要素をSPで非表示 */
@media screen and (max-width: 767px) {
  .usp__pc-only {
    display: none;
  }
}

/* カード1: SP時にbadge+photoを横並び */
.usp__main-card-photo-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .usp__main-card-photo-pc {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.usp__main-card-photo-sp {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .usp__main-card-photo-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .usp__main-card-body {
    display: grid;
    grid-template-columns: 45% 1fr;
    grid-template-rows: auto auto;
    gap: 0.625rem;
    align-items: center;
  }
  .usp__main-card-text-area {
    display: contents;
  }
  .usp__main-card-desc {
    grid-column: 1/-1;
    grid-row: 1;
    padding-left: 2.125rem;
    margin-left: 0;
  }
  .usp__badge {
    grid-column: 1;
    grid-row: 2;
    margin-left: 0;
  }
  .usp__badge-img {
    width: 100%;
    height: auto;
  }
  .usp__main-card-photo {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    aspect-ratio: 188/120;
  }
}
/* SP専用: カード2に埋め込むステップセクション */
.usp__sp-embed {
  display: none;
}
@media screen and (max-width: 767px) {
  .usp__sp-embed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
}

.usp__sp-embed-heading {
  background-color: #0A8639;
  color: #fff;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  line-height: 1.4;
  padding: 0.625rem 1rem;
}
.usp__sp-embed-heading strong {
  display: block;
  font-size: 1.6875rem;
  font-weight: 900;
}

.usp__sp-embed-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  background-color: #fff;
  border: 0.1875rem solid #0A8639;
  border-radius: 0.6875rem;
  padding: 0.75rem 0.875rem;
}

.usp__sp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.usp__sp-step-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.usp__sp-step-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.usp__sp-step-label {
  font-family: "Montserrat", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: #0A8639;
}

.usp__sp-step-digit {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0A8639;
  line-height: 1;
}

.usp__sp-step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.625rem;
  background-color: #7ec698;
  border-radius: 2.5rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: #fff;
  white-space: nowrap;
}

.usp__sp-step-img {
  width: 100%;
  aspect-ratio: 148/98;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.375rem;
}

.usp__sp-step-desc {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  color: #000;
  text-align: center;
  line-height: 1.4;
}

.usp__sp-step-br {
  display: none;
}
@media (max-width: 499px) {
  .usp__sp-step-br {
    display: inline;
  }
}

/* SP: 締めメッセージ */
.usp__sp-message {
  position: relative;
  background-color: #fff;
  border: 0.125rem solid #000;
  border-radius: 0.5rem;
  padding: 0.875rem clamp(0.75rem, 0.392rem + 1.79vi, 1.25rem);
  overflow: visible;
}

.usp__sp-message-sub {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(0.75rem, 0.213rem + 2.685vi, 1.5rem);
  font-style: italic;
  color: #000;
  line-height: 1.4;
}

.usp__sp-message-main {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(0.813rem, -0.217rem + 5.145vi, 2.25rem);
  font-style: italic;
  color: #000;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.usp__sp-message-accent {
  color: #E70013;
}

.usp__sp-message-img {
  position: absolute;
  right: clamp(-0.025rem, -1.021rem + 7.606vi, 2.625rem);
  bottom: 0;
  width: clamp(4.125rem, 1.619rem + 12.528vi, 7.625rem);
  height: auto;
}

/* ========================================
  施工事例
======================================== */
.cases {
  background-color: #fff;
  padding: 1.5rem 0 1.6875rem;
}
@media screen and (min-width: 768px) {
  .cases {
    padding: 2.5rem 0 2.5rem;
  }
}

.cases__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cases__inner {
    gap: 2rem;
  }
}

/* .cases__heading → .section-heading（_common-parts.scss） */
.cases__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .cases__slider {
    padding: 0 7.5rem;
    gap: 1.375rem;
  }
}

.cases__slider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .cases__slider-row {
    gap: 0.625rem;
  }
}

.cases__nav {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.cases__nav img {
  width: 3rem;
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .cases__nav img {
    width: 4.375rem;
    height: 4.375rem;
  }
}

.cases__swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.cases__swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
}

@media screen and (min-width: 768px) {
  .cases__swiper .swiper-slide {
    width: calc(50% - 11px);
  }
}
.cases__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #F0FFF1;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .cases__card {
    padding: 1.3125rem;
    gap: 1.3125rem;
  }
}

.cases__card-img {
  width: 100%;
  aspect-ratio: 242/178;
  overflow: hidden;
}

.cases__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cases__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.cases__card-location {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #0A8639;
}
@media screen and (min-width: 768px) {
  .cases__card-location {
    font-size: 1.3125rem;
  }
}

.cases__card-detail {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.cases__card-title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #0A8639;
}
@media screen and (min-width: 768px) {
  .cases__card-title {
    font-size: 1.0625rem;
  }
}

.cases__card-cost {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #0A8639;
}
@media screen and (min-width: 768px) {
  .cases__card-cost {
    font-size: 1.0625rem;
  }
}

.cases__pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.swiper-pagination-bullet {
  display: none;
}

.cases__pagination-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
}

.cases__pagination-dots .swiper-pagination-bullet {
  display: inline-block;
}

.cases__pagination-dots .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #c4c4c4;
  opacity: 1;
  transition: background-color 0.2s;
}

.cases__pagination-dots .swiper-pagination-bullet-active {
  background-color: #0A8639;
}

.cases__pagination-count {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #565656;
}
@media screen and (min-width: 768px) {
  .cases__pagination-count {
    font-size: 1.5rem;
  }
}

/* ========================================
  お客様の声
======================================== */
.voices {
  background-color: #fff;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .voices {
    padding: 2.5rem 0 3.5rem;
  }
}

.voices__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .voices__inner {
    gap: 2rem;
  }
}

/* .voices__heading → .section-heading（_common-parts.scss） */
.voices__cards {
  --grid-cols-sm: 1;
  --grid-gap-sm: 0.9375rem;
  --grid-cols-md: 2;
  --grid-gap-md: 1rem;
  --grid-cols-lg: 3;
  --grid-gap-lg: 1rem;
}

.voices__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #fff;
  border: 0.28125rem solid #0A8639;
  border-radius: 0.59375rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .voices__card {
    flex: 1;
    padding: 0.625rem;
    gap: 0.5625rem;
  }
}

.voices__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .voices__card-header {
    gap: 1.1875rem;
  }
}

.voices__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #D9D9D9;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .voices__avatar {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.voices__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voices__meta {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .voices__meta {
    gap: 0.5rem;
  }
}

.voices__stars {
  height: 1.25rem;
  width: auto;
  align-self: flex-start;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .voices__stars {
    height: 1.8125rem;
  }
}

.voices__name {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .voices__name {
    font-size: 1.6875rem;
  }
}

.voices__text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: clamp(0.813rem, 0.678rem + 0.671vi, 1rem);
  color: #000;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .voices__text {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

.voices__text-strong {
  display: block;
  font-weight: 700;
  color: #0A8639;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .voices__text-strong {
    margin-bottom: 0.5rem;
  }
}

/* ========================================
  明朗な料金体系
======================================== */
.pricing {
  background-color: #f9f5e4;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .pricing {
    padding: 3.0625rem 0 3.0625rem;
  }
}

.pricing__inner {
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .pricing__inner {
    gap: 2rem;
  }
}

/* .pricing__heading → .section-heading（_common-parts.scss） */
.pricing__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .pricing__body {
    padding: 0;
    gap: 1.375rem;
  }
}

/* ── SP: 列順スワップ（内容=左、料金=右） ── */
.pricing__table thead tr,
.pricing__tbody-tr {
  display: flex;
}
@media screen and (min-width: 768px) {
  .pricing__table thead tr,
  .pricing__tbody-tr {
    display: table-row;
  }
}

.pricing__th--note,
.pricing__td--note {
  order: 1;
}
@media screen and (min-width: 768px) {
  .pricing__th--note,
  .pricing__td--note {
    order: unset;
  }
}

.pricing__th--price,
.pricing__td--price {
  order: 2;
}
@media screen and (min-width: 768px) {
  .pricing__th--price,
  .pricing__td--price {
    order: unset;
  }
}

/* ── 料金テーブル ── */
.pricing__table-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .pricing__table-wrap {
    max-width: 70rem;
  }
}

.pricing__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 0.1875rem solid #7ec698;
}
@media screen and (min-width: 768px) {
  .pricing__table {
    border-width: 0.2rem;
  }
}

.pricing__th {
  padding: 0.625rem 0.75rem;
  background-color: #7ec698;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.821rem + 0.895vi, 1.25rem);
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .pricing__th {
    padding: 0.75rem 1rem;
    font-size: 2.0625rem;
  }
}

.pricing__th--label {
  display: none;
}
@media screen and (min-width: 768px) {
  .pricing__th--label {
    display: table-cell;
    width: 30%;
  }
}

.pricing__th--price {
  flex: 0 0 40%;
  border-left: 0.125rem solid #7ec698;
}
@media screen and (min-width: 768px) {
  .pricing__th--price {
    flex: unset;
    width: 30%;
    border-left: 0.125rem solid #7ec698;
    border-right: 0.125rem solid #7ec698;
  }
}

.pricing__th--note {
  display: table-cell;
  flex: 1 1 auto;
}
@media screen and (min-width: 768px) {
  .pricing__th--note {
    flex: unset;
    width: 40%;
  }
}

.pricing__td {
  padding: 0.625rem 0.75rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  vertical-align: middle;
  border-top: 0.125rem solid #7ec698;
}
@media screen and (min-width: 768px) {
  .pricing__td {
    padding: 0.75rem 1rem;
    font-size: 1.5625rem;
  }
}

.pricing__td--label {
  display: none;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .pricing__td--label {
    display: table-cell;
    padding-left: 1.5rem;
  }
}

.pricing__td--price {
  flex: 0 0 40%;
  border-left: 0.125rem solid #7ec698;
}
@media screen and (min-width: 768px) {
  .pricing__td--price {
    flex: unset;
    border-left: 0.125rem solid #7ec698;
    border-right: 0.125rem solid #7ec698;
  }
}

.pricing__td--highlight {
  font-weight: 700;
  font-size: clamp(1.125rem, 0.857rem + 1.342vi, 1.5rem);
  color: #E70013;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .pricing__td--highlight {
    display: table-cell;
    font-size: 2.8125rem;
    vertical-align: middle;
  }
}

.pricing__td--note {
  display: table-cell;
  flex: 1 1 auto;
  text-align: center;
  font-size: clamp(0.625rem, 0.357rem + 1.342vi, 1rem);
  font-weight: 500;
  letter-spacing: 0;
  padding: 0.625rem clamp(0.25rem, -0.018rem + 1.342vi, 0.625rem);
}
@media screen and (min-width: 768px) {
  .pricing__td--note {
    flex: unset;
    padding-left: 1rem;
    font-size: 1.125rem;
  }
}

.pricing__note-br {
  display: inline;
}

.pricing__note {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  color: #333333;
  letter-spacing: 0.0108em;
  text-align: left;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .pricing__note {
    font-size: 1.125rem;
  }
}

/* ── お支払い方法 ── */
/* pricing__payment / body / badges / cards / note → _common-parts.scss の payment-box に移動 */
.pricing__payment-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.pricing__payment-divider {
  border: none;
  border-top: 0.125rem solid #0A8639;
  align-self: stretch;
}
@media screen and (min-width: 768px) {
  .pricing__payment-divider {
    border-top-width: 0.15rem;
  }
}

.pricing__payment-note {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  color: #333333;
  text-align: right;
  align-self: flex-end;
  letter-spacing: 0.019em;
}
@media screen and (min-width: 768px) {
  .pricing__payment-note {
    font-size: 1.1875rem;
  }
}

/* ========================================
  対応可能エリア
======================================== */
.area {
  background-color: #F9F5E4;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .area {
    padding: 2.5rem 0 3.5rem;
  }
}

.area__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .area__inner {
    gap: 2rem;
  }
}

/* .area__heading → .section-heading（_common-parts.scss） */
.area__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .area__body {
    padding: 0;
    gap: 1.5rem;
  }
}

.area__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 1000px) {
  .area__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.375rem;
  }
}

.area__block {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .area__block {
    gap: 0.875rem;
  }
}

.area__region-head {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background-color: #7EC698;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .area__region-head {
    padding: 0.625rem 2.25rem;
    font-size: 2.5rem;
  }
}

.area__prefectures {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #000;
  line-height: 1.6;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .area__prefectures {
    font-size: 1.9375rem;
    padding-left: 2.3125rem;
  }
}

.area__note {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.019em;
}
@media screen and (min-width: 768px) {
  .area__note {
    font-size: 1.1875rem;
  }
}

/* ========================================
  お問い合わせフロー
======================================== */
.flow {
  background-color: #fff;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 2.5rem 0 3.5rem;
  }
}

.flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    gap: 2rem;
  }
}

/* ── 見出し + 三角 ── */
.flow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 0;
}

.flow__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  background-color: #0A8639;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.813rem, 0.589rem + 1.119vi, 1.125rem);
  color: #fff;
  text-align: center;
  align-self: stretch;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .flow__heading {
    padding: 1.5625rem 2.5rem;
    font-size: clamp(2.25rem, 1.821rem + 0.893vi, 2.625rem);
  }
}

.flow__heading-free {
  font-weight: 800;
  font-size: 1.375rem;
  color: #FF0;
}
@media screen and (min-width: 768px) {
  .flow__heading-free {
    font-size: clamp(3rem, 2.429rem + 1.19vi, 3.5rem);
  }
}

.flow__triangle {
  width: 0;
  height: 0;
  border-left: 3.75rem solid transparent;
  border-right: 3.75rem solid transparent;
  border-top: 2rem solid #0A8639;
}
@media screen and (min-width: 768px) {
  .flow__triangle {
    border-left-width: 5.40625rem;
    border-right-width: 5.40625rem;
    border-top-width: 4.9375rem;
    margin-top: -2.0625rem;
  }
}

/* ── ステップグリッド ── */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .flow__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
  }
}

/* ── 各ステップカード ── */
.flow__card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 0.1875rem solid #0A8639;
}
@media screen and (min-width: 768px) {
  .flow__card {
    border-width: 0.3125rem;
  }
}

.flow__card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #0A8639;
  padding: 0.625rem clamp(0.125rem, -0.322rem + 2.237vi, 0.75rem) 0.625rem clamp(0.125rem, -0.322rem + 2.237vi, 0.75rem);
}
@media screen and (min-width: 768px) {
  .flow__card-header {
    padding: 0.875rem 1.1875rem 0.6875rem 1.375rem;
    gap: 0.8125rem;
  }
}

.flow__card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.125rem, 0.32rem + 4.027vi, 2.25rem);
  height: clamp(1.125rem, 0.32rem + 4.027vi, 2.25rem);
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .flow__card-num {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.flow__card-num span {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0A8639;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .flow__card-num span {
    font-size: 1.625rem;
  }
}

.flow__card-title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.563rem, 0.16rem + 2.013vi, 1.125rem);
  color: #fff;
  line-height: 1.3;
  flex: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .flow__card-title {
    font-size: clamp(1.125rem, 0.911rem + 0.446vi, 1.313rem);
  }
}

.flow__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .flow__card-body {
    align-items: center;
    gap: 1.4375rem;
    padding: 0.875rem 0.75rem 3.375rem;
  }
}

.flow__card-img {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  aspect-ratio: 150/89;
  border-radius: 0.375rem;
}
@media screen and (min-width: 768px) {
  .flow__card-img {
    width: 100%;
    margin-left: 0;
    border-radius: 0.5rem;
  }
}

.flow__card-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 150/89;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .flow__card-img img {
    aspect-ratio: 323/191;
  }
}

.flow__card-desc {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: clamp(0.5rem, 0.276rem + 1.119vi, 0.813rem);
  color: #000;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.5;
  max-width: 20.0625rem;
  align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .flow__card-desc {
    font-size: clamp(1rem, 0.429rem + 1.19vi, 1.5rem);
    line-height: 1.5;
  }
}

/* ========================================
  対応可能な害獣
======================================== */
.pests {
  background-color: #fff;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .pests {
    padding: 2.5rem 0 3.5rem;
  }
}

.pests__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  container-type: inline-size;
}
@media screen and (min-width: 768px) {
  .pests__inner {
    gap: 1.5rem;
  }
}

/* .pests__heading → .section-heading（_common-parts.scss） */
.pests__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 0.625rem;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .pests__grid {
    gap: 1.125rem 1.5625rem;
    padding: 0 3.75rem;
  }
}
@media screen and (min-width: 1000px) {
  .pests__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .pests__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pests__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background-color: #0A8639;
  padding: 0.75rem 0.5625rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .pests__card {
    padding: 1.1875rem 1.28125rem;
    gap: 1.125rem;
  }
}

.pests__card-img {
  width: 100%;
  aspect-ratio: 166/132;
  overflow: hidden;
  background-color: #D9D9D9;
  border-radius: 0 !important;
}

.pests__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 !important;
}

.pests__card-name {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.688rem, 0.285rem + 2.013vi, 1.25rem);
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pests__card-name {
    font-size: clamp(1.5rem, 1.214rem + 0.595vi, 1.75rem);
  }
}

/* ========================================
  よくある質問
======================================== */
.faq {
  background-color: #E5F4E5;
  padding: 2rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 2.5rem 0 3.5rem;
  }
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    gap: 1.5rem;
  }
}

/* .faq__heading → .section-heading（_common-parts.scss） */
.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__list {
    grid-template-columns: 1fr;
    gap: 1.125rem;
    padding: 0 4.8125rem;
  }
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 0.875rem 1.25rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .faq__item {
    padding: 0.8125rem 1.5rem;
    gap: 0.5rem;
  }
}

/* ── Q行 ── */
.faq__question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .faq__question {
    gap: 0.9375rem;
  }
}

.faq__q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #0A8639;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq__q-badge {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.faq__q-badge span {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .faq__q-badge span {
    font-size: 1.3125rem;
  }
}

.faq__question-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #000;
  line-height: 1.4;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .faq__question-text {
    font-size: 1.625rem;
  }
}

/* ── A行 ── */
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .faq__answer {
    gap: 0.625rem;
  }
}

.faq__a-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0.15625rem solid #0A8639;
  background-color: #fff;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq__a-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-width: 0.15625rem;
  }
}

.faq__a-badge span {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0A8639;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .faq__a-badge span {
    font-size: 1.3125rem;
  }
}

.faq__answer-text {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: clamp(0.813rem, 0.678rem + 0.671vi, 1rem);
  color: #000;
  line-height: 1.6;
  flex: 1;
  padding-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .faq__answer-text {
    font-size: 1.25rem;
    line-height: 1.6;
    padding-top: 0.3125rem;
  }
}

/* ========================================
  運営者情報
======================================== */
.about {
  background-color: #eeeeee;
  padding: 2rem 0 2.5rem;
  scroll-margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 2.5rem 0 3.5rem;
    scroll-margin-top: 3.75rem;
  }
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  container-type: inline-size;
}
@media screen and (min-width: 768px) {
  .about__inner {
    gap: 2rem;
  }
}

/* .about__heading → .section-heading（_common-parts.scss） */
.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .about__body {
    gap: 2rem;
    padding: 0;
  }
}

/* ── ヒーロー ── */
.about__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.about__sparkle {
  flex-shrink: 0;
}

.about__sparkle img {
  width: clamp(1.5rem, 0.784rem + 3.579vi, 2.5rem);
  height: auto;
}
@media screen and (min-width: 768px) {
  .about__sparkle img {
    width: 5.5rem;
  }
}

.about__hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.about__hero-sub {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(0.813rem, 0.499rem + 1.566vi, 1.25rem);
  text-align: center;
  line-height: 1.5;
  background: linear-gradient(180deg, #ff2c01 28%, #ff8201 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .about__hero-sub {
    font-size: clamp(1.438rem, 0.223rem + 2.53vi, 2.5rem);
    line-height: 2;
  }
}

.about__hero-main {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 0.463rem + 2.685vi, 1.75rem);
  text-align: center;
  text-decoration: underline;
  background: linear-gradient(0deg, #ff8f01 0%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: -0.125rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .about__hero-main {
    font-size: clamp(2.5rem, 3.869vw + 0.643rem, 4.125rem);
    margin-top: 0;
  }
}

/* ── テキスト・写真エリア ── */
.about__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .about__content {
    gap: 1rem;
  }
}

.about__desc {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: clamp(0.813rem, 0.678rem + 0.671vi, 1rem);
  color: #000;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about__desc {
    font-size: clamp(1.125rem, 0.696rem + 0.893vi, 1.5rem);
    line-height: 1.85;
    padding-inline: 1rem;
  }
}

.about__photos {
  display: flex;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .about__photos {
    gap: 1.75rem;
    padding-inline: 1rem;
  }
}

.about__photo {
  flex: 1;
  aspect-ratio: 360/240;
  background-color: #d9d9d9;
  border-radius: 0.375rem;
}
@media screen and (min-width: 768px) {
  .about__photo {
    border-radius: 0.5rem;
  }
}

/* ── 会社情報テーブル ── */
.about__info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about__info-row {
  display: flex;
  align-items: stretch;
  border-bottom: 0.0625rem solid #d0d0d0;
  margin-top: 0.5rem;
  container-type: inline-size;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .about__info-row {
    margin-top: 2rem;
    flex-direction: column;
  }
}

.about__info-row:first-child {
  border-bottom: none;
  margin-top: 0;
}

.about__info-row:first-child {
  border-top: 0.0625rem solid #d0d0d0;
}

.about__info-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 41.6666666667%;
  background-color: #0A8639;
  padding: 0.625rem 0.75rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.571rem + 0.895vi, 1rem);
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__info-label {
    width: 31.625rem;
    padding: 0.9375rem 1.4375rem;
    font-size: 2.5833333333cqi;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .about__info-label {
    justify-content: left;
    width: 100%;
  }
}

.about__info-value {
  flex: 1;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 0.625rem 0.75rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.571rem + 0.895vi, 1rem);
  color: #000;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .about__info-value {
    padding: 0.9375rem 2.5625rem;
    font-size: clamp(1.25rem, 0.607rem + 1.339vi, 1.813rem);
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .about__info-value {
    width: 100%;
  }
}

/* ========================================
  最終CTA
======================================== */
.cta {
  background-color: #EEEEEE;
  padding: 2rem 1rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 2.5rem 3.5rem 5.375rem;
    container-type: inline-size;
  }
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cta__inner {
    gap: 1.625rem;
  }
}

/* ── 見出し ── */
.cta__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .cta__title-row {
    gap: 1.1875rem;
  }
}

.cta__title-deco {
  width: 1.375rem;
  height: auto;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .cta__title-deco {
    width: 2.15625rem;
  }
}

.cta__title {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(0.813rem, 0.32rem + 2.461vi, 1.5rem);
  color: #FA6219;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .cta__title {
    font-size: clamp(1.813rem, 0.455rem + 2.827vi, 3rem);
  }
}

/* ========================================
  フッター
======================================== */
.footer {
  background-color: #000;
  padding: 1.5rem 1rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .footer {
    background-color: #0A8639;
    padding: 3.5rem 7.5rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    gap: 2.3125rem;
  }
}

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.footer__nav-link,
.footer__nav-link:visited {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .footer__nav-link,
  .footer__nav-link:visited {
    font-size: 1.5625rem;
  }
}

@media (any-hover: hover) {
  .footer__nav-link:hover {
    text-decoration: underline;
  }
}
.footer__nav-divider {
  display: inline-block;
  width: 0.0625rem;
  height: 0.875rem;
  background-color: #fff;
  margin: 0 0.75rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .footer__nav-divider {
    height: 1.6875rem;
    margin: 0 1.25rem;
  }
}

.footer__copyright {
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 1.5625rem;
  }
}

/* ── SP固定CTA（フッター下部） ── */
.footer__sp-cta {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  background-color: #0A8639;
  padding: 0.75rem 0.75rem 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer__sp-cta {
    display: none;
  }
}

body:has(.header__drawer.is-open) .footer__sp-cta {
  opacity: 0;
  visibility: hidden;
}

.footer__sp-btn {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 0.5rem;
  border-radius: 0.625rem;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.footer__sp-btn-text {
  white-space: nowrap;
}

.footer__sp-btn--tel {
  background-color: #fff;
  color: #FA6219;
}

.footer__sp-btn--mail,
.footer__sp-btn--mail:visited {
  background-color: #005FCB;
  color: #fff;
}

.footer__sp-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.footer__sp-btn-icon img {
  width: 100%;
  height: auto;
}
/*# sourceMappingURL=style.css.map */
