.p-single-news {
  background-color: var(--color-background-light);
}

.p-single-news .breadcrumb {
  background-color: var(--color-background-light) !important;
}


/* ===== BEGIN TITLE AREA ===== */
.p-single-news__title-area {
  /* 背景画像の設定 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* セクションの高さ */
  min-height: 400px;
  height: 25vh;

  /* コンテンツ配置 */
  display: flex;
  align-items: center;

  /* 暗いオーバーレイ効果 */
  position: relative;
}

.p-single-news__title-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.p-single-news__title-area-wrapper {
  position: relative;
  z-index: 2;

  /* コンテンツの配置 */
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 40px 85px;
}

/* タグエリア */
.p-single-news__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.p-single-news__tags .tag {
  display: inline-block;
  background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  line-height: 1;
}

/* タイトル */
.p-single-news__title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* サブタイトル */
.p-single-news__subtitle {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== END TITLE AREA ===== */

.wrapper {
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

/* ==== BEGIN SIDEBAR ===== */

.content-sidebar>p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 24px 0;
}

.sidebar-nearby-ryokan__container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-nearby-ryokan__container>a {
  text-decoration: none;
  display: block;
}

.sidebar-nearby-ryokan__card {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.sidebar-nearby-ryokan__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 画像カラム */
.sidebar-nearby-ryokan__card .card-col:first-child {
  flex-shrink: 0;
}

.sidebar-nearby-ryokan__card .card-col:first-child img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* テキストカラム */
.sidebar-nearby-ryokan__card .card-col:last-child {
  flex: 1;
  min-width: 0;
  padding-right: 40px;
}

.sidebar-nearby-ryokan__card .ryokan-name {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.5;
  /* テキストが長い場合の処理 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 矢印アイコン */
/* .sidebar-nearby-ryokan__card::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ff9800 0%, #ff6b00 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
} */

/* .sidebar-nearby-ryokan__card::before {
    content: '↗';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 1.0rem;
    font-weight: 700;
    z-index: 1;
    pointer-events: none;
} */
/* ===== END SIDEBAR ====== */
/* ===== BEGIN CONTENT BODY ===== */
/* 枠と比率（必要に応じて変更） */
.fv-gallery{
  position: relative;
  width: min(100%, 960px);
  aspect-ratio: 16/9;          /* 高さは比率で確保 */
  border-radius: 14px;
  overflow: hidden;
  background:#eee;
}

/* 画像を枠いっぱいに。スライドは横並び */
.fv-gallery__track{
  display: flex;
  height: 100%;
  transition: transform .35s ease;
}
.fv-gallery__track > img{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* “枠いっぱい”でトリミング */
  user-select: none;
  -webkit-user-drag: none;
}

/* 右下のページネーション（ドット） */
.fv-gallery__dots{
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: flex;
  gap: 8px;
}
.fv-gallery__dots button{
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0; padding: 0;
  background: rgba(255,255,255,.6);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15) inset;
  cursor: pointer;
}
.fv-gallery__dots button[aria-current="true"]{
  background: #fff;
  transform: scale(1.15);
}


.content-body a {
    color: var(--color-primary);
    text-decoration: none;
}

.content-main {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.content-body {
  flex: 1;
  min-width: 0;
}

.content-sidebar {
  width: 360px;
  flex-shrink: 0;
}

/* ギャラリー */
.spot-top-gallery-images {
  margin-bottom: 20px;
}

/* メイン画像*/
.spot-top-gallery-images .gallery-image:first-child {
  width: 100%;
  margin-bottom: 10px;
  aspect-ratio: 4 / 2.75;
}

.spot-top-gallery-images .gallery-image:first-child img {
  width: 100%;
  height: auto;
  min-height: 500px;
  max-height: 700px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* サムネイルギャラリーのコンテナ */
.spot-top-gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* サムネイル画像 */
.spot-top-gallery-images .gallery-image:not(:first-child) {
  width: calc((100% - 200px) / 5);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 2.75;
  flex-shrink: 0;
}

.spot-top-gallery-images .gallery-image:not(:first-child) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.spot-top-gallery-images .gallery-image:not(:first-child):hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* アクティブなサムネイル（選択中の画像） */
.spot-top-gallery-images .gallery-image:nth-child(2) {
  outline: 3px solid #ff9800;
  outline-offset: -3px;
}

/* ギャラリーナビゲーション矢印用のラッパー */
.gallery-navigation-wrapper {
  position: relative;
}

/* 矢印ボタン */
.gallery-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 20px;
}

.gallery-navigation button {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.gallery-navigation button:hover {
  background-color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-navigation button:active {
  transform: scale(0.95);
}

.gallery-navigation button.prev::before {
  content: '←';
}

.gallery-navigation button.next::before {
  content: '→';
}

.gallery-navigation button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallery-navigation button:disabled:hover {
  transform: none;
  background-color: rgba(255, 255, 255, 0.95);
}

/* ===== BEGEIN 目次 ===== */
/* ==================== 
   目次（Table of Contents）
==================== */
#ez-toc-container {
  background-color: #ffffff;
  padding: 32px 40px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 90%;
}

/* タイトルコンテナ（使用しない場合は非表示） */
.ez-toc-title-container {
  display: none;
}

/* ナビゲーション */
#ez-toc-container nav {
  display: block;
}

/* リストのリセット */
.ez-toc-list {
  list-style: none;
  margin: 0;
  padding: 0 !important;
}

/* 各リスト項目 */
.ez-toc-list li {
  border-bottom: 2px dotted #d0d0d0;
  padding: 0;
  margin: 0;
}

.ez-toc-list li:last-child {
  border-bottom: none;
}

/* リンクのスタイル */
.ez-toc-link {
  display: flex;
  align-items: center !important;
  padding: 20px 0;
  text-decoration: none;
  color: #333333;
  font-size: 20px;
  font-weight: 900 !important;
  line-height: 1.6;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.ez-toc-link:hover {
  color: #ff9800;
  padding-left: 8px;
}

/* 黒丸アイコン */
.ez-toc-link::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: #333333;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.ez-toc-link:hover::before {
  background-color: #ff9800;
}

/* ===== END 目次 ===== */

/* h2見出し - 下線付き */
.content-body h2.wp-block-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  margin: 60px 0 32px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #333333;
  line-height: 1.4;
}

.content-body h2.wp-block-heading:first-child {
  margin-top: 0;
}

/* h3見出し - 右側に斜線パターン */
.content-body h3.wp-block-heading {
  font-size: 1.5rem;
  /* font-weight: 700; */
  color: #333333;
  margin: 18px 0 24px 0;
  padding: 15px 20px;
  line-height: 1.5;
  position: relative;
  background: var(--color-background);
}

/* h4 */
.content-body h4.wp-block-heading {
  font-size: 1.35rem;
  font-weight: 500;
  color: #333333;
  /* margin: 18px 0 24px 0; */
  padding: 10px 10px;
  line-height: 1.5;
  position: relative;
border-left: 5px solid #ff9800;
}

/* h5 */
.content-body h5.wp-block-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  /* margin: 18px 0 24px 0; */
  padding: 10px 0px;
  line-height: 1.5;
  position: relative;
}

.content-body h3.wp-block-heading:first-child {
  margin-top: 0;
}

/* BLOCK CONTENTS */
.content-body p {
  font-size: 16px;
  line-height: 2.5;
  color: #333;
  /* margin: 0 0 -5px 0; */
  margin: 20px 5px;
  letter-spacing: 0.13rem;
}

.content-body .wp-block-button {
    width: 100%;
    margin: 10px 0;
}
.content-body .wp-block-button a {
    color: var(--color-dark);
    background: var(--color-brand);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 20px 0;
}
.content-body .wp-block-button a.wp-block-button__link {
    border-radius: 10px !important;
}

.content-body blockquote.wp-block-quote {
    background: #fff;
    padding: 20px;
    margin-bottom: 1.67em;
}
.content-body .wp-block-image img {
  width: 100% !important;
}

/* リスト */
/* 親UL: 標準の • を使う。 */
ul.wp-block-list { padding-left: 1.4em; margin: 0; }
ul.wp-block-list li { line-height: 1.9; }

/* ネストUL: マーカーを「・」に置換 */
ul.wp-block-list ul { padding-left: 1.4em; margin-top: .4rem; }
ul.wp-block-list ul li::marker { content: "・"; font-size: 1.05em; }

.content-body iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
}

/* 吹き出し系 */
/* VK Blocks 吹き出しブロック - カード型スタイル */
.vk_balloon {
  background-color: var(--color-background) !important;
  border: 1px solid #000000;
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* 左配置 */
.vk_balloon-position-left {
  flex-direction: row;
}

/* 右配置（必要に応じて） */
.vk_balloon-position-right {
  flex-direction: row-reverse;
}

/* アイコン部分 */
.vk_balloon_icon {
  flex-shrink: 0;
}

.vk_balloon_icon figure {
  margin: 0;
  text-align: center;
}

.vk_balloon_icon_image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
}

.vk_balloon_icon_name {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  display: block;
}

/* コンテンツ部分 */
.vk_balloon_content_outer {
  flex: 1;
  min-width: 0;
}

.vk_balloon_content {
  position: relative;
  background: transparent !important;
}

/* 吹き出しの矢印を非表示（カード型デザインのため） */
.vk_balloon_content_before,
.vk_balloon_content_after {
  display: none !important;
}

.vk_balloon_content p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 10px 0;
}

.vk_balloon_content p:last-child {
  margin-bottom: 0;
}

/* アニメーション設定を無効化 */
.vk_balloon-animation-none {
  animation: none;
}

/* 中間バナー画像 */
.spot-middle-banner-image {
  width: 113vw;
  margin: 0 calc(47% - 42vw) !important;
  z-index: 1;
}

.spot-middle-banner-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* 見所スニペット */
.spot-nearby-attractives {
  margin: 40px 0;
}

.spot-nearby-attractives__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.spot-nearby-attractives__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 2.75;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spot-nearby-attractives__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.spot-nearby-attractives__item .item-col {
  width: 100%;
  height: 100%;
}

.spot-nearby-attractives__item .item-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.spot-nearby-attractives__item:hover .item-col img {
  transform: scale(1.05);
}

/* モーダル - 非表示 */
.spot-nearby-attractives__item-modal {
  display: none;
}

/* ==================== 
   スポット見どころギャラリー
==================== */
.spot-nearby-attractives {
  margin: 40px 0;
}

.spot-nearby-attractives__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.spot-nearby-attractives__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spot-nearby-attractives__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.spot-nearby-attractives__item .item-col {
  width: 100%;
  height: 100%;
}

.spot-nearby-attractives__item .item-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.spot-nearby-attractives__item:hover .item-col img {
  transform: scale(1.05);
}

.spot-nearby-attractives__item-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  overflow: hidden;
}

/* モーダルアクティブ */
.spot-nearby-attractives__item-modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 60px 20px 20px; */
}

.spot-nearby-attractives__item-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  background: rgba(20, 10, 10, .92);
  /* 暗い茶寄りの黒 */
  backdrop-filter: saturate(90%) blur(1px);
  transition: opacity .2s ease;
}

.spot-nearby-attractives__item-modal.is-active {
  display: grid;
  opacity: 1;
}

.spot-nearby-attractives__item-modal__content {
  width: min(78vw, 1100px);
  max-height: calc(100vh - 10px);
}

/* 大判写真 */
.spot-nearby-attractives__item-modal__content>img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .45);
}

/* ===== コメントカード ===== */
.nearby-attractives-comment {
  width: 100%;
  margin: 22px auto 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  color: #fff;
  line-height: 1.9;
  font-size: 1.05rem;
  background: rgba(0, 0, 0, .65);
  border-radius: 18px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, .06) inset, 0 12px 28px rgba(0, 0, 0, .35);
}

.nearby-attractives-comment__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nearby-attractives-comment__author img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .12);
}

.nearby-attractives-comment__author span {
  font-size: .86rem;
  opacity: .9;
}

.nearby-attractives-comment__desc {
  margin: 0;
  color: #fff !important;
}

/* ===== 右上 ✕ と 矢印 ===== */
.modal-close-btn,
.modal-nav-prev,
.modal-nav-next {
  position: fixed;
  z-index: 10000;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.modal-close-btn {
  top: 22px;
  right: 28px;
  font-size: 34px;
  line-height: 1;
}

.modal-nav-prev {
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}

.modal-nav-next {
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}

/* くの字矢印（CSSだけで描画） */
.modal-nav-prev::before,
.modal-nav-next::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(135deg);
}

.modal-nav-next::before {
  transform: rotate(-45deg);
}

.modal-close-btn:hover,
.modal-nav-prev:hover,
.modal-nav-next:hover {
  opacity: .8;
}

/* ===== 周辺の旅館 ===== */
/* コンテナ */
.ryokan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* カード本体 */
.ryokan-card {
  /* background: #fff; */
  border-radius: 12px;
  border-top-right-radius: 48px;
  overflow: hidden;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.ryokan-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* リンク */
.ryokan-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* サムネイル */
.ryokan-card__thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* height: 200px; */
  margin: 0;
  overflow: hidden;
  /* background: #f0f0f0; */
}

.ryokan-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* transition: transform 0.3s ease; */
}

.ryokan-card:hover .ryokan-card__thumbnail img {
  transform: scale(1.05);
}

/* タイトルセット */
.ryokan-card__titleset {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  /* gap: 16px; */
}

/* タイトルラッパー */
.ryokan-card__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  /* background: #fff; */
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.ryokan-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.ryokan-card__area-info {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* タグリスト */
.ryokan-card__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* タグアイテム */
.ryokan-card__tag-item {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.02em;
}

.ryokan-card__tag-item::before {
  content: "#";
  position: absolute;
  left: 0;
  color: #999;
  font-weight: normal;
}

/* アクセシビリティ：フォーカス時のスタイル */
.ryokan-card__link:focus {
  outline: none;
}

.ryokan-card__link:focus .ryokan-card__title-wrapper {
  border: 2px solid #7b68ee;
  box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.2);
}

/* ez-tocの不要な要素を非表示 */
.ez-toc-section,
.ez-toc-section-end {
  display: contents;
}
/* ===== END 周辺の旅館 ===== */

/* メインバナー（既に定義済みとのこと） */
.pickup-ryokan-banner {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;

  width: 113vw;
  margin: 60px calc(47% - 42vw) !important;
}

/* 背景画像の暗いオーバーレイ */
.pickup-ryokan-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* ラッパー */
.pickup-ryokan-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 250px 200px 100px 200px;
  padding: 0 40px;
}

/* ヘッダー部分 */
.pickup-ryokan-banner-header {
  margin-bottom: 40px;
  max-width: 500px;
}

.pickup-ryokan-banner-header h2 {
  font-size: 18px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  margin: 0 0 24px 0;
  border-bottom: 2px solid #fff;
}

/* 旅館情報部分 */
.pickup-ryokan-info {
  max-width: 600px;
}

/* タイトルセット */
.pickup-ryokan-titleset {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 旅館名 */
h3.pickup-ryokan-name {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.08em;
  line-height: 1.2;
  background: none;
}

/* 説明文 */
p.pickup-ryokan-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* 最大5行表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ボタン */
.pickup-ryokan-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  max-width: 200px;
}

.pickup-ryokan-button:hover {
  background: #ff7a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.pickup-ryokan-button:hover::after {
  transform: translateX(4px);
}

.pickup-ryokan-button.text-white {
  color: #ffffff;
}

/* アニメーション（オプション） */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pickup-ryokan-banner-header,
.pickup-ryokan-name,
.pickup-ryokan-description,
.pickup-ryokan-button {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.pickup-ryokan-banner-header { animation-delay: 0.2s; }
.pickup-ryokan-name { animation-delay: 0.3s; }
.pickup-ryokan-description { animation-delay: 0.4s; }
.pickup-ryokan-button { animation-delay: 0.5s; }

/* ez-tocの不要な要素を非表示 */
.ez-toc-section,
.ez-toc-section-end {
  display: contents;
}

/* スポットカード */
.spot-card {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    border-top-right-radius: 48px;
    gap: 24px;
    /* padding: 20px; */
    margin-bottom: 15px;
}

.spot-card__link {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.spot-card__link:hover {
    transform: translateY(-4px);
}

.spot-card__thumbnail {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.spot-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.spot-card__link:hover .spot-card__thumbnail img {
    transform: scale(1.05);
}

.spot-card__content {
    flex: 1;
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spot-card__category {
    display: inline-block;
    background-color: #fff;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px;
    width: fit-content;
}

/* カテゴリが空の場合は非表示 */
.spot-card__category:empty {
    display: none;
    margin-bottom: 0;
}

.spot-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    color: #fff;
}

p.spot-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #e0e0e0;
    font-weight: 300;
}

.spot-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.spot-card__tag-item {
    font-size: 16px;
    color: #999;
}

.spot-card__tag-item::before {
    content: '#';
    margin-right: 2px;
}

/* ==== END CONTENT BODY ===== */