@charset "utf-8";
/* -----------------------------------------------------------
　　サウナ25年7月の販売LP
----------------------------------------------------------- */
/* フォント設定 */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');
:root {
  --font-family-m: 'M PLUS 1p', sans-serif;
}
/* === ベース設定 === */
html, body {
  font-size: 62.5%; /* 1rem = 10px */
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: bold;
  font-family: var(--font-family-m);
  text-decoration: none;
}
.sauna2508 {
  font-size: 62.5%;
}
.sauna2508 p {
  margin: 0;
  padding: 0;
  letter-spacing: normal;
  text-indent: 0;
  font-family: var(--font-family-m);
}
/* 各要素の共通文字サイズ（必要なら） */
.sauna2508 div, .sauna2508 article, .sauna2508 section, .sauna2508 ul, .sauna2508 li, .sauna2508 ol, .sauna2508 dl, .sauna2508 dt, .sauna2508 dd, .sauna2508 table, .sauna2508 th, .sauna2508 td, .sauna2508 span {
  font-size: 1.6rem; /* = 16px */
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: bold;
  font-family: var(--font-family-m);
}
/* === デフォルトのPCサイズ === */
.sauna2508 h2 {
  font-size: 4.8rem; /* = 48px */
  font-weight: bold;
  font-family: var(--font-family-m);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5;
}
.sauna2508 h3 {
  font-size: 2rem; /* = 20px */
  font-weight: bold;
  font-family: var(--font-family-m);
  letter-spacing: 0.1em;
}
.sauna2508 p {
  font-size: 1.6rem; /* = 16px */
  font-weight: bold;
  letter-spacing: 0.1em;
}
/* === スマホ以下でサイズ調整（clamp使用） === */
@media screen and (max-width: 985px) {
  .sauna2508 h2 {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
  }
  .sauna2508 h3 {
    font-size: clamp(2rem, 2.5vw, 2.2rem);
  }
  .sauna2508 p {
    font-size: 1.6rem; /* = 16px */
    font-weight: bold;
  }
}
/* ===== 共通リセット（最小限） ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* sauna2508専用スタイル */
body.sauna2508 {
  background: #0d2b50;
}
.sauna2508 .container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  background: #0d2b50;
}
@media screen and (max-width: 985px) {
  .sauna2508 .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ===== 背景セクション全幅 & 中央寄せ用 ===== */
/* セクション構造共通：背景100%、内側中央寄せ */
.sauna2508 section {
  width: 100%;
  padding: 40px 0px 80px 0;
}
.sauna2508 .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
/* 2種類の色パターン */
.sauna2508 .section-dark {
  background-color: #0d2b50;
  color: #fff;
}
.sauna2508 .section-sand {
  background-color: #DAD0C2; /* ベージュ系 */
  color: #0d2b50;
}
@media screen and (max-width: 985px) {
  .sauna2508 section {
    width: 100%;
    padding: 30px 0px 40px 0;
  }
  .sauna2508 .inner {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ===== PC/SP ===== */
.sauna2508 .SP {
  display: none !important;
}
@media screen and (max-width: 985px) {
  .sauna2508 .SP {
    display: block !important;
  }
  .sauna2508 .PC {
    display: none !important;
  }
}
/* ===== ヘッダー ===== */
.sauna2508 .site-header {
  width: 100%;
  padding: 10px 20px;
  background-color: #17823B;
}
.sauna2508 .header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sauna2508 .site-header .site-logo img {
  width: 40%;
  height: auto;
  display: block;
}
.sauna2508 .site-header h2.header-copy {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-family-m);
  margin: 0;
  white-space: nowrap;
}
.sauna2508 .header-right {
  flex-shrink: 0;
  margin-left: 1rem;
}
@media screen and (max-width: 985px) {
  .sauna2508 .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0 16px;
  }
  .sauna2508 .site-header {
    width: 100%;
    padding: 10px 0px;
    background-color: #0d2b50;
  }
  .sauna2508 .site-logo {
    display: block;
    margin: 0;
  }
  .sauna2508 .site-logo img {
    width: 40%;
    height: auto;
    min-width: 120px;
  }
  .sauna2508 .site-header h2.header-copy {
    font-size: 1rem;
    margin: 0;
  }
}
/* ===== 共通ボタン（今すぐ無料相談・資料請求） ===== */
.sauna2508 .btn-wrapper {
  text-align: center;
  margin:60px auto 40px;
}
.sauna2508 .cta-button {
  display: inline-block;
  background-color: #f5a623;
  color: #000;
  padding: 10px 40px;
  margin-top: 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 2.0rem;
  transition: background-color 0.3s;
  text-align: center;
}
.sauna2508 .cta-button:hover {
  background-color: #C96C10;
}
/* ===== 濃紺ボタン=====*/
.sauna2508 .navy-button {
  display: inline-block;
  background-color: #0d2b50;
  color: #fff;
  padding: 10px 40px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 2.0rem;
  transition: background-color 0.3s;
}
.sauna2508 .navy-button:hover {
  background-color: #030622;
}
/* ===== トップイメージ ===== */
.sauna2508 .topimg {
  background-color: #17823B;
  padding: 30px 0 60px;
  text-align: center;
}
.sauna2508 .topimg .innner {
  max-width: 100%;
  padding: 0 20px;
}
.sauna2508 .topimg .top-image {
  width: 100%;
  height: auto;
  max-width: 1200px;
  display: block;
  margin: 0 auto;
}
/* ===== h2タイトルまわり ===== */
.sauna2508 .heading-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  width: auto;
}
.sauna2508 .lineup .heading-wrapper .title-icon {
  width: 120px;
  height: auto;
  margin-left: 10px;
}
.sauna2508 .introduction .heading-wrapper .title-icon {
  width: 180px;
  height: auto;
  margin-left: 10px;
}
.sauna2508 .feedback .heading-wrapper .title-icon {
  width: 100px;
  height: auto;
  margin-left: 5px;
}
.sauna2508 .feedback .heading-wrapper {
  align-items: flex-start;
}
.sauna2508 .support .heading-wrapper .title-icon {
  width: 96px;
  height: auto;
  margin-left: 10px;
}
.sauna2508 .faq .heading-wrapper .title-icon {
  width: 120px;
  height: auto;
  margin-left: 10px;
}
.sauna2508 .flow .heading-wrapper .title-icon {
  width: 67px;
  height: auto;
  margin-left: 10px;
}
.sauna2508 .quality .heading-wrapper .title-icon {
  width: 100px;
  height: auto;
  margin-left: 10px;
}
.sauna2508 .sns .heading-wrapper .title-icon {
  width: 80px;
  height: auto;
  margin-left: 10px;
}
@media screen and (max-width: 985px) {
  .sauna2508 .lineup .heading-wrapper .title-icon {
    width: 90px;
    height: auto;
    margin-left: 10px;
  }
  .sauna2508 .introduction .heading-wrapper .title-icon {
    width: 90px;
    height: auto;
    margin-left: 5px;
  }
  .sauna2508 .feedback .heading-wrapper .title-icon {
    width: 77px;
    height: auto;
    margin-left: 5px;
  }
  .sauna2508 .support .heading-wrapper .title-icon {
    width: 48px;
    height: auto;
    margin-left: 5px;
  }
  .sauna2508 .faq .heading-wrapper .title-icon {
    width: 60px;
    height: auto;
    margin-left: 5px;
  }
  .sauna2508 .flow .heading-wrapper .title-icon {
    width: 34px;
    height: auto;
    margin-left: 5px;
  }
  .sauna2508 .quality .heading-wrapper .title-icon {
    width: 50px;
    height: auto;
    margin-left: 10px;
  }
  .sauna2508 .sns .heading-wrapper .title-icon {
    width: 40px;
    height: auto;
    margin-left: 10px;
  }
}
/* ======================================================
                    コンテンツごとの設定
======================================================= */
/* ===========================
   ラインナップ202508ver
============================ */
/* ==========linetop ========== */
.sauna2508 .line_top {}
.sauna2508 .line_top h3 {
  margin: 0 0 clamp(16px, 2vw, 24px);
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  font-size: 4.4rem;
  letter-spacing: .02em;
}
.sauna2508 .line_top .linecol2 {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
}
.sauna2508 .line_top .photo {
  flex: 0 1 420px; /* 画像ブロック幅の基準 */
  min-width: 280px;
}
.sauna2508 .line_top .photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.sauna2508 .line_top .text {
  flex: 1;
  text-align: left;
}
.sauna2508 .line_top .text p {
  font-size: 2.4rem;
  line-height: 1.4;
}

.sauna2508 .line_top p.price {
  font-weight: bold;
  text-align: left;
  margin-top: 60px;
}
.sauna2508 .line_top p.price span {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}


.sauna2508 .line_top .text img.kakaku {
  display: block;
  width: 70%;
  height: auto;
  margin: 10px 0 auto;
}
/* --- Responsive（縦積み） --- */
@media (max-width: 985px) {
  .sauna2508 .line_top .linecol2 {
    flex-direction: column;
    align-items: center;
  }
  .sauna2508 .line_top .linecol2 .photo, .sauna2508 .line_top .linecol2 .text {
    width: min(680px, 100%);
  }
  .sauna2508 .line_top .kakaku {
    margin: 12px auto 0; 
    width: min(420px, 80%);
  }
  .sauna2508 .line_top h3 {
    font-size: 2.4rem;
  }
  .sauna2508 .line_top .text p {
  font-size: 1.6rem;
  line-height: 1.4;
}
  .sauna2508 .line_top .text {
    flex: 1;
    text-align: center;
  }
  .sauna2508 .line_top .text img.kakaku {
    display: block;
    width: 50%;
    height: auto;
    margin: 20px auto;
  }
  .sauna2508 .line_top p.price {
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}
}
/*お値打ち即納品とかの大きな文字 */
h2.lined-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #0d2b50;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 30px;
}
h2.lined-wrap span {
  font-size: 5.0rem;
}
.lined-wrap::before, .lined-wrap::after {
  content: "";
  flex: 1 1 0;
  height: 4px;
  background: currentColor;
  min-width: 24px;
}
.lined-wrap::before {
  margin-right: 1em;
}
.lined-wrap::after {
  margin-left: 1em;
}
.lined-wrap {
  overflow: visible;
}

@media (max-width: 985px) {
h2.lined-wrap span {
  font-size: 2.6rem;
}
}


.sauna2508 .line_item {
  margin: 50px auto;
}
.sauna2508 .line_item h3 {
  margin: 0 0 clamp(16px, 2vw, 24px);
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  font-size: 4.4rem;
  letter-spacing: .02em;
}
.sauna2508 .line_item .linecol2 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
}
.sauna2508 .line_item .photo {
  flex: 0 1 420px; /* 画像ブロック幅の基準 */
  min-width: 280px;
}
.sauna2508 .line_item .photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.sauna2508 .line_item .photo p{
text-align: center;
}

.sauna2508 .line_item .text {
  flex: 1;
  text-align: left;
}
.sauna2508 .line_item .text p {
  font-size: 2.4rem;
  line-height: 1.4;
}
.sauna2508 .line_item p.price {
  font-weight: bold;
  text-align: left;
  margin-top: 60px;
}
.sauna2508 .line_item p.price span {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.sauna2508 .line_item .text img.kakaku {
  display: block;
  width: 70%;
  height: auto;
  margin: 10px 0 auto;
}

@media (max-width: 985px) {
  .sauna2508 .line_item .linecol2 {
    flex-direction: column;
    align-items: center;
  }
  .sauna2508 .line_item .linecol2 .photo, .sauna2508 .line_item .linecol2 .text {
    width: min(680px, 100%);
  }
  .sauna2508 .line_item .kakaku {
    margin: 12px auto 0; /* モバイルでは中央寄せ */
    width: min(420px, 80%);
  }
  .sauna2508 .line_item h3 {
    font-size: 2.4rem;
  }
  .sauna2508 .line_item .text p {
  font-size: 1.6rem;
  line-height: 1.4;
}
  .sauna2508 .line_item .text {
    flex: 1;
    text-align: center;
  }
  .sauna2508 .line_item p.price {
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}
  .sauna2508 .line_item .text img.kakaku {
    display: block;
    width: 50%;
    height: auto;
    margin: 20px auto;
  }
}



/* ===========================
   ラインナップ（現在使用していない）
============================ */
.sauna2508 .lineup picture img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  margin: 20px auto;
}
@media screen and (max-width: 985px) {
  .sauna2508 .lineup picture img {
    width: 80%;
    height: auto;
    display: block;
    max-width: 100%;
    margin: 20px auto;
  }
}
/* ===========================
   導入事例
============================ */
.sauna2508 .introduction .carousel-slider .carousel-slider__caption .title {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: var(--font-family-m);
  letter-spacing: 0.1em;
  margin: 10px 0 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  color: #0d2b50 !important;
}
.sauna2508 .introduction .carousel-slider .carousel-slider__caption .caption {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 10px 0 0;
  text-align: center;
  color: #0d2b50;
}
@media screen and (max-width: 985px) {
  .sauna2508 .introduction .carousel-slider .carousel-slider__caption .title {
    font-size: clamp(1.8rem, 2.2vw, 2.0rem);
  }
  .sauna2508 .introduction .carousel-slider .carousel-slider__caption .caption {
    font-size: 1.6rem;
    font-weight: bold;
  }
}
/* ===========================
   お客様の声
============================ */
.sauna2508 .feedback {
  margin: 0 auto;
}
.sauna2508 .feedback .carousel-slider .carousel-slider__caption .title {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: var(--font-family-m);
  letter-spacing: 0.1em;
  margin: 10px 0 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  color: #ffffff !important;
}
.sauna2508 .feedback .carousel-slider .carousel-slider__caption .caption {
  font-size: 1.6rem; /* = 16px */
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 10px 0 0;
  text-align: left;
  color: #fff;
  white-space: pre-line;
}
@media screen and (max-width: 985px) {
  .sauna2508 .feedback .carousel-slider .carousel-slider__caption .title {
    font-size: clamp(1.8rem, 2.2vw, 2.0rem);
  }
  .sauna2508 .feedback .carousel-slider .carousel-slider__caption .caption {
    font-size: 1.6rem;
    font-weight: bold;
  }
}
/* ===========================
   製材屋ならではの高品質・自社製造販売
============================ */
.sauna2508 .quality .inner {
  max-width: 800px;
}
.sauna2508 .quality .dec01 h3 {
  text-align: center;
}
.sauna2508 .quality .dec01 picture {
  width: 100%;
  height: auto;
}
.sauna2508 .quality .dec01 picture img {
  width: 435px;
  height: auto;
  display: block;
  margin: 20px auto 60px;
}
.sauna2508 .quality .dec02 h3 {
  font-size: 4.0rem;
  font-weight: bold;
  font-family: var(--font-family-m);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5;
}
.sauna2508 .quality .dec02 .imggird {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: auto;
  padding: 16px;
}
.sauna2508 .quality .dec02 .imggird img {
  width: 100%;
  height: auto;
  display: block;
}
.sauna2508 .quality .link {
  margin: 20px auto;
  text-align: center;
}
@media screen and (max-width: 985px) {
  .sauna2508 .quality .dec01 .inner {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sauna2508 .quality .dec01 picture img {
    width: 80%;
    height: auto;
    display: block;
    margin: 20px auto 60px;
  }
  .sauna2508 .quality .dec02 h3 {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
  }
  .sauna2508 .quality .dec02 .imggird {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   安心サポート
============================ */
.sauna2508 .support .inner {
  max-width: 800px;
}
.sauna2508 .support h3 {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--font-family-m);
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.sauna2508 .support article {
  margin: 2rem auto 4rem;
}
.sauna2508 .support article p {
  font-size: 1.4rem;
  font-weight: bold;
  width: 90%;
  height: auto;
  margin: 0 auto 2rem;
}
.sauna2508 .support article .cal2 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  width: 90%;
  height: auto;
  margin: 2rem auto;
}
.sauna2508 .support article .cal2 picture {
  display: block;
  max-width: 100%;
}
.sauna2508 .support article .cal2 img {
  width: 100%;
  height: auto;
  max-width: 225px; /* ←画像サイズはお好みで */
  display: block;
}
.sauna2508 .support article p {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 985px) {
  .sauna2508 .support .inner {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sauna2508 .support h3 {
    font-size: clamp(2rem, 2.5vw, 2.2rem);
    text-align: center;
  }
  .sauna2508 .support article p {
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .sauna2508 .support article .cal2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    justify-items: center;
    padding: 1rem;
    width: 100%;
    height: auto;
    margin: 2rem auto;
  }
  .sauna2508 .support article .cal2 picture {
    order: 2; /* ←画像を後に */
  }
  .sauna2508 .support article .cal2 p {
    order: 1; /* ←テキストを先に */
  }
}
/* ===========================
   動画で見る爽快森のサウナ
============================ */
.sauna2508 .sns {}
.sauna2508 .sns .inner {}
.sauna2508 .sns h3 {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--font-family-m);
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.sauna2508 .sns article {
  margin: 2rem auto 4rem;
}
.sauna2508 .sns .dec01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 20px;
  margin: auto;
}
.sauna2508 .sns .dec01 .video-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}
/* Instagram*/
.sauna2508 .sns .dec01 .instagram {
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.sauna2508 .sns .dec01 .instagram-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  justify-content: center;
  align-content: center;
  flex-direction: row;
  padding: 12px 16px;
  flex-wrap: nowrap;
}
.sauna2508 .sns .dec01 .instagram-link:hover {
  opacity: 0.9;
  background-color: #D8C5AC;
  border-radius: 8px;
  transition: background-color 0.3s, opacity 0.3s;
}
/* アイコンサイズ調整 */
.sauna2508 .sns .dec01 .insta-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}
/* テキスト部分 */
.sauna2508 .sns .dec01 .insta-text {
  font-size: 2.6rem;
  text-align: center;
}
.sauna2508 .sns .dec01 .insta-text span {
  font-size: 2.4rem;
  text-align: center;
}
/* スマホ用レスポンシブ */
@media (max-width: 750px) {
  .sauna2508 .sns .dec01 {
    grid-template-columns: 1fr;
  }
  .sauna2508 .sns .dec01 .instagram {
    aspect-ratio: auto;
    height: auto;
    padding: 20px 0;
  }
  .sauna2508 .sns .dec01 .insta-icon img {
    width: 50px;
    height: 50px;
  }
  .sauna2508 .sns .dec01 .insta-text {
    font-size: 1.6rem;
  }
  .sauna2508 .sns .dec01 .insta-text span {
    font-size: 1.4rem;
  }
  .sauna2508 .sns .dec01 .video-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9比率 */
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }
  .sauna2508 .sns .dec01 .video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
}
/* ===========================
   よくある質問
============================ */
.sauna2508 .faq .faq-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  font-family: sans-serif;
}
.sauna2508 .faq .faq-item {
  padding: 1rem 0;
}
.sauna2508 .faq .faq-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  position: relative;
}
.sauna2508 .faq .faq-label {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-right: 0.25rem;
  margin-left: -3rem;
}
.sauna2508 .faq h3.faq-question {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
  margin: 0;
}
.sauna2508 .faq .faq-toggle {
  margin-left: auto;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.sauna2508 .faq .faq-answer {
  margin-top: 0.75rem;
  display: none;
  line-height: 1.6;
  font-size: 1.4rem;
}
.sauna2508 .faq .faq-item.open .faq-answer {
  display: block;
}
.sauna2508 .faq .faq-item.open .faq-toggle {
  content: '−';
}
@media screen and (max-width: 1100px) {
  .sauna2508 .faq .faq-list {
    max-width: 80%;
    margin: 20px auto;
  }
}
@media screen and (max-width: 985px) {
  .sauna2508 .faq .faq-label {
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.5;
    margin-right: 0.25rem;
    margin-left: -3rem;
  }
  .sauna2508 .faq h3.faq-question {
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.5;
    margin: 0;
  }
  .sauna2508 .faq .faq-answer {
    margin-top: 0.75rem;
    display: none;
    line-height: 1.6;
    font-size: 1.6rem;
  }
}
/* ===========================
   運用までの流れ
============================ */
.sauna2508 .flow picture img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .sauna2508 .flow picture img {
    width: 70%;
    height: auto;
    display: block;
    max-width: 70%;
    margin: 10px auto;
  }
}
/* ===========================
   今すぐ無料相談・資料請求
============================ */
.sauna2508 .contact .inner {
  max-width: 900px;
}
.sauna2508 .contact .wpcf7 {
  background: none;
  border: none;
  font-size: 2.8rem;
  color: #000000;
  margin: 0 0 2.5em !important;
  padding: 0;
  width: 100%;
}
.sauna2508 .contact .wpcf7 table th {
  width: 40%;
}
.sauna2508 .contact .wpcf7 table td {
  width: 60%;
}
.sauna2508 .contact .wpcf7 p {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.sauna2508 .contact .wpcf7 select, .sauna2508 .contact .wpcf7 .wpcf7-list-item-label {
  font-size: 1.8rem;
}
.sauna2508 .contact .wpcf7 a {
  font-size: 1.8rem;
}
.sauna2508 .contact .sub-btn {
  background-color: #f6a828;
  color: #000;
  font-weight: bold;
  font-size: 2.0rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
  text-align: center;
}
.sauna2508 .contact .sub-btn:hover {
  background-color: #e2941c;
}
.sauna2508 .contact .pcf7-list-item-label {
  font-size: 1.6rem;
}
@media screen and (max-width: 985px) {
  .sauna2508 .wpcf7 form {
    margin: 1.5em 0.2em 0;
  }
  /* ラジオボタン本体のサイズを拡大 */
  .sauna2508 .contact .wpcf7 input[type="radio"] {
    width: 1.6em;
    height: 1.6em;
    vertical-align: middle;
    accent-color: #333; /* 必要なら色も指定（対応ブラウザのみ） */
  }
  /* ラベルの文字と間隔調整 */
  .sauna2508 .contact .wpcf7 .wpcf7-list-item-label {
    font-size: 1.6rem;
    margin-left: 0.4em;
    vertical-align: middle;
  }
  .sauna2508 .contact .inner {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sauna2508 .contact .wpcf7 p {
    margin-bottom: 1rem;
  }
  .sauna2508 .contact .wpcf7 select, .sauna2508 .contact .wpcf7 .wpcf7-list-item-label {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .sauna2508 .contact .wpcf7 table tr {
    display: block;
    margin-bottom: 1.5rem;
  }
  .sauna2508 .contact .wpcf7 table th, .sauna2508 .contact .wpcf7 table td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .sauna2508 .contact .wpcf7 table th {
    margin-bottom: 0.25em;
    font-weight: bold;
    text-align: left;
  }
  .sauna2508 .contact .wpcf7 table td {
    margin-bottom: 1em;
  }
}
/* ===== ネストされた日時テーブルの整列用 ===== */
.sauna2508 .contact .wpcf7 table {
  border-collapse: separate;
  border-spacing: 0 1.5em;
}
.time-request-cell {
  vertical-align: middle;
}
.time-request-heading {
  font-weight: bold;
  display: block;
  margin-top: 1.5em; /* ← これが重要！ */
  margin-bottom: 0.5em;
  font-size: 1.6rem;
}
.time-request-table {
  width: 100%;
  border-collapse: collapse;
}
.time-request-table td {
  padding: 0.3em 0;
  font-size: 1.6rem;
  vertical-align: middle;
}
.time-request-table .time-label {
  width: 25%;
  white-space: nowrap;
  padding-right: 1em;
}
.time-request-table .time-input input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* スマホ表示：1列縦並びに切り替え */
@media screen and (max-width: 968px) {
  .sauna2508 .contact .wpcf7 table {
    border-collapse: separate;
    border-spacing: 0em;
  }
  /* 全体の行間を整える */
  .sauna2508 .contact .wpcf7 table tr {
    margin-bottom: 0em;
  }
  .sauna2508 .contact .wpcf7 table th {
    padding: 0;
    font-size: 2rem;
  }
  .sauna2508 .contact .wpcf7 table td {
    padding: 0 1.2em 0;
  }
  /* ラジオボタンと商品名の間をあける */
  .sauna2508 .contact .wpcf7 td .wpcf7-form-control-wrap {
    display: block;
    margin-top: 0.5em;
  }
  /* オンライン説明セクションの見出しっぽく */
  .sauna2508 .contact .wpcf7 th:has(br) {
    font-size: 2rem;
    margin-top: 1em;
    margin-bottom: 1em;
    padding-bottom: 0em;
    border-bottom: 1px solid #ccc;
  }
  /* ご希望の日時ラベルを大きめにして区切りを明確に */
  .time-request-heading {
    font-weight: bold;
    font-size: 1.6rem;
    margin: 1.2em 0 0.8em;
    display: block;
  }
  /* 各希望入力欄の間隔を整える */
  .time-request-table .time-input {
    margin-bottom: 1em;
  }
  /* フォーム入力欄の高さ調整 */
  .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea {
    padding: 0.7em;
    font-size: 1.6rem;
    width: 100%;
    box-sizing: border-box;
  }
  .sauna2508 .contact .wpcf7 select, .sauna2508 .contact .wpcf7 .wpcf7-list-item-label {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}


/* ===============================
   CF7 ラジオ・チェック 安定レイアウト
   （PC/スマホ共通・サイズ統一・左端揃え）
   =============================== */
.cf7-sauna{
  --ctrl-size: 22px;      /* 〇/□の外側サイズ */
  --dot-size: 10px;       /* ラジオ選択時の内側ドット */
  --gap: 10px;            /* 〇/□ とテキストの間隔 */
  --border-color: #555;
  --active-color: #333;   /* 選択時の色 */
  --bg: #fff;
}

/* 1) 必ず縦並びに（テーマのinline指定を上書き） */
.cf7-sauna .wpcf7-radio,
.cf7-sauna .wpcf7-checkbox{
  display:block !important;
  white-space: normal;
}
.cf7-sauna .wpcf7-list-item{
  display:block !important;
  margin: 10px 0 !important;
  line-height: 1.6;
}
.cf7-sauna .wpcf7-list-item + .wpcf7-list-item{ margin-top: 8px !important; }

/* 2) ラベル内部を揃える（左に固定幅カラムを用意） */
.cf7-sauna .wpcf7-list-item label{
  display:grid !important;
  grid-template-columns: var(--ctrl-size) 1fr;
  align-items:center;
  gap: var(--gap);
}

/* 3) デフォルトUIを捨てて自前描画（拡大scaleは使わない） */
.cf7-sauna input[type="radio"],
.cf7-sauna input[type="checkbox"]{
  -webkit-appearance: none;
  appearance: none;
  width: var(--ctrl-size);
  height: var(--ctrl-size);
  margin: 0;
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border-color);
  outline: none;
  box-sizing: border-box;
}

/* ラジオ（〇） */
.cf7-sauna input[type="radio"]{ border-radius: 50%; }
.cf7-sauna input[type="radio"]:checked::after{
  content:"";
  position:absolute;
  left:50%; top:50%;
  width: var(--dot-size);
  height: var(--dot-size);
  transform: translate(-50%,-50%);
  border-radius:50%;
  background: var(--active-color);
}

/* チェックボックス（□） */
.cf7-sauna input[type="checkbox"]{ border-radius: 4px; }
.cf7-sauna input[type="checkbox"]:checked::after{
  content:"";
  position:absolute;
  left:50%; top:50%;
  width: 12px; height: 12px;            /* 塗りつぶしタイプ */
  transform: translate(-50%,-50%);
  border-radius: 2px;
  background: var(--active-color);
}

/* 4) フォーカス/ホバー（アクセシビリティ） */
.cf7-sauna input[type="radio"]:focus,
.cf7-sauna input[type="checkbox"]:focus{
  box-shadow: 0 0 0 3px rgba(0,0,0,.12);
  border-color: var(--active-color);
}
.cf7-sauna .wpcf7-list-item label:hover input[type="radio"],
.cf7-sauna .wpcf7-list-item label:hover input[type="checkbox"]{
  border-color: var(--active-color);
}

/* 5) モバイルは少しだけ広げる（タップしやすく） */
@media (max-width: 768px){
  .cf7-sauna{ --ctrl-size: 24px; --dot-size: 12px; --gap: 12px; }
  .cf7-sauna .wpcf7-list-item{ margin: 12px 0 !important; }
}


/* ===========================
   フッター部分
============================ */
.sauna2508 footer {
  padding: 2rem 1rem;
  font-size: 13px;
}
.sauna2508 footer .footer-title {
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.sauna2508 footer p {
  font-weight: 500;
  font-size: 1.2rem;
  white-space: nowrap;
}
.sauna2508 footer p.thanks {
  font-weight: bold;
  font-size: 2.4rem;
  white-space: nowrap;
}
.sauna2508 footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 1.5rem;
}
.sauna2508 footer .footer-grid .footer-col.image img {
  width: 320px;
  height: auto;
  display: block;
}
.sauna2508 footer .footer-grid .footer-col.logo img {
  width: 289px;
  height: auto;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1000px) {
  .sauna2508 footer .footer-title {
    font-weight: bold;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .sauna2508 footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .sauna2508 footer .footer-grid .footer-col.image img, .sauna2508 footer .footer-grid .footer-col.logo img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
  .sauna2508 footer p {
    white-space: normal; /* 折り返し可能にする */
    text-align: center;
  }
  .sauna2508 footer p.thanks {
    font-size: 2rem;
    margin: 1rem 0;
  }
  .sauna2508 footer .footer-col.logo {
    padding: 1rem 0;
  }
}