/* ============================================================
   voice.css  —  voice.html 専用スタイル
   ============================================================ */

html {
  scroll-behavior: smooth;
}

/* ── 中央装飾付き区切り線 ────────────────────────
   使い方：
   <div class="c-divider-diamond">
     <span class="c-divider-diamond__rhombus"></span>
   </div>
   ─────────────────────────────────────────────── */
.c-divider-diamond {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto;
  padding: 0 40px;
}

.c-divider-diamond::before,
.c-divider-diamond::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #1a6b5e;
}

.c-divider-diamond__rhombus {
  width: 12px;
  height: 12px;
  background: #0d5d4f;
  transform: rotate(45deg);
  flex: none;
  display: block;
}

@media screen and (max-width: 767px) {
  .c-divider-diamond {
    margin: 32px auto;
    padding: 0 20px;
  }
}

/* ── ヒーロー ─────────────────────────────────── */
.p-voice-hero-head {
  font-family: 'Shippori Mincho B1', serif;
  letter-spacing: 0.08em;
}

/* ── イントロセクション ──────────────────────── */
/* イントロ〜CHAPTER01 共通背景ラッパー */
.p-voice-texture-bg {
  background-image: url(../img/voice/voice_bg_texture.jpg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.p-voice-intro {
  padding: 72px 16px 64px;
  text-align: center;
}

.p-voice-intro__en {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3a7a65;
  display: block;
  margin-bottom: 20px;
}

.p-voice-intro__ja {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #888;
  display: block;
  margin-bottom: 36px;
}

.p-voice-intro__text {
  font-size: 17px;
  line-height: 2.2;
  color: #3a7a65;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* チャプターナビ 3列 */
.p-voice-chapnav {
  display: flex;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.p-voice-chapnav__item {
  flex: 1;
}

.p-voice-chapnav__link {
  display: block;
  transition: opacity 0.2s;
}

.p-voice-chapnav__link:hover {
  opacity: 0.85;
}

.p-voice-chapnav__img {
  width: 100%;
  display: block;
}

/* ── カード（CHAPTER01全体） ─────────────────── */
.p-voice-chap-card {
  background: #d4e6e3;
  border-radius: 0;
  margin: 0 100px;
  overflow: hidden;
}

/* ── 座布団パネル（見出しブロック） ─────────── */
.p-voice-chap-panel {
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 48px 64px;
  text-align: center;
}

/* カード内パネルは左寄せ・フル幅 */
.p-voice-chap-card .p-voice-chap-panel {
  max-width: none;
  margin: 0 0 48px;
  padding: 48px 56px;
  text-align: left;
}

.p-voice-chap-card .p-voice-chap-intro {
  text-align: center;
}

/* カード内パネルの c-divider-diamond はパディング不要 */
.p-voice-chap-panel .c-divider-diamond {
  padding: 0;
  margin: 16px 0;
  max-width: none;
}

/* カード内 letter-spacing 調整 */
.p-voice-chap-card .p-voice-chap-head__label {
  letter-spacing: 0.08em;
}

.p-voice-chap-card .p-voice-chap-head__num {
  letter-spacing: 0;
}

/* 01 と右伸びの線を同一行に並べる */
.p-voice-chap-head__num-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

/* num-row 内の線（菱形なし） */
.p-voice-chap-head__num-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 108, 90, 0.35);
  display: block;
}

.p-voice-chap-panel .p-voice-chap-head {
  max-width: none;
  margin: 0;
  padding: 0;
}

.p-voice-chap-panel .p-voice-chap-head__title {
  margin-top: 8px;
}

.p-voice-chap-intro {
  font-size: 17px;
  font-weight: 700;
  line-height: 2.4;
  color: #006C5A;
  margin: 0 0 28px;
}

/* ── 横並びクォートレイアウト ─────────────────── */
.p-voice-quote-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 80px 56px;
}

.p-voice-quote-layout__text {
  flex: 1;
}

.p-voice-quote-layout__q {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.9;
  letter-spacing: -0.05em;
  color: #014555;
  margin-bottom: 20px;
}

.p-voice-quote-layout__attr {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

.p-voice-quote-layout__photo {
  width: 320px;
  flex: none;
  overflow: hidden;
  position: relative;
}

.p-voice-quote-layout__photo img {
  width: 100%;
  display: block;
  height: 250px;
  object-fit: cover;
  object-position: center top;
}

.p-voice-quote-layout__photo-cap {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* TOP3 内のキーワード強調 */
.p-voice-top3__title em {
  color: #006C5A;
  font-style: normal;
}

.p-voice-top3__sub-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.p-voice-top3__sub-list li {
  font-size: 20px;
  font-weight: 800;
  color: #555;
  line-height: 1.9;
  padding-left: 1em;
  text-indent: -1em;
}

.p-voice-top3__sub-list li::before {
  content: '・';
  color: #006C5A;
}

.p-voice-top3__sub-list em {
  color: #006C5A;
  font-style: normal;
}

/* ── チャプター共通 ────────────────────────────── */
.p-voice-chapter {
  padding: 80px 0 96px;
}

.p-voice-chapter--01 {
  background-image: url(../img/voice/voice_bg_texture.jpg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.p-voice-chapter--02 {
  background-image: url(../img/voice/voice_bg_texture.jpg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.p-voice-chap02-note {
  margin: 18px 100px 0;
  font-size: 11px;
  color: #666;
  line-height: 1.9;
}

.p-voice-chapter--03 {
  background-image: url(../img/voice/voice_bg_texture.jpg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  padding-bottom: 64px;
}

/* ── チャプター見出し ─────────────────────────── */
.p-voice-chap-head {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px 52px;
}

.p-voice-chap-head__label {
  display: block;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 12px;
  letter-spacing: 0.45em;
  color: #006C5A;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}

.p-voice-chap-head__num {
  font-family: 'Zen Old Mincho', serif;
  font-size: 80px;
  line-height: 0.9;
  color: #006C5A;
  display: block;
  letter-spacing: -0.02em;
}

.p-voice-chap-head__rule {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 24px 0;
}

.p-voice-chap-head__rule::before,
.p-voice-chap-head__rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 108, 90, 0.35);
}

.p-voice-chap-head__rhombus {
  width: 7px;
  height: 7px;
  background: #006C5A;
  transform: rotate(45deg);
  flex: none;
  display: block;
}

.p-voice-chap-head__title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 22px;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: block;
}

/* ── 本文ブロック ──────────────────────────────── */
.p-voice-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px 48px;
}

.p-voice-body--center {
  text-align: center;
}

.p-voice-body.p-voice-body--center p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.p-voice-body p {
  font-size: 15px;
  line-height: 2.3;
  color: #444;
  margin-bottom: 28px;
}

.p-voice-body p:last-child {
  margin-bottom: 0;
}

/* ── プルクォートボックス ─────────────────────── */
.p-voice-quote-box {
  background: #014555;
  padding: 52px 56px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.p-voice-quote-box__text {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 19px;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.p-voice-quote-box__attr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
  letter-spacing: 0.05em;
}

/* ── TOP3 ボックス ─────────────────────────────── */
.p-voice-white-panel {
  background: rgba(255, 255, 255, 0.88);
  margin: 0 80px 48px;
  padding: 40px 44px 20px;
}

/* 白座布団内の本文は文字間を狭める */
.p-voice-white-panel .p-voice-body p {
  letter-spacing: -0.02em;
}

/* 白座布団内コンテンツはmax-width・横paddingを解除してパネル幅に合わせる */
.p-voice-white-panel .p-voice-top3,
.p-voice-white-panel .p-voice-body,
.p-voice-white-panel .p-voice-photo-grid,
.p-voice-white-panel .p-voice-routemap,
.p-voice-white-panel .p-voice-city-photos {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.p-voice-white-panel .p-voice-top3 {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 8px;
}

.p-voice-white-panel .p-voice-quote-strip {
  max-width: 100%;
}

.p-voice-top3 {
  padding: 32px 40px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.p-voice-top3__badge {
  background: #006C5A;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 24px;
}

/* 白座布団内では帯を上辺に張り付け・テキスト幅のみ */
.p-voice-white-panel .p-voice-top3__badge {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 8px 24px;
  margin-top: -72px;
  margin-left: -4px;
  margin-bottom: 32px;
}

.p-voice-top3__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-voice-top3__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dotted #c0d0c8;
}

.p-voice-top3__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-voice-top3__rank {
  font-family: 'Zen Old Mincho', serif;
  font-size: 30px;
  color: #006C5A;
  font-weight: 700;
  min-width: 56px;
  flex: none;
  line-height: 1.6;
  white-space: nowrap;
}

.p-voice-top3__desc {
  flex: 1;
}

.p-voice-top3__title {
  font-size: 20px;
  font-weight: 800;
  color: #333;
  line-height: 1.6;
  display: block;
  margin-bottom: 4px;
}

.p-voice-top3__sub {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

/* ── クォートストリップ画像 ──────────────────── */
.p-voice-quote-strip {
  margin: 0 auto 40px;
  line-height: 0;
  max-width: 85%;
}

.p-voice-quote-strip img {
  width: 100%;
  display: block;
}

/* ── 2×2 写真グリッド ─────────────────────────── */
.p-voice-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 40px;
}

.p-voice-photo-grid__item {
  line-height: 0;
  position: relative;
}

.p-voice-photo-grid__img {
  width: 100%;
  display: block;
}

.p-voice-photo-grid__cap {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  line-height: 1.6;
}

/* ── 路線図 ────────────────────────────────────── */
.p-voice-routemap {
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 40px;
  line-height: 0;
  position: relative;
}

.p-voice-routemap img {
  width: 100%;
  display: block;
}

.p-voice-routemap__cap {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  line-height: 1.6;
}

/* ── 都市写真 4列 ─────────────────────────────── */
.p-voice-city-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 0 40px;
}

.p-voice-city-photos__item {
  line-height: 0;
}

.p-voice-city-photos__img {
  width: 100%;
  display: block;
}

.p-voice-city-photos__label {
  display: block;
  font-size: 10px;
  color: #666;
  font-style: italic;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 4px 0;
  line-height: 1.2;
}

.p-voice-city-photos__caption {
  font-size: 10px;
  color: #888;
  text-align: right;
  line-height: 1.4;
  margin: 4px 0 0;
  padding: 0;
}

/* ── 2枚横並び ─────────────────────────────────── */
.p-voice-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 40px;
}

.p-voice-photo-pair__item {
  line-height: 0;
  position: relative;
}

.p-voice-photo-pair__img {
  width: 100%;
  display: block;
}

.p-voice-photo-pair__cap {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  line-height: 1.6;
}

/* ── セクション区切り見出し ──────────────────── */
.p-voice-section-title {
  border-top: 1px solid #006C5A;
  border-bottom: 1px solid #006C5A;
  padding: 18px 16px;
  max-width: 820px;
  margin: 8px auto 40px;
  text-align: center;
}

.p-voice-section-title__text {
  font-size: 20px;
  font-weight: 800;
  color: #006C5A;
  line-height: 1.9;
}

br.p-voice-sp-br {
  display: none;
}

br.p-voice-pc-br {
  display: inline;
}

/* ── 設備リスト ────────────────────────────────── */
.p-voice-equip-list {
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.p-voice-equip-item {
  margin-bottom: 40px;
}

.p-voice-equip-item:last-child {
  margin-bottom: 0;
}

.p-voice-equip-item__tag {
  font-size: 20px;
  font-weight: 800;
  color: #006C5A;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 2px;
}

.p-voice-equip-item__title {
  font-size: 17px;
  font-weight: bold;
  color: #333;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 10px;
}

.p-voice-equip-item__text {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: -0.02em;
  color: #444;
}

/* ── 設備写真グリッド ─────────────────────────── */
.p-voice-equip-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 0 40px;
}

.p-voice-equip-photos__item {
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.p-voice-equip-photos__item--tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.p-voice-equip-photos__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.p-voice-equip-photos__cap {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  line-height: 1.6;
}

/* ── 共用施設リスト ──────────────────────────── */
.p-voice-facility-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}

.p-voice-facility-item {
  margin-bottom: 56px;
}

.p-voice-facility-item:last-child {
  margin-bottom: 0;
}

.p-voice-facility-item__tag {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #006C5A;
  margin-bottom: 8px;
  display: block;
}

.p-voice-facility-item__tag::before {
  content: '〈';
}

.p-voice-facility-item__tag::after {
  content: '〉';
}

.p-voice-facility-item__strong {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  color: #006C5A;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.6;
  display: block;
  margin-bottom: 10px;
}

.p-voice-facility-item__em {
  font-size: 13px;
  color: #006C5A;
  font-style: italic;
  display: block;
  margin-bottom: 14px;
  line-height: 1.7;
}

.p-voice-facility-item__text {
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 2.1;
  color: #444;
  margin-bottom: 16px;
}

.p-voice-facility-item__photo {
  line-height: 0;
  margin-top: 16px;
  position: relative;
}

/* 共用施設 写真グリッド */
.p-voice-facility-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 40px;
}

.p-voice-facility-photo-grid .p-voice-facility-item__photo {
  margin-top: 0;
}

.p-voice-facility-item__photo--center {
  grid-column: 1 / 3;
  justify-self: center;
  width: calc(50% - 4px);
}

.p-voice-facility-item__photo img {
  width: 100%;
  display: block;
}

.p-voice-facility-item__photo-cap {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  line-height: 1.6;
}

/* ── クロージングメッセージ ──────────────────── */
.p-voice-closing {
  margin: 56px 80px;
  line-height: 0;
}

.p-voice-closing__pc {
  width: 100%;
  display: block;
}

.p-voice-closing .p-voice-closing__sp {
  display: none;
}

/* ════════════════════════════════════════════
   CHAPTER 02
   ════════════════════════════════════════════ */

/* ── Chapter 02 見出し＋航空写真 横並びレイアウト ─── */
.p-voice-chap02-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 48px 80px 40px;
}

.p-voice-chap02-header__body {
  flex: 1;
  min-width: 0;
}

.p-voice-chap02-header__img {
  display: block;
  height: 140px;
  width: auto !important;
  margin-bottom: 20px;
}


.p-voice-chap02-header__title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 26px;
  color: #006C5A;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0 0 14px;
}

.p-voice-chap02-header__sub1 {
  font-size: 14px;
  color: #333;
  margin: 0 0 4px;
  line-height: 1.8;
}

.p-voice-chap02-header__sub2 {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.8;
}

.p-voice-chap02-header__aerial {
  width: 330px;
  flex: none;
  position: relative;
  top: 45px;
}

.p-voice-chap02-header__aerial img {
  width: 100%;
  display: block;
}

.p-voice-chap02-header__aerial-cap {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  line-height: 1.6;
}

/* ランキングタブ */
.p-voice-rank-tabs {
  display: flex;
  gap: 6px;
  margin: 0 80px 52px;
}

.p-voice-rank-tab {
  flex: 1;
  padding: 20px 12px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.p-voice-rank-tab__num {
  font-size: 33px;
  line-height: 1;
  font-family: 'Zen Old Mincho', serif;
}

.p-voice-rank-tab__label {
  font-size: 23px;
}

.p-voice-rank-tab:hover {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.p-voice-rank-tab--01 { background: #006c5a; }
.p-voice-rank-tab--02 { background: #006294; }
.p-voice-rank-tab--03 { background: #00457d; }

/* ランキングセクション */
.p-voice-ranking {
  margin: 0 80px 64px;
}

.p-voice-ranking__header {
  background: #006c5a;
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
}

.p-voice-ranking__header-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.p-voice-ranking__header-count {
  font-size: 15px;
  opacity: 0.8;
  font-weight: normal;
}

.p-voice-ranking__header-num {
  font-size: 1.5em;
  font-family: 'Zen Old Mincho', serif;
  line-height: 1;
  vertical-align: baseline;
}

#rank-build .p-voice-ranking__header { background: #006294; }
#rank-room  .p-voice-ranking__header { background: #00457d; }

.p-voice-rank-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 24px;
  background-color: #fff;
  background-image: repeating-linear-gradient(
    to right,
    #b5ceca 0px,
    #b5ceca 4px,
    transparent 4px,
    transparent 12px
  );
  background-size: calc(100% - 60px) 2px;
  background-position: 30px bottom;
  background-repeat: no-repeat;
}

.p-voice-rank-row__num {
  font-size: 22px;
  font-weight: bold;
  color: #666;
  min-width: 100px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.p-voice-rank-row__num--1st {
  font-size: 26px;
  font-weight: 900;
  color: #aa1010;
}

.p-voice-rank-row__crown {
  display: block;
  width: 40px !important;
  height: auto;
}

.p-voice-rank-row__content {
  flex: 1;
}

.p-voice-rank-row__title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  display: block;
}

.p-voice-rank-row__title--1st {
  font-size: 22px;
  font-weight: 900;
  color: #aa1010;
}

.p-voice-rank-row__small {
  font-size: 0.75em;
}

.p-voice-rank-row__sub {
  font-size: 11px;
  color: #666;
  margin-top: 4px;
  line-height: 1.7;
  display: block;
}

.p-voice-rank-row__pts {
  font-family: 'Zen Old Mincho', serif;
  font-size: 26px;
  color: #006c5a;
  white-space: nowrap;
  flex: none;
  line-height: 1;
}

.p-voice-rank-row:has(.p-voice-rank-row__num--1st) .p-voice-rank-row__pts {
  font-size: 32px;
  font-weight: 900;
  color: #aa1010;
}

.p-voice-rank-row__pts-unit {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: normal;
}

.p-voice-ranking__notes {
  padding: 14px 24px;
  background: #f8f8f8;
  font-size: 11px;
  color: #666;
  line-height: 1.9;
}

.p-voice-ranking__notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-voice-ranking__notes li {
  margin-bottom: 2px;
}

.p-voice-ranking__notes li::before {
  content: '※';
  margin-right: 4px;
}

/* ════════════════════════════════════════════
   CHAPTER 03
   ════════════════════════════════════════════ */

.p-voice-chap03-inner {
  margin: 0 80px;
}

/* Yahoo バナー */
.p-voice-yahoo-banner {
  margin-top: -150px;
  margin-bottom: 32px;
  line-height: 0;
  position: relative;
  z-index: 1;
}

#chapter03 .p-voice-chap-panel {
  position: relative;
  z-index: 2;
}

.p-voice-yahoo-banner img {
  width: 60%;
  display: block;
  margin: 0 auto;
}

/* カテゴリーボタン */
.p-voice-cat-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

.p-voice-cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  cursor: default;
  line-height: 1.3;
}

.p-voice-cat-btn::after {
  content: '›';
  margin-left: auto;
  font-size: 18px;
  color: #999;
  font-weight: normal;
}

.p-voice-cat-btn__sq {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: none;
}

.p-voice-cat-btn--yosan    .p-voice-cat-btn__sq { background: #cc1111; }
.p-voice-cat-btn--kaimono  .p-voice-cat-btn__sq { background: #1155cc; }
.p-voice-cat-btn--seikatsu .p-voice-cat-btn__sq { background: #6622bb; }
.p-voice-cat-btn--kyoyo    .p-voice-cat-btn__sq { background: #116611; }
.p-voice-cat-btn--madori   .p-voice-cat-btn__sq { background: #cc6611; }
.p-voice-cat-btn--design   .p-voice-cat-btn__sq { background: #bbaa00; }
.p-voice-cat-btn--other    .p-voice-cat-btn__sq { background: #888888; }

/* カルーセル */
.p-voice-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.p-voice-carousel-btn {
  width: 44px;
  height: 44px;
  min-height: unset;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 36px;
  color: #006c5a;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  padding: 0;
  align-self: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.p-voice-carousel-btn__arrow {
  position: relative;
  top: -5px;
}

.p-voice-carousel-btn:hover {
  background: #f0f7f5;
  opacity: 0.9;
}

.p-voice-carousel {
  flex: 1;
  overflow: hidden;
  line-height: 0;
}

.p-voice-carousel__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.p-voice-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.p-voice-carousel__slide img {
  width: 100%;
  display: block;
}

.p-voice-carousel-count {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
  margin-bottom: 48px;
}

/* ════════════════════════════════════════════
   レスポンシブ（タブレット・SP）
   ════════════════════════════════════════════ */
@media screen and (max-width: 767px) {

  .p-voice-intro__en {
    font-size: 26px;
  }

  .p-voice-intro__text br {
    display: none;
  }

  .p-voice-chapnav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
  }

  /* 逆ピラミッド: 1・2枚目は上段2列 */
  .p-voice-chapnav__item:nth-child(1),
  .p-voice-chapnav__item:nth-child(2) {
    width: calc(50% - 4px);
    flex: none;
  }

  /* 3枚目は下段センター */
  .p-voice-chapnav__item:nth-child(3) {
    width: calc(50% - 4px);
    flex: none;
  }

  .p-voice-chap-card {
    margin: 0 12px;
    border-radius: 0;
  }

  .p-voice-chap02-note {
    margin: 14px 12px 0;
  }

  #chapter01 .p-voice-chap-card {
    padding-bottom: 30px !important;
  }

  .p-voice-chap-card .p-voice-chap-panel {
    padding: 36px 24px;
  }

  .p-voice-chap-panel {
    margin: 0 16px 72px;
    padding: 36px 24px;
  }

  .p-voice-yahoo-banner {
    margin-top: -65px;
  }

  .p-voice-yahoo-banner img {
    width: 95%;
  }

  .p-voice-quote-layout {
    flex-direction: column-reverse;
    margin: 0 12px 56px;
    padding: 0 16px;
    gap: 24px;
  }

  .p-voice-quote-layout__photo {
    width: calc(100% + 8px);
    margin-left: -4px;
    margin-right: -4px;
    margin-top: -16px;
  }

  .p-voice-quote-layout__photo img {
    height: auto !important;
    object-fit: unset;
    width: 100% !important;
    margin: 0 auto;
  }

  .p-voice-quote-layout__q {
    font-size: 17px;
    text-align: center;
  }

  .p-voice-quote-layout__attr {
    text-align: center;
  }

  .p-voice-chapter {
    padding: 56px 0 72px;
  }

  .p-voice-chap-head {
    padding: 0 16px 40px;
  }

  .p-voice-chap-head__num {
    font-size: 56px;
  }

  .p-voice-quote-box {
    padding: 40px 24px;
    margin: 0 16px 40px;
  }

  .p-voice-quote-box__text {
    font-size: 15px;
  }

  .p-voice-top3 {
    padding: 24px 20px;
    margin: 0 16px 32px;
  }

  .p-voice-body {
    padding: 0 16px 40px;
  }

  .p-voice-body p {
    line-height: 1.8;
  }

  .p-voice-photo-grid {
    padding: 0 16px;
    gap: 6px;
  }

  .p-voice-routemap {
    padding: 0 16px;
  }

  .p-voice-city-photos {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
  }

  .p-voice-photo-pair {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .p-voice-section-title {
    margin: 8px 0 32px;
  }

  br.p-voice-sp-br {
    display: inline;
  }

  br.p-voice-pc-br {
    display: none;
  }

  .p-voice-equip-list {
    padding: 0 16px;
  }

  .p-voice-equip-photos {
    padding: 0 16px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .p-voice-equip-photos__item {
    height: 220px;
    position: relative;
    overflow: hidden;
  }

  .p-voice-equip-photos__item:nth-child(1) {
    order: 1;
  }

  .p-voice-equip-photos__item:nth-child(3) {
    order: 2;
  }

  .p-voice-equip-photos__item--tall {
    grid-column: 1;
    grid-row: auto;
    height: auto;
    order: 3;
  }

  .p-voice-equip-photos__item--tall .p-voice-equip-photos__img {
    height: auto;
    object-fit: unset;
  }

  .p-voice-equip-photos__item--full {
    grid-column: 1;
  }

  .p-voice-facility-list {
    padding: 0 16px;
    text-align: center;
  }

  .p-voice-closing {
    padding: 0 16px;
    margin: 30px 0 0;
  }

  .p-voice-closing__pc {
    display: none !important;
  }

  .p-voice-closing .p-voice-closing__sp {
    display: block !important;
    width: 100%;
  }

  /* Chapter 02 SP */
  .p-voice-chap02-header {
    flex-direction: column;
    padding: 36px 24px 32px;
    gap: 72px;
  }

  .p-voice-chap02-header__title {
    font-size: 20px;
  }

  .p-voice-chap02-header__aerial {
    width: 100%;
    position: relative;
    top: -50px;
    margin-bottom: -50px;
  }

  .p-voice-rank-tabs {
    flex-direction: column;
    gap: 4px;
    margin: 0 12px 52px;
  }

  .p-voice-rank-tab {
    padding: 14px 16px;
  }

  .p-voice-rank-tab__num {
    font-size: 24px;
  }

  .p-voice-rank-tab__label {
    font-size: 20px;
  }

  .p-voice-ranking {
    margin: 0 12px 64px;
  }

  .p-voice-ranking__header {
    padding: 14px 16px;
  }

  .p-voice-ranking__header-title {
    font-size: 20px;
  }

  .p-voice-rank-row {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
  }

  .p-voice-rank-row__num {
    min-width: 70px;
  }

  .p-voice-rank-row__pts {
    font-size: 20px;
  }

  .p-voice-rank-row__title--1st {
    font-size: 19px;
    font-weight: 900;
  }

  .p-voice-rank-row__title {
    font-size: 16px;
    line-height: 1.3;
  }

  .p-voice-ranking__notes {
    padding: 12px 16px;
  }

  /* Chapter 03 SP */
  .p-voice-chap03-inner {
    margin: 0 12px;
  }

  .p-voice-carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .p-voice-cat-btns {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .p-voice-cat-btn {
    font-size: 13px;
    padding: 12px 12px;
  }

  /* チャプター見出し画像をSPで縮小 */
  .p-voice-chap-panel .p-voice-chap-img-heading {
    display: block;
    height: 70px !important;
    width: auto !important;
    max-width: 100%;
    margin: 0 auto 32px !important;
  }

  .p-voice-chap02-header__img {
    height: 70px !important;
    margin: 0 auto 20px !important;
  }

  .p-voice-chap02-header__body {
    text-align: center;
    width: 100%;
  }

  /* 白座布団幅をChap02コンテンツ幅に合わせる */
  .p-voice-white-panel {
    margin: 0 12px 48px;
  }

  #chapter01 .p-voice-white-panel {
    margin-bottom: 24px;
  }

  .p-voice-white-panel .p-voice-top3__badge {
    margin-top: -64px;
  }

  /* イントロブロックの重なりを解除 */
  .p-voice-chap-panel__intro-block {
    margin-top: 0 !important;
  }

  .p-voice-chap-panel .p-voice-chap-img-line {
    width: 80% !important;
  }

  .p-voice-chap-intro {
    line-height: 1.8;
  }

  .p-voice-top3 {
    text-align: center;
  }

  .p-voice-top3__item {
    flex-direction: column;
    align-items: center;
  }

  .p-voice-top3__rank {
    text-align: center;
  }

  .p-voice-top3__desc {
    text-align: center;
    width: 100%;
  }

  .p-voice-top3__sub-list {
    display: block;
    text-align: center;
  }

  .p-voice-top3__sub-list li {
    font-size: 16px;
    padding-left: 0;
    text-indent: 0;
  }

  .p-voice-top3__title {
    font-size: 16px;
  }

  .p-voice-body.p-voice-body--center p {
    font-size: 16px;
  }

  .p-voice-quote-strip {
    max-width: 90% !important;
  }

  .p-voice-area-heading {
    font-size: 17px;
    line-height: 1.4;
  }

  .p-voice-section-title__text {
    font-size: 17px;
    line-height: 1.5;
  }

  .p-voice-equip-item__tag {
    font-size: 17px;
    line-height: 1.5;
  }

  .p-voice-facility-item__tag {
    font-size: 15px;
  }

  .p-voice-facility-item__strong {
    font-size: 15px;
    line-height: 1.5;
  }
}

.p-voice-body--area-comment {
  padding-bottom: 80px;
}

.p-voice-body--area-comment p {
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: -0.02em;
}

.p-voice-body--tight p {
  letter-spacing: -0.04em;
}

.p-voice-area-heading {
  font-size: 20px;
  font-weight: 800;
  color: #006C5A;
  display: inline-block;
  margin-bottom: 4px;
}

.p-voice-info-line {
  line-height: 0;
  margin-bottom: 48px;
}

.p-voice-info-line img {
  width: 100%;
  display: block;
}


.p-voice-chap-panel .p-voice-chap-img-heading {
  display: block;
  height: 140px;
  width: auto !important;
  max-width: 100%;
  margin-bottom: 12px;
}

.p-voice-chap-panel .p-voice-chap-img-line {
  display: block;
  width: 60%;
  height: auto;
  margin: 16px auto;
}

.p-voice-chap-panel__intro-block {
  margin-top: -70px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) and (max-width: 1122px) {
  .p-voice-chap-panel .p-voice-chap-img-heading {
    height: 70px !important;
    width: auto !important;
    max-width: 100%;
    margin: 0 auto 32px !important;
  }

  .p-voice-chap02-header__img {
    height: 70px !important;
    margin: 0 auto 20px !important;
  }

  .p-voice-equip-photos {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .p-voice-equip-photos__item {
    height: 260px;
  }

  .p-voice-equip-photos__item:nth-child(1) {
    order: 1;
  }

  .p-voice-equip-photos__item:nth-child(3) {
    order: 2;
  }

  .p-voice-equip-photos__item--tall {
    grid-column: 1;
    grid-row: auto;
    height: auto;
    order: 3;
  }

  .p-voice-equip-photos__item--tall .p-voice-equip-photos__img {
    height: auto;
    object-fit: unset;
  }
}

@media screen and (max-width: 767px) {
  #chapter01 .p-voice-chap-card {
    padding-bottom: 30px !important;
  }
}

/* iOS Safari では background-attachment: fixed が動作しないためSPはscrollに戻す */
@media screen and (max-width: 767px) {
  .p-voice-texture-bg,
  .p-voice-chapter--01,
  .p-voice-chapter--02,
  .p-voice-chapter--03 {
    background-attachment: scroll;
  }
}
