/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Avenir Next LT Pro", "Avenir Next", "Avenir", sans-serif;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  background-image: url("img/html_bg_img.webp");
  background-repeat: repeat;
  background-position: center top;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   HEADER（固定ヘッダー）
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #094797;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 20px;
  width: auto;
  display: block;
}

.header-nav ul {
  display: flex;
  gap: 40px;
}

.header-nav a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #eeefdc;
  transition: opacity 0.3s ease;
}

.header-nav a:hover {
  opacity: 0.7;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding-top: 60px; /* ヘッダーの高さ分 */
  overflow: hidden;
}


/* "Is it too hot?" （画像） */
.hero-lead {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0 20px;
}

.hero-lead img {
  display: inline-block;
  max-width: 400px;
  width: 50%;
  height: auto;
}

/* ============================================
   SLIDER SECTION 共通
   ============================================ */
.slider-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10px 0;
}

.slider-section .swiper {
  width: 100%;
  overflow: hidden;
}

.slider-section .swiper-wrapper {
  transition-timing-function: linear !important;
}

.slider-section .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-section .swiper-slide {
  width: 280px;
}

.slider-section .swiper-slide img {
  height: 300px;
  width: 100%;
  object-fit: contain;
}

/* スライダー2: 逆方向スクロール用 */
.slider-section--02 .swiper {
  direction: rtl;
}

.slider-section--02 .swiper-slide {
  direction: ltr;
  width: 300px;
}

.slider-section--02 .swiper-slide img {
  height: 330px;
}

/* ============================================
   "Portable Fan" 筆記体テキスト（画像）
   ============================================ */
.hero-script {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 10px 0 0;
  transform: translateY(20px);
}

.hero-script img {
  display: inline-block;
  max-width: 360px;
  width: 45%;
  height: auto;
}

/* ============================================
   CATCHCOPY（左からスライドイン）
   ============================================ */
.hero-catchcopy {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 10px 0 20px;
}

.catchcopy-line {
  display: block;
  overflow: hidden;
}

.catchcopy-line span {
  display: inline-block;
  background-color: #094797;
  color: #eeefdc;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3.2vw, 40px);
  padding: 12px 36px;
  letter-spacing: 0.1em;
  /* 初期状態: 左の画面外に隠す（JSで制御） */
  transform: translateX(-110%);
}

.catchcopy-line--02 {
  margin-top: 6px;
}

/* ============================================
   PORTABLE FAN SECTION
   ============================================ */
.pf-section {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

/* 背景画像（波形）- 上下のwaveを見せる */
.pf-section-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pf-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* コンテンツ */
.pf-section-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 120px 24px 140px;
  text-align: center;
}

/* 見出し */
.pf-heading {
  margin-bottom: 30px;
}

.pf-heading img {
  display: inline-block;
  max-width: 400px;
  width: 70%;
  height: auto;
}

/* ファンアニメーション */
.pf-fan-animation {
  margin-bottom: 40px;
}

.pf-fan-animation img {
  display: inline-block;
  width: 60px;
  height: auto;
}

/* テキストブロック共通 */
.pf-text-block {
  margin-bottom: 36px;
}

.pf-text-block p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #eeefdc;
  line-height: 2.2;
  letter-spacing: 0.1em;
}

/* テキストブロック2: 少し太く */
.pf-text-block--02 p {
  font-weight: 700;
}

/* テキストブロック3: 太字 */
.pf-text-block--03 p {
  font-weight: 700;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-section {
  padding: 0 24px 20px;
  transform: translateY(-40px);
  text-align: center;
}

.why-section-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* 吹き出し */
.why-balloon {
  margin-bottom: 32px;
}

.why-balloon img {
  display: inline-block;
  max-width: 420px;
  width: 75%;
  height: auto;
}

/* 見出し */
.why-heading {
  margin-bottom: 36px;
}

.why-heading span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 42px);
  color: #000000;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

/* 本文 */
.why-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 2vw, 16px);
  color: #094797;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

/* ============================================
   DIAGNOSE SECTION
   ============================================ */
.diagnose-section {
  position: relative;
  padding: 60px 10px;
  text-align: center;
  overflow: hidden;
}

/* 装飾画像 共通 */
.diagnose-deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.diagnose-deco img {
  display: block;
  height: auto;
}

/* 左上 */
.diagnose-deco--tl {
  top: 30px;
  left: -8px;
  transform: rotate(15deg);
}

.diagnose-deco--tl img {
  width: 70px;
}

/* 右上 */
.diagnose-deco--tr {
  top: 135px;
  right: -9px;
  transform: rotate(-14deg);
}

.diagnose-deco--tr img {
  width: 55px;
}

/* 左下 */
.diagnose-deco--bl {
  bottom: 151px;
  left: -7px;
  transform: rotate(12deg);
}

.diagnose-deco--bl img {
  width: 65px;
}

/* 右下 */
.diagnose-deco--br {
  bottom: 46px;
  right: -11px;
  transform: rotate(-15deg);
}

.diagnose-deco--br img {
  width: 90px;
}

.diagnose-card {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
  background-color: #eeefdc;
  border-radius: 20px;
  padding: 50px 32px 48px;
}

/* 吹き出し */
.diagnose-balloon {
  margin-bottom: 24px;
}

.diagnose-balloon img {
  display: inline-block;
  max-width: 240px;
  width: 50%;
  height: auto;
}

/* 見出し */
.diagnose-heading {
  margin-bottom: 28px;
}

.diagnose-heading span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 36px);
  color: #094797;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

/* CTAボタン */
.diagnose-btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 18px);
  color: #eeefdc;
  background-color: #000000;
  border: none;
  border-radius: 40px;
  padding: 14px 40px;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  transition: opacity 0.3s ease;
}

.diagnose-btn:hover {
  opacity: 0.8;
}

/* 本文 */
.diagnose-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 2vw, 15px);
  color: #094797;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

/* ============================================
   LINE UP SECTION
   ============================================ */
.lineup-section {
  padding: 60px 24px;
  text-align: center;
}

.lineup-inner {
  max-width: 500px;
  margin: 0 auto;
}

/* 見出し */
.lineup-heading {
  margin-bottom: 20px;
}

.lineup-heading img {
  display: inline-block;
  max-width: 240px;
  width: 65%;
  height: auto;
}

/* サブテキスト */
.lineup-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 2vw, 16px);
  color: #094797;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* 2x2 グリッド */
.lineup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.lineup-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 18px);
  color: #eeefdc;
  background-color: #094797;
  border-radius: 10px;
  padding: 16px 12px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.lineup-link:hover {
  opacity: 0.8;
}

/* 下部テキスト */
.lineup-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 2vw, 15px);
  color: #094797;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ============================================
   LINEUP DETAIL SECTION
   ============================================ */
.lineup-detail {
  position: relative;
  padding: 151px 0 60px;
  overflow: hidden;
}

@media screen and (max-width: 770px) {
  .lineup-detail {
    padding-top: 168px;
  }
}

@media screen and (max-width: 430px) {
  .lineup-detail {
    padding-top: 110px;
  }
}

@media screen and (max-width: 380px) {
  .lineup-detail {
    padding-top: 94px;
  }
}


/* 2個目以降: 前のセクションの背景色を受ける */
.lineup-detail--02 {
  background-color: #EEEFDE;
  margin-top: -117px;
}

/* 2個目: 背景画像が大きいので追加でpadding */
.lineup-detail--02 {
  padding-top: 280px;
}

@media screen and (max-width: 770px) {
  .lineup-detail--02 {
    padding-top: 300px;
  }
}

@media screen and (max-width: 430px) {
  .lineup-detail--02 {
    padding-top: 220px;
  }
}

@media screen and (max-width: 380px) {
  .lineup-detail--02 {
    padding-top: 190px;
  }
}

/* 3個目: 2と同じスタイル（前セクションの青背景を受ける） */
.lineup-detail--03 {
  background-color: #a7cbe6;
  margin-top: -117px;
  padding-top: 280px;
}

@media screen and (max-width: 770px) {
  .lineup-detail--03 {
    padding-top: 300px;
  }
}

@media screen and (max-width: 430px) {
  .lineup-detail--03 {
    padding-top: 220px;
  }
}

@media screen and (max-width: 380px) {
  .lineup-detail--03 {
    padding-top: 190px;
  }
}

/* 4個目: 3と同じスタイル（前セクションの背景色を受ける） */
.lineup-detail--04 {
  background: linear-gradient(to bottom, #EEEFDE 0%, #EEEFDE 50%, #ffffff 50%, #ffffff 100%);
  margin-top: -117px;
  padding-top: 280px;
}

@media screen and (max-width: 770px) {
  .lineup-detail--04 {
    padding-top: 300px;
  }
}

@media screen and (max-width: 430px) {
  .lineup-detail--04 {
    padding-top: 220px;
  }
}

@media screen and (max-width: 380px) {
  .lineup-detail--04 {
    padding-top: 190px;
  }
}

/* セクション背景（karusa.png） */
.lineup-detail-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: 0;
}

.lineup-detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* スマホ: 背景画像を150%に拡大 */
@media screen and (max-width: 768px) {
  .lineup-detail-bg {
    width: 150%;
  }
}

/* カテゴリ見出し画像 */
.lineup-detail-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  transform: translateY(51px);
  margin-bottom: -54px;
}

.lineup-detail-heading img {
  display: inline-block;
  max-width: 500px;
  width: 85%;
  height: auto;
}

/* スライダー */
.lineup-detail-slider {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.lineup-detail-slider .swiper {
  overflow: visible;
  padding-bottom: 40px;
}

/* 商品カード */
.product-card {
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  overflow: hidden;
  height: 100%;
  isolation: isolate;
  /* WebKitバグ対策: transformで新しいスタッキングコンテキスト + クリッピングを強制 */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  background-color: #888;
}

.lineup-detail-slider .swiper-slide {
  height: auto;
  display: flex;
}

.lineup-detail-slider .swiper-slide > .product-card {
  width: 100%;
}

/* カード背景画像 */
.product-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* カード内コンテンツ */
.product-card-inner {
  position: relative;
  z-index: 1;
  padding: 20px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* POINT ラベル */
.product-card-point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.product-card-point .point-icon {
  height: 24px;
  width: auto;
}

.product-card-point span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0.06em;
}

/* 商品画像 */
.product-card-img {
  margin-bottom: 16px;
}

.product-card-img img {
  display: inline-block;
  max-width: 220px;
  width: 70%;
  height: auto;
}

/* 商品名 */
.product-card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

/* 価格 */
.product-card-price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 12px;
}

.product-card-price small {
  font-size: 11px;
  font-weight: 400;
}

/* 説明文 */
.product-card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

/* 動画セクション */
.product-card-video {
  text-align: center;
  margin-top: auto;
}

.video-label {
  display: inline-block;
  max-width: 200px;
  width: 70%;
  height: auto;
  margin-bottom: 12px;
}

/* YouTube埋め込み */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  position: relative;
  padding: 0;
  background-color: #ffffff;
  overflow: hidden;
}

.gallery-inner {
  position: relative;
  width: 100%;
}

/* ギャラリー画像（画面幅いっぱい） */
.gallery-img {
  width: 100%;
}

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

/* 中央テキスト（kononatsu.png） - ギャラリーの間に挟む */
.gallery-text {
  text-align: center;
  padding: 60px 24px;
}

.gallery-text img {
  display: inline-block;
  width: 60%;
  max-width: 360px;
  height: auto;
}

/* --- PC --- */
@media screen and (min-width: 769px) {
  .gallery-section {
    padding: 60px 0;
  }

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

  .gallery-text {
    padding: 80px 24px;
  }

  .gallery-text img {
    width: 35%;
    max-width: 500px;
  }
}

/* ============================================
   AIBOU SECTION
   ============================================ */
.aibou-section {
  position: relative;
  padding: 0 0 80px;
  overflow: hidden;
  background: linear-gradient(to bottom, #094797 0%, #094797 50%, #ffffff 50%, #ffffff 100%);
}

/* 上部バナー画像（波形を覆う） */
.aibou-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: -1px; /* 隙間防止 */
}

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

/* 背景画像 */
.aibou-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.aibou-bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* コンテンツ */
.aibou-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 24px 0;
  text-align: center;
}

/* 見出し */
.aibou-heading {
  margin-bottom: 40px;
  text-align: left;
}

.aibou-heading span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 7vw, 68px);
  color: #eeefdc;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

/* 本文 */
.aibou-text {
  margin-bottom: 40px;
}

.aibou-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 2vw, 16px);
  color: #eeefdc;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* ボタン */
.aibou-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.aibou-btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 22px);
  color: #094797;
  background-color: #eeefdc;
  border-radius: 40px;
  padding: 10px 48px;
  letter-spacing: 0.08em;
  min-width: 280px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.aibou-btn small {
  display: inline-block;
  font-size: 0.65em;
  margin-right: 4px;
  vertical-align: middle;
}

.aibou-btn:hover {
  opacity: 0.85;
}

/* 扇風機アニメーション */
.aibou-fan {
  text-align: center;
}

.aibou-fan img {
  display: inline-block;
  width: 80px;
  height: auto;
}

/* --- PC --- */
@media screen and (min-width: 769px) {
  .aibou-section {
    padding-bottom: 120px;
  }

  .aibou-banner {
    max-width: 900px;
    margin: 0 auto -1px;
    padding: 0 24px;
  }

  .aibou-inner {
    padding: 60px 24px 0;
  }

  .aibou-heading {
    margin-bottom: 56px;
  }

  .aibou-text {
    margin-bottom: 56px;
  }

  .aibou-text p {
    font-size: 18px;
  }

  .aibou-btns {
    gap: 24px;
    margin-bottom: 80px;
  }

  .aibou-btn {
    min-width: 360px;
    padding: 12px 56px;
  }

  .aibou-fan img {
    width: 100px;
  }
}

/* ============================================
   CTA TEXT SECTION
   ============================================ */
.cta-text-section {
  padding: 60px 24px 80px;
  background-color: #ffffff;
  text-align: center;
}

.cta-text-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-text-block {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #094797;
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.cta-text-block:last-of-type {
  margin-bottom: 60px;
}

.cta-text-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 26px);
  color: #094797;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.cta-text-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-text-arrows span {
  font-size: 22px;
  color: #094797;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .cta-text-section {
    padding: 80px 24px 120px;
  }

  .cta-text-block {
    font-size: 18px;
    line-height: 2.1;
    margin-bottom: 32px;
  }

  .cta-text-block:last-of-type {
    margin-bottom: 80px;
  }

  .cta-text-link {
    font-size: 28px;
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .cta-text-arrows span {
    font-size: 28px;
  }

  .cta-text-arrows {
    gap: 6px;
  }
}

/* ============================================
   CAUTION SECTION
   ============================================ */
.caution-section {
  padding: 60px 24px 80px;
  background-color: #ffffff;
}

.caution-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
.caution-heading {
  margin-bottom: 28px;
}

.caution-heading span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 40px);
  color: #000000;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

/* 警告テキスト */
.caution-warning {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 18px);
  color: #000000;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* 炎アイコン */
.caution-fire {
  margin-bottom: 24px;
}

.caution-fire img {
  display: inline-block;
  width: 80px;
  height: auto;
}

/* 説明 */
.caution-intro {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 18px);
  color: #000000;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* アイコングリッド */
.caution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.caution-item img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
}

/* 5つ目のアイテムは中央に */
.caution-item--wide {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.caution-item--wide img {
  max-width: 180px;
}

/* その他の注意事項 */
.caution-other {
  text-align: left;
  display: inline-block;
  margin-bottom: 36px;
}

.caution-other-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  margin-bottom: 10px;
}

.caution-other ul {
  list-style: none;
  padding: 0;
}

.caution-other li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}

.caution-other li::before {
  content: "・";
}

/* フッターテキスト */
.caution-footer-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: center;
}

/* ボタン */
.caution-btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background-color: #000000;
  border-radius: 30px;
  padding: 16px 48px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.caution-btn:hover {
  opacity: 0.8;
}

/* --- PC: アイコンを5つ横並び --- */
@media screen and (min-width: 769px) {
  .caution-section {
    padding: 80px 24px 100px;
  }

  .caution-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1000px;
    gap: 24px;
  }

  .caution-item--wide {
    grid-column: auto;
    display: block;
  }

  .caution-item img,
  .caution-item--wide img {
    max-width: 180px;
  }

  .caution-other {
    max-width: 600px;
  }

  .caution-other-title {
    font-size: 16px;
  }

  .caution-other li {
    font-size: 15px;
  }

  .caution-footer-text {
    font-size: 17px;
  }

  .caution-btn {
    font-size: 18px;
    padding: 18px 56px;
  }
}

/* ============================================
   COMING SOON SECTION
   ============================================ */
.coming-section {
  padding: 60px 24px 80px;
  background-color: #ffffff;
  text-align: center;
}

.coming-inner {
  max-width: 700px;
  margin: 0 auto;
}

.coming-heading {
  margin-bottom: 0;
}

.coming-heading img {
  display: inline-block;
  max-width: 380px;
  width: 70%;
  height: auto;
}

.coming-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 2.5vw, 21px);
  color: #094797;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

.coming-dummy {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-dummy span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #094797;
  padding: 60px 24px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  display: inline-block;
  height: 28px;
  width: auto;
}

.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #eeefdc;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #eeefdc;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 769px) {
  .coming-section {
    padding: 80px 24px 120px;
  }

  .footer {
    padding: 80px 24px 50px;
  }
}

/* ============================================
   DIAGNOSE MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  background-color: #eeefdc;
  border-radius: 24px;
  padding: 48px 28px 36px;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #094797;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity 0.3s ease;
}

.modal-close:hover {
  opacity: 0.6;
}

/* 共通アイコン */
.modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #094797;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #094797;
  margin-bottom: 12px;
}

/* === 質問画面 === */
.modal-label {
  font-family: "Avenir Next LT Pro", "Avenir Next", "Avenir", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #094797;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.modal-question {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #094797;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  min-height: 3.4em;
}

.modal-answers {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-answer {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  border: none;
  border-radius: 40px;
  padding: 16px 24px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.modal-answer:hover {
  opacity: 0.85;
}

.modal-answer--yes {
  background-color: #2ea86f;
}

.modal-answer--no {
  background-color: #e65d2a;
}

/* === 結果画面 === */
.modal-result-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #094797;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.modal-result-point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-result-point img {
  height: 20px;
  width: auto;
  transform: scale(1.5);
  transform-origin: center;
  margin-right: 6px;
}

.modal-result-point span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #094797;
  letter-spacing: 0.04em;
}

.modal-result-img {
  margin-bottom: 16px;
}

.modal-result-img img {
  display: inline-block;
  width: 100%;
  max-width: 240px;
  height: auto;
}

.modal-result-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #094797;
  line-height: 1.5;
  margin-bottom: 6px;
}

.modal-result-price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #094797;
  margin-bottom: 20px;
}

.modal-result-btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #eeefdc;
  background-color: #094797;
  border-radius: 30px;
  padding: 12px 32px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.modal-result-btn:hover {
  opacity: 0.85;
}

.modal-retry {
  display: block;
  background: none;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #094797;
  text-decoration: underline;
  cursor: pointer;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.modal-retry:hover {
  opacity: 0.7;
}

/* body スクロール停止時用 */
body.modal-open {
  overflow: hidden;
}

/* --- PC --- */
@media screen and (min-width: 769px) {
  .modal-dialog {
    max-width: 500px;
    padding: 56px 40px 44px;
  }

  .modal-label {
    font-size: 44px;
  }

  .modal-question {
    font-size: 22px;
  }

  .modal-answer {
    font-size: 20px;
    max-width: 280px;
  }

  .modal-result-lead {
    font-size: 26px;
  }

  .modal-result-name {
    font-size: 18px;
  }

  .modal-result-price {
    font-size: 15px;
  }

  .modal-result-btn {
    font-size: 15px;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- PC --- */
@media screen and (min-width: 769px) {
  .diagnose-section {
    padding: 80px 24px;
  }

  .diagnose-card {
    max-width: 700px;
    padding: 70px 60px 64px;
    border-radius: 28px;
  }

  .diagnose-balloon img {
    max-width: 300px;
    width: 45%;
  }

  .diagnose-deco--tl {
    top: 20px;
    left: 15%;
  }

  .diagnose-deco--tl img {
    width: 160px;
  }

  .diagnose-deco--tr {
    top: 100px;
    right: 12%;
  }

  .diagnose-deco--tr img {
    width: 130px;
  }

  .diagnose-deco--bl {
    bottom: 120px;
    left: 12%;
  }

  .diagnose-deco--bl img {
    width: 140px;
  }

  .diagnose-deco--br {
    bottom: 40px;
    right: 10%;
  }

  .diagnose-deco--br img {
    width: 180px;
  }

  /* Hero: PC テキスト・装飾を大きく */
  .hero-lead {
    text-align: center;
    padding: 50px 0 20px;
  }

  .hero-lead img {
    max-width: 600px;
    width: 40%;
  }

  .hero-script {
    transform: translateY(40px);
  }

  .hero-script img {
    max-width: 700px;
    width: 50%;
    margin-right: 5%;
  }

  .catchcopy-line span {
    font-size: 52px;
    padding: 16px 48px;
  }

  /* Lineup Detail: PC 3カード横並び */
  .lineup-detail-slider .swiper {
    overflow: visible;
  }

  .lineup-detail-heading img {
    width: 50%;
  }
}

/* --- タブレット --- */
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 15px 16px;
  }

  .header-logo {
    font-size: 18px;
  }

  .header-nav ul {
    gap: 18px;
  }

  .header-nav a {
    font-size: 11px;
  }

  .slider-section .swiper-slide {
    width: 160px;
  }

  .slider-section .swiper-slide img {
    height: 160px;
  }

  .slider-section--02 .swiper-slide {
    width: 180px;
  }

  .slider-section--02 .swiper-slide img {
    height: 180px;
  }
}

/* --- スマホ --- */
@media screen and (max-width: 480px) {
  body {
    background-size: 100% auto;
  }

  .header-nav ul {
    gap: 20px;
  }

  .header-nav a {
    font-size: 10px;
  }

  .hero-lead {
    padding: 24px 0 12px;
  }

  .hero-lead img {
    width: 70%;
  }

  .hero-script img {
    width: 55%;
  }

  .slider-section .swiper-slide {
    width: 80px;
  }

  .slider-section .swiper-slide img {
    height: 120px;
  }

  .slider-section--02 .swiper-slide {
    width: 90px;
  }

  .slider-section--02 .swiper-slide img {
    height: 140px;
  }

  .catchcopy-line span {
    font-size: 20px;
    padding: 10px 20px;
  }

  /* Portable Fan Section */
  .pf-section-inner {
    padding: 80px 20px 100px;
  }

  .pf-heading img {
    width: 60%;
  }

  .pf-text-block p {
    font-size: 15px;
    line-height: 2;
  }
}
