@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;
}

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

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

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

  .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;
  }

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

body.is-menu-open .site-header__drawer {
  visibility: visible;
  opacity: 1;
  pointer-events: 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;
  }
}

.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;
  }

  .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: 640px) {
  .reviews {
    padding-top: 33px;
    margin-bottom: 34px;
  }
}

.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;
}

/* 対応エリア */
.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;
  }
}

.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;
}

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

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

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

.truth__wave {
  width: 100%;
  height: 60px;
  background-image: url("../img/top/truth-wave.png");
  background-position: center;
  background-size: cover;
  background-color: #0C2E91;
}

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

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

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

.truth__body {
  max-width: 1173px;
  margin-inline: auto;
  padding-inline: 30px;
  margin-top: -72px;
}

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

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

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

.truth__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  min-height: 404px;
}

@media screen and (max-width: 960px) {
  .truth__content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 17px;
  }
}

.truth__content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  background-image: url("../img/top/truth-gradation.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  bottom: 164px;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.truth__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%);
}

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

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

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

.truth__content-text {
  position: relative;
  z-index: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  margin-top: 26px;
}

@media screen and (max-width: 1161px) {
  .truth__content-text {
    margin-top: 0;
  }
}

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

.truth__lead {
  font-size: 24px;
  font-weight: 900;
}

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

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

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

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

.truth__accordion-panel-inner {
  padding-top: 1em;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.truth__accordion-panel.is-open .truth__accordion-panel-inner {
  opacity: 1;
}

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

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

@media screen and (max-width: 960px) and (min-width: 641px) {
  .truth__btn-wrap {
    margin-top: 0;
  }
}

@media screen and (max-width: 456px) {
  .truth__btn-wrap {
    margin-top: 0;
  }
}

.truth__inner:has(.truth__content.is-accordion-open) .truth__btn-wrap {
  margin-top: 55px;
}

@media screen and (max-width: 960px) {
  .truth__inner:has(.truth__content.is-accordion-open) .truth__btn-wrap {
    margin-top: -41px;
  }
}

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

.truth__btn {
  max-width: 450px;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  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) {
  .truth__btn {
    height: 50px;
    font-size: 16px;
    box-shadow: 0 4px 0 #D12700;
  }
}

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

  .truth__btn:active {
    transform: scale(1.01);
  }
}

/* 実績紹介 */
.works {
  position: relative;
  background-image: url("../img/top/works-bg.svg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-color: #F7F2E4;
  margin-top: -75px;
  height: 753px;
}

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

@media screen and (max-width: 640px) {
  .works {
    margin-top: -95px;
    padding-top: 36px;
    height: 550px;
  }
}

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

@media screen and (max-width: 440px) {
  .works {
    height: clamp(557px, 557px + (100vw - 320px) * 67 / 120, 624px);
  }
}

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

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

@media screen and (max-width: 640px) {
  .works__inner {
    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;
  top: 227px;
  background: transparent;
}

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

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

@media screen and (max-width: 500px) {
  .works__cards-wrap {
    top: clamp(167px, 167px + (100vw - 320px) * 83 / 180, 250px);
  }
}

.works__slider-viewport {
  width: 100%;
}

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

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

/* 1181px 以下：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;
}

.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);
}

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

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

@media screen and (max-width: 1181px) {
  .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: 18px 26px;
}

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

.works-card__img {
  background-color: #fff;
  margin-bottom: 16px;
}

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

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

.works-card__heading {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

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

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

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

/* 無料の証明 */
.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;
  padding-block: 1px 90px;
  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 {
    padding-block: 50px 76px;
  }
}

.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;
}

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

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

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

.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);
  }

  .setup__btn:active {
    transform: scale(1.01);
  }
}

.setup__btn-br {
  display: none;
}

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

/* 3つの無料 */
.three-free {
  position: relative;
  padding-block: 120px 140px;
  background-image: url("../img/top/three-free-bg.svg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: -161px;
}

@media screen and (max-width: 1010px) {
  .three-free {
    margin-top: -95px;
  }
}

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

@media screen and (max-width: 550px) {
  .three-free {
    margin-top: -15px;
  }
}

.three-free__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
  margin-top: -179px;
}

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

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

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

.three-free__head {
  margin-bottom: 30px;
}

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

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

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

.three-free__cards {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
}

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

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

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

.three-free-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) {
  .three-free-card__label {
    width: 150px;
    height: 33px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
  }
}

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

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

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

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

@media screen and (max-width: 713px) {
  .three-free-card--1 .three-free-card__label {
    transform: none;
    left: 32px;
  }
}

@media screen and (max-width: 517px) {
  .three-free-card--1 .three-free-card__label {
    left: 50%;
    transform: translateX(-50%);
  }
}

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

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

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

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

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

.three-free-card__visual {
  position: absolute;
  top: -20px;
  left: 32px;
  max-width: 175px;
  width: 100%;
}

.three-free-card__content {
  padding-left: 15px;
}

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

.three-free-card__badge {
  max-width: 414px;
  width: 100%;
}

.three-free-card__heading {
  font-size: 23px;
  font-weight: 900;
  color: #FF3E03;
  margin-bottom: 7px;
}

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

.three-free-card__text-br {
  display: none;
}

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

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

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

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

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

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

.three-free-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) {
  .three-free-card__btn {
    height: 47px;
  }
}

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

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

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

  .three-free-card__btn:active {
    transform: scale(1.01);
  }
}

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

  .three-free-card__btn-sp {
    display: block;
  }

  .three-free-card__visual {
    display: none;
  }
}

.three-free-card__btn-br {
  display: none;
}

@media screen and (max-width: 784px) {
  .three-free-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;
  }
}

.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: 90px 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: 70px 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;
}

.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;
  }
}

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

  .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);
  }

  .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;
}

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

@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;
  }
}

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

.about__track {
  overflow: hidden;
}

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

.about__slide {
  flex: 0 0 auto;
}

.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(-50%);
  }
}

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

@media screen and (max-width: 640px) {
  .about .cta {
    padding-top: clamp(82px, 15vw, 115px);
  }
}

.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: 55px;
}

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

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

/* 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: clamp(-29%, -12vw, -15%);
}

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

.cta__line-text {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-top: clamp(55px, 15vw, 163px);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  line-height: 1.75;
  /* 640px で 130px → 320px で 100px（320px 未満は 100px に固定） */
}

@media screen and (max-width: 640px) {
  .cta__line-text {
    padding-top: clamp(100px, 130px + (100vw - 640px) * 30 / 320, 130px);
  }
}

.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);
  }

  .cta__line-btn:active {
    transform: scale(1.01);
  }
}

.cta__line-btn-inner {
  max-width: 353px;
  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: 870px) {
  .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: 870px) {
  .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: 870px) {
  .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: 1078px) {
  .cta__form {
    align-items: flex-end;
  }
}

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

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

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

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

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

@media screen and (max-width: 870px) {
  .cta__form-field {
    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: 870px) {
  .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;
  }
}

.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;
  width: 269px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  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-left: 27px;
}

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

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

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

  .cta__form-btn:active {
    transform: scale(1.01);
  }
}

/* フッター */
.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: 870px) {
  .site-footer__links {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: flex-start;
    gap: 0;
  }
}

.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: 870px) {
  .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;
  }
}

/* サブページ共通（specialized / contact / faq など）
   `<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%;
  }
}

.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;
  }
}

.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;
}

/* 家電設置サービス（specialized.html）
   MV・パンくずは `scss/_subpage.scss` の `.sub-mv` / `.sub-breadcrumb` を使用。
   下記 `.spec-panel` / `.spec-photo-row` は specialized のみ。このページ内の別セクションでも使い回す（他サブページでは使わない）。
*/
/* --------------------------------------------------------------------------
   specialized.html 内の複数セクションで再利用
   -------------------------------------------------------------------------- */
.spec-panel {
  border: 4px solid #000;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

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

@media screen and (max-width: 975px) {
  .spec-panel__head {
    flex-direction: column;
  }
}

.spec-panel__head-title {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 449px;
  width: 100%;
  height: 92px;
  background: #B5D3EA;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  color: #000;
}

@media screen and (max-width: 975px) {
  .spec-panel__head-title {
    max-width: 100%;
    padding-inline: 15px;
    line-height: 1.3;
  }
}

.spec-panel__head-title-br {
  display: none;
}

@media screen and (max-width: 380px) {
  .spec-panel__head-title-br {
    display: block;
  }
}

.spec-panel__head-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border-left: 2px solid #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 975px) {
  .spec-panel__head-note {
    border-left: none;
    border-top: 2px solid #000;
    padding: 5px 15px;
  }
}

@media screen and (max-width: 640px) {
  .spec-panel__head {
    flex-direction: column;
  }

  .spec-panel__head-note {
    border-left: none;
    border-top: 2px solid #000;
  }
}

.spec-panel__body {
  padding: 50px 40px;
}

@media screen and (max-width: 975px) {
  .spec-panel__body {
    padding: 25px 15px;
  }
}

.spec-panel__subhead {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
  color: #000;
  margin-bottom: 12px;
}

.spec-panel__prose {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-left: 5px;
}

.spec-panel__subhead--after-prose {
  margin-top: 60px;
}

.spec-panel__divider {
  height: 0;
  margin-top: 62px;
  border: none;
  border-top: 1px dashed #999999;
}

.spec-panel__divider+.spec-panel__subhead {
  margin-top: 47px;
}

.spec-photo-row {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 41px;
  margin-top: 67px;
}

.spec-photo-row__frame {
  max-width: 289px;
  width: 100%;
  position: relative;
  border-radius: 8px;
}

.spec-photo-row__frame--l {
  width: 100%;
  max-width: 443px;
}

.spec-photo-row__label {
  position: absolute;
  top: -17px;
  left: 10px;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #000;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  padding: 8px 28px;
}

.spec-photo-row--single {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 67px;
}

@media screen and (max-width: 1058px) {
  .spec-photo-row--single {
    justify-content: center;
  }
}

.spec-photo-row__label-br {
  display: none;
}

@media screen and (max-width: 385px) {
  .spec-photo-row__label-br {
    display: block;
  }
}

/* MV 見出し（このページのタイトル画像幅・`h2.sub-mv-heading.spec-mv-heading`） */
.spec-mv-heading {
  max-width: 462px;
}

@media screen and (max-width: 390px) {
  .spec-mv-heading {
    max-width: 204px;
  }
}

/* 追加料金が不要なパターン（`<section class="spec-no-cost">`）上下余白は section */
.spec-no-cost {
  background: #fff;
  padding-top: 55px;
}

@media screen and (max-width: 768px) {
  .spec-no-cost {
    padding-top: 25px;
  }
}

/* 左右余白は inner */
.spec-no-cost__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .spec-no-cost__inner {
    padding-inline: 15px;
  }
}

.spec-no-cost__row {
  max-width: 1006px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .spec-no-cost__row {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

.spec-no-cost__media {
  max-width: 240px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .spec-no-cost__media {
    max-width: 192px;
  }
}

.spec-no-cost__copy {
  margin-bottom: 38px;
}

/* 標準設置ブロック（上記 `.spec-panel` をこのセクション用にラップ） */
/* 小見出し 26px Black・行間2 */
.spec-no-cost__lead {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .spec-no-cost__lead {
    font-size: 20px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.spec-no-cost__lead-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .spec-no-cost__lead-br {
    display: block;
  }
}

/* 本文 16px Medium・行間2 */
.spec-no-cost__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #1a1a1a;
}

@media screen and (max-width: 768px) {
  .spec-no-cost__text {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 640px) {
  .spec-no-cost__lead {
    font-size: clamp(1.125rem, 4.5vw, 1.625rem);
  }
}

/* 追加料金が必要なパターン（`section.spec-cost`）
   人物画像は `spec-no-cost` と同じく `spec-no-cost__row` > `spec-no-cost__media`。幅 442px のみ本セクションで上書き。 */
.spec-cost {
  background: #fff;
  padding-block: 55px 0;
}

@media screen and (max-width: 768px) {
  .spec-cost {
    padding-block: 40px 0;
  }
}

.spec-cost__inner {
  max-width: 1095px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .spec-cost__inner {
    padding-inline: 15px;
  }
}

.spec-cost .spec-no-cost__row {
  margin-bottom: 38px;
}

.spec-cost__media {
  max-width: 442px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .spec-cost__media {
    max-width: 397px;
    width: 90%;
    margin-inline: auto;
  }
}

.spec-panel__head-title--cost {
  max-width: 442px;
  width: 100%;
  height: auto;
  min-height: 92px;
  background: #ff3e03;
  color: #fff;
  border-radius: 16px 0 0 0;
}

@media screen and (max-width: 975px) {
  .spec-panel__head-title--cost {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
  }
}

/* お願い（specialized.html） */
.spec-request {
  background: #fff;
  padding-block: 55px 170px;
}

@media screen and (max-width: 768px) {
  .spec-request {
    padding-block: 40px 45px;
  }
}

.spec-request__inner {
  max-width: 1095px;
  margin-inline: auto;
  padding-inline: 30px;
}

@media screen and (max-width: 768px) {
  .spec-request__inner {
    padding-inline: 15px;
  }
}

.spec-request__main {
  padding-inline: 10px;
}

@media screen and (max-width: 768px) {
  .spec-request__main {
    padding-inline: 0;
  }
}

.spec-request__title {
  margin: 0 0 12px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
  color: #000;
}

.spec-request__text {
  margin-left: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #000;
}

.spec-request__topic--spaced {
  margin-top: 60px;
}

.spec-request__boxed {
  margin-top: 47px;
  padding: 32px 38px 37px;
  border: 1px solid #000;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .spec-request__boxed {
    padding: 20px 10px 25px;
  }
}

.spec-request__boxed-heading {
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #000;
}

.spec-request__boxed-block {
  padding-left: 12px;
}

.spec-request__boxed-block--spaced {
  margin-top: 20px;
}

.spec-request__boxed-lead {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  color: #000;
}

.spec-request__boxed-text {
  padding-left: 1.1em;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #000;
}

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

.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: 66px;
  max-width: 582px;
  width: 100%;
  transform: translateY(-50%);
}

@media screen and (max-width: 860px) {
  .contact-form__visual {
    width: 90%;
    margin-inline: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    /* ビューポート 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::-moz-placeholder,
.contact-form__textarea::-moz-placeholder {
  color: #999;
}

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

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

/* セレクト：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-bottom: 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;
  }

  .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 64px;
}

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

.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;
  font-feature-settings: "pwid", "pkna", "palt";
}

@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;
  font-feature-settings: "pwid", "pkna", "palt";
}

@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;
}

/* --------------------------------------------------------------------------
   癒し営業部（保護猫・動物隊）
   -------------------------------------------------------------------------- */
.staff-heal {
  background: url("../img/staff/staff_bg.png") no-repeat top center;
  background-size: 100% 100%;
  margin-top: 138px;
  margin-bottom: 102px;
}

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

@media screen and (max-width: 500px) {
  .staff-heal {
    margin-top: 80px;
    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;
  font-feature-settings: "pwid", "pkna", "palt";
}

.staff-heal__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  font-feature-settings: "pwid", "pkna", "palt";
}

/* 癒し営業部スライダー（全幅・中央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 {
  width: 100%;
}

.staff-heal-slider__viewport {
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 940px) {
  .staff-heal-slider__viewport {
    container-type: inline-size;
  }
}

.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 73px;
  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 53px;
  }
}

.staff-heal-slider--auto .staff-heal-slider__track.is-staff-heal-no-transition {
  transition: none;
}

.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;
  font-feature-settings: "pwid", "pkna", "palt";
}

.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;
  font-feature-settings: "pwid", "pkna", "palt";
  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;
  margin-top: -46px;
}

@media screen and (min-width: 1600px) {
  .installations-price {
    /* 1600px→-46px、2531px→-72px（931px幅で可変） */
    margin-top: clamp(-72px, -46px + (100vw - 1600px) * -26 / 931, -46px);
  }
}

.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);
  }
}

.installations-price__visual--03 {
  /* 969〜875px で 776px→731px（94px幅で可変） */
}

@media screen and (max-width: 969px) and (min-width: 875px) {
  .installations-price__visual--03 {
    top: clamp(731px, 776px - (969px - 100vw) * 45 / 94, 776px);
  }
}

.installations-price__visual--03 {
  /* 874〜768px で 757px→716px（106px幅で可変） */
}

@media screen and (max-width: 874px) and (min-width: 768px) {
  .installations-price__visual--03 {
    top: clamp(716px, 757px - (874px - 100vw) * 41 / 106, 757px);
  }
}

.installations-price__visual--03 {
  /* 767〜665px で 684px→595px（102px幅で可変）。665px 未満は clamp 下限で 595px */
}

@media screen and (max-width: 767px) {
  .installations-price__visual--03 {
    top: clamp(595px, 684px - (767px - 100vw) * 89 / 102, 684px);
  }
}

.installations-price__visual--03 {
  /* 640〜605px で 573px→552px（35px幅で可変） */
}

@media screen and (max-width: 640px) and (min-width: 605px) {
  .installations-price__visual--03 {
    top: clamp(552px, 573px - (640px - 100vw) * 21 / 35, 573px);
  }
}

.installations-price__visual--03 {
  /* 604〜523px で 567px→506px（81px幅で可変） */
}

@media screen and (max-width: 604px) and (min-width: 523px) {
  .installations-price__visual--03 {
    top: clamp(506px, 567px - (604px - 100vw) * 61 / 81, 567px);
  }
}

.installations-price__visual--03 {
  /* 522〜339px で 524px→375px（183px幅で可変） */
}

@media screen and (max-width: 522px) and (min-width: 339px) {
  .installations-price__visual--03 {
    top: clamp(375px, 524px - (522px - 100vw) * 149 / 183, 524px);
  }
}

.installations-price__visual--03 {
  /* 338〜320px で 392px→382px（18px幅で可変） */
}

@media screen and (max-width: 338px) and (min-width: 320px) {
  .installations-price__visual--03 {
    top: clamp(382px, 392px - (338px - 100vw) * 10 / 18, 392px);
  }
}

.installations-price__visual--03 {
  /* 319px以下。382px ラインから同じ勾配で下げる（下限280px） */
}

@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: 6px;
  }
}

.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;
  }
}

.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__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 {
    font-size: 14px;
  }
}

.installations-price__note-text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  font-feature-settings: "pwid", "pkna", "palt";
  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;
  font-feature-settings: "pwid", "pkna", "palt";
}

@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;
  font-feature-settings: "pwid", "pkna", "palt";
}

@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;
}

/*# sourceMappingURL=style.css.map */