@charset "utf-8";

/* ======================================================
   Imports (Reset / Fonts)
   ====================================================== */
@import url("https://unpkg.com/modern-css-reset/dist/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&family=Shippori+Mincho:wght@400;600;700&display=swap");

/* ======================================================
   Root Tokens
   ====================================================== */
:root{
  /* Colors */
  --c-deep: #002043;
  --c-gold: #C8A45D;
  --c-bg:   #ffffff;
  --c-text: #333333;
  --c-line: #E5E8EC;
  --c-blue-verylight: #F3F5F9;
  --c-company-head: #d9e1ed;

  /* Effects */
  --shadow-card: 0 2px 8px rgba(0,0,0,.05);

  /* Layout */
  --container: 1200px;
  --gutter: 20px;
  --radius: 10px;

  /* Typography */
  --ff-sans: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --ff-serif: "Shippori Mincho", serif;
  --fs-base: 16px;
  --lh-base: 1.7;
}

/* ======================================================
   Base
   ====================================================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { font-size: 100%; }
body {
  font-family: var(--ff-sans);
  line-height: var(--lh-base);
  color: var(--c-deep);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--ff-serif);
  color: var(--c-deep);
  margin: 0 0 .8em;
  line-height: 1.4;
}
h1 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 700; }
h2 { font-size: clamp(22px, 3.4vw, 32px); font-weight: 600; }
h3 { font-size: clamp(18px, 2.6vw, 24px); font-weight: 600; }

p { margin: 1em 0; }
a { color: var(--c-deep); text-decoration: underline; text-underline-offset: 2px; }
a:hover { opacity: .9; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* アクセシビリティ */
:focus-visible {
  outline: 3px solid rgba(13,59,52,.35);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ==========================
   PC/SP 切り替え（共通管理）
   ========================== */

/* PC表示 */
.only-pc {
  display: block;
}

/* SP非表示 */
.only-sp {
  display: none;
}

@media (max-width: 768px) {
  /* SP表示 */
  .only-pc {
    display: none;
  }

  /* PC非表示 */
  .only-sp {
    display: block;
  }
}

/* ======================================================
   Header
   ====================================================== */
.site-header {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #e9ecef;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.site-logo img {
  height: 24px;
  width: auto;
}
@media (max-width: 768px) {
  .site-header {
    padding: 8px 14px;
    border-bottom: none;
    background: #000;          /* 既存仕様を踏襲 */
  }
  .site-logo img { height: 28px; }
  .site-logo { pointer-events: none; }
}

/* ======================================================
   First View (KV)
   ====================================================== */
.fv {
  position: relative;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}
.fv-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================================================
   Section 02 (life)
   PC：写真を画面左端にぴったり＋カード右固定で重ねる
   SP：箇条書き → 写真（コンパクト）
   ====================================================== */

.life-section{
  position: relative;
  background: #dde7f3; /* Section07と同じ */
  padding: 90px 0 110px;
}

.life-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* タイトル（画像） */
.life-heading{
  text-align: center;
  margin: 0 0 46px;
}

.life-heading img{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
}

/* レイアウト枠 */
.life-content{
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* 写真 */
.life-photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* カード */
.life-card{
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* 箇条書き */
.life-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.life-list li{
  position: relative;
  padding: 16px 0 16px 56px;
  font-size: 19px;
  line-height: 1.65;
  color: #333;
}

.life-list li + li{
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* チェック枠 */
.life-list li::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #d9534f;
  border-radius: 3px;
  box-sizing: border-box;
}

/* チェック ✓ */
.life-list li::after{
  content: "";
  position: absolute;
  left: 23px;
  top: 50%;
  width: 11px;
  height: 6px;
  border-left: 3px solid #d9534f;
  border-bottom: 3px solid #d9534f;
  transform: translateY(-58%) rotate(-45deg);
}

/* ======================================================
   PC（769px〜）
   写真：画面左端にぴったり（viewport基準）
   カード：右側固定で重ねる（幅は広め）
   ====================================================== */
@media (min-width: 769px){

  .life-content{
    position: relative;
    min-height: 440px;
    justify-content: flex-end;
  }

  /* 写真を viewport 左端基準にする */
  .life-photo{
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50vw); /* 画面左端にぴったり */
    width: 72%;
    z-index: 1;
  }

  .life-photo img{
    border-radius: 0; /* 左端ぴったり感 */
  }

  /* カードを右側に固定（写真に重ねる） */
  .life-card{
    position: relative;
    z-index: 2;
    flex: 0 0 52%;
    width: 52%;
    margin-left: auto;
    padding: 30px;
  }
}

/* ======================================================
   SP（〜768px）
   箇条書き → 写真（コンパクト）
   ====================================================== */
@media (max-width: 768px){

  .life-section{
    padding: 54px 0 62px;
  }

  .life-inner{
    padding: 0 16px;
  }

  .life-heading{
    margin-bottom: 22px;
  }

  .life-heading img{
    max-width: 340px;
  }

  .life-content{
    flex-direction: column;
    gap: 14px;
  }

  /* SP順番固定：カード→写真 */
  .life-card{
    order: 1;
    width: 100%;
    padding: 18px 16px;
  }

  .life-photo{
    order: 2;
    width: 100%;
    margin-top: 10px;
  }

  .life-photo img{
    border-radius: 6px;
  }

  .life-list li{
    font-size: 14px;
    padding: 12px 0 12px 42px;
    line-height: 1.7;
  }

  .life-list li::before{
    left: 10px;
    width: 20px;
    height: 20px;
  }

  .life-list li::after{
    left: 16px;
    width: 9px;
    height: 5px;
    border-left-width: 2.5px;
    border-bottom-width: 2.5px;
  }
}


/* ============================
   Section03：エアコンネットとは
============================ */

.about-section {
  background: url("../img/section03/bg.jpg") center/cover no-repeat;
  padding: 90px 0 60px;
}

.about-inner {
  max-width: 930px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* タイトル */
.about-heading img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 40px;
  display: block;
}

/* テキスト */
.about-text {
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  text-align: left;
  max-width: 760px;
}

.about-text p {
  margin-bottom: 10px;
}

.about-text strong {
  color: #00418c;
  font-weight: 700;
}

/* 月桂冠バナー */
.about-badge img {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 10px;
  display: block;
}

/* 3つの円（1枚画像） */
.about-icons img {
  width: 100%;
  max-width: 820px;
  display: block;
  margin: 0 auto;
}

/* 共通の白背景（模様入り）section03/06/09共通 */
.bg-white-common {
  background: url("../img/common/bg-white.jpeg") center/cover no-repeat;
  background-color: #ffffff; /* フェールセーフ */
}

/* ============================
   SP（〜768px）
============================ */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0 70px;
  }

  .about-inner {
    padding: 0 18px;
  }

  .about-heading img {
    max-width: 320px;
    margin-bottom: 24px;
  }

  .about-text {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .about-badge img {
    max-width: 360px;
    margin-bottom: 40px;
  }

  .about-icons img {
    max-width: 360px;
  }
}


/* ==========================
   Section 04：どうして貼るだけで節電？
   ========================== */
.why-section {
  background: #eaf0f6;
  padding: 80px 0 96px;
  color: #333;
}

.why-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center; /* ← 追加：全体中央基準 */
}

/* 見出し画像 */
.why-heading {
  margin: 0 auto 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-heading img {
  display: block;
  margin: 0 auto;
  max-width: 640px;
  width: 92%;
  height: auto;
}

/* 白いカード */
.why-card {
  position: relative;
  background: #fff;
  border: 1px solid #dde5f2;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 32px 40px;
  padding-right: 360px;
  text-align: left;
}

.why-text p {
  margin: 0 0 18px;
  line-height: 1.9;
  font-size: 16px;
}

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

.why-point li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.8;
  margin: 16px 0 0;
}

.why-point li::before {
  content: "⚡";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #79a7c7;
  border-radius: 50%;
  color: #79a7c7;
  font-size: 16px;
  flex: 0 0 28px;
  margin-top: 2px;
}

/* 仕組みイラスト配置 */
.why-illust {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 300px;
}

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

/* 下部帯画像 */
.why-bottom {
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-bottom img {
  display: block;
  margin: 0 auto;
  max-width: 720px;
  width: 92%;
  height: auto;
}

/* --- SP(<=768px) --- */
@media (max-width: 768px) {
  .why-section { padding: 56px 0 72px; }
  .why-inner { padding: 0 18px; }

  .why-heading img {
    max-width: 520px;
    width: 96%;
    margin: 0 auto 8px;
  }

  .why-card {
    padding: 20px 18px 18px;
    padding-right: 18px;
  }

  .why-text p { font-size: 16px; }

  .why-point li {
    font-size: 18px;
    gap: 8px;
    margin-top: 10px;
  }

  .why-point li::before {
    width: 26px; height: 26px; font-size: 14px;
  }

 .why-illust {
  position: static;
  width: 80%;
  margin: 10px auto 0 auto; /* 上10px、左右auto、下0 */
  display: block; /* ブロック要素として中央寄せ */
}

  .why-bottom img {
    max-width: 560px;
    width: 96%;
    margin: 0 auto;
  }
}

/* ================================
   Section 05：なぜ今導入すべきなのか
================================== */

.why-now-section {
  position: relative;
  padding: 100px 0 120px;
  color: #fff;
  overflow: hidden;
  background: #000; /* ← フラッシュを防ぐための下地（そのままでOK） */
}

.why-now-bg {
  position: absolute;
  inset: 0;
  background: url("../img/section05/bg-pc.jpg") center/cover no-repeat;
  filter: brightness(0.75); 
}

.why-now-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* ← 黒にかなり近い濃紺 */
}

/* コンテンツエリア */
.why-now-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* タイトル画像 */
.why-now-heading img {
  display: block;
  margin: 0 auto 40px;
  max-width: 700px;
  width: 90%;
}

/* リード文 */
.why-now-lead {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 50px;
  color: #fff;
}

/* 黒背景グラフBOX画像（PC/SP切替） */
.why-now-card img {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 55px;
  display: block;
}

/* 下部テキスト */
.why-now-bottom p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #fff;
}

/* 下部のグラデーションコピー画像（PC/SP切替） */
.why-now-bottom-copy img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: block;
}


/* ================================
   SP版
================================== */
@media (max-width: 768px) {

  .why-now-section {
    padding: 70px 0 80px;
  }

  /* ★ 背景画像（SP） */
  .why-now-bg {
    background: url("../img/section05/bg-sp.jpg") center/cover no-repeat;
    filter: brightness(0.78); /* ← SPも少し明るめ */
  }

  /* ★ SPだけ全体は左揃えにする */
  .why-now-inner {
    padding: 0 18px;
    text-align: left;
  }

  /* タイトル画像だけ中央揃えを維持 */
  .why-now-heading {
    text-align: center;
  }
  .why-now-heading img {
    margin-bottom: 28px;
    max-width: 360px;
  }

  .why-now-lead {
    font-size: 15px;
    margin-bottom: 36px;
    /* text-align: left; は不要（親が left なので） */
  }

  .why-now-card img {
    margin-bottom: 38px;
  }

  .why-now-bottom p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .why-now-bottom-copy img {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/* ==============================
   Section 06：特許取得
   ============================== */
.bg-white-common {
  background: url("../img/common/bg-white.jpeg") center/cover no-repeat;
  background-color: #ffffff; /* 画像が読めない時のフェールセーフ */
}

.patent-section {
  padding: 80px 0 90px;
  color: var(--c-text);
}

.patent-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 見出し＋バッジ */
.patent-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.patent-badge img {
  width: 60px;
  height: auto;
  display: block;
}

.patent-title-img img {
  display: block;
  max-width: 700px;
  width: 90%;
  height: auto;
}

/* カード本体 */
.patent-card {
  background: #f5f8fc;
  border-radius: 12px;
  border: 1px solid #dde5f2;
  box-shadow: var(--shadow-card);
  padding: 32px 36px 30px;
}

.patent-card-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  text-align: center;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccd5e4;
}

.patent-card-main {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

/* グラフ画像 */
.patent-graph {
  flex: 0 0 48%;
}

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

/* テキスト */
.patent-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.9;
}

.patent-text p {
  margin: 0 0 14px;
}

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

.patent-text strong {
  color: #00418c;
  font-weight: 700;
}

/* ==============================
   SP（〜768px）
   ============================== */
@media (max-width: 768px) {
  .patent-section {
    padding: 56px 0 64px;
  }

  .patent-inner {
    padding: 0 18px;
  }

  .patent-heading {
    flex-direction: row;          /* ← 横並びに戻す */
    align-items: center;
    justify-content: center;
    gap: 12px;                    /* ← SPなので少し詰める */
    margin-bottom: 24px;
  }

  .patent-badge img {
    width: 48px;                  /* 既存のままでOK */
  }

  .patent-title-img img {
    max-width: 360px;             /* 既存のままでOK */
    width: 100%;
  }

  .patent-card {
    padding: 22px 18px 20px;
  }

  .patent-card-title {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .patent-card-main {
    flex-direction: column;
    gap: 18px;
  }

  .patent-text {
    font-size: 15px;
  }
}

/* ==============================
   Section 07：冬の固定費
   ============================== */

#winter-cost.winter-cost-section {
  background: url("../img/section07/bg-winter-pc.jpg") center top / cover no-repeat, #dde7f3;
  padding: 90px 0 40px;
}

@media (max-width: 768px) {
  #winter-cost.winter-cost-section {
    background:
      url("../img/section07/bg-winter-sp.jpg") center top / cover no-repeat,
      #dde7f3;
  }
}

/* インナー */
#winter-cost .winter-cost-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

/* タイトル */
#winter-cost .winter-cost-heading {
  text-align: center;
  margin-bottom: 40px;
}

#winter-cost .winter-cost-title-img {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: block;
}

/* リード文 */
#winter-cost .winter-cost-lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin: 0 0 40px;
}

/* ==============================
   PC レイアウト
   ============================== */

/* 電気代画像＋イラストを横並び */
#winter-cost .winter-cost-main {
  display: flex !important;   /* 必ず横並びにする（元のまま） */
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

#winter-cost .winter-cost-costimg,
#winter-cost .winter-cost-illust {
  flex: 1;
}

/* 共通の初期サイズ */
#winter-cost .winter-cost-costimg img,
#winter-cost .winter-cost-illust img {
  width: 100%;
  height: auto;
  display: block;
}

/* PC版：イラストを小さく（約1/4） */
.only-pc .winter-cost-illust img {
  width: 25%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* PC版：下部コピー */
#winter-cost .winter-cost-bottom-copy {
  text-align: center;
  font-size: 25px;
  line-height: 1.9;
  color: #333;
  font-weight: 500;
}

#winter-cost .winter-cost-bottom-copy span {
  color: #1b4f94;
  font-weight: 700;
}

@media (min-width: 769px) {
  /* cost-pc.png を大きくする（120% に拡大例） */
  #winter-cost .winter-cost-costimg img {
    width: 120%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  /* イラストは従来通り小さめのまま */
  #winter-cost .winter-cost-illust img {
    width: 50%;
    max-width: 180px;
  }
}

/* ==============================
   SP（〜768px）
   ============================== */
@media (max-width: 768px) {

  #winter-cost.winter-cost-section {
    padding: 70px 0 40px;
  }

  #winter-cost .winter-cost-inner {
    padding: 0 18px;
  }

  #winter-cost .winter-cost-title-img {
    max-width: 360px;
  }

  #winter-cost .winter-cost-lead {
    text-align: left;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 32px;
  }

  /* ▼ PC用要素はSPでは消す */
  #winter-cost .winter-cost-main,
  #winter-cost .winter-cost-bottom-copy,
  #winter-cost .only-pc {
    display: none !important;
  }

  /* ▼ SP用ブロックを表示 */
  #winter-cost .winter-cost-main-sp,
  #winter-cost .only-sp {
    display: block !important;
  }

  /* 電気代画像（SP） */
  #winter-cost .winter-cost-costimg img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 26px;
  }

  /* ▼ テキスト（左）＋ イラスト（右）を横並びに */
  #winter-cost .winter-cost-bottom-sp {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
  }

  /* テキスト側 */
  #winter-cost .winter-cost-bottom-text {
    flex: 1;
  }

  #winter-cost .winter-cost-bottom-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #333;
  }

  #winter-cost .winter-cost-bottom-text span {
    color: #1b4f94;
    font-weight: 700;
  }

  /* ★ SPイラスト（右側）を大きくする */
  #winter-cost .winter-cost-illust img {
    width: 160px;   /* ← ここがポイント：110px → 160px に拡大 */
    height: auto;
    flex-shrink: 0;
  }
}

/* ==============================
   さらに狭い画面（〜480px）は縦並びに
   ============================== */
@media (max-width: 480px) {
  #winter-cost .winter-cost-bottom-sp {
    flex-direction: column;
    align-items: flex-start;
  }

  #winter-cost .winter-cost-illust img {
    width: 180px;   /* ← スマホ細い端末ではもう少し大きく */
  }
}


/* ===== Section07 SP版：イラストを非表示にする ===== */
@media (max-width: 768px) {
  #winter-cost .winter-cost-bottom-sp .winter-cost-illust {
    display: none !important;
  }
}

@media (max-width: 768px) {
  #winter-cost .winter-cost-bottom-sp .winter-cost-illust {
    display: none !important;
  }
}



/* ===========================
   Section 08 電気代削減効果
   =========================== */
.bg-effect-common {
  background: url("../img/section08/bg.jpg") center/cover no-repeat;
  background-color: #f5f5f5;
}

.effect-section {
  padding: 0 0 90px;
  color: var(--c-text);
}

.effect-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* ▼ 矢印 */
.effect-arrow img {
  width: 150px;
  margin: 0 auto 24px;
  display: block;
}

/* ▼ 見出し画像 */
.effect-heading img {
  max-width: 500px;
  width: 90%;
  margin: 0 auto 40px;
  display: block;
}

/* ▼ 表の画像 */
.effect-table img {
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 0 auto 50px;
}

/* ▼ 下部（テキストのみ） */
.effect-bottom {
  display: block;        /* ← flexをやめる */
  max-width: 860px;      /* 読みやすい幅に */
  margin: 0 auto;
}

.effect-text {
  text-align: left;
  font-size: 16px;
  line-height: 1.9;
}

.effect-text strong {
  color: #d9534f;
  font-weight: 700;
}

/* =====================================
   Section 08：テキスト用ポイント
   ===================================== */
.effect-point {
  list-style: none;
  margin: 0;
  padding: 0;
}

.effect-point li {
  position: relative;
  padding-left: 36px;
  font-size: 20px;
  line-height: 1.9;
  margin: 0 0 14px;
}

.effect-point li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #79a7c7;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #79a7c7;
}

/* ===========================
   SP（〜768px）
   =========================== */
@media (max-width: 768px) {
  .effect-section { padding: 0 0 64px; }

  .effect-inner { padding: 0 16px; }

  .effect-arrow img {
    width: 120px;
    margin-bottom: 14px;
  }

  .effect-heading img {
    max-width: 340px;
    margin-bottom: 24px;
  }

  .effect-table img {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .effect-text {
    font-size: 15px;
  }

  .effect-point li {
    font-size: 15px;
    padding-left: 30px;
  }

  .effect-point li::before {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
}

/* ==============================
   Section 09：エアコンネット6つのメリット
   ============================== */
.merit-section {
  background: #ffffff;
  padding: 80px 0 90px;
  color: #333;
}

.merit-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ▼ セクションタイトル */
.merit-headrin {
  text-align: center;
  margin: 0 0 80px;   /* タイトル画像とカード群の間の余白（PC） */
}

.merit-headrin img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* ▼ カードの並び：PC 3列 */
.merit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ▼ カード本体 */
.merit-card {
  position: relative;
  padding: 64px 24px 30px; /* テキストタイトル前提の余白に調整 */
  text-align: center;
  background: #e1e9f4 url("assets/img/section07/card-bg-pc.png")
              center top / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

/* ▼ テキストタイトル（画像 → テキスト） */
.merit-card-title-text {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  color: #013169;      /* 指定カラー */
  text-align: center;
  line-height: 1.4;
}

/* ▼ アイコン */
.merit-card-icon {
  margin-bottom: 18px;
}

.merit-card-icon img {
  width: 88px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ▼ 説明テキスト */
.merit-card-text {
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

/* ==============================
   SP（〜768px）
   ============================== */
@media (max-width: 768px) {

  .merit-section {
    padding: 60px 0 70px;
  }

  .merit-inner {
    padding: 0 18px;
  }

  /* SP版タイトル */
  .merit-headrin {
    margin: 0 0 40px;
  }

  .merit-headrin img {
    max-width: 320px;
  }

  /* SP：カード2列 */
  .merit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .merit-card {
    padding: 50px 14px 22px;
    background-image: url("assets/img/section07/card-bg-sp.png");
  }

  /* SP：テキストタイトル */
  .merit-card-title-text {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .merit-card-icon img {
    width: 72px;
  }

  .merit-card-text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.bg-white-common {
  background: url("../img/common/bg-white.jpeg") center/cover no-repeat;
  background-color: #ffffff;
}

/* ==============================
   Section CTA
   ============================== */

.cta-section {
  background: #022242; /* 上の濃いネイビー背景と揃える */
  padding: 40px 0;
  text-align: center;
  color: #fff;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* テキスト部分 */
.cta-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-em {
  font-size: 22px;
  font-weight: 700;
  color: #f7d27c;  /* 黄金の強調色 */
}

/* CTAボタン */
.cta-btn a {
  display: inline-block;
  background: linear-gradient(90deg, #ccb16a, #d9b842, #c69f25);
  padding: 18px 36px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.cta-btn a:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* ==============================
   SP（〜768px）
   ============================== */
@media (max-width: 768px) {

  .cta-section {
    padding: 40px 0 40px;
  }

  .cta-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .cta-em {
    font-size: 16px;
  }

  .cta-btn a {
    width: 100%;
    font-size: 18px;
    padding: 16px 10px;
  }
}


/* ==============================
   Section 10：取り付け方法
   ============================== */
.install-section {
  background: linear-gradient(135deg, #62aee8 0%, #75d0c9 100%);
  padding: 90px 0 110px;
}

.install-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.install-heading {
  text-align: center;
  margin-bottom: 48px;
}

.install-title-img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
}

/* まずはSP基準（縦並び） */
.install-steps {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: stretch;
}

/* カード */
.install-step {
  background: #ffffff;
  border-radius: 6px;
  padding: 24px 32px 28px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* バッジ */
.install-step-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-label {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.badge-num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

/* 画像 */
.install-step-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* タイトル */
.install-step-title {
  font-size: 25px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* 本文 */
.install-step-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

/* 矢印（デフォルト：下向き） */
.install-arrow {
  width: 100%;
  display: flex;
  justify-content: center;
}

.install-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 18px solid #333;
}

/* ==============================
   PC（769px〜）：横並びカード + 横矢印
   ============================== */
@media (min-width: 769px) {
  .install-steps {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 28px;
  }

  /* 3枚カードの幅を固定して、PNGの見た目に寄せる */
  .install-step {
    width: 280px;
    max-width: none;
    margin: 0;
    padding: 34px 26px 32px;
    border-radius: 6px;
  }

  /* カード内：中央寄せ（バッジ→画像→タイトル→本文） */
  .install-step-badge {
    margin: 0 auto 18px;
  }

  .install-step-photo {
    margin-bottom: 18px;
  }

  .install-step-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 14px;
  }

  .install-step-text p {
    font-size: 16px;
    line-height: 1.85;
  }

  /* 横矢印（右向き三角）に変更 */
  .install-arrow {
    width: auto;
    align-self: center;
  }

  .install-arrow::before {
    border: none;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 18px solid #333;
  }
}

/* ==============================
   SP（〜768px）：現状の縦並びを維持
   ============================== */
@media (max-width: 768px) {
  .install-section {
    padding: 70px 0 80px;
  }

  .install-inner {
    padding: 0 18px;
  }

  .install-title-img {
    max-width: 320px;
  }

  .install-step {
    padding: 18px 18px 22px;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

   /* STEP丸バッジを中央に */
  .install-step-badge {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
  }

  /* SPは「画像→タイトル→本文」の自然な縦並び */
  .install-step-photo {
    margin-bottom: 14px;
  }

  .install-step-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }

  .install-step-text p {
    font-size: 14px;
    line-height: 1.8;
  }
}


/* ==============================
   Section 11：スペックと仕様
   ============================== */
.spec-section {
  /* 背景は共通クラス bg-white-common に任せる */
  padding: 90px 0 110px;
}

.spec-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}

/* タイトル */
.spec-heading {
  text-align: center;
  margin-bottom: 48px;
}

.spec-title-img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
}

/* ▼ PC版：2カラムレイアウト */
.spec-main-pc {
  display: flex;                 /* PCでは横並び */
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 40px;
  max-width: 980px;
  margin: 0 auto 40px;
}

.spec-main-left,
.spec-main-right {
  flex: 0 0 48%;
}

/* 画像共通 */
.spec-table-img,
.spec-product-img,
.spec-price-img {
  width: 100%;
  height: auto;
  display: block;
}

.spec-product-img {
  margin-bottom: 18px;
}

/* ▼ SP用コンテナ（PCでは非表示） */
.spec-main-sp {
  display: none;
}

.spec-sp-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

/* 最後のテキストコピー */
.spec-bottom-copy {
  font-size: 25px;
  line-height: 1.9;
  text-align: center;
  color: #333;
  font-weight: 500;
  margin-top: 10px;
}

.spec-bottom-copy span {
  font-weight: 700;
  color: #0054a6;
  background: linear-gradient(to bottom, transparent 60%, #f2e9b1 60%);
}

/* ==============================
   Section 11 SP（〜768px）
   ============================== */
@media (max-width: 768px) {

  .spec-section {
    padding: 70px 0 80px;
  }

  .spec-inner {
    padding: 0 18px;
  }

  .spec-heading {
    margin-bottom: 32px;
  }

  .spec-title-img {
    max-width: 320px;
  }

  /* PC版非表示、SP版表示 */
  .spec-main-pc {
    display: none !important;
  }

  .spec-main-sp {
    display: block;
    margin-bottom: 30px;
  }

  .spec-bottom-copy {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* ==============================
   Section 11 PCレイアウト強制パッチ
   ============================== */
@media (min-width: 769px) {
  /* PCでは必ず2カラムにする */
  .spec-main-pc {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 40px;
    max-width: 980px;
    margin: 0 auto 40px;
  }

  .spec-main-left,
  .spec-main-right {
    flex: 0 0 48% !important;
    max-width: 48%;
  }

  /* SP用コンテナはPCでは必ず非表示に */
  .spec-main-sp {
    display: none !important;
  }
}


/* ==============================
   Section 12：FAQ（よくある質問）
   ============================== */
.faq-section {
  background: #dde6f2;
  padding: 90px 0 110px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ▼ タイトル画像 */
.faq-heading {
  text-align: center;
  margin-bottom: 56px;
}

.faq-title-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
}

/* ▼ FAQリスト */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  margin-bottom: 18px;
}

/* ▼ 質問行 */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.faq-question-text {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.7;
  flex: 1;
}

/* ▼ Q / A バッジ */
.faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.faq-badge-q { background: #013169; }
.faq-badge-a { background: #d1b259; }

/* ▼ 三角アイコン（屋根みたいなデザイン） */
.faq-toggle-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}

/* 閉じている時 ▲ */
.faq-toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-top: 7px solid #8a9ab4;   /* ▲ 上向きの三角 */
}

/* 開いている時 ▼ */
.faq-question[aria-expanded="true"] .faq-toggle-icon::before {
  border-top-color: transparent;
  border-bottom-color: #8a9ab4;    /* ▼ 下向きの三角 */
}

/* ▼ アコーディオン */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding-top .28s ease, padding-bottom .28s ease;
  padding: 0 28px;
  border-top: 1px solid #e3e7ee;
}

.faq-answer-inner {
  display: flex;
  gap: 16px;
}

.faq-answer-inner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

/* ▼ 開いた時 */
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 300px;
  padding-top: 16px;
  padding-bottom: 22px;
}

/* ▼ SP */
@media (max-width: 768px) {

  .faq-section {
    padding: 70px 0 80px;
  }

  .faq-inner { padding: 0 18px; }

  .faq-title-img {
    max-width: 300px;
  }

  .faq-question {
    padding: 18px 16px;
    gap: 12px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer-inner p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ==============================
   Section 13：締めメッセージ
   ============================== */
.closing-section {
  padding: 0;            /* 余白なしで全幅に密着させる */
}

.closing-inner {
  width: 100%;
  max-width: 100%;       /* ここ重要 → 全幅を阻害しない */
  margin: 0;
  padding: 0;            /* 内側余白もゼロ */
}

.closing-img {
  width: 100%;           /* 画面幅いっぱいに表示 */
  height: auto;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .closing-section {
    padding: 0;
  }
}

/* ==============================
   CTA 02
   ============================== */
.cta02-section {
  width: 100%;
  background: #002549;          /* ネイビー背景（全幅） */
  padding: 60px 0 70px;
  color: #fff;
}

.cta02-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* マイクロコピー画像 */
.cta02-microcopy {
  margin-bottom: 28px;
}

.cta02-microcopy img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* ボタン本体：CTA と完全同じ */
.cta02-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ccb16a, #d9b842, #c69f25);
  padding: 18px 36px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s;
}

/* ホバーアニメーションも CTA と統一 */
.cta02-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* SP（〜768px） */
@media (max-width: 768px) {
  .cta02-section {
    padding: 40px 0 50px;
  }

  .cta02-inner {
    padding: 0 18px;
  }

  .cta02-microcopy {
    margin-bottom: 20px;
  }

  .cta02-microcopy img {
    max-width: 300px;
  }

  .cta02-btn {
    width: 100%;
    font-size: 18px;
    padding: 16px 10px;
  }
}

/* 公式LINEバナー */
.line-banner-section {
  background: #00b38f; /* 画像周囲に少し余白が出ても違和感ない色（お好みで） */
  padding: 0;          /* 余白いらなければ0でOK */
}

.line-banner-link {
  display: block;
}

.line-banner-link img {
  display: block;
  width: 100%;   /* PC/SPとも画面幅いっぱいに表示 */
  height: auto;
}

/* もしレイアウト幅をメインと揃えたいならこんな感じに */
.line-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}


/* ==============================
   フローティングCTAボタン
   ============================== */

.floating-cta {
  position: fixed;
  z-index: 1000;
}

/* ボタンデザイン（PC/SP共通） */
.floating-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #ffffff;

  /* ゴールドのグラデーション */
  background: linear-gradient(90deg, #d6a326 0%, #f1d267 50%, #d6a326 100%);
  border-radius: 4px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

/* ホバー時（PC用） */
@media (hover: hover) {
  .floating-cta-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
  }
}

/* ---------- PCレイアウト ---------- */
@media (min-width: 769px) {
  .floating-cta {
    top: 40px;     /* ヘッダー＋余白を見ながら微調整してOK */
    right: 40px;     /* 右端からの距離 */
  }
}

/* ---------- SPレイアウト ---------- */
@media (max-width: 768px) {
  .floating-cta {
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 8px 10px;    /* 画面端との余白 */
    box-sizing: border-box;
  }

  .floating-cta-btn {
    width: 100%;
    padding: 14px 10px;
    border-radius: 0;     /* 下固定なので角丸なしのほうが自然なら0でOK */
    font-size: 14px;
  }
}

/* ======================================================
   Footer
   ====================================================== */
.site-footer {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 32px 20px;
  margin-top: 20px;
  font-size: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin: 0 0 16px;
}
.footer-nav a {
  color: #333;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--c-gold); }
.copy {
  font-size: 12px;
  opacity: .85;
  margin: 0;
}
.footer-logo {
  text-align: center;
  margin-bottom: 20px;
}
.footer-logo img {
  display: block;
  margin: 0 auto;
  height: 48px;
  width: auto;
  opacity: 0.9;
}
