@charset "UTF-8";

/* ==========================================================================
   和室特集 (Washitsu Feature) Style
   秋のこたつ先取り＆和室インテリア特集 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. 基本設定・変数・リセット
   -------------------------------------------------------------------------- */
:root {
  --w-bg-base: #dae5db;
  /* 全体背景色（セージグリーン） */
  --w-bg-white: #ffffff;
  --w-bg-card: #f8f9f6;
  --w-bg-sidebar: #e9e8e3;
  /* サイドバー背景色（薄グレーベージュ） */
  --w-color-primary: #35523f;
  /* メイン深緑 */
  --w-color-primary-hover: #1e3628;
  --w-color-accent: #788a75;
  --w-color-text: #2c332e;
  /* 本文墨色 */
  --w-color-text-sub: #49544c;
  --w-color-border: #b8c4b4;
  --w-color-border-light: #d8e0d6;

  --w-font-serif: 'Noto Serif JP', 'Shippori Mincho', 'Yu Mincho', serif;
  --w-font-sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --w-font-en: 'Cinzel', 'Lexend Giga', serif;
}

p{
  font-size: 15px;
}

#bigcontainer {
  background-color: var(--w-bg-base);
  width: 100%;
  margin: 0;
  padding: 0;
}

.washitsu-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: var(--w-bg-base); /* グラデーション廃止 → セクション背景で千鳥を表現 */
  color: var(--w-color-text);
  font-family: var(--w-font-serif);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.washitsu-wrapper * {
  box-sizing: border-box;
}

/* 欧文フォント */
.font-cinzel {
  font-family: var(--w-font-en);
}

.font-lexend {
  font-family: 'Lexend Giga', sans-serif;
}

/* --------------------------------------------------------------------------
   1. レイアウト構造 (PC: 左右余白ゼロ・2カラムメイン＋サイドバー)
   -------------------------------------------------------------------------- */
.washitsu-main-container {
  /* flexを廃止してblockに。サイドバーをabsoluteで右端に浮かせ、
     セクションが全幅の背景を持てるようにする（千鳥配置の実現）。 */
  display: block;
  width: 100%;
  position: relative;
}

.washitsu-content {
  width: 100%; /* サイドバーがabsoluteになるため全幅に */
  min-width: 0;
}

/* --------------------------------------------------------------------------
   2. PC用 右側固定追従サイドバー (Sticky) - 囲い枠なし・フラットデザイン
   -------------------------------------------------------------------------- */
.washitsu-sidebar {
  /* 全幅千鳥配置のためabsoluteで右端に固定 */
  position: absolute;
  right: 0;
  top: 0;
  width: 21.98%;
  height: 100%;
  background-color: var(--w-bg-sidebar);
}

.sticky-nav-card {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  /* サイト共通ヘッダーの下に余裕を持って追従 */
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 60px 30px 45px 35px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 10;
}

.sticky-nav-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sticky-nav-item {
  display: block;
  text-decoration: none;
  color: var(--w-color-text);
  transition: all 0.25s ease;
  padding-bottom: 0;
  border-bottom: none;
}

.sticky-nav-item:hover {
  opacity: 0.75;
  transform: translateX(2px);
}

.nav-badge {
  display: inline-block;
  background-color: var(--w-color-primary);
  color: #ffffff;
  font-size: 13px;
  font-family: var(--w-font-en);
  /* 明朝体欧文フォント (Cinzel) */
  font-weight: 600;
  padding: 3px 10px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.nav-text {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #444a45;
  font-family: var(--w-font-serif);
}

.nav-text strong {
  display: block;
  font-size: 18px;
  color: #2c332e;
  font-weight: 500;
  margin-top: 4px;
  font-family: var(--w-font-serif);
  letter-spacing: 0.02em;
}

.sticky-nav-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-category-link {
  display: block;
  width: 100%;
  padding: 14px 12px;
  background-color: transparent;
  border: 1px solid var(--w-color-primary);
  color: var(--w-color-primary);
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  font-family: var(--w-font-serif);
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
}

.btn-category-link:hover {
  background-color: var(--w-color-primary);
  color: #ffffff;
}

/* SP専用 セクション下部リンクボタン（PCでは非表示） */
.section-more-area {
  display: none;
  margin-top: 24px;
  flex-direction: column;
  gap: 10px;
}

.btn-more-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background-color: var(--w-color-primary);
  color: #ffffff !important;
  font-size: 13.5px;
  text-decoration: none;
  font-family: var(--w-font-sans);
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}

.btn-more-link::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(45deg);
  margin-right: 4px;
  transition: transform 0.25s ease;
}

.btn-more-link:hover {
  background-color: var(--w-color-primary-hover);
  color: #ffffff !important;
}

.btn-more-link:hover::after {
  transform: translateX(3px) rotate(45deg);
}

/* --------------------------------------------------------------------------
   3. TOP ヒーローエリア
   -------------------------------------------------------------------------- */
.washitsu-hero {
  width: 100%;
  aspect-ratio: 1502 / 882;
  height: auto;
  position: relative;
  overflow: hidden;
  background-color: var(--w-bg-base);
  margin-bottom: 0 !important;
}

.hero-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* SVGロゴ＆キャッチコピー オーバーレイ (PC: 左上配置) */
.hero-logo-overlay {
  position: absolute;
  top: 10.54%;
  left: 4.26%;
  width: 32.22%;
  max-width: 484px;
  min-width: 260px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}

.hero-logo-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   4. ABOUT THIS FEATURE (導入文エリア) - カンプ準拠: 全面淡い和室写真背景
   -------------------------------------------------------------------------- */
.washitsu-about {
  width: 100%;
  padding: 110px 60px 110px 100px;
  background: #fbfbf9 url(img/about_pc.jpg) no-repeat right center / cover;
  border-top: none;
  border-bottom: 1px solid var(--w-color-border-light);
  position: relative;
}

.about-inner {
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 34px;
  letter-spacing: 0.18em;
  color: var(--w-color-primary);
  margin: 0 0 38px 0;
  font-weight: 500;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
  line-height: 1.2;
}

.about-body {
  font-size: 14.5px;
  line-height: 2.2;
  color: #333333;
  letter-spacing: 0.06em;
}


.about-body p {
  font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 1.9em;
}

.about-lead {
  margin-bottom: 20px;

}

.about-quote {
  margin: 20px 0;
  color: #333333;
  padding-left: 0;
  border-left: none;
  line-height: 2.2;
}

.about-desc {
  margin-bottom: 0;
}

.sp-only, br.sp, .sp {
  display: none !important;
}

.pc-only, br.pc, .pc {
  display: block !important;
}

/* --------------------------------------------------------------------------
   5. セクション共通（Section 1〜4）千鳥配置・縦書き見出し
   -------------------------------------------------------------------------- */

#section1,#section3{
  background: #d6e3d7;
}

#section2,#section4{
  background: #c6d2c7;
}

/* --------------------------------------------------------------------------
   5. セクション共通（Section 1〜4）千鳥配置・カンプ準拠縦書き見出し
   -------------------------------------------------------------------------- */


section{
  margin-bottom: 0px!important;
}

.washitsu-section {
  display: flex;
  width: 100%;
  /* 右paddingにサイドバー幅(21.98%)を加算してコンテンツが侵食されないようにする */
  padding: 100px calc(35% + 40px) 100px 100px;
  position: relative;
  gap: 48px;
  align-items: flex-start;
  /* max-width / margin:auto を廃止 → 背景が全幅に広がるようにする */
}

/* Section 1, 3: 右側見出し / 左側コンテンツ */
.section-layout-right {
  flex-direction: row-reverse;
}

/* Section 2, 4: 左側見出し / 右側コンテンツ */
.section-layout-left {
  flex-direction: row;
}

/* 縦書き見出しラッパー (PC: 右端に縦長バッジ、中央にサブ見出し、左にメイン見出し) */
.section-title-wrap {
  display: flex;
  flex-direction: row-reverse;
  /* 右から左へ配置：バッジ → サブ → メイン */
  align-items: flex-start;
  gap: 16px;
  padding-top: 0;
  flex-shrink: 0;
}

.section-badge {
  background-color: var(--w-color-primary);
  color: #ffffff !important;
  font-size: 13px;
  font-family: var(--w-font-en);
  /* 明朝体欧文フォント (Cinzel) */
  font-weight: 500;
  padding: 18px 6px;
  letter-spacing: 0.08em;
  text-align: center;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: sideways;
  /* 欧文を時計回りに90度倒して縦に流す */
  -webkit-text-orientation: sideways;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  width: auto;
  line-height: 1;
}

.vertical-text {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-text-orientation: upright;
  font-family: var(--w-font-serif);
  display: block;
  /* 縦書きの自然な右→左の2列改行を有効化 */
  margin: 0;
  padding-top: 46px;
  /* バッジより約46px下げて配置 */
}

.section-heading .sub {
  display: block;
  /* 1列目（右列） */
  font-size: 20px;
  color: var(--w-color-primary);
  /* 深緑 */
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.4;
  margin: 0 0 0 18px;
  /* 左隣のメイン見出しとの列間余白 */
  padding: 0;
}

.section-heading .main {
  display: block;
  /* 2列目（左列） */
  font-size: 34px;
  color: var(--w-color-primary);
  /* 深緑 */
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}

/* コンテンツ本体ラッパー */
.section-content-wrap {
  flex: 1;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   6. メインスライダー（Swiper 制御）
   -------------------------------------------------------------------------- */
.section-slider-container {
  width: 100%;
  margin-bottom: -2px;
  /* 隙間をゼロに */
  position: relative;
  overflow: hidden;
  background-color: transparent;
  /* 黒背景を撤廃 */
}

.section-slider-container .swiper-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.section-slider-container .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* --------------------------------------------------------------------------
   7. ご購入ボタン (深緑の帯ボタン・カンプ準拠の極細ロング矢印)
   -------------------------------------------------------------------------- */
.btn-purchase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--w-color-primary);
  color: #ffffff !important;
  padding: 30px 28px;
  text-decoration: none;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.btn-purchase .btn-text {
  font-size: 13.5px;
  letter-spacing: 0.12em;
  font-family: var(--w-font-sans);
  color: #ffffff !important;
}

.btn-purchase .btn-arrow-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
}

.btn-purchase .btn-arrow-svg {
  width: 40px;
  height: 12px;
  display: block;
  stroke: #ffffff !important;
  color: #ffffff !important;
  transition: transform 0.3s ease;
}

.btn-purchase:hover {
  background-color: var(--w-color-primary-hover);
  color: #ffffff !important;
  opacity: 0.95;
}

.btn-purchase:hover .btn-text {
  color: #ffffff !important;
}

.btn-purchase:hover .btn-arrow-svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   8. 商品説明文
   -------------------------------------------------------------------------- */
.section-desc {
  line-height: 2.0;
  color: var(--w-color-text);
  margin-bottom: 50px;
  letter-spacing: 0.04em;
}

.section-desc p {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.9em;
}

/* --------------------------------------------------------------------------
   8.5 お部屋の広さで選ぶ こたつサイズ目安ガイド (フラットデザイン)
   -------------------------------------------------------------------------- */
.kotatsu-size-guide {
  width: 100%;
  margin: 10px 0 50px 0;
}

.size-guide-header {
  text-align: center;
  margin-bottom: 36px;
}

.size-guide-badge {
display: inline-block;
    color: #2f5340;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--w-font-en);
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 9999px;
    border: 1px solid;
}

.size-guide-title {
  font-size: 19px;
  font-weight: 600;
  color: #2c332e;
  font-family: var(--w-font-serif);
  letter-spacing: 0.05em;
  margin: 10px 0 0 0;
  line-height: 1.4;
  text-align: center;
}

.size-guide-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* カード本体 (影・罫線なしのフラット白背景) */
.size-guide-card {
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 40px 22px 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* カード上部のカプセル型（ピル）バッジ (影なし) */
.card-pill-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--w-color-primary);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.card-room-sub {
  font-size: 16px;
  font-weight: 700;
  color: #2c332e;
  text-align: center;
  margin-bottom: 8px;
  font-family: var(--w-font-serif);
  letter-spacing: 0.04em;
}

.card-room-lead {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.65;
  text-align: center;
  margin: 0 0 16px 0;
}

/* 点線の仕切り線 */
.card-divider {
  border-top: 1px dashed #d8e0d8;
  margin: 0 0 16px 0;
  width: 100%;
}

/* スペックリストラッパー */
.size-spec-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* 各スペックアイテム（罫線なし・やわらかな背景色のみ） */
.size-spec-item {
  background-color: #f5f8f5;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  text-align: left;
}

.spec-label {
  display: inline-block;
  background-color: var(--w-color-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.spec-size {
  font-size: 14.5px;
  font-weight: 600;
  color: #2c332e;
  margin-bottom: 4px;
  line-height: 1.3;
}

.spec-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--w-color-primary);
  font-family: var(--w-font-serif);
  margin: 0 2px;
  display: inline-block;
}

.spec-note {
  font-size: 12.5px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. こちらもおすすめエリア (サムネイル＋価格＋在庫なし)
   -------------------------------------------------------------------------- */
.recommend-area {
  width: 100%;
  margin-top: 20px;
}

.recommend-title {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--w-color-text);
  margin: 0 0 30px 0;
  letter-spacing: 0.08em;
}

.recommend-title span {
  font-size: 18px;
  padding-right: 12px;
  white-space: nowrap;
}

.recommend-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--w-color-border);
}

.recommend-group {
  margin-bottom: 36px;
}

.recommend-group:last-child {
  margin-bottom: 0;
}

.recommend-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--w-color-text);
  margin: 0 0 16px 0;
  padding-left: 10px;
  border-left: 3px solid var(--w-color-primary);
  letter-spacing: 0.06em;
  line-height: 1.3;
  font-family: var(--w-font-serif);
}

.recommend-subtitle span {
  display: inline-block;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* おすすめ商品カード */
.recommend-card {
  display: block;
  text-decoration: none;
  color: var(--w-color-text);
  border: none;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.recommend-card:hover {
opacity: 0.8;
}

.recommend-thumb-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  /* 1:1 正方形 */
}

.recommend-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}



/* 在庫なしバッジ / オーバーレイ */
.soldout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.soldout-badge {
  background-color: #8c2323;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  font-family: var(--w-font-sans);
}


.recommend-info {
  padding: 10px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recommend-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--w-color-text);
  font-family: var(--w-font-sans);
  letter-spacing: 0.02em;
}

.recommend-price span {
  font-size: 15px;
}

.recommend-shipping {
  background-color: var(--w-color-primary);
  color: #ffffff;
  font-size: 10px;
  font-family: var(--w-font-sans);
  letter-spacing: 0.08em;
  padding: 3px 7px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   10. 座椅子特集バナー (Section 2 下部)
   -------------------------------------------------------------------------- */
.feature-banner-area {
  width: 100%;
  margin-top: 30px;
}

.feature-banner-link {
  display: block;
  background-color: var(--w-color-accent);
  color: #ffffff !important;
  text-decoration: none;
  padding: 40px 24px;
  transition: all 0.3s ease;
}

.feature-banner-link:hover {
  background-color: #7e917b;
  color: #ffffff !important;
}

.feature-banner-link:hover * {
  color: #ffffff !important;
}

.feature-banner-link .btn-arrow-svg {
  width: 72px;
  height: 12px;
  display: block;
  stroke: #ffffff !important;
  color: #ffffff !important;
  transition: transform 0.3s ease;
}

.feature-banner-link:hover .btn-arrow-svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
  transform: translateX(6px);
}

.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-badge {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #ffffff !important;
}

.badge-sub {
  font-size: 11px;
  font-family: var(--w-font-sans);
  letter-spacing: 0.05em;
  color: #ffffff !important;
}

.badge-main {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff !important;
}

.badge-small {
  font-size: 11px;
  font-family: var(--w-font-sans);
  letter-spacing: 0.05em;
  color: #ffffff !important;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-family: var(--w-font-sans);
  letter-spacing: 0.08em;
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   10. 各セクション末尾 FAQ アコーディオン (AEO・SEO対策)
   -------------------------------------------------------------------------- */
.section-faq-wrap {
  width: 100%;
  margin-top: 36px;
}

.section-faq {
  background-color: #ffffff;
  border-radius: 6px;
  border: none;
  box-shadow: none;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: 15px;
  font-weight: 600;
  color: #2c332e;
  line-height: 1.5;
  transition: background-color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background-color: #fafbfa;
}

.faq-q-badge {
  font-family: var(--w-font-en);
  font-size: 18px;
  font-weight: 700;
  color: #0088cc;
  flex-shrink: 0;
  line-height: 1;
}

.faq-q-text {
  flex: 1;
  letter-spacing: 0.02em;
}

/* 開閉トグルアイコン (＋ / ×) */
.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #0088cc;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

/* 開いた状態 (＋ が × に回転) */
.section-faq[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 24px 22px 24px;
  border-top: 1px solid #f0f0f0;
  background-color: #ffffff;
}

.faq-a-badge {
  font-family: var(--w-font-en);
  font-size: 18px;
  font-weight: 700;
  color: #e85a5a;
  flex-shrink: 0;
  line-height: 1.3;
}

.faq-a-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.85;
  color: #444444;
  letter-spacing: 0.03em;
}

.faq-a-text p {
  margin: 0 0 10px 0;
}

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

/* --------------------------------------------------------------------------
   11. レスポンシブ対応 (タブレット・スマートフォン)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .washitsu-wrapper {
    background: var(--w-bg-base);
  }

  .washitsu-sidebar {
    display: none;
    /* タブレット以下では追従メニューを非表示 */
  }

  .washitsu-content {
    flex: 0 0 100%;
    width: 100%;
  }

  .washitsu-main-container {
    /* タブレット以下ではabsoluteサイドバーも非表示なので通常のblock */
  }

   .washitsu-section {
    padding: 80px calc(10% + 40px) 80px 80px;
   }
}

@media screen and (max-width: 768px) {

.recommend-title span {
    font-size: 14px;
  }

  .sp-only {
    display: block !important;
  }

  .pc-only {
    display: none !important;
  }

  .washitsu-wrapper {
    padding-bottom: 0px;
  }

  /* SP ヒーローロゴ (中央・座椅子上部に配置・カンプ準拠) */
  .hero-logo-overlay {
    top: auto;
    bottom: 51%;
    left: 50%;
    transform: translateX(-50%);
    width: 68%;
    max-width: 420px;
    min-width: 240px;
  }

  .washitsu-hero {
    aspect-ratio: 656 / 1264;
    height: auto;
    max-height: calc(100vh - 100px);
    min-height: 480px;
  }

  .sp-only, br.sp, .sp {
    display: block !important;
  }

  .pc-only, br.pc, .pc {
    display: none !important;
  }

  /* ABOUTエリア (SP: 白背景＋2行見出し＋下線＋下部ふんわり座椅子写真) */
  .washitsu-about {
    padding: 60px 24px 0 24px;
    background: #ffffff;
    border-top: none;
    border-bottom: 1px solid var(--w-color-border-light);
    overflow: hidden;
  }

  .about-inner {
    max-width: 100%;
  }

  .about-title {
    font-size: 26px;
    line-height: 1.35;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
    border-bottom: 1px solid #788a75;
    padding-bottom: 14px;
  }

  .about-body {
    font-size: 13.5px;
    line-height: 2.1;
    color: #333333;
  }

  .about-image-sp {
    width: calc(100% + 48px);
    margin-top: -222px;
    margin-left: -24px;
    margin-right: -24px;
  }

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

  /* 各セクション 縦積みレイアウトへ */
  .washitsu-section {
    flex-direction: column !important;
    padding: 24px 20px 40px;
    gap: 16px;
    
  }

  .section-title-wrap {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    gap: 4px;
  }

.about-body p {
  font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1.9em;
}

.section-desc p {
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1.9em;
}


  .section-badge {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    width: auto;
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    margin-bottom: 2px;
  }

  .vertical-text {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 0;
  }

  .section-heading .sub {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
  }

  .section-heading .main {
    font-size: 19px;
    line-height: 1.4;
  }

  .section-content-wrap {
    width: 100%;
  }

  .btn-purchase {
    padding: 15px 18px;
    font-size: 12px;
  }

  .section-desc {
    font-size: 12.5px;
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recommend-group {
    margin-bottom: 24px;
  }

  .recommend-subtitle {
    font-size: 13.5px;
    margin-bottom: 12px;
    padding-left: 8px;
    border-left-width: 2.5px;
  }

  .section-more-area {
    display: flex;
  }

  /* SP用 サイズ選びガイド調整 (リッチカード) */
  .kotatsu-size-guide {
    margin: 50px 0 50px 0;
  }

  .size-guide-header {
    margin-bottom: 26px;
  }

  .size-guide-title {
    font-size: 15.5px;
  }

  .size-guide-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .size-guide-card {
    padding: 28px 16px 18px 16px;
  }

  .card-pill-badge {
    font-size: 12px;
    padding: 4px 18px;
    top: -13px;
  }

  .card-room-sub {
    font-size: 14.5px;
  }

  .card-room-lead {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .size-spec-item {
    padding: 12px 14px;
  }

  .spec-size {
    font-size: 13.5px;
  }

  .spec-num {
    font-size: 19px;
  }

  /* SP用 FAQアコーディオン調整 */
  .section-faq-wrap {
    margin-top: 24px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 13.5px;
    gap: 8px;
  }

  .faq-q-badge {
    font-size: 16px;
  }

  .faq-answer {
    padding: 14px 16px 18px 16px;
    gap: 8px;
  }

  .faq-a-badge {
    font-size: 16px;
  }

  .faq-a-text {
    font-size: 12.5px;
    line-height: 1.75;
  }
}