@charset "UTF-8";

/* エントリ: scss/style.scss → css/style.css */
/* リセット — 現代的な静的サイト用 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

/* 基本フォントサイズ
   - リキッドではなく 16px 固定（rem の基準）
   - レスポンシブは clamp とコンテナクエリで対応
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* 基本テキストスタイル
--------------------------------------- */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  color: #1A1A1A;
  background-color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* 約物・かな・英数のアキ詰め（プロポーショナル字形）を全体に適用 */
  font-feature-settings: "pwid", "pkna", "palt";
}

/* aタグのトランジション・ホバー
--------------------------------------- */
a {
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

/* aタグ内のimg回り込み対策
--------------------------------------- */
a img {
  vertical-align: bottom;
}

/* スマホのみ電話番号にリンク（max-width は案件により変更）
--------------------------------------- */
.tellink {
  pointer-events: none;
}

@media screen and (max-width: 640px) {
  .tellink {
    pointer-events: auto;
  }
}

/* labelタグカーソルデフォルト
--------------------------------------- */
label[for] {
  cursor: default;
}

/* スクリーンリーダー用テキスト（視覚非表示）
--------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ヘッダー */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  position: relative;
  max-width: 1600px;
  margin-inline: auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 30px 0;
}

@media screen and (max-width: 768px) {
  .site-header__inner {
    height: 50px;
    padding-inline: 12px 0;
  }
}

.site-header__logo {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .site-header__logo {
    width: 140px;
  }
}

.site-header__logo img {
  width: 200px;
}

@media screen and (max-width: 768px) {
  .site-header__logo img {
    width: 100%;
  }
}

.site-header__logo a {
  display: flex;
  height: 100%;
  align-items: center;
  padding-inline: 10px;
}

.site-header__right {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header__tel {
  display: flex;
  width: 220px;
  height: 100%;
  padding-inline: 25px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .site-header__tel {
    width: 155px;
  }
}

@media screen and (max-width: 670px) {
  .site-header__tel {
    display: none;
  }
}

.site-header__mail {
  width: 100px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0C2E91;
  border-radius: 0 0 6px 6px;
}

@media screen and (max-width: 768px) {
  .site-header__mail {
    width: 50px;
    height: 57px;
  }
}

.site-header__mail img {
  width: 35px;
}

@media screen and (max-width: 768px) {
  .site-header__mail img {
    width: 24px;
  }
}

.site-header__hamburger {
  position: relative;
  width: 100px;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

@media screen and (max-width: 670px) {
  .site-header__hamburger {
    width: 50px;
  }
}

.site-header__hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background-color: #0C2E91;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

body.is-menu-open .site-header__hamburger span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

body.is-menu-open .site-header__hamburger span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  transform: scaleX(0);
}

body.is-menu-open .site-header__hamburger span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

/* ドロワー用バックドロップ（1000px以上で左側にフィルター・body直下のため viewport 全体に表示） */
.site-header__drawer-backdrop {
  display: none;
  pointer-events: none;
}

@media screen and (min-width: 1000px) {
  .site-header__drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 98;
    background-color: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

@media screen and (min-width: 1000px) {
  body.is-menu-open .site-header__drawer-backdrop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ドロワー（body直下のため viewport 基準で表示・ヘッダーの backdrop-filter の影響を受けない） */
.site-header__drawer {
  position: fixed;
  inset: 0;
  top: 90px;
  z-index: 99;
  background-color: #ffffff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

@media screen and (min-width: 1000px) {
  .site-header__drawer {
    left: auto;
    width: 40%;
    min-width: 280px;
  }
}

@media screen and (max-width: 768px) {
  .site-header__drawer {
    top: 50px;
  }
}

body.is-menu-open .site-header__drawer {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-header__drawer-inner {
  padding: 24px 16px 40px;
}

.site-header__tel-sp {
  display: none;
}

@media screen and (max-width: 670px) {
  .site-header__tel-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    margin-top: 24px;
    border: none;
  }
}

@media screen and (max-width: 670px) {
  .site-header__tel-sp img {
    height: 36px;
  }
}

.site-header__nav {
  padding-inline: 8px;
}

.site-header__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header__list a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  color: #1A1A1A;
  border-bottom: 1px solid #eee;
}

/* トップページ */
/* メインビジュアル */
.mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__video {
  width: 100%;
  max-height: 900px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 500px) {
  .mv__video {
    max-height: 100%;
  }
}

.mv__img {
  width: 100%;
  position: absolute;
  z-index: 1;
  max-width: clamp(451px, 683px + (100vw - 1600px) * 232 / 509, 683px);
  bottom: 15%;
  left: 0%;
  height: auto;
  padding-left: 62px;
}

@media screen and (max-width: 1090px) {
  .mv__img {
    padding-inline: 40px;
    bottom: 20%;
    max-width: clamp(270px, 450px + (100vw - 1090px) * 180 / 589, 450px);
  }
}

@media screen and (max-width: 500px) {
  .mv__img {
    padding-inline: 25px;
    bottom: 13%;
    max-width: 100%;
    width: 100%;
  }
}

.clients {
  position: relative;
  margin-top: clamp(-43px, -13vw, -118px);
}

@media screen and (max-width: 768px) {
  .clients {
    margin-top: clamp(-118px, -8vw, -100px);
  }
}

@media screen and (max-width: 767px) {
  .clients {
    margin-top: -32px;
  }
}

@media screen and (max-width: 500px) {
  .clients {
    margin-top: -40px;
  }
}

.clients__inner {
  width: 100%;
  margin-inline: auto;
}

.clients__slider-block {
  position: relative;
}

.clients__track {
  /* overflow-x: clip; */
  overflow: hidden;
}

.clients__track-inner {
  display: flex;
  gap: 10px;
  animation: clients-scroll 30s linear infinite;
}

.clients__slide {
  flex: 0 0 auto;
}

.clients__slide img {
  display: block;
  width: 350px;
}

@media screen and (max-width: 768px) {
  .clients__slide img {
    width: 200px;
  }
}

.clients__label {
  position: absolute;
  z-index: 2;
}

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

.clients__label--left {
  max-width: clamp(250px, 40vw, 635px);
  top: clamp(-75px, -5vw, -31px);
  left: 75px;
}

@media screen and (max-width: 768px) {
  .clients__label--left {
    left: 4%;
    right: auto;
    transform: none;
  }
}

.clients__label--right {
  max-width: 377px;
  bottom: -6px;
  left: 50%;
  transform: translateX(10%);
}

@media screen and (max-width: 870px) {
  .clients__label--right {
    max-width: clamp(200px, 40vw, 250px);
    bottom: -32px;
    right: 4%;
    left: auto;
    transform: none;
  }
}

/*
@keyframes clients-scroll {
  from {
    transform: translateX(0);
  }

  to {
    /* transform: translate(-50%, -50%); 
    transform: translateX(-50%);
  }
}
*/
/* クチコミ */
@media screen and (max-width: 725px) {
  .reviews {
    padding-top: 33px;
  }
}

.reviews__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

.reviews__img-wrap {
  max-width: 1160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reviews__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

/* 対応エリア */
/* =====================================================
   料金表（トップページ用・固有調整スコープ）
   デザインは .installations-price 系を共有。
   トップページだけの調整は、すべて .fp-price 配下に記述する
   （installations ページの料金表には影響しない）。
   ===================================================== */
.fp-price {
  /* 「対応できるエリア」との間隔（トップページ固有） */
  margin-bottom: 80px;
}

/* [2] 料金表セクションの背景を対応エリアと同じ紺色に */
.fp-price .installations-price {
  background-image: none;
  background-color: #0C2E91;
}

/* [3][4] visual--01 / visual--02 を削除したため、重なり用の負オフセットをリセット */
.fp-price .installations-price__area {
  top: 0;
}

.fp-price .installations-price__group {
  top: 0;
  /* リボン（visual--03）の重なり分だけ上部に余白を確保 */
  padding-top: 200px;
}

@media screen and (max-width: 980px) {
  .fp-price .installations-price__group {
    /* 980px=200px を起点に画面幅へ比例（320pxで65pxまで可変） */
    padding-top: clamp(65px, calc(200px - (980px - 100vw) * 135 / 660), 200px);
  }
}

@media screen and (max-width: 640px) {
  .fp-price .installations-price__group {
    /* 640px=230px を起点に画面幅へ比例（最小105px） */
    padding-top: clamp(105px, 35.94vw, 230px);
  }
}

/* アコーディオンのカード幅を拡張（長いラベルが1行に収まるように） */
.fp-price .installations-price-acc__item {
  max-width: 830px;
}

/* visual--02 の場所を空けるための上マージンをリセット（visual--02 削除に伴い） */
.fp-price .installations-price-acc {
  margin-top: 0;
}

/* visual--03（オレンジ「料金表」リボン）：当初の絶対配置のまま、位置だけ上部へ（top:0）
   ※細かい調整は正式画像の入手後に行う */
.fp-price .installations-price__visual--03 {
  top: -48px;
}

@media screen and (max-width: 980px) {
  .fp-price .installations-price__visual--03 {
    /* 980px=-48px を起点に画面幅へ比例（320pxで-14pxまで可変） */
    top: clamp(-48px, calc(-48px + (980px - 100vw) * 34 / 660), -14px);
  }
}

@media screen and (max-width: 640px) {
  .fp-price .installations-price__visual--03 {
    /* 640px=-11px を起点に画面幅へ比例（320pxで-3pxまで可変） */
    top: clamp(-11px, calc(-11px + (640px - 100vw) * 8 / 320), -3px);
  }
}

/* ===== 料金表アコーディオン（トップページ：クリーニング内容）専用スタイル ===== */
/* カテゴリバッジ（家庭用エアコン／業務用エアコン） */
.fp-price .fp-acc-cat {
  padding: 16px 0 14px;
}

.fp-price .fp-acc-cat--gap {
  padding-top: 40px;
}

.fp-price .fp-acc-badge {
  display: inline-block;
  background: #0C2E91;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  padding: 11px 47px;
  border-radius: 999px;
}

@media screen and (max-width: 418px) {
  .fp-price .fp-acc-badge {
    font-size: 14px;
    padding: 11px 30px;
  }
}

/* メニュー見出し（完全分解クリーニング等）：青い●付き */
.fp-price .fp-acc-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  color: #1a1a2e;
  padding: 14px 0 8px;
}

.fp-price .fp-acc-menu::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0C2E91;
}

/* オプション見出し：グレー●付き・インデント */
.fp-price .fp-acc-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 16px;
  color: #1a1a2e;
  padding: 16px 0 8px 40px;
}

/* 560px 以下：オプション見出しのインデントを詰める（元 padding-left:40px） */
@media screen and (max-width: 560px) {
  .fp-price .fp-acc-opt {
    padding-left: 16px;
  }
}

.fp-price .fp-acc-opt::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b3b8c7;
}

/* 価格行：ラベル｜旧価格｜（矢印）新価格 の3列グリッドで各列の頭を揃える。
   列幅を固定することで、全行で旧価格・新価格・矢印の位置が縦に揃う。 */
.fp-price .installations-price-acc__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 105px 135px;
  align-items: center;
  column-gap: 40px;
  /* 左インデントは画面幅に応じて可変（2056pxで120px→906pxで40px）。
     カード幅830pxに対し、長いラベル（防水パン&排水トラップ洗浄）が折り返さない上限に調整。 */
  padding-left: clamp(40px, 40px + (100vw - 906px) * 80 / 1150, 120px);
  padding-right: 40px;
}

/* 905px 以下：大きな固定インデント（左160px）を縮小してラベル列に幅を回す。
   padding-right は 40px のまま（完全分解の注記がはみ出さないよう吸収に使う） */
@media screen and (max-width: 905px) {
  .fp-price .installations-price-acc__row {
    grid-template-columns: minmax(0, 1fr) auto 135px;
    column-gap: 24px;
    padding-left: 40px;
  }
}

/* 560px 以下：ラベル(左)と金額(右)を横並びにする2列レイアウト（ラベル｜金額）。
   旧価格→新価格を右側で縦に積み、金額は右寄せ（右側に余白を作らない）。 */
@media screen and (max-width: 560px) {
  .fp-price .installations-price-acc__row {
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: start;
    padding-left: 0;
    padding-right: 0;
    padding-block: 10px;
    height: auto;
  }
}

/* ラベル（壁掛けタイプ等）：色を #4d4d4d に、太さを少し細く（700→600） */
.fp-price .installations-price-acc__label {
  color: #4d4d4d;
  font-weight: 600;
}

/* PC（906px以上）：ラベルを列内で右寄せにし、価格側へ寄せる */
@media screen and (min-width: 906px) {
  .fp-price .installations-price-acc__label {
    text-align: right;
  }
}

/* 560px 以下：ラベルを左・1列目・1行目に。左インデントは 560px で 60px、以降は画面幅に比例して縮小 */
@media screen and (max-width: 560px) {
  .fp-price .installations-price-acc__label {
    grid-column: 1;
    grid-row: 1;
    padding-left: calc(100vw * 60 / 560);
  }
}

@media screen and (max-width: 418px) {
  .fp-price .installations-price-acc__label {

    padding-left: 15px;
  }
}

/* 旧価格：列の左（頭）に揃える */
.fp-price .installations-price-acc__old {
  text-align: left;
}

/* 560px 以下：旧価格を右・2列目・1行目（ラベルと同じ行）に */
@media screen and (max-width: 560px) {
  .fp-price .installations-price-acc__old {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }
}

/* 新価格：赤矢印は列の左外（gap内）へ絶対配置し、新価格テキストの頭を各行で揃える */
.fp-price .installations-price-acc__new {
  position: relative;
}

/* 560px 以下：新価格を右・2列目・2行目に */
@media screen and (max-width: 560px) {
  .fp-price .installations-price-acc__new {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
}

.fp-price .installations-price-acc__new::before {
  position: absolute;
  /* 旧価格と新価格の中央あたりに配置 */
  left: -41px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

/* 905px 以下：列間ギャップ縮小に合わせ、新価格前の赤矢印の位置も内側へ寄せる */
@media screen and (max-width: 905px) {
  .fp-price .installations-price-acc__new::before {
    left: -24px;
  }
}

/* 560px 以下：赤矢印を絶対配置から通常フロー（新価格の直前）へ戻す */
@media screen and (max-width: 560px) {
  .fp-price .installations-price-acc__new::before {
    position: static;
    transform: none;
    margin-right: 6px;
  }
}

/* オプションの単価：新価格と同じ3列目に置き、赤・大きめで頭を揃える */
.fp-price .fp-acc-opt-row .installations-price-acc__single {
  grid-column: 3;
  width: auto;
  text-align: left;
  color: #C1272D;
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 516px) {
  .fp-price .fp-acc-opt-row .installations-price-acc__single {
    font-size: 20px;
  }
}

/* 560px 以下：オプション単価を右・2列目・1行目（ラベルと同じ行）に */
@media screen and (max-width: 560px) {
  .fp-price .fp-acc-opt-row .installations-price-acc__single {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

/* 完全分解の「無料サービス」注記：新価格の下に2行で表示（3枚目デザイン準拠） */
.fp-price .fp-acc-row--tall {
  height: auto;
  align-items: start;
  padding-block: 14px;
}

.fp-price .fp-acc-newcol {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* 560px 以下：newcol を display:contents で行グリッドへ昇格し、new と freenote を直接の子にする */
@media screen and (max-width: 560px) {
  .fp-price .fp-acc-row--tall .fp-acc-newcol {
    display: contents;
  }
}

.fp-price .fp-acc-freenote {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  /* 3枚目デザイン準拠：1行目（〜を）を折り返さず、<br>で2行に */
  white-space: nowrap;
}

/* 560px 以下：注記を価格の下段(3行目)にカード幅いっぱい・右寄せで1行表示する */
@media screen and (max-width: 560px) {
  .fp-price .fp-acc-row--tall .fp-acc-freenote {
    grid-column: 1 / -1;
    grid-row: 3;
    white-space: nowrap;
    text-align: right;
  }
}

/* 560px 以下：注記を1行にするため <br> による改行を無効化 */
@media screen and (max-width: 560px) {
  .fp-price .fp-acc-row--tall .fp-acc-freenote br {
    display: none;
  }
}

.fp-price .fp-acc-hl {
  background: linear-gradient(transparent 55%, #fff35b 55%);
  padding: 0 2px;
  /* 「抗菌コート（通常3,300円）」の部分だけ赤（残りは #000） */
  color: #C1272D;
}

/* 末尾の注記（※ドラム式洗濯機の一部のメーカーは対応不可…） */
.fp-price .fp-acc-note {
  padding: 22px 40px 4px 8px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

/* 560px 以下：末尾注記の余白を詰める */
@media screen and (max-width: 560px) {
  .fp-price .fp-acc-note {
    padding-right: 16px;
  }
}

/* [1] トップページの対応エリア背景：ウェーブは引き伸ばさず（cover解除・原寸比率）、
   その下を紺色で塗る。SVG（ウェーブ＋紺の本体）を上部に置き、下部を紺グラデで塗ることで、
   ウェーブ上部の白抜き（切り欠き）を保ちつつ、エリア全体を紺色にする。
   ※料金表を内包してエリアが縦長になっても白地が出ないようにするため。 */
@media screen and (min-width: 871px) {

  .home .area,
  .area-wave-page .area {
    background-image:
      url("../img/top/area-bg.svg"),
      linear-gradient(#0C2E91, #0C2E91);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, left bottom;
    background-size: 100% auto, 100% calc(100% - 120px);
  }
}

.area {
  position: relative;
  padding-block: 250px 150px;
  background-image: url("../img/top/area-bg.svg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-top: -169px;
}

@media screen and (max-width: 870px) {
  .area {
    background-image: none;
    background-color: #0C2E91;
    padding-block: 170px 70px;
  }
}

@media screen and (max-width: 610px) {
  .area {
    margin-top: 0;
    padding-block: 50px 70px;
  }
}

/* 対応可能なエアコン・洗濯機 */
.area-types {
  max-width: 1170px;
  margin-inline: auto;
  margin-bottom: 125px;
  padding-inline: 30px;
}

@media screen and (max-width: 870px) {
  .area-types {
    margin-bottom: 95px;
    padding-inline: 16px;
  }
}

@media screen and (max-width: 640px) {
  .area-types {
    margin-bottom: 55px;
  }
}

.area-types__heading {
  margin-bottom: 40px;
}

@media screen and (max-width: 870px) {
  .area-types__heading {
    margin-bottom: 24px;
    padding-inline: 16px;
  }
}

.area-types__heading img {
  display: block;
  width: 629px;
  max-width: 100%;
  height: auto;
  /* 左に余白 */
  margin-left: 130px;
}

@media screen and (max-width: 870px) {
  .area-types__heading img {
    width: 100%;
    margin-left: 0;
  }
}

.area-types__list {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 4列が収まらなくなる少し手前で2列2行に切替。以降は2×2を維持し、
   画像は max-width を上限に画面幅へ合わせて縮小する。 */
@media screen and (max-width: 1150px) {
  .area-types__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;

  }
}

@media screen and (max-width: 569px) {
  .area-types__list {

    gap: 17px 10px;

  }
}

.area-types__item {
  flex: 0 0 260px;
}

@media screen and (max-width: 1150px) {
  .area-types__item {
    flex: 0 1 calc((100% - 24px) / 2);
    /* 画像の上限サイズ（これ以下は画面幅に合わせて縮小） */
    max-width: 400px;
  }
}

.area-types__img img {
  display: block;
  width: 260px;
  height: 188px;
  object-fit: cover;
}

@media screen and (max-width: 1150px) {
  .area-types__img img {
    width: 100%;
    height: auto;
    max-width: none;
  }
}

.area-types__label {
  margin-top: 14px;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .area-types__label {
    margin-top: 8px;
    font-size: 16px;
  }
}

.area__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding-inline: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 48px;
}

@media screen and (max-width: 870px) {
  .area__inner {
    flex-direction: column;
    align-items: center;
  }
}

.area__left {
  flex: 1;
  min-width: 0;
}

.area__heading {
  max-width: 360px;
  width: 100%;
  margin-bottom: 16px;
}

.area__subtitle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 20px;
}

.area__subtitle-text {
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.area__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 216px;
  height: 43px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #FF3E03;
}

.area__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  color: #fff;
}

@media screen and (max-width: 870px) {
  .area__text {
    text-wrap: balance;
  }
}

.area__text p {
  margin-bottom: 0.5em;
}

.area__text p:last-child {
  margin-bottom: 0;
}

.area__region {
  font-weight: bold;
  color: #FFD05C;
}

.area__text a {
  text-decoration: underline;
}

.area__text a:hover {
  text-decoration: none;
}

.area__right {
  max-width: 428px;
}

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

/* 無料回収のヒミツ */
.recommend {
  position: relative;
  top: -1px;
}

@media screen and (max-width: 870px) {
  .recommend {
    margin-top: -40px;
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 640px) {
  .recommend {
    background-size: contain;
    padding-top: 22px;
    margin-top: -40px;
  }
}

.recommend__inner {
  background-color: #fff;
  margin-top: -2px;
  padding-bottom: 130px;
  padding-top: 1px;
}

@media screen and (max-width: 870px) {
  .recommend__inner {
    padding-bottom: clamp(32px, 7vw, 60px);
  }
}

@media screen and (max-width: 640px) {
  .recommend__inner {
    background-color: #fff;
    padding-bottom: 130px;
  }
}

.recommend__body {
  max-width: 1173px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 870px) {
  .recommend__body {
    margin-top: 0;
  }
}

@media screen and (max-width: 640px) {
  .recommend__body {
    padding-inline: 16px;
  }
}

.recommend__title {
  max-width: 825px;
  margin-inline: auto;
}

.recommend__content {
  position: relative;
  display: block;
  margin-top: 40px;
}

.recommend__content::before {
  content: none;
}

@media screen and (max-width: 1161px) {
  .recommend__content::before {
    bottom: clamp(78px, 78px + (100vw - 1071px) * 86 / 90, 164px);
  }
}

@media screen and (max-width: 1161px) and (max-width: 1070px) {
  .recommend__content::before {
    bottom: clamp(8px, 8px + (100vw - 961px) * 30 / 109, 38px);
  }
}

@media screen and (max-width: 1161px) and (max-width: 960px) {
  .recommend__content::before {
    height: 140px;
    bottom: 0;
  }
}

@media screen and (max-width: 1161px) and (max-width: 640px) {
  .recommend__content::before {
    bottom: 29px;
  }
}

@media screen and (max-width: 1161px) and (max-width: 640px) {
  .recommend__content::before {
    bottom: 29px;
  }
}

@media screen and (max-width: 456px) {
  .recommend__content::before {
    bottom: clamp(-15px, -15px + (100vw - 391px) * 26 / 65, 11px);
  }
}

@media screen and (max-width: 390px) {
  .recommend__content::before {
    bottom: -26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recommend__content::before {
    transition: none;
  }
}

.recommend__content.is-accordion-open::before {
  opacity: 0;
}

.recommend__content-img {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 540px;
  width: 100%;
  transition: bottom 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .recommend__content-img {
    transition: none;
  }
}

@media screen and (max-width: 1070px) {
  .recommend__content-img {
    max-width: 400px;
  }
}

@media screen and (max-width: 787px) {
  .recommend__content-img {
    right: 0;
  }
}

.recommend__content-img img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}

.recommend__content-img--accordion {
  max-width: 540px;
  width: 100%;
  margin-inline: auto;
  margin-top: 1em;
}

@media screen and (min-width: 961px) {
  .recommend__content-img--accordion {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .recommend__content>.recommend__content-img:not(.recommend__content-img--accordion) {
    display: none;
  }
}

.recommend__content-text {
  position: relative;
  z-index: 0;
  max-width: 940px;
  margin-inline: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  text-align: left;
}

@media screen and (max-width: 640px) {
  .recommend__content-text {
    font-size: 14px;
  }
}

.recommend__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(37/16);
  color: #1a1a1a;
}

@media screen and (max-width: 640px) {
  .recommend__lead {
    font-size: 17px;
  }
}

/* オレンジ強調（大きめ見出し） */
.recommend__accent {
  color: #FF3E03;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 4px;
}

@media screen and (max-width: 640px) {
  .recommend__accent {
    font-size: 18px;
  }
}

.recommend__accent--lead {
  margin-top: 2px;
  font-size: 29px;
  font-weight: 700;
}

@media screen and (max-width: 640px) {
  .recommend__accent--lead {
    font-size: 24px;
  }
}


/* 強調文中の黒い接尾（「です。」「しています。」） */
.recommend__accent-tail {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 640px) {
  .recommend__accent-tail {
    font-size: 16px;
  }
}

.recommend__lead-sub {
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
  color: #1a1a1a;
}

/* 本文段落 */
.recommend__para {
  margin-top: 1.6em;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.recommend__para:first-of-type {
  margin-top: 0;
}

/* 証拠の写真（2枚横並び） */
.recommend__photos {
  display: flex;
  gap: 24px;
  margin-block: 34px;
}

@media screen and (max-width: 600px) {
  .recommend__photos {
    flex-direction: column;
    gap: 16px;
  }
}

.recommend__photo {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
}

.recommend__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 851 / 511;
  object-fit: cover;
}

/* コワモテ社長・菅野（右下） */
.recommend__kanno {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 640px) {
  .recommend__kanno {
    justify-content: center;
    margin-top: 16px;
  }
}

.recommend__kanno img {
  display: block;
  width: 100%;
  max-width: 293px;
  height: auto;
}

.recommend__highlight {
  font-size: 25px;
  font-weight: 700;
  color: #FF3E03;
}

@media screen and (max-width: 640px) {
  .recommend__highlight {
    font-size: 23px;
  }
}

.recommend__accordion-panel {
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

/* クローズ時に見えるピーク下部を白くフェードアウトさせる */
.recommend__accordion-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 65%, #fff 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.recommend__accordion-panel.is-open::after {
  opacity: 0;
}

.recommend__accordion-panel-inner {
  padding-top: 1em;
}

@media (prefers-reduced-motion: reduce) {
  .recommend__accordion-panel-inner {
    transition: none;
  }
}

.recommend__accordion-panel-inner p {
  margin: 0;
}

/* 各アクセント文（accent1・accent2）、その直後の段落、および先頭の段落の下に15pxの余白を付ける */
.recommend__accordion-panel-inner .recommend__para:first-of-type,
.recommend__accordion-panel-inner .recommend__accent,
.recommend__accordion-panel-inner .recommend__accent+.recommend__para {
  margin-bottom: 15px;
}

.recommend__btn-wrap {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  transition: margin-top 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .recommend__btn-wrap {
    transition: none;
  }
}

.recommend__inner:has(.recommend__content.is-accordion-open) .recommend__btn-wrap {
  margin-top: 40px;
}

.recommend__btn {
  max-width: 472px;
  width: 100%;
  height: 97px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  color: #fff;
  background: #FF3E03;
  border: none;
  border-radius: 20px;
  box-shadow: 0 7px 0 #D12700;
  transition: transform 0.2s ease;
  margin-inline: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .recommend__btn {
    height: 76px;
    gap: 4px;
    box-shadow: 0 4px 0 #D12700;
  }
}

/* 上段：警告テキスト＋左右アイコン */
.recommend__btn-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (max-width: 640px) {
  .recommend__btn-note {
    gap: 6px;
    font-size: 12px;
  }
}

.recommend__btn-icon {
  flex-shrink: 0;
  width: 18px;
  height: auto;
}

@media screen and (max-width: 640px) {
  .recommend__btn-icon {
    width: 14px;
  }
}

/* 下段：メインテキスト */
.recommend__btn-main {
  font-size: 27px;
  font-weight: 900;
  line-height: 1.2;
}

@media screen and (max-width: 640px) {
  .recommend__btn-main {
    font-size: 21px;
  }
}

@media (any-hover: hover) {
  .recommend__btn:hover {
    transform: scale(1.03);
  }
}

@media (any-hover: hover) {
  .recommend__btn:active {
    transform: scale(1.01);
  }
}

/* 実績紹介 */
.works {
  position: relative;
  /* 本体：黄色ベタ／上部のみ紺色（波の谷間に見える色。エリアと同色） */
  background-color: #fcd34a;
  background-image: linear-gradient(#0C2E91, #0C2E91);
  background-size: 100% 140px;
  background-position: top;
  background-repeat: no-repeat;
  /* 高さは中身に合わせて自動。下部は余白で確保（カードのはみ出し防止） */
  padding-bottom: 120px;
}

@media screen and (max-width: 1465px) {
  .works {
    padding-top: 71px;
  }
}

@media screen and (max-width: 640px) {
  .works {
    padding-top: 36px;
    padding-bottom: 40px;
  }
}

/* 上部の黄色いウェーブ（擬似要素で設置） */
.works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background-image: url("../img/top/works-bg.svg");
  background-size: 100% auto;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* コンテンツはウェーブより前面に */
.works__inner {
  z-index: 1;
}

.works__inner {
  position: relative;
  max-width: 1463px;
  margin-inline: auto;
  background: transparent;
}

@media screen and (max-width: 1465px) {
  .works__inner {
    margin-top: -86px;
  }
}

@media screen and (max-width: 640px) {
  .works__inner {
    margin-top: -60px;
    padding-bottom: 25px;
  }
}

.works__title {
  position: absolute;
  max-width: 943px;
  padding-left: 30px;
}

@media screen and (max-width: 500px) {
  .works__title {
    padding-left: 0;
  }
}

.works__cards-wrap {
  position: relative;
  /* タイトル画像の下にカードを配置（padding なので親の高さにも反映される） */
  padding-top: 227px;
  background: transparent;
}

@media screen and (max-width: 798px) {
  .works__cards-wrap {
    padding-top: 181px;
  }
}

@media screen and (max-width: 640px) {
  .works__cards-wrap {
    padding-top: clamp(100px, 24vw, 157px);
  }
}



.works__slider-viewport {
  width: 100%;
}

@keyframes works-marquee {
  from {
    transform: translateX(0);
  }

  to {
    /* transform: translate(-50%, -50%); */
    transform: translateX(-50%);
  }
}

/* 1465px 以下：JS がカード複製後に .is-works-marquee を付与 → 自動ループ */
.works__cards-wrap.is-works-marquee .works__slider-viewport {
  overflow: hidden;
}

.works__cards-wrap.is-works-marquee .works__cards {
  overflow-x: visible;
  overflow-y: visible;
  justify-content: flex-start;
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  scrollbar-width: none;
  animation: works-marquee 28s linear infinite;
  will-change: transform;
}

.works__cards-wrap.is-works-marquee .works__cards::-webkit-scrollbar {
  display: none;
}

.works__cards-wrap.is-works-marquee .works__scroll-hint {
  display: none !important;
}

.works__cards {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

@media screen and (max-width: 1465px) {
  .works__cards {
    justify-content: flex-start;
  }
}

.works__cards::-webkit-scrollbar {
  height: 8px;
  background: transparent;
}

.works__cards::-webkit-scrollbar-track {
  background: transparent;
}

.works__cards::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.works__cards::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* スクロール可能な幅のときのみ表示 */
.works__scroll-hint {
  display: none;
  margin-top: 12px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

@media screen and (max-width: 1465px) {
  .works__scroll-hint {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .works__scroll-hint {
    font-size: 12px;
    padding-inline: 15px;
  }
}

.works-card {
  flex: 0 0 auto;
  width: 337px;
  max-width: 337px;
  background-color: #fff;
  border: 5px solid #000;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 640px) {
  .works-card {
    width: 280px;
    max-width: 280px;
    border: 3px solid #000;
    padding: 14px 14px 18px;
  }
}

/* 機種名（カード上部） */
.works-card__heading {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
}

@media screen and (max-width: 640px) {
  .works-card__heading {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/* before / after 合成画像 */
.works-card__img {
  background-color: #fff;
  margin-bottom: 18px;
}

@media screen and (max-width: 640px) {
  .works-card__img {
    margin-bottom: 14px;
  }
}

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

/* 顧客名（地域＋イニシャル） */
.works-card__name {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 8px;
}

@media screen and (max-width: 640px) {
  .works-card__name {
    font-size: 17px;
    margin-bottom: 6px;
  }
}

.works-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
}

@media screen and (max-width: 640px) {
  .works-card__text {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* 無料の証明 */
.declaration {
  position: relative;
  padding-block: 90px 120px;
  background-color: #fff;
}

.declaration__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 640px) {
  .declaration__inner {
    padding-inline: 16px;
  }
}

.declaration__head {
  text-align: center;
  margin-top: -125px;
  margin-bottom: 32px;
}

.declaration__title {
  max-width: 988px;
  margin-inline: auto;
}

.declaration__title picture,
.declaration__title img {
  display: block;
  width: 100%;
  height: auto;
}

.declaration__lead {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 40px;
  text-align: left;
}

.declaration__lead-heading {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 900;
  margin-bottom: 10px;
}

.declaration__lead-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.declaration__certificate {
  max-width: 576px;
  margin-inline: auto;
  margin-bottom: 12px;
}

.declaration__certificate-link {
  display: block;
  width: 100%;
  border: none;
  background: none;
  font: inherit;
  cursor: zoom-in;
  text-align: left;
}

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

.declaration__footer {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  padding-left: 136px;
}

@media screen and (max-width: 950px) {
  .declaration__footer {
    padding-left: 0;
  }
}

.declaration__footer-heading {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 900;
  margin-bottom: 10px;
}

.declaration__footer-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

/* 宣誓書モーダル：開いている間はスクロール禁止＋スクロールバー幅を確保してレイアウトずれを防ぐ */
html.is-modal-open {
  overflow: hidden;
  scrollbar-gutter: stable;
}

body.is-modal-open {
  overflow: hidden;
  /* scrollbar-gutter 未対応ブラウザ用フォールバック（対応ブラウザでは二重にならない） */
}

@supports not (scrollbar-gutter: stable) {
  body.is-modal-open {
    padding-right: var(--scrollbar-width, 0);
  }
}

.declaration-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}

.declaration-modal[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

.declaration-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.declaration-modal__inner {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}

.declaration-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (any-hover: hover) {
  .declaration-modal__close:hover {
    background: #fff;
  }
}

.declaration-modal__img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

/* サービスの流れ */
.flow {
  position: relative;
  /* 上のセクション（無料回収のヒミツ）との余白を確保。背景SVGを拡大させないため margin で調整 */
  margin-top: 120px;
  padding-block: 1px 138px;
  background-image: url("../img/top/flow-bg.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 870px) {
  .flow {
    /* モバイルは上パディングで十分な余白があるため追加マージンは不要 */
    margin-top: 0;
    padding-block: 50px clamp(15px, 5.75vw, 50px);
  }
}

.flow__inner {
  max-width: 1160px;
  margin-inline: auto;
  margin-bottom: 140px;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .flow__inner {
    margin-bottom: 95px;
  }
}

@media screen and (max-width: 640px) {
  .flow__inner {
    padding-inline: 16px;
  }
}

.flow__title {
  max-width: 800px;
  margin: -125px auto 50px;
  text-align: center;
}

.flow__title img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding-inline: 14px;
  margin-bottom: 66px;
}

@media screen and (max-width: 1063px) {
  .flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 85px;
    padding-inline: clamp(10px, 5vw, 110px);
  }
}

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

.flow-step {
  height: 402px;
  position: relative;
  background-color: #fff;
  border: 5px solid #231815;
  padding: 73px 18px 24px;
}

@media screen and (max-width: 640px) {
  .flow-step {
    height: 250px;
    padding: 30px 18px 24px;
  }
}

.flow-step a {
  color: #F17A12;
  text-decoration: underline;
}

.flow-step ahover {
  text-decoration: none;
}

.flow-step__head {
  position: absolute;
  border-radius: 50%;
  background-color: #FF3E03;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  .flow-step__head {
    width: 50px;
    height: 50px;
    top: -29px;
  }
}

.flow-step__number {
  width: 14px;
}

.flow-step:first-child .flow-step__number {
  width: 8px;
}

.flow-step__illustration {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  .flow-step__illustration {
    bottom: -40px;
  }
}

.flow-step:nth-child(1) .flow-step__illustration {
  width: 192px;
}

@media screen and (max-width: 640px) {
  .flow-step:nth-child(1) .flow-step__illustration {
    width: 111px;
  }
}

.flow-step:nth-child(2) .flow-step__illustration {
  width: 193px;
}

@media screen and (max-width: 640px) {
  .flow-step:nth-child(2) .flow-step__illustration {
    width: 111px;
  }
}

.flow-step:nth-child(3) .flow-step__illustration {
  width: 140px;
}

@media screen and (max-width: 640px) {
  .flow-step:nth-child(3) .flow-step__illustration {
    width: 81px;
  }
}

.flow-step:nth-child(4) .flow-step__illustration {
  width: 173px;
}

@media screen and (max-width: 640px) {
  .flow-step:nth-child(4) .flow-step__illustration {
    width: 91px;
  }
}

.flow-step__title {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  color: #FF3E03;
}

@media screen and (max-width: 640px) {
  .flow-step__title {
    font-size: 18px;
  }
}

.flow-step__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.flow .cta__line {
  background: #fff;
}

/* エアコン設置 */
.setup {
  position: relative;
  padding-block: 1px 180px;
  background-image: url("../img/top/setup-bg.svg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  margin-top: -63px;
}

@media screen and (max-width: 951px) {
  .setup {
    padding-bottom: 180px;
  }
}

@media screen and (max-width: 870px) {
  .setup {
    padding-block: 80px 220px;
    background-position: top;
  }
}

@media screen and (max-width: 550px) {
  .setup {
    padding-bottom: 153px;
    height: 475px;
  }
}

@media screen and (max-width: 500px) {
  .setup {
    height: 545px;
  }
}

@media screen and (max-width: 460px) {
  .setup {
    height: clamp(515px, 515px + (100vw - 320px) * 30 / 140, 545px);
  }
}

.setup__inner {
  position: relative;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 870px) {
  .setup__inner {
    margin-top: -85px;
  }
}

@media screen and (max-width: 640px) {
  .setup__inner {
    padding-inline: 16px;
  }
}

.setup__title {
  max-width: 1104px;
  margin-inline: auto;
  margin-bottom: 32px;
}

@media screen and (max-width: 500px) {
  .setup__title {
    margin-bottom: 18px;
  }
}

.setup__content {
  width: 100%;
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 500px) {
  .setup__content {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
  }
}

.setup__lead {
  width: 100%;
  max-width: 555px;
  margin-inline: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1062px) {
  .setup__lead {
    padding-left: clamp(16px, 137px - (100vw - 501px) * 121 / 561, 137px);
    padding-right: 12px;
  }
}

@media screen and (max-width: 640px) {
  .setup__lead {
    font-size: 14px;
    text-align: left;
  }
}

@media screen and (max-width: 500px) {
  .setup__lead {
    max-width: 100%;
    padding-inline: 0;
  }
}

.setup__btn-wrap {
  width: 100%;
  max-width: 450px;
  margin-inline: auto;
  margin-top: 27px;
  padding-inline: 15px;
}

.setup__btn {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #FF3E03;
  border-radius: 20px;
  box-shadow: 0 7px 0 #D12700;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 640px) {
  .setup__btn {
    height: 52px;
    font-size: 16px;
    box-shadow: 0 4px 0 #D12700;
    padding-inline: 28px;
  }
}

@media (any-hover: hover) {
  .setup__btn:hover {
    transform: scale(1.03);
  }
}

@media (any-hover: hover) {
  .setup__btn:active {
    transform: scale(1.01);
  }
}

.setup__btn-br {
  display: none;
}

@media screen and (max-width: 392px) {
  .setup__btn-br {
    display: block;
  }
}

/* 3つの無料 */
.craftsmanship {
  position: relative;
  padding-block: 120px 140px;
  background-color: #f2e4c2;
}

@media screen and (max-width: 870px) {
  .craftsmanship {
    padding-block: 80px 90px;
  }
}

/* 上部の曲線セパレート（擬似要素）。角の透明部分から前セクションが見える */
.craftsmanship::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  aspect-ratio: 3201 / 195;
  background-image: url("../img/top/three-free-separator.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  pointer-events: none;
}

.craftsmanship__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
  margin-top: -286px;
}

@media screen and (max-width: 870px) {
  .craftsmanship__inner {
    margin-top: -140px;
  }
}

@media screen and (max-width: 758px) {
  .craftsmanship__inner {
    margin-top: -100px;
  }
}

@media screen and (max-width: 640px) {
  .craftsmanship__inner {
    padding-inline: 16px;
  }
}

.craftsmanship__head {
  /* 下余白は 0（カードの負マージンで重ねるため、固定余白があると重なり率がズレる） */
  margin-bottom: 0;
  /* セパレート曲線（::before）より前面に重ねる */
  position: relative;
  z-index: 1;
}

.craftsmanship__head-label {
  max-width: 984px;
  width: 100%;
  margin-inline: auto;
}

.craftsmanship__head-label picture,
.craftsmanship__head-label .craftsmanship__head-label-img {
  display: block;
  width: 100%;
  height: auto;
}

.craftsmanship__title {
  max-width: 536px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 22px;
}

.craftsmanship__cards {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  /* ヒーロー画像に重ねる。幅で高さが変わるため幅比(%)で可変。ヒーロー最大幅(984px)時は -502px で頭打ち */
  margin-top: max(-502px, -51.02%);
}

/* 375px以下は重なりが強すぎるため、ヒーローとの余裕を持たせる（重なりを浅く） */
@media screen and (max-width: 375px) {
  .craftsmanship__cards {
    margin-top: -44%;
  }
}

.craftsmanship__cards-item {
  display: flex;
  gap: 24px;
}

@media screen and (max-width: 517px) {
  .craftsmanship__cards-item {
    flex-direction: column;
    gap: 42px;
  }
}

.craftsmanship-card {
  position: relative;
  background-color: #fff;
  border: 5px solid #000;
}

.craftsmanship-card__label {
  width: 186px;
  position: absolute;
  top: -23px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 999px;
  background-color: #FCD34A;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 712px) {
  .craftsmanship-card__label {
    width: 150px;
    height: 33px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
  }
}

@media screen and (max-width: 516px) {
  .craftsmanship-card__label {
    width: 130px;
    font-size: 15px;
  }
}

.craftsmanship-card--1 {
  margin-bottom: 52px;
}

@media screen and (max-width: 517px) {
  .craftsmanship-card--1 {
    margin-bottom: 42px;
  }
}

.craftsmanship-card--1 .craftsmanship-card__label {
  left: 262px;
}

/* 835px以下：カード内容が中央寄せの縦積みになるため、ラベルも左右中央に配置 */
@media screen and (max-width: 835px) {
  .craftsmanship-card--1 .craftsmanship-card__label {
    left: 50%;
    transform: translateX(-50%);
  }
}

.craftsmanship-card--1 .craftsmanship-card__content {
  padding-left: 240px;
}

@media screen and (max-width: 835px) {
  .craftsmanship-card--1 .craftsmanship-card__content {
    display: flex;
    padding-left: 0;
    flex-direction: column;
    align-items: center;
  }
}

.craftsmanship-card__body {
  padding: 32px 22px 24px;
  display: flex;
  gap: 18px;
}

@media screen and (max-width: 960px) {
  .craftsmanship-card__body {
    flex-direction: column;
  }
}

@media screen and (max-width: 712px) {
  .craftsmanship-card__body {
    padding: 24px 17px 14px;
  }
}

/* card1：イラスト（最大250px）が収まる高さを確保。テキスト折返し時は伸びて可変 */
.craftsmanship-card--1 .craftsmanship-card__body {
  min-height: 250px;
}

/* イラスト非表示になる幅では高さ確保も解除（内容に応じて可変） */
@media screen and (max-width: 835px) {
  .craftsmanship-card--1 .craftsmanship-card__body {
    min-height: 0;
  }
}

.craftsmanship-card__visual {
  position: absolute;
  top: -12px;
  left: 56px;
  max-width: 149px;
  width: 100%;
}

@media screen and (max-width: 835px) {
  .craftsmanship-card__visual {
    display: none;
  }
}

/* イラスト（最大幅149px・高さ可変） */
.craftsmanship-card__illustration {
  display: block;
  width: 100%;
  max-width: 149px;
  height: auto;
}

.craftsmanship-card__content {
  padding-left: 15px;
}

@media screen and (max-width: 712px) {
  .craftsmanship-card__content {
    padding-left: 0;
  }
}

/* 1カラム時：その2・その3カードの見出しは中央、本文は左揃え */
@media screen and (max-width: 517px) {
  .craftsmanship__cards-item .craftsmanship-card__content {
    text-align: center;
  }
}

@media screen and (max-width: 517px) {
  .craftsmanship__cards-item .craftsmanship-card__heading-img {
    margin-inline: auto;
  }
}

@media screen and (max-width: 517px) {
  .craftsmanship__cards-item .craftsmanship-card__text {
    text-align: left;
  }
}

.craftsmanship-card__badge {
  max-width: 493px;
  width: 100%;
}

/* 1カラム時（SP用の2段バッジ画像）は最大幅を217pxに */
@media screen and (max-width: 517px) {
  .craftsmanship-card__badge {
    max-width: 217px;
  }
}

.craftsmanship-card__badge-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

@media screen and (max-width: 517px) {
  .craftsmanship-card__badge-img {
    margin-bottom: 10px;
  }
}

.craftsmanship-card__heading {
  font-size: 23px;
  font-weight: 900;
  color: #FF3E03;
  margin-bottom: 0;
}

/* 見出しを画像化した場合（サイズはHTMLのwidth/height属性で指定） */
.craftsmanship-card__heading-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

@media screen and (max-width: 517px) {
  .craftsmanship-card__heading-img {
    margin-bottom: 10px;
  }
}

/* 1つ目の無料：特徴リード文（太字・マーカー付き） */
.craftsmanship-card__feature {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(25 / 14);
  /* 25px / 14px */
  color: #1a1a1a;
  margin-bottom: 6px;
}

@media screen and (max-width: 640px) {
  .craftsmanship-card__feature {
    font-size: 15px;
  }
}

/* 黄色マーカー（強調キーワード：20px・太字・黒） */
.craftsmanship-card__marker {
  background: linear-gradient(to bottom, transparent 41%, #FFFF00 60%);
  font-size: 20px;
  font-weight: 900;
  color: #1a1a1a;
}

.craftsmanship-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: calc(25 / 14);
  /* 25px / 14px */
  color: #1a1a1a;
}

.craftsmanship-card__text-br {
  display: none;
}

@media screen and (max-width: 435px) {
  .craftsmanship-card__text-br {
    display: block;
  }
}

.craftsmanship-card__highlight {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(to bottom, transparent 41%, #FFFF00 60%);
}

.craftsmanship-card__btn-wrap {
  margin-top: 16px;
}

.craftsmanship-card__btn-sp {
  display: none;
  line-height: 0;
}

@media screen and (max-width: 835px) {
  .craftsmanship-card__btn-sp {
    display: block;
  }
}

.craftsmanship-card__btn-sp:focus-visible {
  outline: 2px solid #ff3e03;
  outline-offset: 2px;
  border-radius: 4px;
}

.craftsmanship-card__btn-img-sp {
  display: block;
  width: 100%;
  max-width: 479px;
  height: auto;
}

.craftsmanship-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 479px;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #FF3E03;
  border-radius: 20px;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 784px) {
  .craftsmanship-card__btn {
    height: 47px;
  }
}

@media screen and (max-width: 371px) {
  .craftsmanship-card__btn {
    padding-right: 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 371px) {
  .craftsmanship-card__btn {
    font-size: 12px;
  }
}

@media screen and (max-width: 835px) {
  .craftsmanship-card__btn {
    display: none;
  }
}

@media (any-hover: hover) {
  .craftsmanship-card__btn:hover {
    transform: scale(1.03);
  }
}

@media (any-hover: hover) {
  .craftsmanship-card__btn:active {
    transform: scale(1.01);
  }
}

.craftsmanship-card__btn-br {
  display: none;
}

@media screen and (max-width: 784px) {
  .craftsmanship-card__btn-br {
    display: block;
  }
}

/* 事業紹介 */
.business {
  padding-block: 45px 120px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .business {
    padding-block: 60px 60px;
  }
}

.business__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 640px) {
  .business__inner {
    padding-inline: 16px;
  }
}

.business__head {
  max-width: 840px;
  margin-bottom: 40px;
  margin-inline: auto;
}

.business__title {
  max-width: 442px;
  margin-bottom: 16px;
}

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

.business__lead {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.business__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  /* 中央寄せ */
  justify-content: center;
  /* カード3枚分の最大幅を中央に */
  max-width: 960px;
  margin-inline: auto;
}

@media screen and (max-width: 964px) {
  .business__cards {
    /* 2カラムにして3枚目を1枚目の下に折り返し */
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 520px) {
  .business__cards {
    /* 520px以下は縦1列 */
    grid-template-columns: 1fr;
  }
}

/* 事業紹介 下部のボタン2つ */
.business__btns {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  max-width: 960px;
  margin: 54px auto 0;
}

@media screen and (max-width: 640px) {
  .business__btns {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
  }
}

.business__btn {
  flex: 1 1 0;
  max-width: 465px;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 640px) {
  .business__btn {
    width: 100%;
  }
}

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

@media (any-hover: hover) {
  .business__btn:hover {
    transform: scale(1.03);
    opacity: 1;
  }
}

@media (any-hover: hover) {
  .business__btn:active {
    transform: scale(1.01);
    opacity: 1;
  }
}

.business-card {
  background-color: #fff;
}

.business-card__img {
  margin-bottom: 16px;
}

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

.business-card__heading {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.business-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

/* スタッフ紹介 */
.staff {
  position: relative;
  padding-block: 70px 120px;
  background-image: url("../img/top/staff-bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .staff {
    padding-block: 50px 90px;
  }
}

.staff__inner {
  max-width: 1060px;
  margin-inline: auto;
  padding-inline: 30px;
  background: transparent;
}

@media screen and (max-width: 640px) {
  .staff__inner {
    padding-inline: 16px;
  }
}

.staff__head {
  text-align: center;
  margin-bottom: 40px;
}

.staff__title {
  max-width: 358px;
}

@media screen and (max-width: 640px) {
  .staff__title {
    max-width: 286px;
    margin-inline: auto;
  }
}

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

.staff__slider {
  position: relative;
  width: 100%;
  background: transparent;
}

.staff__track {
  overflow: hidden;
}

.staff__track-inner {
  display: flex;
  gap: 24px;
  padding-block: 8px 24px;
  width: -moz-max-content;
  width: max-content;
  animation: staff-scroll 40s linear infinite;
}

@keyframes staff-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.staff-card {
  flex: 0 0 auto;
  width: 336px;
  background-color: #fff;
  border: 5px solid #000;
}

@media screen and (max-width: 640px) {
  .staff-card {
    width: 260px;
  }
}

.staff-card__img {
  position: relative;
}

.staff-card__dog-img {
  position: absolute;
  bottom: -40px;
  right: 24px;
  max-width: 114px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 640px) {
  .staff-card__dog-img {
    max-width: 90px;
    bottom: -30px;
    right: 16px;
  }
}

.staff-card__body {
  padding: 14px 22px 18px;
}

.staff-card__role {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.staff-card__name {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 8px;
}

.staff-card__name span {
  font-size: 24px;
}

.staff-card__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.staff__btn-wrap {
  margin-top: 32px;
  text-align: center;
  padding-inline: 15px;
}

/* スタッフ紹介下部の「癒し営業部」画像（幅680px・中央。狭幅は左右16px余白） */
.staff__iyashi {
  width: min(680px, 100% - 32px);
  margin: 48px auto 0;
}

.staff__iyashi-link {
  display: block;
  width: 100%;
}

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

.staff__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 377px;
  max-width: 100%;
  height: 68px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #FF3E03;
  border-radius: 20px;
  box-shadow: 0 7px 0 #D12700;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 640px) {
  .staff__btn {
    height: 56px;
    font-size: 18px;
    box-shadow: 0 4px 0 #D12700;
  }
}

.staff_iyashi_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  transition: transform 0.2s ease;
}

@media (any-hover: hover) {
  .staff_iyashi_btn:hover {
    transform: scale(1.03);
    opacity: 1;
  }
}

@media (any-hover: hover) {
  .staff_iyashi_btn:active {
    transform: scale(1.01);
    opacity: 1;
  }
}

@media (any-hover: hover) {
  .staff__btn:hover {
    transform: scale(1.03);
  }
}

@media (any-hover: hover) {
  .staff__btn:active {
    transform: scale(1.01);
  }
}

/* FAQ */
.faq {
  padding-block: 1px 120px;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-block: 70px 90px;
  }
}

.faq__inner {
  position: relative;
  max-width: 1060px;
  margin-top: -21px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .faq__inner {
    margin-top: -90px;
  }
}

@media screen and (max-width: 640px) {
  .faq__inner {
    padding-inline: 16px;
  }
}

.faq__title {
  max-width: 581px;
  margin-inline: auto;
}

@media screen and (max-width: 435px) {
  .faq__title {
    max-width: 328px;
  }
}

.faq__list {
  position: relative;
  background-color: #fff;
  border: 5px solid #000;
  border-radius: 25px;
  padding: 45px 80px;
  margin-top: -57px;
  margin-bottom: 32px;
}

@media screen and (max-width: 640px) {
  .faq__list {
    padding: 24px 20px 20px;
  }
}

@media screen and (max-width: 435px) {
  .faq__list {
    margin-top: -34px;
  }
}

.faq__item {
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 2px dotted #666666;
}

.faq__item:last-child {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.faq__q {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .faq__q {
    font-size: 14px;
  }
}

.faq__q-label {
  flex-shrink: 0;
  font-family: "Oswald", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FF3E03;
}

.faq__a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .faq__a {
    font-size: 14px;
  }
}

.faq__a-label {
  flex-shrink: 0;
  font-family: "Oswald", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0C2E91;
}

.faq__btn-wrap {
  margin-top: 0;
  text-align: center;
  padding-inline: 15px;
}

.faq__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 377px;
  max-width: 100%;
  height: 68px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #FF3E03;
  border-radius: 20px;
  box-shadow: 0 7px 0 #D12700;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 640px) {
  .faq__btn {
    height: 56px;
    font-size: 18px;
    box-shadow: 0 4px 0 #D12700;
  }
}

@media (any-hover: hover) {
  .faq__btn:hover {
    transform: scale(1.03);
  }
}

@media (any-hover: hover) {
  .faq__btn:active {
    transform: scale(1.01);
  }
}

/* 会社概要 */
.about {
  background-color: #F2F2F2;
  padding-block: 90px 0;
}

@media screen and (max-width: 768px) {
  .about {
    padding-block: 70px 0;
  }
}

.about__inner {
  width: 100%;
  max-width: clamp(1287px, 82vw, 1600px);
  margin-inline: auto 0;
  padding-inline: 30px 0;
}

@media screen and (max-width: 1023px) {
  .about__inner {
    padding-inline: 0;
  }
}

.about__head {
  margin-bottom: 22px;
}

.about__title {
  max-width: 237px;
  width: 100%;
  margin-bottom: 11px;
}

@media screen and (max-width: 1023px) {
  .about__title {
    margin-inline: auto;
    padding-inline: 16px;
  }
}

.about__subtitle {
  font-size: 30px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

@media screen and (max-width: 640px) {
  .about__subtitle {
    font-size: 16px;
  }
}

.about__main {
  display: flex;
  gap: 90px;
  align-items: flex-start;
  margin-bottom: 40px;
}

@media screen and (max-width: 1023px) {
  .about__main {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .about__info {
    padding-inline: 16px;
  }
}

.about__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 37px;
}

@media screen and (max-width: 1023px) {
  .about__list-wrap {
    flex-direction: row;
    gap: 40px;
  }
}

@media screen and (max-width: 722px) {
  .about__list-wrap {
    flex-direction: column;
    gap: 10px;
  }
}

.about__list--group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px 16px;
  align-items: start;
}

@media screen and (max-width: 1023px) {
  .about__list--group {
    gap: 10px 0;
  }
}

@media screen and (max-width: 640px) {
  .about__list--group {
    grid-template-columns: 100px 1fr;
  }
}

.about__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  .about__label {
    font-size: 14px;
  }
}

.about__value {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 640px) {
  .about__value {
    font-size: 14px;
  }
}

@media screen and (max-width: 354px) {
  .about__value {
    line-height: 1.3;
  }
}

.about__value-br {
  display: none;
}

@media screen and (max-width: 400px) {
  .about__value-br {
    display: inline-block;
  }
}

.about__value-br02 {
  display: block;
}

@media screen and (max-width: 768px) {
  .about__value-br02 {
    display: none;
  }
}

.about__map {
  flex: 1;
  width: 100%;
  background: #fff;
}

@media screen and (max-width: 870px) {
  .about__map {
    border-radius: 0;
  }
}

.about__map iframe {
  display: block;
  width: 100%;
  height: 495px;
  border: 0;
}

@media screen and (max-width: 640px) {
  .about__map iframe {
    height: 280px;
  }
}

.about__text {
  max-width: 983px;
  margin-bottom: 48px;
}

@media screen and (max-width: 1023px) {
  .about__text {
    padding-inline: 16px;
  }
}

@media screen and (max-width: 640px) {
  .about__text {
    margin-bottom: 32px;
  }
}

.about__text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  .about__text p {
    font-size: 14px;
  }
}

.about__slider {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.about__track {
  overflow: hidden;
}

.about__track-inner {
  display: flex;
  /* 1セット分（同じ5枚）の正確な幅 = 5 ×（画像幅 + margin-right）。
     この分だけ translate すると2セット目の先頭が1セット目の先頭に一致し、繋ぎ目がシームレスになる。 */
  --about-set-w: calc(5 * (351px + 10px));
  animation: about-scroll 30s linear infinite;
}

/* SPは画像が細く同じ時間だと遅く感じるため、1セット幅を更新しつつアニメを速める */
@media screen and (max-width: 768px) {
  .about__track-inner {
    --about-set-w: calc(5 * (260px + 10px));
    animation-duration: 22s;
  }
}

.about__slide {
  flex: 0 0 auto;
  /* gap ではなく margin-right で等間隔にする（-50% が繰り返し境界と一致し、繋ぎ目がシームレスになる） */
  margin-right: 10px;
}

.about__slide img {
  display: block;
  width: 351px;
  aspect-ratio: 351/268;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .about__slide img {
    width: 260px;
  }
}

@keyframes about-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--about-set-w)));
  }
}

.about .cta {
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  .about .cta {
    padding-top: 33px;
  }
}

.about .cta__line {
  background: #fff;
}

/* CTA（複数箇所で使い回し） */
/* 画面下部追従CTA */
.sticky-cta {
  max-width: 700px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: block;
  line-height: 0;
  margin-inline: auto;
  padding-inline: 30px;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media screen and (max-width: 640px) {
  .sticky-cta {
    padding-inline: 16px;
  }
}

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

body.is-line-cta-reached:not(.is-footer-visible) .sticky-cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-menu-open .sticky-cta {
  right: var(--scrollbar-width, 0);
}

/* PC では追従電話バナーをクリック不可（.tellink より body 付きルールが勝っていたため上書き） */
@media screen and (min-width: 641px) {
  body.is-line-cta-reached:not(.is-footer-visible) .sticky-cta.tellink {
    pointer-events: none;
    cursor: default;
  }
}

.cta {
  position: relative;
  z-index: 1;
  padding-block: 0 55px;
}

.cta__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 640px) {
  .cta__inner {
    padding-inline: 16px;
  }
}

/* まとめ割バナー */
.cta__banner {
  margin-inline: auto;
  /* LINE画像が上にはみ出すため、重ならない余白を確保（見た目 約100px） */
  margin-bottom: clamp(100px, 8vw, 130px);
}

@media screen and (max-width: 768px) {
  .cta__banner {
    /* 768px=100px を起点に画面幅へ比例（最小56px） */
    margin-bottom: clamp(56px, 13.02vw, 100px);
  }
}

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

/* LINEブロック */
.cta__line {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  background: #F7F2E4;
  border-radius: 40px;
  padding: 21px 30px 37px;
}

@media screen and (max-width: 640px) {
  .cta__line {
    padding-inline: 16px;
  }
}

.cta__line-visual {
  position: absolute;
  width: clamp(260px, 55vw, 660px);
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
}

.cta__line-visual picture,
.cta__line-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.cta__line-text {
  width: -moz-fit-content;
  width: fit-content;
  /* 451px だと「開催中！」の「中！」が段落ちするため、2行に収まる幅に調整 */
  max-width: 465px;
  margin-inline: auto;
  padding-top: clamp(55px, 15vw, 163px);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  line-height: 1.75;
}

@media screen and (max-width: 640px) {
  .cta__line-text {
    /* LINE画像（line01.png・縦横比3.513）の高さに合わせて上部余白を最小化する。
       画像幅は clamp(260px, 55vw, 660px)。約472px以下では画像幅が260pxで固定される。
       画像高さ ≒ (55vw / 3.513) = 15.66vw。画像下端とテキストの間に約24pxの余白を確保。 */
    padding-top: clamp(52px, 15.66vw - 22px, 78px);
  }
}

.cta__line-bold {
  font-weight: 700;
}

.cta__line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 580px;
  width: 100%;
  height: 81px;
  margin-top: 30px;
  margin-inline: auto;
  background: #00c300;
  border-radius: 40px;
  box-shadow: 0 6px 0 #00a500;
  transition: transform 0.2s ease;
  padding-inline: 15px;
}

@media screen and (max-width: 640px) {
  .cta__line-btn {
    height: 55px;
    box-shadow: 0 3px 0 #00a500;
    /* 640px で 58px → 390px で 40px（390px 未満は max-width:389px ルールが続く） */
    padding-inline: clamp(40px, 58px + (100vw - 640px) * 18 / 250, 58px);
  }
}

@media screen and (max-width: 389px) {
  .cta__line-btn {
    /* 389px で 40px → 320px で 25px（320px 未満は 25px に固定） */
    padding-inline: clamp(30px, 40px + (100vw - 389px) * 15 / 69, 40px);
  }
}

@media (any-hover: hover) {
  .cta__line-btn:hover {
    transform: scale(1.03);
  }
}

@media (any-hover: hover) {
  .cta__line-btn:active {
    transform: scale(1.01);
  }
}

.cta__line-btn-inner {
  max-width: 442px;
  width: 100%;
}

.cta__line-btn-inner img {
  width: 100%;
}

/* LINE と依頼フォームのあいだ（インページリンクの着地点） */
.cta__mid-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .cta__mid-anchor {
    scroll-margin-top: 50px;
  }
}

.cta__form-none {
  display: none;
}

/* フォーム前の導入文 */
.cta__form-intro {
  text-align: center;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: clamp(20px, 3vw, 28px);
}

/* フォームブロック（form01.png の下に重なる） */
.cta__form-block {
  place-items: center;
  display: grid;
  position: relative;
  margin-top: 140px;
  border: 5px solid #0c2e91;
  border-radius: 30px;
  background-color: #fff;
}

@media screen and (max-width: 924px) {
  .cta__form-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid #0c2e91;
    margin-top: 200px;
  }
}

@media screen and (max-width: 640px) {
  .cta__form-block {
    margin-top: clamp(90px, 22vw, 200px);
  }
}

.cta__form-visual {
  position: relative;
  z-index: 0;
  line-height: 0;
  max-width: 878px;
  margin-top: -99px;
  margin-left: auto;
  margin-right: 27px;
}

@media screen and (max-width: 924px) {
  .cta__form-visual {
    margin-top: clamp(-190px, -22vw, -70px);
    margin-right: 0;
  }
}


.cta__form-fields {
  position: absolute;
  margin-top: 15px;
}

@media screen and (max-width: 924px) {
  .cta__form-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 20px 16px;
    margin-top: 0;
    box-sizing: border-box;
  }
}

.cta__form {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 1142px) {
  .cta__form {
    align-items: flex-end;
  }
}

@media screen and (max-width: 684px) {
  .cta__form {
    flex-direction: column;
    align-items: center;
  }
}

.cta__form-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

@media screen and (max-width: 924px) {
  .cta__form-row {
    flex-direction: column;
    align-items: center;
  }
}

.cta__form-field {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

@media screen and (max-width: 1142px) {
  .cta__form-field {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}

@media screen and (max-width: 870px) {
  .cta__form-field {
    width: 100%;
    max-width: 260px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}

.cta__form-field label {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 924px) {
  .cta__form-field label {
    flex-direction: row;
    align-items: center;
  }
}

.cta__required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 16px;
  background: #FF0000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.cta__label-text {
  display: block;
}

.cta__form-field select {
  display: block;
  width: 238px;
  height: 60px;
  font-size: 14px;
  text-align: center;
  -moz-text-align-last: center;
  text-align-last: center;
  border: 2px solid #ccc;
  border-radius: 12px;
  background: #fff url("../img/top/triangle-select.svg") no-repeat right 12px center;
  background-size: 7px 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #666;
  box-shadow: 0 4px 0 #ccc;
  padding-right: 24px;
}

@media screen and (max-width: 870px) {
  .cta__form-field select {
    width: 260px;
    height: 40px;
  }
}

@media screen and (max-width: 640px) {
  .cta__form-field select {
    text-align: center;
    -moz-text-align-last: center;
    text-align-last: center;
    width: 100%;
    max-width: 260px;
  }
}



.cta__form-btn-wrap {
  text-align: center;
}

@media screen and (min-width: 641px) {
  .cta__form-btn-wrap {
    text-align: right;
  }
}

.cta__form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 269px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  /* テキストが折り返さないようにする */
  white-space: nowrap;
  color: #fff;
  background: #FF3E03;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
  padding-inline: 27px;
}

@media screen and (max-width: 870px) {
  .cta__form-btn {
    min-width: 260px;
    height: 50px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
  }
}

/* ボタンは min-width:260px をやめて親幅まで縮められるようにする。
     文言が長い（例:「今すぐクリーニングを依頼する」）ため、
     狭幅では余白を詰め、文字サイズを可変化して1行で収める */
@media screen and (max-width: 640px) {
  .cta__form-btn {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    font-size: clamp(12px, 3.4vw, 16px);
    padding-inline: 14px;
    gap: 8px;
  }
}

.cta__form-btn .cta__form-btn-arrow {
  display: block;
  width: 20px;
  height: auto;
  flex-shrink: 0;
}

@media (any-hover: hover) {
  .cta__form-btn:hover {
    transform: scale(1.03);
  }
}

@media (any-hover: hover) {
  .cta__form-btn:active {
    transform: scale(1.01);
  }
}

/* 狭幅ではみ出し防止：固定幅・最小幅を可変化する（約313pxで頭打ちになる問題の対策） */
@media screen and (max-width: 640px) {

  .cta__form,
  .cta__form-row,
  .cta__form-btn-wrap {
    width: 100%;
  }
}

.cta__customer__tel,
.cta__customer__tel img {
  width: auto;
  max-width: 100%;
  padding: 1em 0 0;
  margin: 0 auto;
  text-align: center;
}

.cta__customer__tel .sp__swpc {
  display: block;
}

@media screen and (max-width: 870px) {
  .cta__customer__tel .sp__swpc {
    display: none;
  }
}

.cta__customer__tel .sp__swsp {
  display: none;
}

@media screen and (max-width: 870px) {
  .cta__customer__tel .sp__swsp {
    display: block;
  }
}

/* フッター */
.site-footer {
  background-color: #0C2666;
  padding-block: 48px 56px;
  padding-inline: 30px;
}

@media screen and (max-width: 640px) {
  .site-footer {
    padding-inline: 16px;
    padding-block: 40px 48px;
  }
}

.site-footer__inner {
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

@media screen and (max-width: 966px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (max-width: 966px) {
  .site-footer__info {
    gap: 0;
  }
}

.site-footer__logo {
  max-width: 256px;
}

.site-footer__logo a {
  display: block;
  padding: 10px;
}

.site-footer__tel {
  display: block;
  max-width: 256px;
  padding: 10px;
}

.site-footer__address,
.site-footer__business {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

.site-footer__nav {
  flex: 1;
  min-width: 0;
  text-align: right;
}

@media screen and (max-width: 870px) {
  .site-footer__nav {
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media screen and (max-width: 600px) {
  .site-footer__links {

    gap: 0 12px;
  }
}

.site-footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 6px;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__links li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer__links li::after {
  content: "｜";
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

@media screen and (max-width: 570px) {
  .site-footer__links li::after {
    display: none;
  }
}

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

.site-footer__links-br {
  display: none;
}

@media screen and (max-width: 405px) {
  .site-footer__links-br {
    display: inline-block;
  }
}

/* サブページ共通（about / contact / faq / staff / area など）
   `<main>` 内の並び: MV（`.sub-mv`）→ パンくず（`.sub-breadcrumb`）→ 各ページのセクション（下へ追加）
   共通画像（img/common/）: sub-mv-bg.png, breadcrumb-arrow.svg。MV 脇イラストは sub-mv-illustration.png（各ページ HTML で参照）
*/
/* メインビジュアル全体（`<section class="sub-mv">`） */
.sub-mv {
  background: #fff;
}

/* MV 背景・高さのラッパー（`.sub-mv__inner`） */
.sub-mv__inner {
  background: url("../img/common/sub-mv-bg.png") center/cover no-repeat;
  position: relative;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 377px;
  width: 100%;
}

@media screen and (max-width: 752px) {
  .sub-mv__inner {
    height: 180px;
    /* ビューポート 320px〜752px で高さ 180px→354px（幅 432px で +174px） */
  }
}

@media screen and (max-width: 752px) and (min-width: 320px) {
  .sub-mv__inner {
    height: clamp(180px, 180px + (100vw - 320px) * 174 / 432, 354px);
  }
}

/* MV 中央コンテンツ行（見出し＋任意のイラスト / `.sub-mv__content`） */
.sub-mv__content {
  max-width: 1159px;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

@media screen and (max-width: 900px) {
  .sub-mv__content {
    gap: 50px;
    justify-content: center;
  }
}

@media screen and (max-width: 900px) {
  .sub-mv__content {
    position: relative;
    align-items: flex-start;
  }
}

/* MV 見出しラッパー（各ページで `h2.sub-mv-heading`＋ページ固有クラスを併記） */
.sub-mv-heading {
  flex: 1;
  width: 100%;
  z-index: 2;
}

@media screen and (max-width: 900px) {
  .sub-mv-heading {
    margin-top: 71px;
  }
}

@media screen and (max-width: 517px) {
  .sub-mv-heading {
    margin-top: 45px;
  }
}

.sub-mv-heading picture,
.sub-mv-heading img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* MV 右側イラスト枠（任意・未使用ページは要素ごと省略可） */
.sub-mv__illustration {
  flex: 1;
  max-width: 259px;
  width: 100%;
  align-self: flex-end;
  /* 絶対配置時に下の本文・ボタンへクリックが届かない問題を防ぐ */
  pointer-events: none;
  margin-bottom: -25px;
}

@media screen and (max-width: 900px) {
  .sub-mv__illustration {
    max-width: clamp(81px, 18.448vw + 21.966px, 188px);
  }
}

@media screen and (max-width: 752px) {
  .sub-mv__illustration {
    position: absolute;
    right: 10%;
  }
}

/* お問い合わせページのみ：640px以下でイラストの下マージンを調整 */
@media screen and (max-width: 640px) {
  .page-contact .sub-mv__illustration {
    margin-bottom: -46px;
  }
}

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

/* パンくず（`<nav class="sub-breadcrumb">` 〜） */
.sub-breadcrumb {
  max-width: 1160px;
  margin-top: 20px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .sub-breadcrumb {
    margin-top: 28px;
    padding-inline: 15px;
  }
}

/* お問い合わせページのみ：398px以下でパンくずの上マージンを広げる */
@media screen and (max-width: 398px) {
  .page-contact .sub-breadcrumb {
    margin-top: 50px;
  }
}

.sub-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #808080;
}

.sub-breadcrumb__item {
  display: flex;
  align-items: center;
}

.sub-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 8px;
  aspect-ratio: 3.56/6.53;
  margin-inline: 13px;
  background: url("../img/common/breadcrumb-arrow.svg") center/contain no-repeat;
}

/* お問い合わせ（contact.html）
   MV・パンくずは `scss/_subpage.scss`。見出しのページ固有調整は `.contact-mv-heading`（`h2.sub-mv-heading` と併用）。
   メインコンテンツは `.contact-inquiry` でラップし、`.cta` および下記バナーを配置。
*/
.contact-mv-heading {
  max-width: 611px;
  width: 100%;
}

@media screen and (max-width: 752px) {
  .contact-mv-heading {
    max-width: 411px;
    /* 752px=71px を起点に画面幅へ比例（最小37px） */
    margin-top: clamp(37px, 9.44vw, 71px);
  }
}

.contact-form__label-br {
  display: block;
}

@media screen and (max-width: 860px) {
  .contact-form__label-br {
    display: none;
  }
}

.contact-inquiry {
  margin-top: 135px;
  margin-bottom: 185px;
  /* 768px で 110px → 320px で 80px（その間は線形） */
}

@media screen and (max-width: 768px) {
  .contact-inquiry {
    margin-top: clamp(80px, 80px + (100vw - 320px) * 30 / 448, 110px);
    margin-bottom: 60px;
  }
}

.contact-inquiry__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 640px) {
  .contact-inquiry__inner {
    padding-inline: 16px;
  }
}

/* LINE CTA 直下：お急ぎ電話バナー（contact_02.png）＋注釈テキスト */
.contact-tel-banner {
  width: 100%;
  max-width: 872px;
  margin-inline: auto;
  margin-top: 80px;
}

@media screen and (max-width: 640px) {
  .contact-tel-banner {
    margin-top: 40px;
  }
}

.contact-tel-banner__img-wrap {
  line-height: 0;
}

.contact-tel-banner__img-link {
  display: block;
}

.contact-tel-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-tel-banner__notes {
  max-width: 702px;
  margin-top: 18px;
  margin-inline: auto;
}

@media screen and (max-width: 640px) {
  .contact-tel-banner__notes {
    margin-top: 20px;
  }
}

.contact-tel-banner__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #1a1a1a;
  letter-spacing: -0.05em;
  padding-left: 1em;
  text-indent: -1em;
}

.contact-tel-banner__text+.contact-tel-banner__text {
  margin-top: 0.5em;
}

.contact-tel-banner__text--lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-tel-banner__tel {
  color: #0C2E91;
  font-weight: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

/* --------------------------------------------------------------------------
   ご依頼専用フォーム（contact.html）
   -------------------------------------------------------------------------- */
.contact-form {
  position: relative;
  width: 100%;
  max-width: 990px;
  margin-inline: auto;
  margin-top: 145px;
  border-radius: 29px;
  border: 5px solid #0c2e91;
  background: #fff;
}

@media screen and (max-width: 860px) {
  .contact-form {
    margin-top: clamp(58px, calc(58px + (100vw - 320px) * 28 / 540), 86px);
    border-radius: 24px;
    border: 3px solid #0c2e91;
  }
}



.contact-form__visual {
  position: absolute;
  left: 50%;
  max-width: 504px;
  width: 100%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 860px) {
  .contact-form__visual {
    width: 90%;
    margin-inline: auto;
    left: 50%;
    transform: translate(-50%, -60%);
    /* ビューポート 320px〜860px で top -43px→-24px（540px 幅で +19px） */
  }
}



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



.contact-form__top {
  background: #e9f2f4;
  padding: 97px 24px 30px;
  border-radius: 26px 26px 0 0;
}

@media screen and (max-width: 860px) {
  .contact-form__top {
    border-radius: 22px 22px 0 0;
  }
}

@media screen and (max-width: 640px) {
  .contact-form__top {
    padding: 70px 16px 20px;
  }
}

@media screen and (max-width: 490px) {
  .contact-form__top {
    padding: 55px 16px 20px;
  }
}

.contact-form__top-inner {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 744px;
  margin-inline: auto;
}

@media screen and (max-width: 860px) {
  .contact-form__top-inner {
    max-width: 598px;
  }
}

@media screen and (max-width: 500px) {
  .contact-form__top-inner {
    gap: 20px;
  }
}

.contact-form__top-body {
  display: flex;
}

@media screen and (max-width: 860px) {
  .contact-form__top-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.contact-form__label {
  width: 146px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
}

@media screen and (max-width: 860px) {
  .contact-form__label {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .contact-form__label {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* メール・電話のみ：PC でもラベル上段・必須下段の縦並び */
.contact-form__label--col {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.contact-form__label--row {
  margin-bottom: 0;
}

.contact-form__label--static {
  align-self: start;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .contact-form__label--static {
    padding-top: 0;
  }
}

.contact-form__label-text {
  line-height: 1.4;
}

.contact-form__label-sub {
  display: inline;
  font-size: 0.92em;
  font-weight: 500;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 37px;
  height: 20px;
  padding: 0 6px;
  background: #FF0000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.contact-form__divider {
  margin-inline: 25px;
  border: none;
  border-top: 1px dashed #999;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .contact-form__divider {
    margin-inline: 16px;
  }
}

.contact-form__row {
  background: #fff;
  padding: 40px 24px;
}

@media screen and (max-width: 640px) {
  .contact-form__row {
    padding: 16px;
  }
}

.contact-form__row--alt {
  background: #F9F9F9;
}

.contact-form__row-inner {
  display: flex;
  align-items: center;
  max-width: 744px;
  margin-inline: auto;
}

@media screen and (max-width: 860px) {
  .contact-form__row-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 598px;
  }
}

.contact-form__row-inner--stack {
  align-items: start;
}

.contact-form__stack {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
}

.contact-form__stack--files {
  gap: 14px;
}

.contact-form__input,
.contact-form__textarea {
  display: flex;
  align-items: center;
  max-width: 598px;
  width: 100%;
  height: 67px;
  box-sizing: border-box;
  font-size: 14px;
  color: #1a1a1a;
  border: 5px solid #EAEAEA;
  border-radius: 30px;
  padding-inline: 45px;
  background: #fff;
}

/*
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: 2px solid rgba(12, 46, 145, 0.35);
  outline-offset: 1px;
}
*/
@media screen and (max-width: 500px) {

  .contact-form__input,
  .contact-form__textarea {
    height: 50px;
    border: 3px solid #EAEAEA;
  }
}

.contact-form__input::-moz-placeholder,
.contact-form__textarea::-moz-placeholder {
  color: #999;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #999;
}

/* セレクト：CTA（.cta__form-field select）と同じカスタム三角 */
select.contact-form__input {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #fff url("../img/top/triangle-select.svg") no-repeat right 43px center;
  background-size: 7px 8px;
}

/* セレクトの空オプション（エリア選択／台数）のみプレースホルダー色 — クラスは script.js で付与 */
select.contact-form__input.is-placeholder {
  color: #a0a0a0;
}

.contact-form__textarea {
  min-height: 278px;
  resize: vertical;
  line-height: 1.6;
  padding-block: 8px;
}

.contact-form__input--postal {
  max-width: 200px;
}

.contact-form__hint {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #A0A0A0;
  padding-left: 17px;
}

.contact-form__postal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

.contact-form__postal-mark {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-form__file {
  display: flex;
  align-items: center;
  max-width: 598px;
  width: 100%;
  min-width: 0;
  height: 67px;
  box-sizing: border-box;
  border: 5px solid #EAEAEA;
  border-radius: 30px;
  padding-inline: 45px;
  background: #fff;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .contact-form__file {
    height: 50px;
    border: 3px solid #EAEAEA;
  }
}

.contact-form__file-input {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

/* DevTools では内部ボタンが `input#file-upload-button` と表示されるが、Shadow 内のため
   `input#file-upload-button { … }` はページの CSS では当たらない。ホストの input に付ける
   疑似要素が外から触れる唯一の手段（Chrome/Safari は -webkit、Firefox は標準疑似要素） */
input[type=file].contact-form__file-input::file-selector-button {
  margin-inline-end: 30px;
  cursor: pointer;
}

input[type=file].contact-form__file-input::-webkit-file-upload-button {
  margin-inline-end: 30px;
  cursor: pointer;
}

.contact-form__footer {
  max-width: 620px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  margin-block: 40px 65px;
  padding-inline: 20px;
  /* 861px〜1052px のみ可変（1052−861=191px の幅で 16px→100px）。未満は上記 16px、負の calc を避ける */
}

@media screen and (min-width: 861px) {
  .contact-form__footer {
    margin-inline-end: clamp(16px, 16px + (100vw - 861px) * 84 / 191, 100px);
  }
}

@media screen and (min-width: 1052px) {
  .contact-form__footer {
    margin-inline-end: 100px;
  }
}

.contact-form__submit-wrap {
  margin-bottom: 30px;
}

.contact-form__submit {
  max-width: 348px;
  width: 100%;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #0C2E91;
  border-radius: 21px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media screen and (max-width: 860px) {
  .contact-form__submit {
    margin-inline: auto;
    height: 55px;
  }
}

@media (any-hover: hover) {
  .contact-form__submit:hover {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

@media (any-hover: hover) {
  .contact-form__submit:active {
    transform: scale(1);
  }
}

.contact-form__privacy {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
  color: #808080;
}

/* よくある質問（faq.html）
   MV・パンくずは `scss/_subpage.scss`。`.faq-mv-heading` は MV 見出し幅のみ。
   コンテンツは `.faq-page` / `.faq-acc`（index の `.faq` と分離）。
*/
.faq-mv-heading {
  max-width: 388px;
  width: 100%;
}

@media screen and (max-width: 680px) {
  .faq-mv-heading {
    max-width: 219px;
    /* ビューポート 320px〜680px で max-width 219px→354px（幅 360px で +135px） */
  }
}

@media screen and (max-width: 680px) and (min-width: 320px) {
  .faq-mv-heading {
    max-width: clamp(219px, 219px + (100vw - 320px) * 135 / 360, 354px);
  }
}

.faq-page {
  background: #fff;
  padding-block: 48px 170px;
}

@media screen and (max-width: 768px) {
  .faq-page {
    padding-block: 32px 45px;
  }
}

.faq-page__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .faq-page__inner {
    padding-inline: 16px;
  }
}

.faq-acc+.faq-page__section-title {
  text-align: center;
  word-break: keep-all;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .faq-acc+.faq-page__section-title {
    margin-top: 40px;
  }
}

.faq-page__section-title {
  display: inline-block;
  margin-bottom: 40px;
  padding: 22px 80px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
  background: #B5D3EA;
  border-radius: 999px;
}

@media screen and (max-width: 640px) {
  .faq-page__section-title {
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 24px;
  }
}

.faq-acc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-acc__item {
  border: 4px solid #000;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.faq-acc__trigger {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  width: 100%;
  padding: 31px 58px;
  border: none;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #000;
}

@media screen and (max-width: 640px) {
  .faq-acc__trigger {
    padding: 14px 14px;
    align-items: b;
    gap: 10px;
  }
}

.faq-acc__q-mark {
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #0C2E91;
}

@media screen and (max-width: 640px) {
  .faq-acc__q-mark {
    font-size: 22px;
  }
}

.faq-acc__question {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  min-width: 0;
}

@media screen and (max-width: 640px) {
  .faq-acc__question {
    font-size: 16px;
  }
}

.faq-acc__toggle-icon {
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 28px;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #0C2E91;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-acc__icon-minus {
  display: none;
}

.faq-acc__item.is-open .faq-acc__icon-plus {
  display: none;
}

.faq-acc__item.is-open .faq-acc__icon-minus {
  display: block;
}

.faq-acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .faq-acc__panel {
    transition-duration: 0.01ms;
  }
}

.faq-acc__item.is-open .faq-acc__panel {
  grid-template-rows: 1fr;
}

.faq-acc__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-acc__item.is-open .faq-acc__panel-inner {
  cursor: pointer;
}

.faq-acc__divider {
  display: block;
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px dashed #999;
  box-sizing: border-box;
}

.faq-acc__answer-row {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  padding: 31px 58px;
}

@media screen and (max-width: 640px) {
  .faq-acc__answer-row {
    padding: 14px 14px;
    gap: 10px;
  }
}

.faq-acc__a-mark {
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #FF3E03;
}

@media screen and (max-width: 640px) {
  .faq-acc__a-mark {
    font-size: 22px;
  }
}

.faq-acc__answer-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #000;
}

@media screen and (max-width: 640px) {
  .faq-acc__answer-text {
    font-size: 14px;
  }
}

/* スタッフ紹介（staff.html）
   MV・パンくずは `scss/_subpage.scss`。`.staff-mv-heading` は MV 見出し幅のみ。
   プロフィールは `.staff-profile`（トップの `.staff-card` と分離）。
   癒し営業部は `.staff-heal`（背景 `staff_bg.png`）。
*/
.staff-mv-heading {
  max-width: 388px;
  width: 100%;
}

@media screen and (max-width: 680px) {
  .staff-mv-heading {
    max-width: 219px;
  }
}

@media screen and (max-width: 680px) and (min-width: 320px) {
  .staff-mv-heading {
    max-width: clamp(219px, 219px + (100vw - 320px) * 135 / 360, 354px);
  }
}

.staff-page {
  background: #fff;
  padding-block: 70px 202px;
}

@media screen and (max-width: 768px) {
  .staff-page {
    padding-block: 32px 128px;
  }
}

.staff-page__inner {
  max-width: 1109px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .staff-page__inner {
    padding-inline: 16px;
  }
}

.staff-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 640px) {
  .staff-list {
    gap: 28px;
  }
}

.staff-profile {
  border: 4px solid #000;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: #fff;
}

.staff-profile__head {
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid #000;
}

@media screen and (max-width: 640px) {
  .staff-profile__head {
    align-items: center;
    flex-direction: column;
  }
}

.staff-profile__sub {
  width: 245px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  font-size: clamp(14px, 2.2vw, 21px);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .staff-profile__sub {
    height: unset;
    padding-inline: 8px;
    padding-block: 6px;
  }
}

.staff-profile__name-wrap {
  height: 84px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline: 35px;
  border-left: 2px solid #000;
}

@media screen and (max-width: 640px) {
  .staff-profile__name-wrap {
    width: 100%;
    justify-content: center;
    padding-block: 16px;
    border-left: none;
    border-top: 2px solid #000;
    padding-inline: 16px;
  }
}

.staff-profile__name {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 900;
  line-height: 1.2;
}

.staff-profile__name-ruby {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.staff-profile__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 46px;
  padding: 18px 24px 27px;
}

@media screen and (max-width: 768px) {
  .staff-profile__body {
    flex-direction: column;
    padding: 20px 16px 28px;
    gap: 20px;
  }
}

.staff-profile__photo {
  position: relative;
  min-width: 0;
}

@media screen and (min-width: 769px) {
  .staff-profile__photo {
    flex: 0 1 42%;
    min-width: 200px;
    max-width: 42%;
  }
}

.staff-profile__photo--overlap .staff-profile__photo-img {
  position: relative;
  z-index: 0;
}

/* staff_04-1 を staff_04 の上に重ねる */
.staff-profile__photo-overlap {
  position: absolute;
  left: -4%;
  bottom: -8%;
  z-index: 1;
  max-width: 178px;
  width: 43%;
}

.staff-profile__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .staff-profile__text {
    flex: 1;
    min-width: 0;
  }
}

.staff-profile__copy {
  max-width: 446px;
  width: 100%;
}

.staff-profile__copy p+p {
  margin-top: 0.85em;
}

/* --------------------------------------------------------------------------
   癒し営業部（保護猫・動物隊）
   -------------------------------------------------------------------------- */
/* インページ着地点：sticky ヘッダーとタイトル画像の負マージン分をまとめて確保する。 */
#staff-heal-title-wrap {
  --staff-heal-anchor-header: 90px;
  --staff-heal-anchor-overlap: 169px;
  --staff-heal-anchor-gap: 30px;
  display: block;
  height: 0;
  scroll-margin-top: calc(var(--staff-heal-anchor-header) + var(--staff-heal-anchor-overlap) + var(--staff-heal-anchor-gap));
}

@media screen and (max-width: 1600px) {
  #staff-heal-title-wrap {
    --staff-heal-anchor-overlap: clamp(85px, 85px + (100vw - 320px) * 84 / 1280, 169px);
  }
}

@media screen and (max-width: 768px) {
  #staff-heal-title-wrap {
    --staff-heal-anchor-header: 50px;
    --staff-heal-anchor-gap: 20px;
  }
}

.staff-heal {
  background: url("../img/staff/staff_bg.png") no-repeat top center;
  background-size: 100% 100%;
  margin-top: 0;
  margin-bottom: 102px;
  padding-bottom: 65px;
}

@media screen and (max-width: 768px) {
  .staff-heal {
    background-size: cover;
    background-position: top center;
  }
}

@media screen and (max-width: 500px) {
  .staff-heal {
    margin-bottom: 50px;
  }
}

.staff-heal__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .staff-heal__inner {
    padding-inline: 16px;
  }
}

.staff-heal__title-wrap {
  max-width: 591px;
  width: 100%;
  margin-inline: auto;
  margin-top: -169px;
  /* 1600px で -169px → 320px で -85px（1600px 超は上記を維持） */
}

@media screen and (max-width: 1600px) {
  .staff-heal__title-wrap {
    margin-top: clamp(-169px, -169px + (1600px - 100vw) * 84 / 1280, -85px);
  }
}

.staff-heal__title-img {
  display: block;
  width: 100%;
  max-width: 1184px;
  height: auto;
  margin-inline: auto;
}

.staff-heal__animals {
  width: 100%;
  max-width: 670px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.staff-heal__copy {
  width: 100%;
  max-width: 885px;
  margin-inline: auto;
}

.staff-heal__lead {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
}

.staff-heal__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

/* 癒し営業部スライダー（全幅・中央1枚＋左右チラ見せ・JS自動送り） */
.staff-heal-slider-bleed {
  width: 100%;
  margin-inline: calc(50% - 50vw + (100vw - 100%) / 2);
  margin-top: clamp(28px, 5vw, 48px);
  overflow: hidden;
}

.staff-heal-slider--auto {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "sh-view"
    "sh-pager";
}

@media screen and (max-width: 680px) {
  .staff-heal-slider--auto {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: clamp(8px, 2vw, 14px);
    grid-template-areas:
      "sh-view"
      "sh-dots";
  }
}

.staff-heal-slider__viewport-shell {
  grid-area: sh-view;
  position: relative;
  min-width: 0;
  width: 100%;
}

.staff-heal-slider__viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  touch-action: pan-y;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

@media screen and (max-width: 940px) {
  .staff-heal-slider__viewport {
    container-type: inline-size;
  }
}

.staff-heal-slider__viewport img {
  -webkit-user-drag: none;
  user-select: none;
}

.staff-heal-slider__viewport:active {
  cursor: grabbing;
}

.staff-heal-slider--auto .staff-heal-slider__track {
  display: flex;
  align-items: stretch;
  gap: 45px;
  width: -moz-max-content;
  width: max-content;
  padding-block: 28px 15px;
  will-change: transform;
  transition: transform 0.55s ease;
}

@media (prefers-reduced-motion: reduce) {
  .staff-heal-slider--auto .staff-heal-slider__track {
    transition: none;
  }
}

@media screen and (max-width: 940px) {
  .staff-heal-slider--auto .staff-heal-slider__track {
    gap: 45px;
  }
}

@media screen and (max-width: 500px) {
  .staff-heal-slider--auto .staff-heal-slider__track {
    padding-block: 28px 25px;
  }
}

.staff-heal-slider--auto .staff-heal-slider__track.is-staff-heal-no-transition {
  transition: none;
}

.staff-heal-slider--auto .staff-heal-slider__track.is-staff-heal-dragging {
  transition: none;
}

.staff-heal-slider__pager {
  grid-area: sh-pager;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
  margin-top: clamp(8px, 2vw, 16px);
  padding: 0 8px 8px;
}

@media screen and (max-width: 680px) {
  .staff-heal-slider__pager {
    display: contents;
    margin-top: 0;
    padding: 0 0 8px;
  }
}

/* レイアウトは --pager / --overlay のモディファイアに分離 */
.staff-heal-slider__arrow {
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 2px solid #0C2E91;
  border-radius: 50%;
  background: #fff;
  color: #0C2E91;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

@media screen and (max-width: 500px) {
  .staff-heal-slider__arrow {
    width: 40px;
    height: 40px;
  }
}

.staff-heal-slider__arrow--pager {
  display: flex;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 680px) {
  .staff-heal-slider__arrow--pager {
    display: none;
  }
}

@media screen and (min-width: 681px) {
  .staff-heal-slider__arrow--overlay {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .staff-heal-slider__viewport-shell>.staff-heal-slider__arrow--overlay {
    display: flex;
    position: absolute;
    top: 30%;
    z-index: 3;
    pointer-events: auto;
  }
}

/* 画面端から 8px。translateX でスライド側へ少し乗せてアイテムからはみ出す見え方に */
@media screen and (max-width: 680px) {
  .staff-heal-slider__viewport-shell>.staff-heal-slider__arrow--overlay.staff-heal-slider__arrow--prev {
    left: 8px;
  }
}

@media screen and (max-width: 680px) {
  .staff-heal-slider__viewport-shell>.staff-heal-slider__arrow--overlay.staff-heal-slider__arrow--next {
    right: 8px;
  }
}

.staff-heal-slider__arrow:hover {
  background: #0C2E91;
  color: #fff;
}

.staff-heal-slider__arrow:focus {
  outline: none;
}

.staff-heal-slider__arrow:focus-visible {
  outline: 3px solid #0C2E91;
  outline-offset: 3px;
}

.staff-heal-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 680px) {
  .staff-heal-slider__dots {
    grid-area: sh-dots;
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

.staff-heal-slider__dot {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #c8c8c8;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.staff-heal-slider__dot:hover {
  background: #9aa3b2;
}

.staff-heal-slider__dot:focus {
  outline: none;
}

.staff-heal-slider__dot:focus-visible {
  outline: 2px solid #0C2E91;
  outline-offset: 3px;
}

.staff-heal-slider__dot.is-active {
  background: #0C2E91;
  transform: scale(1.2);
}

.staff-heal-slider__slide {
  flex: 0 0 auto;
  width: min(903px, 100%);
  min-width: 0;
  /* PC時はvw依存を避け、スクロールバー幅差分のズレを抑える */
}

@media screen and (max-width: 940px) {
  .staff-heal-slider__slide {
    flex: 0 0 calc(100vw - 30px);
    width: calc(100vw - 30px);
    max-width: none;
  }
}

@supports (width: 1cqi) {
  @media screen and (max-width: 940px) {
    .staff-heal-slider__slide {
      flex: 0 0 calc(100cqi - 30px);
      width: calc(100cqi - 30px);
    }
  }
}

.staff-heal-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 37px;
  width: 100%;
  padding: 15px 38px 15px 19px;
  background-color: #fff;
  border: 5px solid #000;
  border-radius: 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 940px) {
  .staff-heal-card {
    padding: 15px;
  }
}

@media screen and (max-width: 680px) {
  .staff-heal-card {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.staff-heal-card__media {
  max-width: 262px;
}

@media screen and (max-width: 520px) {
  .staff-heal-card__media {
    flex: none;
    max-width: none;
    width: 72%;
    margin-inline: auto;
  }
}

@media screen and (max-width: 375px) {
  .staff-heal-card__media {
    width: 100%;
  }
}

.staff-heal-card__body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.staff-heal-card__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 0 0 10px;
}

@media screen and (max-width: 680px) {
  .staff-heal-card__heading {
    justify-content: center;
  }
}

.staff-heal-card__role {
  font-size: 21px;
  font-weight: 900;
}

@media screen and (max-width: 375px) {
  .staff-heal-card__role {
    font-size: 18px;
  }
}

.staff-heal-card__name {
  font-size: 32px;
  font-weight: 900;
}

@media screen and (max-width: 375px) {
  .staff-heal-card__name {
    font-size: 28px;
  }
}

.staff-heal-card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.staff-heal-card__paw {
  position: absolute;
  bottom: -13px;
  left: -24px;
  max-width: 120px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 940px) {
  .staff-heal-card__paw {
    left: -15px;
  }
}

@media screen and (max-width: 680px) {
  .staff-heal-card__paw {
    bottom: unset;
    top: -22px;
    left: -7px;
  }
}

@media screen and (max-width: 375px) {
  .staff-heal-card__paw {
    max-width: 75px;
  }
}

/* page-about.php */
.about-mv-heading {
  width: 100%;
  max-width: 262px;
}

@media screen and (max-width: 680px) and (min-width: 320px) {
  .about-mv-heading {
    max-width: clamp(176px, 176px + (100vw - 320px) * 135 / 360, 354px);
  }
}

.about-greeting {
  padding: 72px 0 96px;
}

@media screen and (max-width: 768px) {
  .about-greeting {
    padding: 56px 0 72px;
  }
}

.about-greeting__inner {
  max-width: 1310px;
  margin-inline: auto 0;
}

@media screen and (min-width: 1601px) {
  .about-greeting__inner {
    margin-inline: auto;
    padding-inline: 0;
  }
}

.about-greeting__lead-red-br {
  display: none;
}

@media screen and (max-width: 526px) {
  .about-greeting__lead-red-br {
    display: block;
  }
}

.about-greeting__content {
  max-width: 757px;
  margin-top: -34%;
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .about-greeting__content {
    width: 90%;
    margin-inline: auto;
    padding-left: 0;
  }
}

.about-greeting__hl {
  display: inline;
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .about-greeting__hl {
    padding-right: 10px;
  }
}

.about-greeting__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .about-greeting__heading {
    /* 768px→16px、320px→14px の間で可変（2/448 = 1/224） */
    font-size: clamp(14px, 14px + (100vw - 320px) / 224, 18px);
  }
}

.about-greeting__lead {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .about-greeting__lead {
    font-size: clamp(20px, 20px + (100vw - 320px) / 448, 45px);
    margin-bottom: 30px;
  }
}

.about-greeting__lead-red {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.6;
  color: #c1272d;
  margin-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .about-greeting__lead-red {
    font-size: clamp(18px, 18px + (100vw - 320px) / 448, 28px);
  }
}

.about-greeting__body {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .about-greeting__body {
    font-size: clamp(14px, 14px + (100vw - 320px) / 448, 16px);
  }
}

.about-greeting__body p {
  margin: 0;
}

.about-greeting__body p+p {
  margin-top: 22px;
}

@media screen and (max-width: 768px) {
  .about-greeting__body p+p {
    margin-top: 16px;
  }
}

.about-greeting__body .about-greeting__hl {
  padding-block: 3px;
}

.about-greeting__name {
  margin: 34px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .about-greeting__name {
    font-size: clamp(14px, 14px + (100vw - 320px) / 448, 16px);
    margin-top: 24px;
  }
}

.about-greeting__image {
  max-width: 937px;
  width: 74%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .about-greeting__image {
    width: 90%;
  }
}

/* 会社概要セクション */
.about-profile {
  background: #f7f2e4;
  padding: 35px 0 111px;
  margin-bottom: 114px;
}

@media screen and (max-width: 768px) {
  .about-profile {
    padding: 56px 0 72px;
    margin-bottom: 80px;
  }
}

.about-profile__inner {
  max-width: 1152px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .about-profile__inner {
    padding-inline: 15px;
  }
}

.about-profile__head {
  max-width: 707px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 40px;
}

@media screen and (max-width: 557px) {
  .about-profile__head {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.about-profile__title {
  max-width: 224px;
  width: 100%;
  margin-bottom: 32px;
}

@media screen and (max-width: 557px) {
  .about-profile__title {
    margin-bottom: 0;
  }
}

.about-profile__visual {
  width: 100%;
  max-width: 391px;
}

@media screen and (max-width: 557px) {
  .about-profile__visual {
    width: 80%;
    max-width: 320px;
  }
}

.about-profile__table-wrap {
  max-width: 707px;
  width: 100%;
  margin-inline: auto;
  border: 4px solid #000;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 70px;
}

@media screen and (max-width: 590px) {
  .about-profile__table-wrap {
    border: 2px solid #000;
  }
}

.about-profile__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .about-profile__table {
    font-size: clamp(14px, 14px + (100vw - 320px) / 448, 16px);
  }
}

.about-profile__table tr:nth-child(odd) {
  background: #fff;
}

.about-profile__table tr:nth-child(even) {
  background: #e1ebf1;
}

.about-profile__table tr:not(:last-child) {
  border-bottom: 1px solid #000;
}

.about-profile__table th,
.about-profile__table td {
  padding: 25px 0 25px 116px;
  text-align: left;
  vertical-align: top;
}

@media screen and (max-width: 590px) {

  .about-profile__table th,
  .about-profile__table td {
    /* 320px→10px、590px→116px（270px幅で可変） */
    padding: 14px 0 14px clamp(10px, 10px + (100vw - 320px) * 106 / 270, 116px);
  }
}

.about-profile__table th {
  width: 39%;
  min-width: 7em;
  font-weight: 500;
}

.about-profile__table td {
  font-weight: 400;
  padding-left: 0;
  padding-right: 10px;
}

.about-profile__map {
  max-width: 1092px;
  margin-inline: auto;
}

.about-profile__map-inner {
  position: relative;
  width: 100%;
  max-width: 1092px;
  aspect-ratio: 1092/391;
}

@media screen and (max-width: 680px) {
  .about-profile__map-inner {
    aspect-ratio: 1092/650;
  }
}

.about-profile__map-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* page-installations.php
   MV は `.sub-mv` ではなく `.installations-mv`（トップの `.mv` に近いフル幅ヒーロー）。
   パンくずは `_subpage.scss` の `.sub-breadcrumb` を流用。
*/
.installations-page {
  overflow-x: clip;
}

/* ----- MV（サブページ共通 MV とは別デザイン） ----- */
.installations-mv {
  width: 100%;
  background: #fff;
}

.installations-mv__inner {
  width: 100%;
}

.installations-page .installations-clients {
  position: relative;
  margin-top: clamp(-181px, -73px + (100vw - 769px) * -91 / 831, -73px);
}

@media screen and (max-width: 768px) {
  .installations-page .installations-clients {
    /* 320px→-17px、768px→-80px（448px幅で可変） */
    margin-top: clamp(-80px, -17px + (100vw - 320px) * -63 / 448, -17px);
  }
}

/* ----- クチコミ ----- */
.installations-page .installations-reviews {
  margin-top: 110px;
}

@media screen and (max-width: 768px) {
  .installations-page .installations-reviews {
    /* 320px→50px、768px→80px（448px幅で可変） */
    margin-top: clamp(50px, 50px + (100vw - 320px) * 30 / 448, 80px);
  }
}

.installations-reviews__inner {
  max-width: 1310px;
  margin-inline: auto;
  padding-inline: 30px;
}

/* ----- お悩み ----- */
.installations-worries__bg {
  background: url("../img/installations/installations_worries_bg.png") center top/cover no-repeat;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.installations-worries__inner {
  max-width: 1094px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .installations-worries__inner {
    padding-inline: 20px;
  }
}

.installations-worries__media {
  position: relative;
  z-index: 1;
  margin-top: -68px;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}

@media screen and (max-width: 870px) {
  .installations-worries__media {
    margin-top: -35px;
  }
}

.installations-worries__media-item--01 {
  width: 100%;
  max-width: 668px;
}

@media screen and (max-width: 870px) {
  .installations-worries__media-item--01 {
    width: 80%;
  }
}

/* ----- 料金 ----- */
.installations-price {
  position: relative;
  z-index: 1;
  background-image: url("../img/installations/installations_price_bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}



.installations-price__inner {
  position: relative;
  max-width: 1105px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .installations-price__inner {
    padding-inline: 10px;
  }
}

.installations-price__area {
  position: relative;
  z-index: 1;
  top: -50px;
}

@media screen and (max-width: 1031px) {
  .installations-price__area {
    top: clamp(-24px, -24px + (870px - 100vw) * 24 / 550, 0px);
  }
}

.installations-price__group {
  position: relative;
  z-index: 1;
  max-width: 1007px;
  margin-inline: 17px;
  background-color: #fff;
  border-radius: 33px;
  padding: 40px 30px;
  top: -356px;
}

@media screen and (max-width: 1107px) {
  .installations-price__group {
    top: clamp(-356px, -356px + (1108px - 100vw) * 155 / 339, -201px);
  }
}

@media screen and (max-width: 768px) {
  .installations-price__group {
    border-radius: 20px;
    /* 768px→-200px、320px→16px（448px幅で可変） */
    top: clamp(-219px, -219px + (768px - 100vw) * 119 / 448, -100px);
    padding: 30px 10px;
    margin-inline: 10px;
  }
}

.installations-price__visual--02 {
  max-width: 768px;
  margin-top: -175px;
  margin-inline: 57px auto;
}

@media screen and (max-width: 1107px) {
  .installations-price__visual--02 {
    margin-inline: auto;
  }
}

@media screen and (max-width: 767px) {
  .installations-price__visual--02 {
    /* 767px→-161px、320px→-73px（447px幅で可変） */
    margin-top: clamp(-161px, -161px + (767px - 100vw) * 88 / 447, -73px);
  }
}

.installations-price__visual--03 {
  z-index: 1;
  position: absolute;
  width: 100%;
  top: 807px;
  padding-inline: 30px;
  /* 1099〜969px で 807px→754px（130px幅で可変） */
}

@media screen and (max-width: 1099px) and (min-width: 969px) {
  .installations-price__visual--03 {
    top: clamp(754px, 807px - (1099px - 100vw) * 53 / 130, 807px);
  }
}



@media screen and (max-width: 969px) and (min-width: 875px) {
  .installations-price__visual--03 {
    top: clamp(731px, 776px - (969px - 100vw) * 45 / 94, 776px);
  }
}



@media screen and (max-width: 874px) and (min-width: 768px) {
  .installations-price__visual--03 {
    top: clamp(716px, 757px - (874px - 100vw) * 41 / 106, 757px);
  }
}



@media screen and (max-width: 767px) {
  .installations-price__visual--03 {
    top: clamp(595px, 684px - (767px - 100vw) * 89 / 102, 684px);
  }
}



@media screen and (max-width: 640px) and (min-width: 605px) {
  .installations-price__visual--03 {
    top: clamp(552px, 573px - (640px - 100vw) * 21 / 35, 573px);
  }
}



@media screen and (max-width: 604px) and (min-width: 523px) {
  .installations-price__visual--03 {
    top: clamp(506px, 567px - (604px - 100vw) * 61 / 81, 567px);
  }
}



@media screen and (max-width: 522px) and (min-width: 339px) {
  .installations-price__visual--03 {
    top: clamp(375px, 524px - (522px - 100vw) * 149 / 183, 524px);
  }
}



@media screen and (max-width: 338px) and (min-width: 320px) {
  .installations-price__visual--03 {
    top: clamp(382px, 392px - (338px - 100vw) * 10 / 18, 392px);
  }
}



@media screen and (max-width: 319px) {
  .installations-price__visual--03 {
    top: clamp(280px, 382px - (320px - 100vw) * 10 / 18, 382px);
  }
}

@media screen and (max-width: 768px) {
  .installations-price__visual--03 {
    padding-inline: 7px;
  }
}

@media screen and (max-width: 550px) {
  .installations-price__visual--03 {
    /* 550px→9px、320px→13px（230px幅で可変） */
    padding-inline: clamp(9px, 9px + (550px - 100vw) * 4 / 230, 13px);
  }
}

.installations-price__visual--03 img {
  max-width: 1050px;
  margin-inline: auto;
  padding-right: 2px;
}

@media screen and (max-width: 1108px) {
  .installations-price__visual--03 img {
    max-width: 100%;
    padding-right: 0;
  }
}

@media screen and (max-width: 930px) {
  .installations-price__visual--03 img {
    padding-inline: 1px;
  }
}

@media screen and (max-width: 849px) {
  .installations-price__visual--03 img {
    padding-inline: 2px;
  }
}

@media screen and (max-width: 768px) {
  .installations-price__visual--03 img {
    padding-inline: 0;
  }
}

@media screen and (max-width: 449px) {
  .installations-price__visual--03 img {
    padding-inline: 1px;
  }
}

.installations-price__message {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding-inline: 96px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .installations-price__message {
    font-size: 14px;
    padding-inline: 30px;
  }
}

@media screen and (max-width: 640px) {
  .installations-price__message {
    padding-inline: 0;
  }
}

.installations-price-acc {
  margin-top: 180px;
  display: grid;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .installations-price-acc {
    margin-top: 157px;
  }
}

@media screen and (max-width: 664px) {
  .installations-price-acc {
    /* 664px→135px、320px→68px（344px幅で可変） */
    margin-top: clamp(68px, 135px - (664px - 100vw) * 67 / 344, 135px);
  }
}

.installations-price-acc__item {
  max-width: 830px;
  width: 100%;
  margin-inline: auto;
  border: 3px solid #111;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.installations-price-acc__summary {
  height: 74px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 70px;
  background: #f8f8f8;
}

@media screen and (max-width: 487px) {
  .installations-price-acc__summary {
    height: 50px;
    padding: 0 10px;
  }
}

.installations-price-acc__summary::-webkit-details-marker {
  display: none;
}

.installations-price-acc__summary::marker {
  content: "";
}

.installations-price-acc__head {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}

@media screen and (max-width: 768px) {
  .installations-price-acc__head {
    width: 100%;
    justify-content: space-between;
    gap: unset;
  }
}

.installations-price-acc__icon {
  width: 53px;
  height: auto;
  flex: 0 0 auto;
}

@media screen and (max-width: 768px) {
  .installations-price-acc__icon {
    width: 40px;
  }
}

@media screen and (max-width: 487px) {
  .installations-price-acc__icon {
    width: 35px;
  }
}

.installations-price-acc__washing-machine {
  width: 40px;
}

@media screen and (max-width: 768px) {
  .installations-price-acc__washing-machine {
    width: 35px;
  }
}

@media screen and (max-width: 487px) {
  .installations-price-acc__washing-machine {
    width: 30px;
  }
}

.installations-price-acc__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

@media screen and (max-width: 500px) {
  .installations-price-acc__title {
    font-size: 18px;
  }
}

.installations-price-acc__arrow {
  width: 25px;
  height: 25px;
  background: url("../img/installations/arrow-circle-down.svg") center/contain no-repeat;
}

.installations-price-acc__item[open] .installations-price-acc__arrow {
  background-image: url("../img/installations/arrow-circle-up.svg");
}

.installations-price-acc__panel {
  display: block;
  height: 0;
  overflow: hidden;
  cursor: pointer;
  background: #F7F2E4;
  transition: height 0.4s ease;
}

.installations-price-acc__list {
  padding-inline: 65px;
  padding-bottom: 12px;
}

@media screen and (max-width: 954px) {
  .installations-price-acc__list {
    padding-inline: 10px;
  }
}

.installations-price-acc__msg {
  font-size:100%;
  padding-inline: 65px;
  font-weight: bold;
  color: #C11111;
  margin-top: -7px;
  margin-bottom: -14px;
}

@media screen and (max-width: 954px) {
  .installations-price-acc__msg {
	font-size:90%;
    padding-inline: 10px;
    margin-top: 0;
    margin-bottom: -10px;
  }
}

.installations-price-acc__msg2 {
	text-align: right;
	padding-top: 5px;
	padding-bottom: 20px;
}

.installations-price-acc__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-inline: 40px;
  border-bottom: 1px dashed #999;
  height: 50px;
}

@media screen and (max-width: 838px) {
  .installations-price-acc__row {
    padding-inline: 20px;
  }
}

@media screen and (max-width: 516px) {
  .installations-price-acc__row {
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    align-items: flex-start;
    padding-block: 7px;
    padding-inline: 8px;
    height: auto;
  }
}

.height80 {
  height: 80px;
}

@media screen and (max-width: 516px) {
  .height80 {
    height: auto;
  }
}

.installations-price-acc__row:last-child {
  border-bottom: none;
}

.installations-price-acc__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (max-width: 516px) {
  .installations-price-acc__label {
    font-size: 14px;
  }
}

.installations-price-acc__price {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  max-width: 207px;
  width: 100%;
}

.installations-price-acc__old {
  font-size: 16px;
  font-weight: 700;
  text-decoration: line-through;
}

@media screen and (max-width: 516px) {
  .installations-price-acc__old {
    font-size: 14px;
  }
}

.installations-price-acc__new {
  font-family: "Roboto", sans-serif;
  color: #C1272D;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 516px) {
  .installations-price-acc__new {
    font-size: 20px;
  }
}

.installations-price-acc__new::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  margin-right: 10px;
  background: url("../img/installations/arrow_right.svg") center/contain no-repeat;
  vertical-align: -1px;
}

.installations-price-acc__single {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  width: 207px;
}

@media screen and (max-width: 516px) {
  .installations-price-acc__single {
    font-size: 14px;
    width: 100%;
  }
}

.installations-price-acc__single a {
  text-decoration: underline;
}

.installations-price-acc__sub {
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

.cl-brack {
  color: #1A1A1A;
  ;
}

.installations-price-acc__washer {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.installations-price-acc__txt {
  font-size: 12px;
  padding: 10px 20px 0;
}

.installations-price-acc__txt div {
  padding: 10px 0 10px 1em;
}

.palf1em {
  padding-left: 1em;
}

.installations-price__note {
  max-width: 796px;
  margin-inline: auto;
  margin-top: 30px;
}

.installations-price__note-title {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
  color: #000;
}

@media screen and (max-width: 767px) {

  .installations-price__note-title,
  .installations-price-acc__washer {
    font-size: 14px;
  }
}

.installations-price__note-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  padding-left: 8px;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 767px) {
  .installations-price__note-text {
    font-size: 14px;
  }
}

.installations-price-acc__title--space {
  display: none;
}

@media screen and (max-width: 768px) {
  .installations-price-acc__title--space {
    display: block;
  }
}

/* ----- 実績紹介 ----- */
.installations-works {
  position: relative;
  z-index: 1;
  margin-top: -324px;
}

@media screen and (max-width: 975px) {
  .installations-works {
    /* 975px→-297px、768px→-184px（207px幅で可変） */
    margin-top: clamp(-297px, -297px + (975px - 100vw) * 113 / 207, -184px);
  }
}

@media screen and (max-width: 679px) {
  .installations-works {
    /* 679px→-184px、320px→-30px（359px幅で可変） */
    margin-top: clamp(-184px, -184px + (679px - 100vw) * 154 / 359, -30px);
  }
}

@media screen and (max-width: 640px) {
  .installations-works {
    /* 640px→-120px、320px→-40px（320px幅で可変） */
    margin-top: clamp(-120px, -120px + (640px - 100vw) * 80 / 320, -40px);
  }
}

@media screen and (max-width: 394px) {
  .installations-works__inner {
    margin-top: -65px;
  }
}

.installations-works__title {
  max-width: 963px;
  padding-left: 94px;
}

@media screen and (max-width: 768px) {
  .installations-works__title {
    padding-inline: 0;
  }
}

.installations-works__cards-wrap {
  top: 244px;
}

@media screen and (max-width: 947px) {
  .installations-works__cards-wrap {
    /* 947px→236px、769px→188px（178px幅で可変） */
    top: clamp(188px, 236px - (947px - 100vw) * 48 / 178, 236px);
  }
}

@media screen and (max-width: 768px) {
  .installations-works__cards-wrap {
    /* 768px→211px、501px→138px（267px幅で可変） */
    top: clamp(138px, 211px - (768px - 100vw) * 73 / 267, 211px);
  }
}

@media screen and (max-width: 482px) {
  .installations-works__cards-wrap {
    /* 482px→133px、320px→89px（162px幅で可変） */
    top: clamp(89px, 133px - (482px - 100vw) * 44 / 162, 133px);
  }
}

/* ----- レビュー ----- */
.installations-review {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #fff;
}

.installations-review__inner {
  max-width: 1310px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .installations-review__inner {
    padding-inline: 20px;
  }
}

/* ----- 専門業者に ----- */
.installations-expert {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 8vw, 96px);
}

.installations-expert__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/installations/installations_expert-bg.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  background-color: #FCD349;
}

.installations-expert__inner {
  position: relative;
  z-index: 1;
  max-width: 1105px;
  margin-inline: auto;
  padding-inline: 30px;
  margin-top: -140px;
}

@media screen and (max-width: 1181px) {
  .installations-expert__inner {
    margin-top: -100px;
  }
}

@media screen and (max-width: 640px) {
  .installations-expert__inner {
    margin-top: -75px;
    padding-inline: 10px;
  }
}

.installations-expert__title {
  max-width: 844px;
  width: 100%;
  margin-inline: auto;
}

.installations-expert__intro {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.installations-expert__intro-media {
  max-width: 636px;
  width: 100%;
  margin-inline: auto;
}

.installations-expert__intro-text {
  margin-inline: auto;
  max-width: 580px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 13px;
}

@media screen and (max-width: 768px) {
  .installations-expert__intro-text {
    font-size: 14px;
    margin-top: 8px;
  }
}

.installations-expert__features {
  max-width: 1016px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.installations-expert__feature {
  position: relative;
  background: #fff;
  border-radius: 30px;
  min-height: 186px;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature {
    padding: 15px 10px;
  }
}

.installations-expert__feature-content {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 47px;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature-content {
    position: unset;
    flex-direction: column;
    gap: 0;
    margin-right: 0;
  }
}

.installations-expert__feature-content--02 {
  flex-direction: row-reverse;
  gap: 14px;
  right: 0;
  margin-right: 0;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature-content--02 {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-left: 0;
  }
}

.installations-expert__feature-img {
  flex-shrink: 0;
}

.installations-expert__feature-img--01 {
  max-width: 350px;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature-img--01 {
    width: 200px;
    padding-left: 0;
  }
}

.installations-expert__feature-img--02 {
  max-width: 286px;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature-img--02 {
    width: 184px;
  }
}

.installations-expert__feature-img--03 {
  max-width: 353px;
  padding-left: 13px;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature-img--03 {
    width: 206px;
    padding-left: 0;
  }
}

.installations-expert__feature-body {
  max-width: 544px;
  margin-top: 23px;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature-body {
    margin-top: 8px;
  }
}

.installations-expert__feature-body--02 {
  max-width: 616px;
}

.installations-expert__feature-heading {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature-heading {
    font-size: 18px;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .installations-expert__feature-heading {
    font-size: 14px;
  }
}

.installations-expert__feature-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .installations-expert__feature-text {
    font-size: 12px;
  }
}

/* ----- 流れ ----- */
.installations-flow {
  background-image: none;
}

@media screen and (max-width: 768px) {
  .installations-flow {
    padding-bottom: 0;
  }
}

.installations-flow__inner {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .installations-flow__inner {
    margin-bottom: 100px;
  }
}

.installations-flow__title {
  max-width: 670px;
  margin-top: -48px;
  margin-bottom: 0;
}

/* ----- よくある質問 ----- */
.installations-faq {
  background-color: #FCD34A;
}

/* ----- line(フッター) ----- */
.about .installations-cta__footer-line {
  background-color: #F7F2E4;
}

/*---- 追加　----*/
.disp_inline,
.disp_inline img {
  display: inline-block;
  vertical-align: middle;
}

.disp_inline p {
  font-size: 90%;
  margin: 0;
  line-height: 1.2;
}

/* ------20260617追加----- */
@media screen and (max-width: 640px) {
  .sc-cleaning-bnr {
    padding-top: 33px;
    margin-bottom: 0px;
  }
}

.cleaning-bnr img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

@media (any-hover: hover) {
  .cleaning-bnr:hover img {
    transform: scale(1.05);
  }
}

@media (any-hover: hover) {
  .cleaning-bnr:hover img {
    transform: scale(1.01);
  }
}

@media (any-hover: hover) {
  a.no-opacity:hover {
    opacity: 1;
  }
}
.pa_to10 { padding-top: 1em; }
/*# sourceMappingURL=style.css.map */