/* ============================================
   観山荘 楽天トラベル ページ スタイルシート
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
    font-family: 'Noto Serif JP', serif;
}

.body {
  font-family: 'Noto Serif JP', serif;
  background: #fff;
  color: #222;
  max-width: 950px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

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

a:link {
    color: #ffffff;
}

a:visited {
    color: #999999;
}

/* ============================================
   ヘッダー写真
   ============================================ */
.header-photo {
  width: 100%;
  height: 408px;
  overflow: hidden;
  position: relative;
}

.header-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   ヒーローセクション
   ============================================ */
.hero {
  position: relative;
  width: 950px;
  height: 607px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.33);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
  padding: 158px 52px 111px 53px;
  text-align: center;
}

.hero__logo {
  width: 539px;
  height: 116px;
  flex-shrink: 0;
}

.hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__catch {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  line-height: 41px;
  text-align: center;
  white-space: nowrap;
}

.hero__catch-large {
  font-size: 24px;
  line-height: 28px;
}

/* ============================================
   タブナビゲーション
   ============================================ */
.page-nav {
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

.page-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.page-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 45px;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  color: #222;
  border-right: 1px solid #afafaf;
  transition: background 0.2s;
}

.page-nav__item:last-child {
  border-right: none;
}

.page-nav__item--active {
  color: #351d1d;
}

.page-nav__item:hover {
  background: #f5f0eb;
}

/* ============================================
   おすすめ宿泊プラン
   ============================================ */
.plans {
  width: 950px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #222;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.plans__grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 297px;
  flex-shrink: 0;
}

.plan-card:hover {
  opacity: 0.7;
}

.plan-card__img {
  width: 302px;
  height: 203px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.plan-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.plan-card:hover .plan-card__img img {
  transform: scale(1.04);
}

.plan-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #222;
}

/* ============================================
   特集セクション（縦書きレイアウト）
   ============================================ */
.features {
  width: 951px;
  margin: 0 auto;
}

.feature {
  position: relative;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.feature__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.feature__overlay--food {
  background: rgba(0, 0, 0, 0.08);
}

.feature__overlay--onsen {
  background: linear-gradient(to right, rgba(0,0,0,0) 38%, rgba(0,0,0,0.48) 76%);
}

.feature__overlay--room {
  background: rgba(0, 0, 0, 0.08);
}

.feature__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 40px 20px;
  height: 100%;
   background-image: linear-gradient(90deg, rgba(4, 4, 4, 0.76) 30%, rgba(0, 0, 0, 0));
}

.feature__content--right {
  justify-content: flex-end;
  padding-right: 70px;
  width: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 30%, rgba(4, 4, 4, 0.76));
}

/* 縦書きボタン */
.feature__vertical-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 60px;
  height: 270px;
  border: 1px solid #fff;
  padding: 22px 20px;
  align-self: flex-end;
  flex-shrink: 0;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.25s;
}

.feature__vertical-btn:hover {
  background: rgba(255,255,255,0.12);
}

.feature__btn-text {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 22px;
  letter-spacing: 0.05em;
}

.feature__arrow {
  width: 19px;
  height: auto;
  flex-shrink: 0;
}

/* 縦書きサブテキスト */
.feature__text-group {
  display: flex;
  gap: 19px;
  align-items: flex-start;
    width: 54px;
    margin: 0 50px;
  padding: 30px 0 7px;
  flex-shrink: 0;
}

.feature__sub-text {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 21px;
  width: 17px;
}

/* 縦書きメインタイトル */
.feature__headline-group {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  flex-shrink: 0;
}

.feature__headline {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  line-height: 42px;
  width: 24px;
}

/* ============================================
   アクセスセクション
   ============================================ */
.access {
  padding: 80px 0 60px;
}

.access__inner {
  width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.section-heading__ja {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 3.6px;
  color: #222;
}

.section-heading__en {
  font-size: 20px;
  font-weight: 400;
  color: #222;
}

.access__map {
  width: 100%;
  height: 368px;
  overflow: hidden;
  position: relative;
}

.access__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.access__address {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 4.5px;
  color: #222;
}

.access__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 245px;
  height: 50px;
  border: 1px solid #222;
  padding: 22px 20px;
  cursor: pointer;
  transition: background 0.25s;
}

.access__btn:hover {
  background: #f5f0eb;
}

.access__btn span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 16px;
  width: 117px;
}

.access__btn img {
  width: 18px;
  height: auto;
}

/* ============================================
   アクセス写真エリア
   ============================================ */
.access-photo {
  position: relative;
  width: 1314px;
  height: 422px;
  margin: 0 auto;
  overflow: hidden;
}

.access-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-photo__address {
  position: absolute;
  top: 156px;
  left: 85px;
  background: #fff;
  width: 720px;
  height: 66px;
  display: flex;
  align-items: center;
  padding-left: 61px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #222;
}

/* ============================================
   ギャラリーセクション
   ============================================ */
.gallery {
  padding: 60px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.gallery__logo {
  width: 283px;
  height: 45px;
}

.gallery__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery__grid {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  width: 950px;
}

.gallery__item {
  position: relative;
  display: inline-grid;
  place-items: start;
  flex-shrink: 0;
}

.gallery__img-wrap {
  position: relative;
  width: 280px;
  height: 255px;
  overflow: hidden;
}

.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover .gallery__img-wrap img {
  transform: scale(1.04);
}

.gallery__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.gallery__label {
  position: absolute;
  bottom: 30px;
  left: 27px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #fff;
  width: 223px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.gallery__item:hover {
  opacity: 0.7;
}

/* ============================================
   フッター写真
   ============================================ */
.footer-photo {
  width: 100%;
  height: 719px;
  overflow: hidden;
  position: relative;
}

.footer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   ========== 料理ページ追加スタイル ==========
   ============================================ */

/* ----------------------------------------
   内ページヒーローバナー
   ---------------------------------------- */
.inner-hero {
  position: relative;
  width: 950px;
  height: 415px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.inner-hero__title {
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 33px;
  letter-spacing: 0.05em;
}

/* ----------------------------------------
   リード文
   ---------------------------------------- */
.food-lead {
  width: 950px;
  margin: 0 auto;
  padding: 60px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.food-lead__title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  line-height: 28px;
  width: 890px;
}

.food-lead__body {
  font-size: 20px;
  font-weight: 400;
  color: #222;
  line-height: 28px;
  width: 928px;
}

/* ----------------------------------------
   料理コンテンツブロック
   ---------------------------------------- */
.food-blocks {
  width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  /* padding-bottom: 80px; */
}

.food-blocks--mt {
  padding-bottom: 0;
  margin-top: 0;
}

/* 単一画像ブロック */
.food-block {
  position: relative;
  width: 950px;
  height: 480px;
  overflow: hidden;
}

.food-block__img {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
}

.food-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 2カラム画像ブロック */
.food-block--two-col {
  display: flex;
}

.food-block__img-left,
.food-block__img-right {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #d9d9d9;
}

.food-block__img-left {
  width: 496px;
  flex-shrink: 0;
}

.food-block__img-left--wide {
  width: 50%;
}

.food-block__img-right {
  flex: 1;
}

.food-block__img-left img,
.food-block__img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 縦書きラベル（左上の白帯） */
.food-block__label {
  position: absolute;
  z-index: 10;
}

.food-block__label--top {
  top: 23px;
  left: 25px;
  background: #fff;
  width: 80px;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.food-block__label span {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 400;
  color: #222;
  line-height: 30px;
}

/* テキストオーバーレイ（右側）*/
.food-block__text {
  position: absolute;
  z-index: 10;
  left: 507px;
  background: rgba(255, 255, 255, 0.9);
  width: 423px;
  padding: 30px 33px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.food-block__text--bottom-right {
  top: 276px;
}

.food-block__text--mid-right {
  top: 198px;
}

.food-block__text-title {
  font-size: 20px;
  font-weight: 400;
  color: #222;
  line-height: 26px;
  width: 357px;
}

.food-block__text-body {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  line-height: 26px;
  width: 357px;
}

/* ----------------------------------------
   お品書きセクション
   ---------------------------------------- */
.menu-section {
  width: 950px;
  margin: 0 auto;
  background: #f4efe9;
padding: 50px 20px;
}

.menu-section__inner {
  display: flex;
  gap: 40px;
}

.menu-column {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
}

.menu-column__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 500;
  color: #222;
  line-height: 26px;
  margin-bottom: 0;
}

.menu-column__list {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 400;
  color: #222;
  line-height: 26px;
  white-space: pre-wrap;
  align-self: start;
}

/* ----------------------------------------
   プランボタン
   ---------------------------------------- */
.plan-buttons {
  width: 950px;
  margin: 40px auto 120px;
  display: flex;
  gap: 82px;
  justify-content: center;
}

.plan-buttons--single {
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 304px;
  height: 63px;
  background: #351d1d;
  border: 1px solid #771515;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 28px;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}

.plan-btn:hover {
  background: #4a2828;
}

/* ----------------------------------------
   ライブキッチン・日本酒マスター カード
   ---------------------------------------- */
.feature-cards {
  padding: 60px 0 80px;
}

.feature-cards__inner {
  width: 951px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: space-between;
}

.feature-card {
  width: 451px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card__img {
  width: 451px;
  height: 303px;
  overflow: hidden;
  background: #222;
}

.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card__img img {
  transform: scale(1.04);
}

.feature-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 500;
  color: #222;
  line-height: 22.6px;
}

.feature-card__body {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 22.6px;
}

/* ----------------------------------------
   お問い合わせ / 電話番号エリア
   ---------------------------------------- */
.contact-section {
  width: 950px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.contact-section__inner {
  display: flex;
  align-items: center;
  gap: 89px;
  margin-bottom: 30px;
}

.contact-section__tel-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.contact-section__logo-wrap {
width: 180px;
    height: 48px;
  overflow: hidden;
  flex-shrink: 0;
}

.contact-section__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-section__tel-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  color: #222;
  white-space: nowrap;
  line-height: 24px;
}

.contact-section__tel-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 337px;
}

.contact-section__tel-sub {
  font-size: 12px;
  font-weight: 400;
  color: #222;
  line-height: 28px;
}

.contact-section__tel-number {
  display: flex;
  align-items: center;
  gap: 47px;
  white-space: nowrap;
}

.contact-section__tel-prefix {
  font-size: 21px;
  font-weight: 400;
  color: #222;
  line-height: 28px;
}

.contact-section__tel-num {
  font-size: 36px;
  font-weight: 400;
  color: #222;
  line-height: 28px;
}

.contact-section__address {
  font-size: 16px;
  font-weight: 400;
  color: #222;
  line-height: 28px;
  width: 936px;
}

/* ============================================
   ========== 温泉ページ追加スタイル ==========
   ============================================ */

/* ----------------------------------------
   ラベル：ブロック高さバリアント
   （Figmaの白帯背景高さに合わせた明示指定）
   ---------------------------------------- */

/* 庭園露天風呂 四季彩の湯：2列縦書き／高さ416px */
.food-block__label--tall {
  height: 416px;
  align-items: flex-start; /* 縦書きspanを上揃えにする */
  gap: 2px;
}

/* 展望露天貸切風呂：1列縦書き／高さ304px */
.food-block__label--medium {
  height: 304px;
  align-items: flex-start;
}

/* ----------------------------------------
   展望露天貸切風呂のテキストボックス縦位置
   ---------------------------------------- */
.food-block__text--onsen-right {
  top: 200px;
}

/* ----------------------------------------
   プランボタン：幅広バリアント（432px）
   ---------------------------------------- */
.plan-btn--wide {
  width: 432px;
}

/* ----------------------------------------
   大浴場カード：左寄せ単体レイアウト
   ---------------------------------------- */
.feature-cards--left {
  padding-top: 0;
  padding-bottom: 70px;
}

.feature-cards__inner--left {
  justify-content: flex-start;
}

/* ----------------------------------------
   ラベル高さバリアント（お部屋ページ用）
   ---------------------------------------- */

/* 3階つばき邸：2列縦書き / 高さ394px */
.food-block__label--h394 {
  align-items: flex-start;
}

/* 3階・1階客室紹介：1列縦書き / 高さ225px */
.food-block__label--h225 {
  align-items: flex-start;
}

/* ----------------------------------------
   テキストカード縦位置バリアント（お部屋ページ用）
   ---------------------------------------- */

/* つばき邸：top 192px */
.food-block__text--top192 {
  top: 192px;
}

/* 3階・1階客室紹介：top 248px / 高さ固定 */
.food-block__text--top248 {
  top: 248px;
  height: 212px;
}

/* テキスト本文 15px バリアント（つばき邸用） */
.food-block__text-body--15 {
  font-size: 15px;
}

/* ----------------------------------------
   客室セクション（写真ブロック＋スペック表）
   ---------------------------------------- */

/* 3つの客室セクションをまとめるコンテナ */
.room-sections {
  width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 84px;
  padding-bottom: 60px;
}

/* 1客室分（写真ブロック＋スペック表） */
.room-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* スペック表エリア（サムネイル＋テーブル） */
.room-spec {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}

/* サムネイル画像 */
.room-spec__thumb {
  width: 265px;
  flex-shrink: 0;
}

.room-spec__thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* テーブル本体 */
.room-spec__table {
  width: 539px;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.1em;
}

/* 各行 */
.room-spec__row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 10px 20px;
  border-bottom: 0.5px solid #838383;
  line-height: 26px;
}

/* 1行目：上部2px太線 */
.room-spec__row--first {
  border-top: 2px solid #222;
}

/* ラベル列 */
.room-spec__col-label {
  width: 130px;
  flex-shrink: 0;
}

/* 値列 */
.room-spec__col-value {
  flex: 1;
}

/* ----------------------------------------
   その他のお部屋 セクション
   ---------------------------------------- */

.other-rooms {
  padding-bottom: 80px;
}

/* 2カラムのカードグリッド（flex-wrap） */
.room-card-grid {
  width: 950px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

/* 各カード */
.room-card {
  width: 451px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.room-card__img {
  width: 451px;
  height: 303px;
  overflow: hidden;
  background: #000;
}

.room-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.room-card:hover .room-card__img img {
  transform: scale(1.04);
}

.room-card__caption {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 22.6px;
}

/* ----------------------------------------
   客室設備・アメニティ セクション
   ---------------------------------------- */

.amenity-section {
  width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
}

/* 参考写真3枚 */
.amenity-photos {
  display: flex;
  gap: 33px;
  align-items: flex-start;
}

.amenity-photo {
  width: 294px;
  height: 198px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
}

.amenity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* アメニティ詳細グリッド（ベージュ背景・flex-wrap） */
.amenity-grid {
  background: #f4efe9;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 40px;
}

/* 各グループ（2カラム） */
.amenity-group {
  width: 413px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.amenity-group__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 500;
  color: #222;
  line-height: 26px;
}

/* リスト形式のアメニティ */
.amenity-group__list {
  list-style: disc;
  padding-left: 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 400;
  color: #222;
  line-height: 26px;
}

/* テキスト形式のアメニティ */
.amenity-group__text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 400;
  color: #222;
  line-height: 26px;
}

.room_math {
   text-combine-upright: all;
}



/* .tab__second-navi li:nth-child(5),.tab__second-navi li:nth-child(6),.tab__second-navi li:nth-child(7) {
  display: none!important;
} */