/* ─── ベース ─────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'BIZ UDGothic', 'Noto Sans JP', sans-serif;
  line-height: 1.4;
  color: #0f172a;
}

/* ─── ヒーロー共通 ───────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: clamp(12px, 3vw, 28px);
}

.cta.ac-cta__btn{
  /* 下部ボタン .ac-cta__btn のスタイルを踏襲しつつ
     電話アイコン用に横並び＆余白を追加 */
  display:inline-flex;
  align-items:center;
  gap:.5em;                 /* アイコンと文字の間隔 */
}

.cta.ac-cta__btn i{         /* アイコンサイズ調整 (任意) */
  font-size:1.1em;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.5); /* 0.0=透明〜1.0=不透明で調整 */
  z-index:-1;                       /* bg画像(-2) とコンテンツ(0) の間に挟む */
}

.hero .rotate {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-6deg);
  margin-top: 50px;
}

/* 背景画像 */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* 上部キャッチコピー */
.catch {
  font-size: clamp(14px, 3.3vw, 28px);
  font-weight: 700;
  color: #000;
  margin-bottom: .5em;
}

/* ロゴ */
.logo {
  position: absolute;
  top: clamp(10px, 3vw, 20px);
  right: clamp(10px, 3vw, 20px);
  width: clamp(100px, 18vw, 180px);
  height: auto;
}

/* ─── リボン（共通） ─────────────────── */
.ribbon {
  position: relative;
  display: inline-block;
  padding: .3em .9em;
  color: #fff;
  font-weight: 900;
  transform: skewX(-10deg);
  margin: .35em 0;
  text-shadow: 3px 3px 0 #000;
}

.ribbon > * { transform: skewX(10deg); } /* 子要素戻す */

/* メインタイトル */
.ribbon--main {
  font-size: clamp(24px, 6vw, 72px);
  background:#C0292C;
}

/* サブタイトル */
.ribbon--sub {
  font-size: clamp(20px, 4vw, 48px);
  background:#C0292C;
}

/* ─── 価格 ───────────────────────────── */
.price {
  font-size: clamp(28px, 7vw, 80px);
  font-weight: 900;
  color:#fd4040;
  margin: .2em 0 .8em;
}

.price .yen { font-size: 1em; } /* “33,000” */
.price small { font-size: .35em; color:#fd5457; }

/* ─── スピーチバルーン ───────────────── */
.balloon {
  position: relative;
  font-weight: 700;
  color:#E66772;
  background:#fff;
  border:4px solid #E66772;
  padding:.5em 1em;
  border-radius:8px;
  margin-bottom:1em;
}
.balloon::after{
  content:"";
  position:absolute;
  bottom:-20px; left:50%;
  translate:-50% 0;
  border:10px solid transparent;
  border-top-color:#E66772;
}

/* ─── 作業員画像 ──────────────────── */
.staff{
  width: clamp(160px, 33vw, 420px);
  height:auto;
  margin-bottom: clamp(20px, 4vw, 40px);
}

/* ─── CTAボタン ───────────────────── */
.cta{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-size: clamp(18px, 5vw, 36px);
  font-weight: 700;
  color:#fff;
  padding:.4em 1.4em;
  border-radius:8px;
  background:linear-gradient(90deg, #E66772 0%, #E66772 100%);
  border:4px solid #fff;
  box-shadow:0 6px 0 rgba(0,0,0,.25);
  transition:filter .2s;
  text-decoration:none;
}

.cta:hover { filter:brightness(.9); }
.cta i { font-size:1.1em; }

/* 免責注記 */
.note{
  display:block;
  margin-top:.6em;
  font-size: clamp(10px, 2.4vw, 14px);
  color:#555;
  margin-bottom: 20px;
}

/* ─── スマホ向けレイアウト（ ~599px） ───────── */
@media (max-width: 599px){
  .hero{
    justify-content:flex-start;
    padding-top:6vw;
  }
  .hero .rotate {
    margin-top: 0;
    margin-left: 0;
  }
  .staff{
    order:-1;                       /* 先に出す（PCと逆） */
    margin-bottom:3vw;
  }
  .balloon{
    order:-1;
    margin-top:4vw;
    margin-bottom:10vw;
  }
  .price{
    margin-bottom:4vw;
  }
  .cta{
    margin-top:15px;
    width:90%;
    justify-content:center;
  }
}




/* ───── こんな現場に駆けつけます！ ───── */

/* セクション全体 */
.scene {
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff4f5;
    z-index: -1;
    position: relative;
}

.scene .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 5rem;
}

/* メイン見出し */
.scene-heading {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 3.5rem;
}
.scene-heading .marker {
  position: relative;
  display: inline-block;
  padding: 0 0.25em;
  font-size: 2.5rem;
}

.scene-heading .marker::before {
  content: '';
  position: absolute;
  left: -0.35em;        /* 少しはみ出させる */
  right: -0.35em;
  top: 55%;             /* 文字の下半分だけ塗る */
  height: 0.42em;       /* 太さ */
  background: linear-gradient(90deg, #E66772 0%, #C0292C 100%);
  transform: skewX(-15deg);
  z-index: -1;          /* 文字の背面に */
}

/* リスト（スマホ＝縦並び、PC＝2列） */
.scene-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) {
  .scene-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
  .scene-heading .marker {
    font-size: 4rem;
  }
}

/* 各カード内 */
.scene-item h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #E66772;               /* ← アクセントカラー */
  margin: 0 0 .4rem;
  padding-bottom: .25rem;
  border-bottom: 3px solid #E66772;
  display: inline-block;
}
.scene-item .bar {
  font-size: 1.1em;
  margin-left: 0.1em;
}
.scene-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 .7rem;
}
.scene-item p {
  min-height: auto;
  margin-bottom: 25px;
}
.scene-item figure {
  margin: 0;
}
.scene-item img {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  object-fit: cover;
}

@media (min-width: 768px) {
  .scene-item p {
    margin: 0 0 1.2rem;
    min-height: 70px;
  }
}




/* ─── エアークリーンは ここがスゴイ！ ───────────────── */
.strength {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem 5rem;
}

.strength-card {
  background: #fff;
  max-width: 900px;
  width: 100%;
  padding: 3rem 0.7rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media (min-width: 768px) {
  .strength-card {
    padding: 3rem 4rem;
  }
}

/* 見出し */
.strength-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 3rem;
}

.strength-marker{
  position:relative;
  display:inline-block;
  line-height:1.1;
  z-index:0;               /* ← 追加：スタッキングコンテキストを作る */
  font-size: 2rem;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .strength-marker{
    margin-bottom: 0;
    font-size: 3rem;
  }
}

.strength-marker::before{
  content:'';
  position:absolute;
  left:-0.35em;
  right:-0.35em;
  top:60%;
  height:0.48em;
  background:linear-gradient(90deg,#E66772 0%,#C0292C 100%);
  transform:skewX(-10deg);
  z-index:-1;              /* 文字の背面だがカードの表面に残る */
  border-radius:4px;
}

/* 特徴ブロック */
.strength-feature {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: unset;
  align-items: start;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .strength-feature {
    gap: 2rem 3rem;
  }
}


.strength-icon {
  font-size: 4rem;
  color: #C0292C;
  text-align: center;
}

.strength-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E66772;
  margin-bottom: 1rem;
}

.strength-body p {
  font-size: 0.95rem;
}




/* ───── エアークリーンが選ばれてる理由！ ───────────── */
.reason{
  background:#f49c25;                     /* 背景オレンジ（既存と干渉しない） */
  padding:60px 5vw 100px;
  text-align:center;
}

/* 見出し全体 */
.reason__title{
  font-weight:900;
  line-height:1.25;        /* 行間を少しゆったり */
  text-align:center;
  margin-bottom:60px;
}

/* 旧マーカー（背景帯）を無効化して下線専用に */
.reason__hl::before{content:none !important;}

/* 共通設定：下線をグラデで描く */
.reason__hl{
  position:relative;
  display:inline-block;
  line-height:1.1;          /* strength-marker と同じ */
  z-index:0;
  padding:0 .25em;          /* 左右わずかに余白 */
  background:none !important; /* 旧下線や背景を打ち消し */
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

@media(min-width:768px){
  .reason__hl{
    font-size: 3rem;
    color: #fff;
    margin-bottom: 13px;
  }
}

/* ラインマーカー（strength-marker と同値） */
.reason__hl::before{
  content:'' !important;          /* ← ← ← ここだけ追加 */
  position:absolute;
  left:-0.35em;
  right:-0.35em;
  top:60%;
  height:0.48em;
  background:linear-gradient(90deg,#E66772 0%,#C0292C 100%);
  transform:skewX(-10deg);
  z-index:-1;
  border-radius:4px;
}

/* ２行目（大きい方）のサイズだけ維持 */
.reason__hl--lg{font-size:clamp(40px,6vw+8px,96px);}

/* レイアウト */
.reason__item{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:flex-start;
  gap:60px;
  max-width:1100px;
  margin:0 auto;
  margin-bottom: 70px;
}

@media(min-width:768px){
  .reason__item{
    margin-bottom: 50px;
  }
}


/* 左側画像 */
.reason__img img{
  width:300px;
  height:auto;
  border:8px solid #fff;
  display:block;
}

/* 右側テキスト */
.reason__body{
  position:relative;
  max-width:540px;
  text-align:left;
}

/* 透かし番号 */
.reason__no{
  position:absolute;
  top:-20px; right:-70px;
  font-size:clamp(56px,10vw,128px);
  font-weight:700;
  color:rgba(255,255,255,.35);
  line-height:1;
  pointer-events:none;
}

/* 小見出し */
.reason__heading{
  font-size:clamp(24px,3vw+8px,36px);
  font-weight:900;
  margin-bottom:20px;
  line-height:1.3;
  color:#C0292C;
}

/* 説明文 */
.reason__text{
  font-size:15px;
  font-weight:700;
  line-height:1.7;
}

/* スマホ調整 */
@media(max-width:768px){
  .reason__item{flex-direction:column;gap:40px}
  .reason__no{right:0;top:-5px}
}





/* ───── ご利用の流れ ───── */
.flow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1rem;
  text-align: center;
}

.flow__title {
  position: relative;
  display: inline-block;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  color: #000;
  padding: 0 0.3em;
  z-index: 0;
  font-size: 2.2rem;
}

@media(min-width:768px){
  .flow__title {
    font-size: 3rem;
  }
}


.flow__title::before {
  content: '';
  position: absolute;
  left: -0.35em;
  right: -0.35em;
  top: 60%;
  height: 0.48em;
  background: linear-gradient(90deg, #E66772 0%, #C0292C 100%);
  transform: skewX(-10deg);
  z-index: -1;
  border-radius: 4px;
}

.flow__note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #444;
}

.flow__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}

.flow__step {
  background: #fff4f5;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  width: 110px;
  padding: 1rem 0.5rem;
  text-align: center;
}

.flow__num {
  font-size: 1.4rem;
  font-weight: bold;
  color: #E66772;
  margin-bottom: 0.5rem;
}

.flow__text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: #C0292C;
  white-space: pre-line;
}

.flow__arrow {
  align-self: center;
  font-size: 1.5rem;
  color: #ccc;
}


@media (max-width: 767px) {
  .flow__steps {
    flex-direction: column;
    align-items: center;
  }

  .flow__arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .flow__step {
    width: 80%;
    max-width: 300px;
  }
}



/* ─── 新CTA ───────────────────────── */
.ac-cta{
  text-align:center;
  padding:3.5rem 1rem 4.5rem;
  background:#fdfcfc;           /* 既存背景と自然に馴染む薄グレー */
}

.ac-cta__headline{
  font-size:clamp(1.8rem,4vw + 1rem,3rem);
  font-weight:900;
  line-height:1.35;
  margin:0 0 2.4rem;
}
.ac-cta__headline span{
  display:inline-block;
  background:linear-gradient(180deg,#E66772 0%, #C0292C 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.ac-cta__block{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* サブコピー */
.ac-cta__sub{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size: 1.2rem;
  font-weight:700;
  color:#E66772;
}
.ac-cta__slash{
  font-size:1.3rem;
  line-height:1;
}

/* CTAボタン */
.ac-cta__btn{
  display:inline-block;
  padding:1.1rem 1rem;
  font-size:1.6rem;
  font-weight:900;
  color:#fff;
  background:linear-gradient(180deg,#E66772 0%, #C0292C 100%);
  border:4px solid #fff;
  border-radius:4px;
  box-shadow:8px 8px 0 rgba(0,0,0,.35);
  text-decoration:none;
  transition:transform .12s ease, box-shadow .12s ease;
}

@media(min-width:768px){
  .ac-cta__btn{
    font-size: 2rem;
    padding: 1.5rem 6rem;
  }
}

.ac-cta__btn:hover{
  transform:translate(2px,2px);
  box-shadow:4px 4px 0 rgba(0,0,0,.35);
}



/* ─── フッター ───────────────────────── */
.ac-footer{
  background: linear-gradient(90deg, #E66772 0%, #C0292C 100%);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}






/* ===== 事例紹介 ===== */
.case-section {
  background: #e5e5e5;          /* セクションのライトグレー */
  padding: 80px 20px;
  text-align: center;
}

.case-heading {
  position: relative;
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 900;
  margin: 0 0 60px;
  z-index: 1;
}

@media(min-width:768px){
  .case-heading {
    font-size: 3.2rem;
  }
}

/* 見出し下のグラデーションライン（斜めカット） */
.case-heading::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 12px;
  height: 14px;
  background: linear-gradient(90deg, #E66772 0%, #C0292C 100%);
  transform: skewX(-10deg);
  z-index: -1;
}

@media(min-width:768px){
  .case-heading::after {
    height: 18px;
  }
}


/* カード本体（画像を省略しテキストのみ） */
.case-card {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  text-align: left;
  margin-bottom: 30px;
}

.case-title {
  display: flex;            /* ← アイコンとテキストを並列に */
  align-items: center;
  gap: 6px;                 /* アイコンと文字の間隔 */
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #E66772;
}

.case-title i {
  font-size: 1.2rem;        /* アイコンサイズ調整 */
  color: #C0292C;           /* アイコンだけ濃いめの赤 */
}

.case-text {
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* レスポンシブ微調整 */
@media (max-width: 768px) {
  .case-card {
    padding: 30px 24px;
  }
}
