/*--------------------------------------------------
共通：ボタン・リンク・見出し・色など
--------------------------------------------------*/
/* 下層ヒーロータイトル */
.hero-title-block {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3em 1em;
  text-align: center;
  color: #fff;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -2em;
}

.hero-title-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-title-en {
  position: relative;
  z-index: 1;
  font-family: 'Marcellus', serif;
  font-size: 3.5em;
  font-weight: 400;
}

.hero-title-text {
  position: relative;
  z-index: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 767px) {
  .hero-title-en {
    font-size: 3em;
  }

  .hero-title-text {
    font-size: 1.2em;
  }
}

.hero-title__line {
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin: 0.5em auto 1.5em;
}


/* セクションタイトル */

/* セクション全体の余白 */

.fullWide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.fullWide-bg-pink {
  background-color: #CC8B92;
}

.fullWide-bg-yellow {
  background-color: #FFFBF8;
}

.fullWide-bg-brown {
  background-color: #f8f4f2;
}

.section-grid {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

@media (max-width: 768px) {
  .fullWide .section-grid {
    width: 90%;
  }
}

.section-grid.is-no-padding {
  padding: 0;
}

.section-grid-footer {
  text-align: center;
  margin-top: 3rem;
}

.section-wrap {
  margin-top: 3rem;
}

.section-wrap-pink {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.section-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

@media screen and (max-width: 1024px) {
  .section-inner {
    width: 95%;
  }
}

/* セクション見出し全体 */
.c-section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* 左寄せバージョン */
.c-section-heading.is-leftalign {
  text-align: left;
}

.c-section-heading.is-leftalign .c-section-heading__line {
  display: none;
}

/* 英字タイトル */
.c-section-heading__en {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  position: relative;
}

/* ライン */
.c-section-heading__line {
  width: 60px;
  height: 2px;
  margin: 0 auto 0.8rem;
  background-color: currentColor;
}

/* 日本語タイトル */
.c-section-heading__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.95rem;
  color: #444;
}

/* カラーテーマ：ピンクブラウン */
.section-theme-pinkBrown .c-section-heading__en,
.section-theme-pinkBrown .c-section-heading__line {
  color: #BB7A80;
}

/* カラーテーマ：ピンク */
.section-theme-pink .c-section-heading__en,
.section-theme-pink .c-section-heading__line {
  color: #CC8B92;
}

/* カラーテーマ：ゴールド */
.section-theme-gold .c-section-heading__en,
.section-theme-gold .c-section-heading__line {
  color: #CBB199;
}

/* カラーテーマ：ブラウン */
.section-theme-brown .c-section-heading__en,
.section-theme-brown .c-section-heading__line {
  color: #6E533B;
}

/* カラーテーマ：ホワイト */
.section-theme-white .c-section-heading__en,
.section-theme-white .c-section-heading__line {
  color: #fff;
}


.top #content {
  padding-top: 0;
}


/*--------------------------------------------------
ボタン ベーシック
--------------------------------------------------*/

/* ベーススタイル */
.c-btn {
  padding: 0.75rem 3rem;
  font-size: 1rem;
  background: #CC8B92;
  color: #fff;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}

/* カラー別 */
.c-btn--main {
  background-color: #CC8B92;
  color: #fff;
}

.c-btn--main:hover {
  background: #bb7a80;
}

.c-btn--gold {
  background-color: #CBB199;
  color: #fff;
}

.c-btn--gold:hover {
  background-color: #AD8B6B;
}

.c-btn--brown {
  background-color: #6E533B;
  color: #fff;
}

.c-btn--brown:hover {
  background-color: #493422;
}

/* アウトラインバージョン */
.c-btn.is-outline {
  background-color: #fff;
  border: 1px solid currentColor;
}

.c-btn.is-outline:hover {
  color: #fff;
}

.c-btn--main.is-outline {
  color: #CC8B92;
  border-color: #CC8B92;
}

.c-btn--main.is-outline:hover {
  background-color: #CC8B92;
}

.c-btn--gold.is-outline {
  color: #CBB199;
  border-color: #CBB199;
}

.c-btn--gold.is-outline:hover {
  background-color: #CBB199;
}

.c-btn--brown.is-outline {
  color: #6E533B;
  border-color: #6E533B;
}

.c-btn--brown.is-outline:hover {
  background-color: #6E533B;
}

/* 角丸サイズ */

.c-btn.is-radius-sm {
  border-radius: 5px;
}

/* 大小サイズ */
.c-btn.is-large {
  font-size: 1.25em;
  width: 500px;
}

@media screen and (max-width: 767px) {
  .c-btn.is-large {
    width: 100%;
  }
}

.c-btn.is-small {
  /* font-size: 0.85em; */
  padding: 0.5em 2rem;
}

@media screen and (max-width: 767px) {
  .c-btn.w-sp-240 {
    width: 240px;
  }
}

/* シャドウスタイル */

.c-btn.is-shadow {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* アイコン付き共通 */
.c-btn-icon {
  align-items: center;
  display: inline-flex;
  gap: 1em;
}

@media screen and (max-width: 767px) {
  .c-btn-icon svg {
    font-size: 1em;
  }
}

.c-btn-icon svg {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
}

/* ボタン中央寄せ */
.btn-wrap-center {
  text-align: center;
  margin: 2em 0;
}

.btn-wrap-center.is-marginTB-4rem {
  margin: 4rem 0;
}

/*--------------------------------------------------
ボタン リンクリスト
--------------------------------------------------*/

.c-link-icon-list {
  display: grid;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 4rem;
}

@media (min-width: 1025px) {
  .c-link-icon-list {
    width: 800px;
    grid-template-columns: repeat(6, auto);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .c-link-icon-list {
    grid-template-columns: repeat(3, auto);
  }
}

@media (max-width: 767px) {
  .c-link-icon-list {
    grid-template-columns: repeat(2, auto);
  }
}

.c-link-icon {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.c-link-icon .icon {
  display: inline-block;
  margin-right: 0.5em;
  line-height: 0;
  background-color: #CC8B92;
  border-radius: 30px;
}

.c-link-icon .text {
  color: #444;
}

.c-link-icon:hover .text {
  color: #999;
}

.c-link-icon svg {
  width: 1em;
  height: 1em;
}

/*--------------------------------------------------
共通：見出しデザイン（SWELL風）
--------------------------------------------------*/

/* タイトル */
.c-page-title {
  font-size: 1.5em;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #CC8B92;
}

.c-heading--lv2 {
  background-color: #F7DADD;
  color: #6E533B;
  font-size: 1.25em;
  font-weight: bold;
  padding: 0.6em 1em;
  border-left: 5px solid #CC8B92;
  margin-top: 2em;
  margin-bottom: 1.5em;
}


.c-heading--lv3 {
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  color: #6E533B;
  padding-bottom: 0.3em;
  margin: 2em 0 1em;
  border-bottom: 1px solid #eee;
}

.c-heading--lv3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 120px;
  background-color: #CC8B92;
}

.c-heading--lv4 {
  position: relative;
  font-size: 1.05rem;
  font-weight: bold;
  color: #6E533B;
  margin: 2em 0 1em;
  padding-left: 1em;
}

.c-heading--lv4::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 3px;
  height: 1.3em;
  background-color: #CC8B92;
  border-radius: 2px;
}

.l-single-content {
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .l-single-content {
    max-width: 800px;
  }
}

/* --------------------------------------------------
Swiper
-------------------------------------------------- */

/* 共通構造 */
.swiper-section {
  width: 100%;
  position: relative;
  padding: 3rem 0;
}

.swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

/* Main Visual 共通カード */
.mainvisual-card {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
}

/* キャプション全体 */
.mv-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* 上段：ジャンルラベル＋View More */
.mv-caption-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 左側のラベルグループ */
.mv-label-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ジャンルラベル */
.mv-genre-label {
  background-color: #6E533B;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.mv-genre-label.genre-competition {
  background-color: #CC8B92;
  /* コンクール：メインカラー */
}

.mv-genre-label.genre-studio {
  background-color: #CBB199;
  /* スタジオ：アクセント */
}

/* PRラベル */
.mv-pr-label {
  display: inline-block;
  border: 1px solid #6E533B;
  color: #6E533B;
  font-size: 0.75rem;
  padding: 0.18rem 0.6rem;
  border-radius: 9999px;
  font-weight: bold;
}

/* タイトル1行制限 */
.mv-title {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* View More ボタン */
.mv-more-link {
  font-family: 'Marcellus', serif;
  font-size: 0.875rem;
  font-weight: bold;
  color: #6E533B;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.3s ease;
}

.mv-more-link::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.mv-more-link:hover {
  opacity: 0.75;
}

.mv-more-link:hover::after {
  transform: translateX(4px);
}

/* Swiper 矢印ナビゲーション */
.swiper-nav-common {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  background-size: 1rem 1rem;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.swiper-button-next,
.swiper-button-prev {
  width: 2rem !important;
  height: 2rem !important;
}

.swiper-button-prev.swiper-nav-common {
  left: 1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%236E533B' viewBox='0 0 24 24'><path d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/></svg>");
}

.swiper-button-next.swiper-nav-common {
  right: 1rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%236E533B' viewBox='0 0 24 24'><path d='M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z'/></svg>");
}

/* デフォルト矢印非表示 */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
}

/* Swiper ドットナビゲーション */
.swiper-pagination-common {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-common .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 8px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.swiper-pagination-common .swiper-pagination-bullet-active {
  background-color: #CC8B92;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -1px !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .mainvisual-card {
    max-width: 100%;
  }

  .mv-caption {
    padding: 0.75rem;
  }

  .mv-more-link {
    font-size: 0.8rem;
  }

  .mv-title {
    font-size: 0.95rem;
  }

  .swiper-nav-common {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 0.9rem 0.9rem;
  }
}

/*--------------------------------------------------
ピックアップセクション
--------------------------------------------------*/

.pickup-section-outer {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background-color: #CC8B92;
  padding: 2rem 1rem;
}

.pickup-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.pickup-card {
  display: block;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: #333;
}

.pickup-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #CC8B92;
  color: #fff;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 8px;
  z-index: 2;
}

.pickup-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.pickup-info {
  padding: 1rem;
}

.pickup-date {
  display: inline-block;
  background: #eee;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #CC8B92;
}

.pickup-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}

/*--------------------------------------------------
各TOP 今月の〇〇
--------------------------------------------------*/

.c-thismonth-list {
  margin-top: 2em;
}

.c-thismonth-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}

@media (max-width: 768px) {
  .c-thismonth-item-inner {
    flex-direction: column;
  }
}

.c-thismonth-item-head {
  display: flex;
  gap: 0.25em;
}

.c-thismonth-list .c-thismonth-item {
  display: flex;
  align-items: center;
  padding: 0.75em;
  border-bottom: 2px dotted #bebebe;
}

.c-thismonth-list .c-thismonth-item .date {
  min-width: 5em;
  font-weight: bold;
  color: #CC8B92;
  font-size: 0.9em;
}

.c-thismonth-list .c-thismonth-item .title {
  font-size: 1em;
  color: #333;
}

.c-thismonth-item:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
各ページ固有の装飾（必要に応じて分ける）
--------------------------------------------------*/

/* page-competitions.php */
.c-section-link {
  text-align: center;
  margin-top: 2rem;
}

/* single-competition.php */


/* 有料プランエリア */

.common-intro-block {
  padding: 2em 1em;
  max-width: 800px;
  margin: 0 auto;

}

.common-intro-area {
  margin: 2rem 1rem;
}

.gallery-swiper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  aspect-ratio: 14 / 8;
  overflow: hidden;
}

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

.gallery-swiper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.7;
}

.gallery-swiper .swiper-pagination-bullet-active {
  background-color: #CC8B92;
  opacity: 1;
}

.intro-thumbnail {
  max-width: 800px;
  margin: 0 auto 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.intro-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
  white-space: pre-line;
}

.feature-title {
  position: relative;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.75em;
  border-bottom: solid 1px rgba(203, 177, 153, 0.5);
  padding-bottom: 0.5em;
}

.point-num {
  position: absolute;
  top: -0.8em;
  left: -0.3em;
  font-family: 'EB Garamond', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  color: rgba(203, 177, 153, 0.5);
  z-index: 0;
}

.feature-title-span {
  position: relative;
  z-index: 1;
  color: #6E533B;
}

/* 詳細エリア */

.common-info-box {
  padding: 2rem;
  border-radius: 0.5rem;
  border: 2px solid #CC8B92;
}

.is-competition {
  border-color: #CC8B92;
}

.is-studio {
  border-color: #CBB199;
}

.is-brown {
  border-color: #6E533B;
}

.common-meta-list li {
  border-bottom: 1px solid #eee;
  padding: 0.8rem 0;
  list-style: none;
}

.common-meta-list-tag {
  display: inline-block;
  background: #CBB199;
  color: #fcfcfc;
  font-size: 0.8em;
  font-weight: bold;
  padding: 0.3em 0.7em;
  margin-right: 0.5em;
  border-radius: 15px;
  margin-top: 0.3em;
}

.extended {
  color: #e53935;
  font-weight: bold;
}

.kaijou-link,
.organizer-link {
  color: #1176d4;
  text-decoration: underline;
  text-decoration-color: #1176d4;
  text-underline-offset: 3px;
}

.btm-items {
  margin-top: 4em;
}

/* single-organizer.php、single-scholarship.php */
.l-main__inner {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .l-main__inner {
    width: 100%;
    max-width: 800px;
  }
}

/* リスト：・付き */
.event-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1em;
}

.event-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.6em;
  color: #333;
}

.event-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #CC8B92;
  font-size: 1em;
  transform: translateY(0.1em);
}

.event-link {
  color: inherit;
}

.event-link:hover {
  color: #CC8B92;
  /* ホバー時のアクセントカラー */
}

/*page-scholarship.php*/
/* アコーディオン全体 */
.region-index-accordion .accordion-item {
  border-bottom: 1px solid #CBB199;
}

/* アクティブ時の背景色 */
.accordion-toggle.active {
  background-color: #e6ded8;
}

/* アコーディオン展開エリア */
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
}

.accordion-panel ul {
  list-style: none;
  padding: 0.5em 1.5em;
  margin: 0;
}

.accordion-panel li {
  padding: 0.3em 0;
}

/* トグルボタン */
.accordion-toggle {
  position: relative;
  background-color: #FCFCFC;
  color: #6E533B;
  cursor: pointer;
  padding: 1em;
  width: 100%;
  border: none;
  text-align: left;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 矢印アイコン */
.accordion-icon {
  width: 24px;
  height: 24px;
  display: inline-block;

  transform: rotate(0deg);
  transform-origin: 50% 50%;
  /* ✅ 左右・上下ど真ん中 */
  transition: transform 0.3s ease;
  vertical-align: middle;
}

/* 開いた時の矢印 */
.accordion-toggle.active .accordion-icon {
  transform: rotate(180deg);
}

/* 中のリンク */
.accordion-link {
  color: #6E533B;
  transition: color 0.3s ease;
}

.accordion-link:hover {
  color: #CBB199;
}

/* 団体個別ページ */
.org-description {
  margin-top: 2rem;
}

/* page-competition-filter */
/* 月別タブ */
.month-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1.5em;
}

.month-tab {
  padding: 0.5em 1em;
  background-color: #f5f5f5;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.month-tab.active {
  background-color: #CC8B92;
  color: #fff;
}

/*--------------------------------------------------
WP Grid Builder関連：filter, pagination, modal
--------------------------------------------------*/

/* フィルター：ドロップダウンなど */
.wpgb-facet .wpgb-apply,
.wpgb-facet .wpgb-load-more {
  background-color: #CC8B92;
  transition: background-color 0.3s ease;
}

.wpgb-facet .wpgb-apply:hover,
.wpgb-facet .wpgb-load-more:hover {
  background-color: #BB7A80;
}

.wpgb-facet .wpgb-button[aria-pressed=true] {
  background-color: #CBB199 !important;
  border-color: #CBB199 !important;
}

.wpgb-facet .wpgb-inline-list {
  justify-content: center !important;
}

/* 選択中の検索条件 */
.active-filters-box {
  text-align: center;
  margin: 2em 0;
  background-color: #fff;
  padding: 1.5rem 0.5rem 0.1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 960px;
  margin: 2em auto;
}

.active-filters-box_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  color: #333;
  font-weight: bold;
  margin-bottom: 1em;
}

.active-filters-box_head svg {
  width: 1.2em;
  height: 1.2em;
  stroke: #CC8B92;
}

/* 条件を変更するボタン */
/* .open-search-modal-button {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  padding: 0.9em 2em;
  background-color: #CC8B92;
  color: white;
}

.open-search-modal-button svg,
.search-submit-btn svg {
  vertical-align: middle;
  margin-right: 0.4em;
  width: 1.2em;
  height: 1.2em;
} */

/* フィルターのモーダル表示 */
.search-modal {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 3rem 1rem;
}

@media (max-width: 959px) {
  .search-modal {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

.search-modal-content {
  position: relative;
  background: #fff;
  padding: 2em;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  margin: auto;
  animation: scaleIn 0.3s ease-in-out;
  overflow-y: auto;
  padding-bottom: calc(env(safe-area-inset-bottom, 20px) + 3rem);
}


.search-modal-close {
  position: absolute;
  right: 1.5em;
  top: 1em;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}

.search-modal-title {
  font-size: 1.5em;
  margin-bottom: 1em;
  font-weight: bold;
  text-align: center;
}

.search-label {
  font-weight: bold;
  margin: 1em 0;
  padding-left: 1em;
  font-size: 1em;
  position: relative;
}

.search-label::before {
  position: absolute;
  content: '';
  background-color: #CC8B92;
  width: 4px;
  height: 1.5em;
  top: 0;
  left: 0;
}

.search-modal-btnArea {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .search-modal-btnArea {
    flex-direction: column;
  }
}

.search-modal-submit {
  text-align: center;
}

.search-submit-btn {
  display: block;
  width: 240px;
  background-color: #cc8b92;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  padding: 0.8rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-submit-btn:hover {
  background-color: #bb7a80;
}

.wpgb-facet button.wpgb-apply,
.wpgb-facet button.wpgb-reset {
  text-align: center;
  display: block;
  width: 240px;
  margin: 0 !important;
  padding: 0.8rem;
  background-color: #ffffff;
  color: #CC8B92 !important;
  border: 1px solid #CC8B92 !important;
  border-radius: 30px !important;
  font-size: 1rem !important;
  white-space: nowrap;
}

.wpgb-facet button.wpgb-apply[disabled],
.wpgb-facet button.wpgb-reset[disabled] {
  text-align: center;
  display: block;
  width: 240px;
  margin: 0;
  padding: 0.8rem 2.5rem;
  opacity: 0.6;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.wpgb-clear:hover {
  background-color: #f2f2f2;
}

/* モーダルアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes scaleOut {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.9);
    opacity: 0;
  }
}

/* 条件変更ボタン（PageTopボタン上） */
.floating-filter-btn {
  position: fixed;
  right: 2.5em;
  bottom: 6.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #CC8B92;
  /* ピンク */
  border: 1px solid #CC8B92;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  visibility: hidden;
}

@media (max-width: 959px) {
  .floating-filter-btn {
    right: 1em;
    bottom: 6em;
  }
}

.floating-filter-btn:hover {
  background-color: #bb7a80;
}

.floating-filter-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.floating-filter-btn.is-show {
  visibility: visible;
  opacity: 0.9;
  transform: translateY(0);
}

body.modal-open #pagetop {
  display: none !important;
}

/* ページネーション */
.wpgb-facet .wpgb-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-top: 2em;
  flex-wrap: wrap;
}

.wpgb-facet .wpgb-pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  border: 1px solid #CC8B92;
  background-color: #fff;
  color: #CC8B92;
  transition: all 0.2s ease-in-out;
}

.wpgb-pagination .wpgb-page:hover {
  background-color: #F5EFE6;
}

.wpgb-facet .wpgb-pagination li a,
.wpgb-facet .wpgb-pagination li a:hover {
  color: #CC8B92;
}

.wpgb-facet .wpgb-pagination li a[aria-current] {
  background-color: #CC8B92;
  color: #fff;
  font-weight: bold;
  border-color: #CC8B92;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Load Moreボタン */

.load-more-btn-wrap {
  margin-top: 2rem;
  text-align: center;
}

.wpgb-facet .wpgb-apply,
.wpgb-facet .wpgb-load-more {
  background-color: #CC8B92 !important;
  transition: background-color 0.3s ease;
}

.wpgb-facet .wpgb-apply:hover,
.wpgb-facet .wpgb-load-more:hover {
  background-color: #BB7A80;
}

/* 年・月フィルター */
.wpgb-facet .wpgb-facet-14 {
  width: 240px;
}

/*--------------------------------------------------
コンクールアーカイブページ
--------------------------------------------------*/


.archive-links {
  list-style: none;
  padding: 0;
}

.archive-links>li {
  margin-bottom: 2em;
}

.archive-links ul {
  padding-left: 1em;
}

.archive-links ul li {
  margin: 0.3em 0;
}

/*--------------------------------------------------
イベント掲載ページ
--------------------------------------------------*/

.advertise-lead {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
}

/* プランセクション */
.advertise-plan {
  padding: 3rem 1rem;
}

.advertise-p {
  text-align: center;
  margin: 3rem 0;
}

.plan-card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .plan-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.plan-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.is-pickup {
  border: 2px solid #CC8B92;
  background-color: #FFF6F7;
  position: relative;
}

.plan-card.is-gold {
  border: 2px solid #CBB199;
  background-color: #FFFEFD;
  position: relative;
}

.plan-card.is-pickup::before {
  content: "\\ おすすめ！/";
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1em;
  color: #6E533B;
  font-weight: bold;
}

.plan-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5em;
  color: #6E533B;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.25em;
  color: #CC8B92;
  font-weight: bold;
  margin-bottom: 1rem;
}

.plan-price span {
  font-size: 1.5em;
  margin-left: 0.1em;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.plan-features.w-max-320 {
  max-width: 320px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1rem;
  text-align: left;
}

.plan-features svg {
  width: 20px;
  height: 20px;
  background-color: #CBB199;
  border-radius: 50%;
  color: #fff;
  padding: 3px;
  flex-shrink: 0;
}

.plan-link {
  display: inline-block;
  margin-top: 1rem;
  color: #CC8B92;
  text-decoration: underline;
}

.plan-note {
  font-size: 0.875rem;
  color: #666;
  margin-top: 1em;
}

.advertise-option {
  padding-top: 0;
  padding-bottom: 0;
}

.table-info {
  display: none;
}

@media (max-width: 768px) {
  .table-info {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: .75em;
    color: #444;
    gap: .5em;
    margin: 0 0 .5em .5em;
  }
}

.table-info svg {
  width: 10px;
  height: 10px;
}


/* 比較表 */
.table-section {
  padding-bottom: 0;
}

.plan-compare {
  padding: 4rem 0;
}

.table-scroll {
  overflow-x: auto;
  margin-bottom: 4rem;
}

.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  border: 1px solid #ddd;
}

.compare-table th {
  font-weight: bold;
  white-space: nowrap;
}

.compare-table .sticky-col {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 10;
  font-size: 0.75em;
  white-space: normal;
}

.compare-table .col-pickup {
  background: #FBECEC;
  border: 2px solid #CC8B92;
}

.compare-table .col-light {
  background: #FDF7F5;
}

.compare-table .col-free {
  background: #F9F9F9;
}

.compare-cell {
  position: relative;
  text-align: center;
  padding: 2.5em 1em;
  min-height: 100px;
}

.compare-icon {
  font-weight: bold;
  opacity: 0.3;
  pointer-events: none;
}

.compare-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  z-index: 1;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .compare-text {
    font-size: 0.8rem;
  }
}

.compare-cell {
  text-align: center;
  padding: 1em 0.5em;
}


.compare-icon svg {
  width: 40px;
  height: 40px;
}

.compare-text {
  font-size: 0.9rem;
  color: #333;
}

.compare-cell.compare-circle .compare-text {
  font-weight: bold;
}

/* ピックアップはみ出し */
.compare-table thead .col-pickup {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}


/*--------------------------------------------------
有料プラン各ページ
--------------------------------------------------*/

/* ▼ ピックアッププラン詳細ページ（page-advertise-event-pickup.php） */

.page-advertise-event-pickup .section-heading {
  margin-bottom: 2.5rem;
}

/* ▼ 金額表示セクション */

.price-section {
  padding: 3rem 0 2rem;
  background: #FDF7F5;
  text-align: center;
}

.price-section .inner {
  max-width: 800px;
  margin: 0 auto;
}

.price-section .price-main {
  color: #CC8B92;
  font-size: 3em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.2em;
}

.price-section .price-main span {
  font-size: 1.15em;
  font-weight: bold;
  margin-left: .2em;
}

.price-section .price-main small {
  font-size: 0.5em;
  font-weight: normal;
  color: #6E533B;
  margin-left: 0.5em;
}

.price-section .price-note {
  font-size: 0.95rem;
  color: #666;
}

.price-original {
  text-decoration: line-through;
  color: #999;
  margin-right: 0.5em;
  font-size: 0.75em !important;
}

.price-campaign {
  margin-top: 1em;
  font-weight: bold;
  color: #CC8B92;
  font-size: 0.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: .2em;
  row-gap: 0.25em;
  align-items: baseline;
}

.price-campaign strong {
  font-size: 1.5em;
}

/* ▼ ピックアッププラン目次ナビ */

.plan-toc {
  margin: 2rem 0;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.plan-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-toc li {
  margin: 0;
}

.plan-toc a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  color: #333;
}

.plan-toc a:hover {
  background: #f0e6e6;
  border-color: #cc8b92;
  color: #cc8b92;
}

.plan-toc svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #cc8b92;
  transition: color 0.2s;
}

.plan-toc a:hover svg {
  color: #b36b76;
}

.feature-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 6rem;
  padding-top: 1em;
}

.feature-media img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.feature-text {
  flex: 1;
}

.feature-content-strong {
  font-weight: bold;
  color: #DF0000;
}

.feature-block-content:not(:has(.feature-media)) .feature-text {
  flex: 1 1 100%;
}

/* モバイル対応 */
@media (max-width: 768px) {

  .feature-block,
  .feature-block.is-reverse {
    flex-direction: column;
  }

  .feature-media,
  .feature-text {
    width: 100%;
  }
}

.feature-block-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.feature-block-content .feature-media {
  width: 50%;
  max-width: 500px;
}

.feature-block-content .feature-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.feature-block-content .feature-text {
  flex: 1;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .feature-block-content {
    flex-direction: column;
  }

  .feature-block-content .feature-media,
  .feature-block-content .feature-text {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .feature-block.is-reverse .feature-block-content {
    flex-direction: row-reverse;
  }
}

.feature-block.no-image .feature-block-content {
  display: block;
}

.feature-block.no-image .feature-text {
  width: 100%;
}

.plan-feature-list>.feature-block:last-of-type {
  margin-bottom: 0;
}

/* 補足セクション */

.pickup-note {
  background: #FDF7F5;
  padding: 3rem 0;
  margin-top: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.pickup-note .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pickup-note .note-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #6E533B;
  text-align: center;
}

.pickup-note li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.pickup-note li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.2em;
}

.note-content strong {
  font-weight: bold;
  color: #CC8B92;
  /* メインカラーで強調 */
}

/*--------------------------------------------------
SNSアイコン
--------------------------------------------------*/

.sns-button-group {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  gap: 1em;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #CBB199;
  border-radius: 50%;
  transition: background 0.3s;
}

.sns-btn svg {
  width: 24px;
  height: 24px;
}

.is-x svg {
  width: 18px;
  height: 18px;
}

.sns-btn:hover {
  background-color: #a88e77;
}

.sns-btn-brown {
  background-color: #6E533B;
}

.sns-btn-brown:hover {
  background-color: #493422;
}

/*--------------------------------------------------
年・月別フィルターラッパー
--------------------------------------------------*/

.date-filter-block {
  margin-top: 3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -1em;
}

/*--------------------------------------------------
各種サーチリンクブロック
--------------------------------------------------*/
.search-links-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 1rem;
  /* 上下余白しっかり取る */
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 4rem;
}

.search-links-section.mb_-6rem {
  margin-bottom: -6rem;
  overflow: hidden;
}

.search-links-section-competition {
  background-image: url('https://balletpass.jp/media/uploads/2025/06/competitions-1.jpg');
}

.search-links-section-studio {
  background-image: url('https://balletpass.jp/media/uploads/2025/06/studios-bn.jpg');
}

.search-links-section-scholarship {
  background-image: url('https://balletpass.jp/media/uploads/2025/06/competitions-1.jpg');
}

.search-links-section-workshop {
  background-image: url('https://balletpass.jp/media/uploads/2025/06/scholarship.jpg');
}

.search-links-section-audition {
  background-image: url('https://balletpass.jp/media/uploads/2025/06/Frame-12.jpg');
}

.search-links-section-casting {
  background-image: url('https://balletpass.jp/media/uploads/2025/06/casting.jpg');
}

.search-links-section-recital {
  background-image: url('https://balletpass.jp/media/uploads/2025/06/recital.jpg');
}


.search-links-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  /* 白系オーバーレイ */
  z-index: -1;
}

.search-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.search-links-bottom {
  display: flex;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .search-links-bottom {
    flex-direction: column;
  }
}

/*--------------------------------------------------
トップ Pickup記事スライダー
--------------------------------------------------*/

.p-postSlider .swiper-pagination-bullet {
  background-color: #CC8B92;
}

/*--------------------------------------------------
トップ 各ジャンルバナー（3つ用）
--------------------------------------------------*/

.pickup-banner__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

/* アイテム共通スタイル */
.pickup-banner__item {
  position: relative;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;
  /* デフォルトは正方形 */
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  border: 1px solid #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
  transition: transform 0.4s ease;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.1);
  /* ← 追加：外側に柔らかい影 */
}

/* オーバーレイ：黒いフィルター＋ホバー拡大 */
.pickup-banner__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s ease;
  z-index: 1;
}

.pickup-banner__item:hover {
  transform: scale(1.03);
}

.pickup-banner__item:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}

/* オーバーレイ内テキスト */
.pickup-banner__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.pickup-banner__text {
  color: #fff;
}

.pickup-banner__title-en {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.pickup-banner__title-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  margin-top: 0.25rem;
}

/* スマホレイアウト調整：2列＋1段目だけ横長 */
@media (max-width: 767px) {
  .pickup-banner__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pickup-banner__item.is-large {
    aspect-ratio: 2 / 1;
    grid-column: span 2;
    grid-row: span 1;
  }
}

/*--------------------------------------------------
トップ お知らせ
--------------------------------------------------*/
/* NEWSセクション全体 */

.section-news {
  padding: 4rem 0;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-news {
    width: 90%;
    max-width: 800px;
  }
}


/* NEWSリスト全体 */
.news-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.news-item-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* NEWSアイテム */
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1rem;
  width: 100%;
}

/* 日付 */
.news-date {
  font-size: 0.85rem;
  color: #999;
  white-space: nowrap;
}

/* タグラベル */
.category-tag {
  font-size: 0.75rem;
  background-color: #CC8B92;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  flex-shrink: 0;
  text-align: center;
  width: 6rem;
}

.category-tag.tag-competition {
  background-color: #CC8B92;
}

.category-tag.tag-studio {
  background-color: #CBB199;
}

.category-tag.tag-other {
  background-color: #6E533B;
}

.category-tag.tag-system {
  background-color: #666666;
}

/* タイトル（リンク） */
.news-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: opacity 0.2s;
}

.news-title:hover {
  opacity: 0.7;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .news-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .news-item__label {
    min-width: auto;
    width: fit-content;
  }
}

/* お知らせページ */
.news-section {
  padding: 0;
}

/*--------------------------------------------------
トップ他 関連リンク
--------------------------------------------------*/
.c-section-related {
  margin-bottom: 4rem;
}

/*----------------------------------------
  ページネーション
----------------------------------------*/

.post-pagination-wrapper {
  text-align: center;
  margin: 2rem 0 3rem;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-pagination-wrapper a,
.post-pagination-wrapper span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  color: #cc8b92;
  background: #fff;
  border: 1px solid #cc8b92;
  transition: all 0.3s;
  font-weight: 500;
}

.post-pagination-wrapper svg {
  width: 16px;
  height: 16px;
}

.post-pagination-wrapper a:hover {
  background-color: #cc8b92;
  /* メインカラー */
  color: #fff;
}

.post-pagination-wrapper .current {
  color: #fff;
  font-weight: bold;
}

.post-pagination-wrapper .prev,
.post-pagination-wrapper .next {
  font-weight: bold;
}

/* 
.l-content {
  margin-bottom: 0;
} */

/*----------------------------------------
  スマホ開閉メニュー
----------------------------------------*/

.c-widget__title.-spmenu {
  font-family: 'Marcellus', serif;
  font-size: 1.75em;
  padding: 0 .75em;
  color: #CC8B92;
  background-color: #FFFEFD;
  text-align: center;
}

.c-listMenu a {
  font-family: 'Marcellus', serif;
  font-size: 1.2em;
  font-weight: bold;
  padding: .85em .75em;
}

.c-smallNavTitle {
  font-size: 0.75em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.c-submenuToggleBtn:before {
  color: #CBB199;
}

.c-submenuToggleBtn:after {
  border-color: #6E533B;
  border-radius: 5px;
}

.c-gnav .sub-menu .sub-menu a,
.c-listMenu .children a,
.c-listMenu .sub-menu a {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.sp-menu_btn .swell-block-button__link {
  flex-direction: column;
  border-radius: 5px;
}

.sp-menu_btn .__icon {
  font-size: 2em;
}

.sp-menu_btn a span {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* グローバルメニュー */
.c-gnav>.menu-item>a .ttl {
  font-family: 'Marcellus', serif;
}

.c-gnav .sub-menu a {
  color: #6E533B;
}

.c-gnav .sub-menu .ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/*----------------------------------------
  広告バナー
----------------------------------------*/
/* 共通デザイン */
.ad-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 48px auto;
  padding: 0 16px;
  max-width: 1000px;
}

.ad-banner .ad-item {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.ad-banner .ad-item a {
  display: block;
  text-decoration: none;
}

.ad-banner .ad-item picture,
.ad-banner .ad-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.ad-banner .ad-item a:hover picture,
.ad-banner .ad-item a:hover img {
  transform: scale(1.02);
}

.ad-banner .ad-desc {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6E533B;
  /* テーマに合わせた茶系 */
}

/* PCでは非表示（SP専用） */
@media screen and (min-width: 1024px) {
  .ad-banner {
    display: none;
  }

  .ad-banner.ad-pc_pos {
    display: flex;
  }
}

@media screen and (max-width: 1023px) {
  .ad-banner.ad-pc_pos {
    display: none;
  }
}

/* サイドバー */
@media screen and (min-width: 1024px) {
  .single-wrap {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .single-main {
    width: 70%;
  }

  .single-sidebar {
    width: 30%;
    position: sticky;
    top: 100px;
  }
}

/* 協賛セクション */
.all-banners {
  /* 3つ以上になったら切り替え */
  /* display: grid;
  grid-template-columns: 1fr; */
  display: flex;
  justify-content: center;
  gap: 1.5em;
  padding: 3em 1em;
  background-color: #FCFCFC;
  text-align: center;
  border-top: 1px solid #E5DED6;
  border-bottom: 1px solid #E5DED6;
}

/* タブレット（768px以上）で2列 */
@media (min-width: 768px) {
  .all-banners {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PC（1024px以上）で3列 */
@media (min-width: 1024px) {
  .all-banners {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 各バナー枠 */
.all-banners .ad-item {
  max-width: 300px;
}

.all-banners .ad-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.all-banners .ad-item img:hover {
  opacity: 0.8;
}

/* 掲載例 */
.showcase-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}