body {
  background-color: #f5f5f3;
  font-family: YakuhanJP, "Noto Sans JP", "Noto Sans TC", "Noto Sans SC",
    "Noto Sans KR", "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6em;
  font-weight: 400;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 15px;
  }
}

/* ナビゲーションバーの基本設定 */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
  background-color: #fff;
  border-bottom: 1.5px dotted #c0c0c0;
  gap: 8px; /* 最小限の間隔 */
}

/* ロゴ部分 */
.navbar-brand {
  flex: 0 1 auto; /* 必要に応じて縮小可能 */
  min-width: 0; /* 重要: これがないと縮小されない */
  max-width: 50%; /* ロゴが横幅の50%を超えないように */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.navbar-brand img {
  max-width: 100%;
  max-height: 40px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

/* 右側のアクション部分 */
.navbar-actions {
  flex: 0 0 auto; /* 縮小しない、固定幅 */
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* MAP リンク */
.navbar-map-link {
  display: inline-block;
  font-size: 16px;
  white-space: nowrap;
  padding: 4px 8px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0; /* 絶対に縮小しない */
}

/* 言語切替ボタン */
.navbar-lang-btn {
  border: none;
  padding: 4px 8px;
  background: transparent;
  flex-shrink: 0; /* 絶対に縮小しない */
  min-width: auto;
}

.icon-lang {
  font-size: 20px;
  display: block;
}

/* 画面幅が狭い場合の調整 */
@media (max-width: 576px) {
  .navbar {
    padding-left: 5px;
    padding-right: 5px;
  }

  .navbar-brand {
    margin-right: 5px;
  }

  .navbar-brand img {
    max-height: 32px;
  }

  .navbar-nav a {
    font-size: 14px;
  }

  .icon-lang {
    font-size: 20px;
  }

  .dropdown .btn {
    padding: 4px 8px;
  }

  /* 右側の要素間の間隔を調整 */
  .navbar .d-flex {
    gap: 8px !important;
  }
}

@media (max-width: 400px) {
  .navbar {
    padding-left: 3px;
    padding-right: 3px;
  }

  .navbar-brand {
    margin-right: 3px;
  }

  .navbar-brand img {
    max-height: 28px;
  }

  .navbar-nav a {
    font-size: 13px;
    padding: 4px 6px;
  }

  .icon-lang {
    font-size: 18px;
  }

  .dropdown .btn {
    padding: 3px 6px;
  }

  /* 右側の要素間の間隔をさらに狭める */
  .navbar .d-flex {
    gap: 5px !important;
  }
}

/* iPhone SE (320px) や非常に狭い画面向け */
@media (max-width: 350px) {
  .navbar {
    padding-left: 2px;
    padding-right: 2px;
  }

  .navbar-brand {
    margin-right: 2px;
  }

  .navbar-brand img {
    max-height: 24px;
  }

  .navbar-nav a {
    font-size: 12px;
    padding: 3px 5px;
  }

  .icon-lang {
    font-size: 16px;
  }

  .dropdown .btn {
    padding: 2px 4px;
  }

  /* 右側の要素間の間隔を最小限に */
  .navbar .d-flex {
    gap: 3px !important;
  }
}

.dropdown-menu {
  border-radius: 0;
  padding: 0 !important;
  min-width: auto;
}

.dropdown-divider {
  margin: 0 !important;
}

.dropdown-toggle {
  border: none;
  padding-right: 5px;
  padding-left: 20px;
}

.dropdown-item {
  font-size: 15px;
}

.dropdown-item:active {
  background-color: #105779 !important;
}

.dropdown-toggle::after {
  display: none !important;
}

section {
  margin-top: 56px;
}

@media screen and (min-width: 992px) {
  section {
    margin-top: 96px;
  }
}

/*ページ共通	*/
@media screen and (max-width: 767px) {
  section {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  section {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 992px) {
  section {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}

.show-all-if-mouse-hover {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.show-all-if-mouse-hover:hover {
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
}

/*トップスライダー*/
/*右側にできる謎の余白を消す*/
.topslider-wrapper {
  overflow: hidden;
}

.topslider {
  padding: 0;
}

.topslider img {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  display: block;
}

.topslider img {
  aspect-ratio: 2 / 1;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* 共通：オーバーレイのスタイル */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/*動く線のアニメーション*/
.scrolldown1 {
  /*描画位置*/
  position: absolute;
  left: 50%;
  bottom: 30px;
  /*全体の高さ*/
  height: 23vh;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1.5px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 4.8s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 220px;
    opacity: 0;
  }
}

.blocktitle {
  font-size: 32px;
  font-weight: 300;
  padding: 0 0 40px 0;
  line-height: 1.4em;
  letter-spacing: 0.4rem;
}

@media screen and (min-width: 992px) {
  .blocktitle {
    font-size: 40px;
    padding: 0 0 56px 0;
  }
}

.transparent {
  position: relative;
  display: inline-block;
  width: 100%;
}

.topslider,
.topslider li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catch-copy {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.4em !important;
  letter-spacing: 0.4rem;
}

@media screen and (min-width: 992px) {
  .catch-copy {
    font-size: 48px;
  }
}

/* お知らせ欄 */

.news ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news ul li {
  padding: 24px 0;
  border-top: 1px dotted #000;
}

.news ul li:last-of-type {
  border-bottom: 1px dotted #000;
}

p {
  margin-bottom: 0;
}

.news ul li p:first-of-type {
  padding-bottom: 6px;
  font-size: 13px;
  font-weight: 300;
}

@media screen and (min-width: 992px) {
  .news ul li p:first-of-type {
    font-size: 15px;
  }
}

/*チケット表示*/

.ticket img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px dotted;
}

.ticket {
  border: 1px dotted #000;
  background-color: #fff;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ticketname {
  font-weight: 400;
  font-size: 16px;
}

@media screen and (min-width: 992px) {
  .ticketname {
    font-size: 18px;
    line-height: 1.6em;
  }
}

.ticketbody-group {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.taggroup {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap; /* ← 折り返し可能にする */
}

.tag {
  border: 1px dotted;
  padding: 0 5px;
  margin-right: 6px;
  font-size: 12px;
  white-space: nowrap;
  margin-bottom: 6px;
}

.locate {
  margin-bottom: 5px;
}

.price {
  font-size: 15px;
  letter-spacing: 0.1em;
  padding-top: 15px;
}

.category img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
}

.category {
  border: 1px dotted #000;
  background-color: #fff;
  border-radius: 8px;
}

.category-group a {
  text-decoration: none;
}

.category p {
  padding: 8px 16px;
  position: relative;
}

.category p:first-of-type {
  border-bottom: 1px dotted #000;
  border-radius: 8px 8px 0 0;
}

.category p:nth-of-type(2) {
  border-top: 1px dotted #000;
  padding-right: 1.5em;
}

.category p .arrow::before {
  position: absolute;
  right: 14px;
  top: 21px;
  display: block;
  content: "";
  width: 15px;
  height: 1.5px;
  background: var(--arrow-color, #000); /* fallback: #000 */
}

.category p .arrow::after {
  position: absolute;
  right: 15px;
  top: 16px;
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--arrow-color, #000);
  border-top: 1.5px solid var(--arrow-color, #000);
  transform: rotate(45deg);
}

/* スマホ: 最初の2つ */
@media (max-width: 767.98px) {
  .row.no-top-gutter > .col:nth-child(-n + 2) {
    padding-top: 0 !important;
  }
}

/* タブレット: 最初の3つ */
@media (min-width: 768px) and (max-width: 991.98px) {
  .row.no-top-gutter > .col:nth-child(-n + 3) {
    padding-top: 0 !important;
  }
}

/* PC: 最初の4つ */
@media (min-width: 992px) {
  .row.no-top-gutter > .col:nth-child(-n + 4) {
    padding-top: 0 !important;
  }
}

/*文字重ねる*/
.transparent {
  position: relative;
  display: inline-block;
}

.transparent img {
  display: block;
}

.transparent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

/*特集バナー*/
.feature img {
  width: 100%;
  aspect-ratio: 8 / 3;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px dotted;
}

.feature {
  border: 1px dotted;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (min-width: 1400px) {
  .feature-group {
    width: calc(100% / 4 - 16px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1399.98px) {
  .feature-group {
    width: calc(100% / 3 - 16px);
  }
}

@media screen and (max-width: 767.98px) {
  .feature-group {
    width: 100%;
  }
}
.feature-group {
  margin: 8px;
}

.feature-group a {
  text-decoration: none;
}

.feature p {
  padding: 8px 16px;
  position: relative;
  padding-right: 1.5em;
}

.feature p .arrow::before {
  position: absolute;
  right: 14px;
  top: 21px;
  display: block;
  content: "";
  width: 15px;
  height: 1.5px;
  background: var(--arrow-color, #000); /* fallback: #000 */
}

.feature p .arrow::after {
  position: absolute;
  right: 15px;
  top: 16px;
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--arrow-color, #000);
  border-top: 1.5px solid var(--arrow-color, #000);
  transform: rotate(45deg);
}

.area {
  margin-bottom: 20px;
}

.area img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.areaname {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 15px;
}

.prefecturename {
  margin-top: 3px;
  font-size: 12px;
}

/* 特集ページ */
.description img {
  width: auto; /* 自然幅を優先し不要な拡大を防ぐ */
  max-width: 100%; /* コンテナをはみ出す場合のみ縮小 */
  height: auto !important;
  object-fit: initial; /* 拡大時のぼけ防止 (contain/cover 解除) */
  aspect-ratio: auto !important;
  display: block;
  margin: 0 auto; /* 必要なら中央寄せ */
  image-rendering: auto;
}

.blocktitle-feature {
  font-size: 24px;
  font-weight: 300;
  padding: 24px 0;
  line-height: 1.4em;
  letter-spacing: 0.4rem;
}

@media screen and (min-width: 992px) {
  .blocktitle-feature {
    font-size: 40px;
    padding: 0 0 24px 0;
  }
}

/*検索ページ*/
/*上部固定*/
.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: calc(infinity);
  background-color: #fff;
  border-bottom: 1px solid;
  border-color: #e2e2e2;
  right: 2px;
  padding: 0 20px;
}

.select-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.categorybox {
  margin-right: 12px;
}

/*セレクトボックス*/
.box {
  padding: 15px 0;
  width: 48%;
  max-width: 300px;
}
.box:before,
.box:after {
  content: "";
  display: table;
}
.box:after {
  clear: both;
}

label {
  font-size: 12px;
  margin: 0 2px 4px;
  text-transform: uppercase;
  float: left;
}

/*検索結果件数の表示*/
.number {
  font-size: 12px;
  margin: 32px 0 24px 0;
}

/*ページ番号*/
.pagination a {
  display: inline-block;
  text-decoration: none;
  width: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 5px;
}

.pagination {
  justify-content: center;
  margin-top: 60px;
}

.pagination a:hover {
  border-bottom: 1.5px dotted;
}

.pagination .active a {
  border-bottom: 1.5px dotted;
}

/*チケット詳細ページ*/

/*スライダー*/
/*右側にできる謎の余白を消す*/
.slider-wrapper {
  overflow: hidden;
  margin: 0;
}

.slider-wrapper1 {
  overflow: hidden;
}

.slider-wrapper2 {
  overflow: hidden;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .slider-wrapper1 {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 992px) {
  .slider-wrapper1 {
    padding-left: 15vw;
    margin-right: 30px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .slider-wrapper2 {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 992px) {
  .slider-wrapper2 {
    padding-right: 15vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .slider-wrapper3 {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 992px) {
  .slider-wrapper3 {
    padding-left: 15vw;
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .slider-wrapper3 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .slider-wrapper4 {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 992px) {
  .slider-wrapper4 {
    padding-right: 15vw;
  }
}

.slide {
  padding: 0;
}

.slide img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  max-width: 1200px;
  margin: 0 auto;
}

.slide .slide-item::before {
  display: block;
  content: "";
  position: relative;
  overflow: hidden;
}

.slide > .slick-list,
.slide > .slick-list > .slick-track,
.slide > .slick-list > .slick-track > .slick-slide > div {
  position: relative;
  height: 100%;
}

/* slide-navigation */

.slide-navigation {
  position: relative;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.slide-navigation .slide-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 45%;
  height: 100%;
  aspect-ratio: 8 / 5;
  margin: 0 5px 5px 0;
}

.slide-navigation .slide-item img:hover {
  opacity: 0.4;
}

.slide-navigation .slide-item::before {
  display: block;
  aspect-ratio: 8 / 5;
  height: 100%;
  content: "";
}
.slide-navigation .slide-item img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.slide-navigation .current::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}

.slide-navigation .current img {
  opacity: 0.4;
  filter: grayscale(100%);
}

.slick-dots li button:before {
  font-size: 20px;
  /* ドットの大きさをmacとwindowsでそろえるため */
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}

.slick-dots li {
  width: 5px;
  display: inline-block;
}

.slick-dots {
  width: 100%;
  bottom: -30px;
  text-align: center;
  right: 7.2px;
}

/*スライドが1つしかない時にドットを非表示*/
.slick-dots > li:first-child:last-child {
  display: none;
}

/*パンくずリスト*/
.breadcrumb li:not(:last-of-type)::after {
  content: "＞";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

.breadcrumb li {
  font-size: 12px;
}

.breadcrumb {
  padding-top: 5px;
  margin-bottom: 0;
}

ol {
  list-style: none;
  padding: 0;
}

a,
a:hover,
a:visited {
  color: inherit;
}

.breadcrumb-list {
  display: flex; /*横並びにする*/
  overflow-x: scroll; /*横にはみ出した要素をスクロールする*/
  white-space: nowrap; /*自動改行しないようにする*/
}

@media screen and (max-width: 767px) {
  .breadcrumb-wrapper {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-wrapper {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 992px) {
  .breadcrumb-wrapper {
    padding-right: 15vw;
    padding-left: 15vw;
  }
}

/*PDF表示*/
.pdftitle {
  font-size: 14px;
  margin: 20px 0;
  text-align: center;
}

.pdfview iframe {
  width: 100%;
  aspect-ratio: 1.414 / 1;
  object-fit: cover;
  padding: 10px;
}

.pdfslider-wrapper {
  margin: 80px 0;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.pdfslider {
  padding: 0;
}

.transparent2 {
  position: relative;
  display: inline-block;
  width: 100%;
}

.transparent2 {
  position: relative;
  display: inline-block;
}

.transparent2 img {
  display: block;
}

.transparent2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-body iframe {
  aspect-ratio: 1.414 / 1;
  width: 100%;
}

/*おすすめチケットのスライダー*/
.recomendslider-wrapper {
  overflow: hidden;
}

.recomendslider {
  padding: 0;
}

.recomendslick-list {
  overflow: visible;
}

.recomendslider img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.recomendslider li {
  padding-right: 20px;
}

.recomend {
  border-bottom: 1px solid;
  border-color: #e2e2e2;
  padding-bottom: 100px;
  border-top: 1px solid #e2e2e2;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .recomend {
    padding-left: 25px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .recomend {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 992px) {
  .recomend {
    padding-right: 15vw;
    padding-left: 15vw;
  }
}

.icon {
  font-size: 18px;
  margin-right: 1px;
  vertical-align: -3px;
}

.sub-blocktitle {
  font-size: 18px;
  padding: 70px 0;
}

.ticket-description-group {
  margin: 40px 0;
}

.ticket-description {
  font-size: 14px;
  line-height: 30px;
}

.ticket-description-title {
  font-size: 14px;
  font-weight: 500;
}

a.link {
  color: #404040;
  margin-right: 10px;
  text-underline-offset: 4px;
}

a.link:hover {
  color: #105779;
}

.sub-title {
  font-size: 16px;
  padding: 12px 0 5px 0;
}

.sub-prefecture {
  font-size: 14px;
}

/*表*/
th {
  font-size: 14px;
  font-weight: normal;
  line-height: 30px;
  width: 120px;
  color: #8a8a8a;
}

td {
  font-size: 14px;
  line-height: 30px;
  padding-block: 20px;
}

table {
  letter-spacing: 0.1em;
  width: 100%;
}

tr {
  border-bottom: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
}

/*SNSシェアボタンモーダル*/
.modal-header {
  border-bottom: none;
}

.share {
  font-size: 13px;
  font-weight: bold;
  padding-top: 12px;
}

.share-title {
  font-size: 15px;
  margin: 0 20px 5px 20px;
}

.icon-share {
  font-size: 17px;
  margin-right: 1px;
  vertical-align: -4px;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
}

.share {
  margin: 0 0 0 auto;
  border: none;
}

.modal-body a {
  display: block;
  text-decoration: none;
  margin: 20px 10px;
}

.modal-body {
  padding-top: 0;
  text-align: center;
}

.logo-size {
  width: 40px;
}

.share-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
  justify-content: center;
}

/*購入ボタン*/
footer {
  padding: 0 20px;
  border-top: 1px solid;
  border-color: #e2e2e2;
  height: 70px;
  background-color: #fffefa;
}

.btn-outline-danger {
  color: white;
  background-color: #105779;
  border-radius: 0;
  padding: 10px;
  width: 100%;
  margin-top: 12px;
  border: none;
}

.btn-outline-danger:hover {
  background-color: #105779;
  opacity: 0.9;
}

.btn-outline-danger:active {
  background-color: #105779 !important;
}

.special {
  font-weight: bold !important;
  color: #fff !important;
  background: #105779 !important;
  text-transform: uppercase;
}

.button {
  margin-top: 20px;
}

button a {
  text-decoration: none;
}

/* トピックスを表示するカードの幅・高さを固定する */
.topic-card img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: contain;
  border-radius: 0;
  border-bottom: 1px dotted;
}

/* slickの矢印をカスタマイズ */
.slick-prev::before,
.slick-next::before {
  content: none !important; /* ← これでデフォルト矢印を非表示に */
}

.arrow-left::before {
  transform: rotate(-135deg) translateX(-2px) translateY(1px);
}

.arrow-right::before {
  transform: rotate(45deg) translateX(-2px) translateY(2px);
}

#topics-list {
  padding: 16px;
}

#topics-list .slick-slide {
  box-sizing: border-box;
  margin-top: 0 !important;
}
#topics-list .slick-list {
  margin: 0 -16px;
}
#topics-list .card {
  margin: 10px;
}

#topics-list .card-body {
  padding: 16px;
}

#topics-list .card-title {
  font-weight: 400;
  margin-bottom: 14px;
  font-size: 16px;
}

@media screen and (min-width: 992px) {
  #topics-list .card-title {
    font-size: 18px;
  }
}

.link-btn a {
  text-decoration: none;
  display: block;
}

.link-btn {
  padding: 8px 16px;
  position: relative;
  padding-right: 1.5em;
  border-top: 1px dotted;
  position: relative;
}

.link-btn .arrow::before {
  position: absolute;
  right: 14px;
  top: 21px;
  display: block;
  content: "";
  width: 15px;
  height: 1.5px;
  background: var(--arrow-color, #000); /* fallback: #000 */
}

.link-btn .arrow::after {
  position: absolute;
  right: 15px;
  top: 16px;
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--arrow-color, #000);
  border-top: 1.5px solid var(--arrow-color, #000);
  transform: rotate(45deg);
}

#topics-list .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px dotted;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 8px;
}

.oversection {
  margin-top: 50px;
}

@media screen and (min-width: 992px) {
  .oversection {
    margin-top: 96px;
  }
}

@media screen and (max-width: 767px) {
  .oversection .blocktitle {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .oversection .blocktitle {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

@media screen and (min-width: 992px) {
  .oversection .blocktitle {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}

#banner-ad-list img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px dotted #c0c0c0;
}

#banner-ad-list .slick-slide {
  margin: 0 10px;
}

.adsection {
  margin-top: 56px;
}

@media screen and (min-width: 992px) {
  .adsection {
    margin-top: 96px;
  }
}

/*ページ共通	*/
@media screen and (max-width: 767px) {
  .adsection {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .adsection {
    padding-right: calc(6vw - 10px);
    padding-left: calc(6vw - 10px);
  }
}

@media screen and (min-width: 992px) {
  .adsection {
    padding-right: calc(10vw - 10px);
    padding-left: calc(10vw - 10px);
  }
}

/* トップ画像オーバーレイ調整 */
.card-img-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw 3vw; /* 内側余白で端のはみ出し防止 */
  box-sizing: border-box;
  overflow: hidden;
}

/* キャッチコピー: 画像内に収まる可変サイズ */
.catch-copy {
  max-width: 90%;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.35rem;
  font-size: clamp(20px, 6vw, 48px); /* 端末幅に応じて縮小 */
}

/* 文字数が極端に多い場合 (狭幅) の微調整 */
@media (max-width: 480px) {
  .catch-copy {
    font-size: clamp(18px, 7vw, 32px);
    letter-spacing: 0.25rem;
  }
}

@media (max-width: 360px) {
  .catch-copy {
    font-size: clamp(16px, 7.5vw, 28px);
    letter-spacing: 0.2rem;
  }
}

/* 英数字長文の詰まり対策 */
.catch-copy:lang(en) {
  letter-spacing: 0.15rem;
}

/* 行が多くなった時に自動で字間を少し詰める */
.catch-copy.tight {
  letter-spacing: 0.15rem;
}

/* 特集本文内の箇条書き復元 */
.description ol,
.description ul {
  margin: 0 0 0.8em 1.6em;
  padding: 0;
}
.description ol {
  list-style: decimal outside;
}
.description ul {
  list-style: disc outside;
}
.description li {
  list-style: inherit;
  margin: 0 0 0.25em;
  padding: 0;
  border: none;
}

.topic-card .card-text ol,
.topic-card .card-text ul {
  list-style: decimal outside;
  margin: 0 0 0.8em 1.6em;
  padding: 0;
}
.topic-card .card-text ul {
  list-style: disc outside;
}
.topic-card .card-text li {
  list-style: inherit;
  margin: 0 0 0.25em;
  padding: 0;
  border: none;
}
