/* =============================================================
   会員ページ専用ルール（このファイルに残すもの）
   ============================================================= */


/* member-menu */
.member-menu {
  clear: both;
  background-color: #d8eaf8;
  border-top: solid 2px #2a4a8a;
  margin-top: 0;
}

.member-menu ul {
  width: 94%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.member-menu li {
  width: calc(100% / 4);
}

.member-menu li:first-child a {
  border-left: solid 1px rgba(42, 74, 138, 0.25);
}

.member-menu a {
  width: 100%;
  display: inline-block;
  padding: 15px;
  color: #2a4a8a;
  border-right: solid 1px rgba(42, 74, 138, 0.25);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.member-menu a:hover {
  background-color: #2a4a8a;
  color: #fff;
}

@media screen and (max-width: 599px) {
  /* SP メニュー：2×2グリッド */
  .member-menu ul {
    width: 100%;
    flex-wrap: wrap;
  }

  .member-menu li {
    width: 50%;
    border-bottom: 1px solid rgba(42, 74, 138, 0.2);
  }

  .member-menu li:first-child a {
    border-left: none;
  }

  .member-menu a {
    padding: 13px 10px;
    font-size: 0.82rem;
    border-right: 1px solid rgba(42, 74, 138, 0.2);
  }

  .member-menu li:nth-child(even) a {
    border-right: none;
  }
}

/* member-page  */
.member-page .news {
  border: 1px solid #ccc;
  padding: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .member-page .news {
    padding: 20px;
  }
}

.member-page .news h3 {
  text-align: center;
}

.member-page .news__list {
  border-bottom: 1px solid #dde3ee;
}

.member-page .news__list a {
  display: grid;
  grid-template-columns: 82px 36px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 14px 4px;
  width: 100%;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.member-page .news__list a:hover {
  color: #047ad8;
}

.member-page .news__list article {
  display: contents;
}

.member-page .news__time {
  color: #047ad8;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.member-page .news__title {
  grid-column: 3;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .member-page .news__list a {
    grid-template-columns: 76px 32px 1fr;
    column-gap: 6px;
  }
}

.news__pager {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 40px 0 0;
  flex-wrap: wrap;
}

.news__pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #dde3ee;
  border-radius: 6px;
  color: #333;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}

.news__pager .page-numbers:hover {
  background: #f0f6ff;
  border-color: #047ad8;
  color: #047ad8;
}

.news__pager .page-numbers.current {
  background: #047ad8;
  border-color: #047ad8;
  color: #fff;
}

.member-page .box__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px
}

@media screen and (max-width: 599px) {
  .member-page .box__wrap {
    flex-direction: column;
    gap: 20px
  }
}

.member-page .box__item {
  width: calc((100% - 80px) / 3);
  background: #cae8f7;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 599px) {
  .member-page .box__item {
    width: 100%;
  }
}

.member-page .box__title {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: #047ad8;
}

.member-page .box__text {
  margin-bottom: 20px
}

.member-page .box__link {
  text-align: center;
  margin-bottom: 0;
  margin-top: auto;
}

.member-page .box__link a {
  text-align: center;
  background-color: #047ad8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 10px;
  max-width: 300px;
  margin: 0 auto;
}

.member-page .box__item.comingsoon {
  background: #eee;
}

.member-page .box__item.comingsoon .box__title {
  color: #596066;
}

.member-page .box__item.comingsoon .box__link a {
  background-color: #596066;
  pointer-events: none
}

.member-page .box__item.comingsoon.secret {
  background: #f7e9f2;
}

.member-page .box__item.comingsoon.secret .box__title {
  color: #d34387;
}

.member-page .box__item.comingsoon.secret .box__link a {
  background-color: #e49bc8;
  pointer-events: none
}

.member-page .box__item.archive {
  width: 100%;
  text-align: center;
  background: #f7fcff;
  border: solid 2px #2b7ad9;
}


.member-page .news__btn-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.member-page .news__btn {
  max-width: 280px;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .member-page .news__btn-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
}

.member-page .news__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  background: #2e4070;
  color: #fff;
  font-size: 0.88rem;
  font-weight: bold;
  padding: 12px 36px 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
  letter-spacing: 0.03em;
  box-sizing: border-box;
}

.member-page .news__btn a::after {
  content: "›";
  position: absolute;
  right: 16px;
  font-size: 1.2em;
  line-height: 1;
  font-weight: normal;
}

.member-page .news__btn a:hover {
  background: #047ad8;
}

.member-page .box__link a:hover {
  opacity: 0.7;
}

/* セミナーアーカイブ */
/* .member-page .youtube__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.member-page .youtube__item {
  width: calc((100% - 40px) / 2);
}

@media screen and (max-width: 599px) {
  .member-page .youtube__item {
    width: 100%;
  }
}

.member-page .youtube__item:nth-child(2n) {
  margin-right: 0;
}

.member-page .youtube__item--wrap {
  aspect-ratio: 16/9;
}

.member-page .youtube__item--wrap img {
  width: 100%;
  height: 100%;
}

.member-page .youtube__item a:hover {
  opacity: 0.7;
}

.member-page .youtube__item--ttl {
  margin: 0 0 10px;
  font-weight: 600;
  text-align: center;
} */

/* ====================================================
   動画一覧（セミナーアーカイブ & YouTube）
==================================================== */
.member-page .youtube__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* --- PC: 3カラム & カードデザイン --- */
.member-page .youtube__item {
  width: calc((100% - 80px) / 3);
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* カード全体の浮き上がりを優しくし、影を少し強調するだけにする */
.member-page .youtube__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.member-page .youtube__item--wrap {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}

.member-page .youtube__item--wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.member-page .youtube__item--wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-page .youtube__item:hover .youtube__item--wrap img {
  opacity: 1;
}

.member-page .youtube__item--ttl {
  margin: 0;
  padding: 20px;
  font-weight: 600;
  font-size: 1.1em;
  text-align: left;
  line-height: 1.4;
  color: #333;
}

.member-page .youtube__item--description {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
}

/* --- タブレット: 2カラム --- */
@media screen and (max-width: 991px) {
  .member-page .youtube__wrap {
    gap: 30px;
  }

  .member-page .youtube__item {
    width: calc((100% - 30px) / 2);
  }
}

/* --- スマホ: 1カラム --- */
@media screen and (max-width: 599px) {
  .member-page .youtube__wrap {
    gap: 25px;
  }

  .member-page .youtube__item {
    width: 100%;
  }
}


/* ====================================================
   「もっと見る」ボタン (Load More) - フラット＆ボーダー
==================================================== */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 50px;
  border: 2px solid #333333;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

/* ボタンのホバーエフェクト（色を反転させる） */
.load-more-btn:hover {
  background-color: #333333;
  color: #ffffff;
  transform: none;
}

/* 読み込み中の状態（グレーアウト） */
.load-more-btn:disabled {
  background-color: transparent;
  color: #bbbbbb;
  border-color: #bbbbbb;
  cursor: not-allowed;
}

.member-page .sub_title {
  color: #9ACDE7;
  font-weight: bold;
  margin-right: 10px;
}

.member-page .fs_small {
  font-size: 0.8em;
}

.member-page .bdb_1 li {
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.member-page .block-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  background: #f0f6ff;
  color: #2a4a8a;
  border: 1px solid #c5d9f0;
  border-radius: 4px;
  padding: 7px 12px 7px 14px;
  font-weight: bold;
  font-size: inherit;
  font-family: inherit;
  margin-bottom: 6px;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 3px rgba(42, 74, 138, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.member-page .block-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #047ad8;
}
.member-page .block-heading--expired {
  background: #f5f5f5;
  color: #999;
  border-color: #ddd;
  cursor: default;
  box-shadow: none;
}
.member-page .block-heading--expired::before {
  background: #bbb;
}
.member-page .expired-message {
  font-size: 0.9em;
  color: #999;
  padding: 4px 0 2px 4px;
}
.member-page .block-heading:not(.block-heading--expired):hover {
  background: #deeeff;
  box-shadow: 0 2px 6px rgba(42, 74, 138, 0.15);
}
.member-page .block-heading:not(.block-heading--expired):active {
  transform: translateY(1px);
  box-shadow: none;
}
.member-page .accordion-icon {
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.2s;
  font-size: 0.75em;
}
.member-page .accordion-toggle.is-open .accordion-icon {
  transform: rotate(180deg);
}
.member-page .accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.member-page .fs_small li .red {
  display: inline-block;
  margin-top: 6px;
}

.member-page .item-link {
  display: inline-block;
  margin-top: 4px;
  background: #047ad8;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.member-page .item-link:hover {
  background: #2a4a8a;
  color: #fff;
}

.member-page .fs_small > li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}
.member-page .fs_small > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.member-page-contents {
  margin-bottom: 40px;
}

.member-page-contents p+p {
  margin-top: 10px;
}

/* シングルページ */

.member-page .single__title {
  color: #047ad8;
  border-bottom: solid 2px #047ad8;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: 12px;
  margin-top: 12px;
  margin-bottom: 16px;
}

/* 素材系 */
.material {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.material__list {
  width: calc((100% - 80px) / 3);
  padding: 20px;
  border: solid 1px #ccc;
}

@media screen and (max-width: 599px) {
  .material {
    gap: 20px;
  }

  .material__list {
    /* width: calc((100% - 20px) / 2); */
    width: 100%;
    padding: 10px;
  }
}

.material__link {
  margin-bottom: 10px;
  font-weight: bold;
}

.material__link a {
  text-decoration: underline;
  color: #047ad8;
}

.material__link a:hover {
  opacity: 0.7;
}

.material__img {
  margin-bottom: 10px;
}

.material__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.material__text {
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.material__text p+p {
  margin-top: 10px;
}

/* 素材詳細エリア全体の枠組み */
.material__meta-box {
  background: #fdfdfd;
  padding: 1.2rem;
  border: 1px solid #eee;
  margin-top: 20px;
}

.material__meta-row {
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.material__meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.material__meta-label {
  font-weight: bold;
  font-size: 0.85rem;
  color: #666;
}

.material__meta-value {
  font-size: 0.85rem;
  line-height: 1.5;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.material__meta-value a {
  color: #0073aa;
  text-decoration: none;
}

.material__meta-value a:hover {
  text-decoration: underline;
}

.status--preparing {
  color: #d9534f;
  font-weight: bold;
  background: #fff1f0;
  padding: 2px 8px;
  border-radius: 4px;
}

.status--none {
  color: #bbb;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .material__meta-box {
    padding: 0.8rem;
  }

  .material__meta-value {
    font-size: 0.9rem;
  }
}

.login-notice {
  text-align: center;
  background: #cae8f7;
  padding: 15px;
  margin-top: 2rem;
  border-radius: 10px;
}

.login-notice a {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 20rem;
  margin: 15px auto 0;
  border: solid 1px #0c4da2;
  color: #0c4da2;
  transition: all 0.3s ease;
}

.login-notice a:hover {
  background: #0c4da2;
  color: #fff;
}

/* =========================================
   学習動画一覧ページ (Final Simple Ver.)
   ========================================= */

/* --- カテゴリー見出し --- */
.category-section {
  margin-bottom: 60px;
}

/* --- 4. カテゴリー見出し --- */
.category-heading {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1a2340;
  text-align: center;
  border: none;
  padding-bottom: 0;
  margin-bottom: 30px;
  margin-top: 0;
}

.category-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #047ad8;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* --- グリッドレイアウト --- */
.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* --- カード本体 --- */
.learning-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.learning-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* --- 2. ヘッダービジュアル（背景色の変化） --- */
.learning-header-visual {
  background-color: #f4f4f4;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  padding: 0 15px;
}

/* ホバー時に指定の薄い青へ */
.learning-card:hover .learning-header-visual {
  background-color: #cae8f7;
}

/* --- 講座タイトル文字 --- */
.step-course-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #047ad8;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  width: 100%;
  box-sizing: border-box;
  padding: 0 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* --- 3. 再生アイコン（サイズ大・青Ver） --- */
.sv-play-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #047ad8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* --- テキストエリア --- */
.learning-content {
  padding: 20px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.learning-title {
  font-size: 1.1rem;
  margin: 0 0 12px;
  line-height: 1.4;
  font-weight: bold;
  color: #333;
}

/* 抜粋文 */
.learning-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* --- レスポンシブ --- */
@media (max-width: 1024px) {
  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .learning-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .learning-header-visual {
    height: 120px;
  }

  .sv-number {
    font-size: 3rem;
  }
}

/* =========================================
   カテゴリーナビゲーション & スムーススクロール
   ========================================= */

/* 1. スムーススクロールの有効化 */
html {
  scroll-behavior: smooth;
}

/* 2. スクロール位置の調整（重要！） */
.category-section {
  scroll-margin-top: 40px;
}

/* カテゴリーナビ ドロップダウン */
.category-nav {
  position: relative;
  margin-bottom: 40px;
}

.cat-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #fff;
  border: 1.5px solid #d0d5dd;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cat-nav-toggle:hover {
  border-color: #047ad8;
  color: #047ad8;
}

.category-nav.is-open .cat-nav-toggle {
  border-color: #047ad8;
  background: #047ad8;
  color: #fff;
}

.cat-nav-chevron {
  font-size: 0.75em;
  transition: transform 0.2s;
}

.category-nav.is-open .cat-nav-chevron {
  transform: rotate(180deg);
}

.cat-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e4ed;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 16px;
  z-index: 100;
  min-width: 300px;
  max-width: 480px;
}

.category-nav.is-open .cat-nav-dropdown {
  display: block;
}

.cat-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.cat-nav-item {
  display: flex;
}

.cat-nav-btn {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background-color: #f4f6fa;
  color: #444;
  border: 1.5px solid #e0e4ed;
}

.cat-nav-btn:hover,
.cat-nav-btn.is-active {
  background-color: #047ad8;
  color: #fff;
  border-color: #047ad8;
}

@media screen and (max-width: 599px) {
  .cat-nav-dropdown {
    max-width: calc(100vw - 40px);
  }
}


/* パターン1：Zoomブランドカラー */
.btn_zoom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 240px;
  margin: 20px auto 10px auto;
  padding: 12px 28px;
  background-color: #0B5FFF;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 0.95rem;
  line-height: 1.3em;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

/* ホバー時（マウスを乗せた時）のスタイル */
.btn_zoom:hover {
  background-color: #004dc7;
  transform: translateY(-2px);
  text-decoration: none !important;
}

.btn_zoom p::before {
  content: "\f03d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 20px;
}

/* 日時の部分（span）を小さくするスタイル */
.btn_zoom span {
  font-size: 0.75rem;
  font-weight: normal;
  opacity: 0.85;
  margin-bottom: 2px;
  display: block;
}

.txt_gc {
  text-decoration: underline;
  text-align: center;
  font-size: 0.8rem;
}


/* パターン2：特別会（質問会）用カラー */
.btn_special {
  display: grid;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 350px;
  margin: 20px auto 10px auto;
  padding: 15px 0;
  background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
  background-color: #6e45e2;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2em;
  border-radius: 70px;
  box-shadow: 0 4px 15px rgba(110, 69, 226, 0.3);
  transition: all 0.3s ease;
}

/* ホバー時 */
.btn_special:hover {
  background: linear-gradient(135deg, #5a32cc 0%, #72c1bc 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 69, 226, 0.4);
  text-decoration: none !important;
}

.btn_special p::before {
  content: "\f059";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 20px;
}

.btn_special span {
  font-size: 13px;
  font-weight: normal;
  opacity: 0.9;
  margin-bottom: 2px;
  display: block;
}

/* パターン3：特別会（質問会）用カラー：エナジーオレンジ */
.btn_special_orange {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 240px;
  margin: 20px auto 10px auto;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff9a44 0%, #ff5e62 100%);
  background-color: #ff9a44;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 0.95rem;
  line-height: 1.3em;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

/* ホバー時（オレンジがより鮮やかに） */
.btn_special_orange:hover {
  background: linear-gradient(135deg, #ff8c33 0%, #ee4d50 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
  text-decoration: none !important;
}

.btn_special_orange p::before {
  content: "\f059";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 20px;
}

.btn_special_orange span {
  font-size: 0.75rem;
  font-weight: normal;
  opacity: 0.85;
  margin-bottom: 2px;
  display: block;
}




/* ============================================================
   会員ページ v2 新デザイン (.member-page--v2)
   ============================================================ */

/* セクションタイトル */
.mbox__section {
  margin-top: 60px;
}

.mbox__section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1a2340;
  margin-bottom: 10px;
  padding-left: 0;
  border: none;
}

@media screen and (max-width: 599px) {
  .mbox__section-title {
    font-size: 1.3rem;
  }
}

.mbox__section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #047ad8;
  margin: 12px auto 0;
  border-radius: 2px;
}

.mbox__section-desc {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

/* カードグリッド */
.mbox__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 900px) {
  .mbox__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 599px) {
  .mbox__wrap {
    grid-template-columns: 1fr;
  }
}

/* カード本体 */
.mbox__item {
  background: linear-gradient(145deg, #f8fbff 0%, #eef5fd 100%);
  border: 1px solid #e8eaf0;
  border-radius: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "icon body"
    "link link";
  column-gap: 10px;
  row-gap: 14px;
  align-items: start;
  box-shadow: 0 2px 12px rgba(26, 35, 64, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
  position: relative;
}

.mbox__item:hover {
  transform: none;
  box-shadow: 0 2px 12px rgba(26, 35, 64, 0.06);
}

/* アイコン */
.mbox__icon i {
  margin-right: 0;
}

.mbox__icon {
  grid-area: icon;
  width: 52px;
  height: 52px;
  background: #eef5fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 22px;
  color: #047ad8;
  flex-shrink: 0;
}

.mbox__item--secret .mbox__icon {
  background: #fce8f3;
  color: #d4468a;
}

/* テキスト */
.mbox__body {
  grid-area: body;
  display: flex;
  flex-direction: column;
}

.mbox__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 6px;
}

.mbox__text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* アイコン内の .fab 色上書き（style.css の .fab { color: #8ec31f } を打ち消す） */
.mbox__icon .fab {
  color: #047ad8;
}

.mbox__item--secret .mbox__icon .fab {
  color: #d4468a;
}

/* ボタン */
.mbox__link {
  grid-area: link;
}

.mbox__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  background: #2e4070;
  color: #fff;
  font-size: 0.88rem;
  font-weight: bold;
  padding: 10px 36px 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
  letter-spacing: 0.03em;
  box-sizing: border-box;
}

.mbox__link a::after {
  content: "›";
  position: absolute;
  right: 16px;
  font-size: 1.2em;
  line-height: 1;
  font-weight: normal;
}

.mbox__item--comingsoon .mbox__link a::after {
  display: none;
}

.mbox__link a:hover {
  background: #047ad8;
}

.mbox__item--secret .mbox__link a {
  background: linear-gradient(90deg, #d4468a 0%, #f07ab0 50%, #d4468a 100%);
  background-size: 200% 100%;
  background-position: left center;
  transition: background-position 0.5s ease;
}

.mbox__item--secret .mbox__link a:hover {
  background-position: right center;
}

/* comingsoon */
.mbox__item--comingsoon {
  cursor: default;
}

.mbox__item--comingsoon .mbox__link a {
  background: #bbb;
  color: #fff;
  pointer-events: none;
  cursor: default;
  padding: 10px 20px;
}

.mbox__item--comingsoon .mbox__link a:hover {
  background: #bbb;
}

.mbox__item--secret.mbox__item--comingsoon .mbox__link a {
  background: linear-gradient(90deg, #d4468a 0%, #f07ab0 50%, #d4468a 100%);
  background-size: 200% 100%;
  background-position: left center;
  color: #fff;
}

/* ============================================================
   ニュースバー
   ============================================================ */
.news-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #dde3ee;
  border-radius: 8px;
  margin-bottom: 0;
  overflow: hidden;
  min-height: 52px;
}

.news-bar__label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #333;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 0 18px;
  white-space: nowrap;
  align-self: stretch;
  position: relative;
  padding-right: 24px;
  letter-spacing: 0.05em;
}

.news-bar__label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: #ccc;
}

.news-bar__label .fas {
  font-size: 14px;
  color: #047ad8;
}

.news-bar__items {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0 16px;
  gap: 0;
}

.news-bar__item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.88rem;
}

.news-bar__item+.news-bar__item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #ccc;
  margin: 0 16px;
  vertical-align: middle;
}

.news-bar__item a {
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.news-bar__item a:hover {
  color: #047ad8;
}

.news-bar__item time {
  color: #047ad8;
  font-size: 0.8rem;
  white-space: nowrap;
}

.news-bar__more {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0 18px;
  color: #047ad8;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  border-left: 1px solid #dde3ee;
  align-self: stretch;
  transition: background 0.2s;
}

.news-bar__more:hover {
  background: #f0f6ff;
}

.news-bar__more .fas {
  font-size: 11px;
}

@media screen and (max-width: 599px) {
  .news-bar {
    flex-wrap: wrap;
    overflow: hidden;
  }

  /* 1行目：お知らせ（左）＋ 一覧を見る（右） */
  .news-bar__label {
    order: 1;
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    border-bottom: 1px solid #dde3ee;
  }

  .news-bar__label::after {
    display: none;
  }

  .news-bar__more {
    order: 2;
    flex-shrink: 0;
    border-left: none;
    border-bottom: 1px solid #dde3ee;
    padding: 10px 14px;
  }

  /* 2行目：記事タイトル（全幅） */
  .news-bar__items {
    order: 3;
    flex: none;
    width: 100%;
    padding: 10px 14px;
    overflow: visible;
    border-top: none;
  }

  .news-bar__item {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.6;
  }

  .news-bar__item a {
    flex-wrap: wrap;
    gap: 4px;
  }
}

/* 秘密のお部屋 — ヘッダー背景 */
.bg_sub.bg_s01.bg_s01--secret {
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(212, 70, 138, 0.06) 8px, rgba(212, 70, 138, 0.06) 11px),
    linear-gradient(145deg, #fff5f9 0%, #ffe8f3 100%);
  position: relative;
}

.bg_sub.bg_s01.bg_s01--secret::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14'%3E%3Cpath d='M0 0 Q5 14 10 0 Q15 14 20 0 L20 0 L0 0 Z' fill='%23ffe8f3'/%3E%3C/svg%3E");
  background-size: 28px 20px;
  background-repeat: repeat-x;
  z-index: 1;
}

.bg_sub.bg_s01.bg_s01--secret h2 {
  color: #d4468a !important;
}

.header-sparkle {
  position: absolute;
  color: #e8c84a;
  font-style: normal;
  pointer-events: none;
  animation: sparkle-blink 2s ease-in-out infinite;
}

.header-sparkle--1 { top: 14px;  right: 12%; font-size: 1.2rem; animation-delay: 0s;   }
.header-sparkle--2 { top: 38px;  right: 6%;  font-size: 0.7rem; animation-delay: 0.5s; }
.header-sparkle--3 { top: 18px;  left: 8%;   font-size: 0.8rem; animation-delay: 1s;   }
.header-sparkle--4 { bottom: 14px; right: 18%; font-size: 0.65rem; animation-delay: 1.4s; }
.header-sparkle--5 { bottom: 18px; left: 12%;  font-size: 1rem;   animation-delay: 0.8s; }

/* 秘密のお部屋 — キラキラカード */
.mbox__item--secret {
  background: linear-gradient(145deg, #fff5f9 0%, #ffe8f3 100%);
  border: 1.5px solid #f4b8d4;
  box-shadow: 0 2px 16px rgba(212, 70, 138, 0.1);
  overflow: visible;
}

.mbox__item--secret:hover {
  box-shadow: 0 2px 16px rgba(212, 70, 138, 0.1);
}

/* キラキラ共通 */
.mbox__sparkle {
  position: absolute;
  color: #e8c84a;
  font-style: normal;
  pointer-events: none;
  animation: sparkle-blink 2s ease-in-out infinite;
}

.mbox__sparkle--1 {
  top: 10px;
  right: 18px;
  font-size: 1.1rem;
  animation-delay: 0s;
}

.mbox__sparkle--2 {
  top: 50px;
  right: 10px;
  font-size: 0.7rem;
  animation-delay: 0.5s;
}

.mbox__sparkle--3 {
  top: 14px;
  left: 14px;
  font-size: 0.75rem;
  animation-delay: 1s;
}

.mbox__sparkle--4 {
  bottom: 60px;
  right: 14px;
  font-size: 0.6rem;
  animation-delay: 1.4s;
}

.mbox__sparkle--5 {
  bottom: 40px;
  left: 10px;
  font-size: 0.9rem;
  animation-delay: 0.8s;
}

@keyframes sparkle-blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.2;
    transform: scale(0.6);
  }
}

/* Zoomボタン横並び */
.zoom-btn-wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
  background: #f4f8fe;
  border-radius: 12px;
  padding: 36px 24px;
  margin-top: 40px;
}

.zoom-btn-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zoom-btn-col .btn_zoom,
.zoom-btn-col .btn_special_orange {
  margin: 0 0 8px 0;
  text-align: center;
  justify-items: center;
}

.zoom-btn-col .btn_zoom p,
.zoom-btn-col .btn_special_orange p {
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .zoom-btn-wrap {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
  }
}

/* NEWバッジ */
.news-bar__new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8423f;
  color: #fff;
  font-size: 0.55rem;
  font-weight: bold;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 0.03em;
  line-height: 1.4;
  flex-shrink: 0;
}

.member-page .news__list .news-bar__new {
  place-self: center start;
}

/* =========================================
   GPTs / Gems カードグリッド
   ========================================= */

.ggg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4px;
}

.ggg-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dde3ee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* --- バッジ --- */
.ggg-card__head {
  padding: 14px 16px 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

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

.ggg-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #eef2fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: #2a4a8a;
}

.ggg-card__icon i {
  margin-right: 0;
}

.ggg-card__badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding: 10px 16px 0;
}

.ggg-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.ggg-badge--gem {
  background: #daeefb;
  color: #047ad8;
}

.ggg-badge--gpts {
  background: #d9eedf;
  color: #137333;
}

.ggg-badge--both {
  background: #e8e3f5;
  color: #6040b0;
}

.ggg-badge--prompt {
  background: #e8e3f5;
  color: #6040b0;
}

.ggg-badge--video {
  background: #fde8d8;
  color: #e65100;
}

/* --- タイトル --- */
.ggg-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  color: #1a2340;
  margin: 8px 0;
}

/* --- 説明文 --- */
.ggg-card__body {
  padding: 4px 16px 12px;
  flex: 1;
}

.ggg-card__desc {
  font-size: 0.74rem;
  color: #888;
  line-height: 1.65;
}

.ggg-card__desc p {
  font-size: 0.74rem;
  color: #888;
  line-height: 1.65;
  margin: 0 0 4px;
}

/* --- テキスト情報行 --- */
.ggg-card__info {
  background: #eff8ff;
  border-radius: 8px;
  margin: 10px 12px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ggg-card__info-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: #555;
  padding: 7px 10px;
}

.ggg-info-row--link {
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.ggg-info-row--link:hover {
  background: #c8e4f5;
}

.ggg-info-icon {
  font-size: 0.75rem;
  color: #5aadd6;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.ggg-info-val--yes {
  color: #047ad8;
  font-weight: 600;
}

.ggg-info-val--prep {
  color: #f09000;
  font-weight: 600;
}

/* --- ボタン群 --- */
.ggg-card__actions {
  margin: 0 16px 14px;
}

.ggg-card__action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.ggg-card__action-row:first-child {
  border-top: 1px solid #eee;
}


.ggg-card__sub + .ggg-card__actions .ggg-card__action-row:first-child {
  border-top: none;
}

.ggg-card__action-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ggg-card__action-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  white-space: nowrap;
  line-height: 1.3;
}

.ggg-card__action-desc {
  font-size: 0.68rem;
  color: #999;
  line-height: 1.3;
}

.ggg-card__action-row .ggg-btn {
  width: 145px;
  flex-shrink: 0;
}

.ggg-btn i {
  margin-right: 0;
}

.ggg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.ggg-btn--gem {
  border: 1.5px solid #047ad8;
  color: #047ad8;
}

.ggg-btn--gem:hover {
  background: #047ad8;
  color: #fff;
}

.ggg-btn--gem img,
.ggg-btn--gem:hover img {
  filter: brightness(0) invert(1);
}

.ggg-btn--gem img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(95%) saturate(600%) hue-rotate(190deg);
}

.ggg-btn--gpts {
  border: 1.5px solid #10a37f;
  color: #10a37f;
}

.ggg-btn--gpts:hover {
  background: #10a37f;
  color: #fff;
}

.ggg-btn--gpts img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(60%) saturate(400%) hue-rotate(120deg);
}

.ggg-btn--gpts:hover img {
  filter: brightness(0) invert(1);
}

.ggg-btn--prompt {
  border: 1.5px solid #6040b0;
  color: #6040b0;
}

.ggg-btn--prompt:hover {
  background: #6040b0;
  color: #fff;
}

.ggg-btn--video {
  border: 1.5px solid #e65100;
  color: #e65100;
}

.ggg-btn--video:hover {
  background: #e65100;
  color: #fff;
}

.ggg-btn--disabled {
  background: #f5f5f5;
  color: #999;
  border: 1px solid #ddd;
  cursor: default;
  pointer-events: none;
}

/* --- 関連動画（おまけ） --- */
.ggg-card__sub {
  margin: 0 16px;
  padding: 8px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ggg-card__sub-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
}

.ggg-card__sub-label i {
  margin-right: 0;
  font-size: 0.65rem;
  color: #e65100;
}

.ggg-link--video {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2a4a8a;
  text-decoration: none;
  transition: color 0.2s;
}

.ggg-link--video i {
  margin-right: 0;
  font-size: 0.65rem;
}

.ggg-link--video:hover {
  color: #2490e4;
}

.ggg-link--disabled {
  font-size: 0.78rem;
  color: #bbb;
}

/* --- レスポンシブ --- */
@media (max-width: 960px) {
  .ggg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ggg-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   秘密のお部屋 装飾・フレーム
   ========================================= */

.sr-intro {
  text-align: center;
  margin-bottom: 40px;
}

.sr-intro__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.14em;
  background: linear-gradient(90deg, #d4468a, #ff6b6b, #ff9f43);
  border-radius: 50px;
  padding: 5px 18px;
  margin-bottom: 20px;
}

.sr-intro__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #e8b4d0;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.sr-intro__line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8b4d0, transparent);
}

.sr-intro__lead {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.sr-frame {
  position: relative;
  background: linear-gradient(145deg, #fff5f9 0%, #ffeef6 100%);
  border-radius: 16px;
  padding: 20px 20px 16px;
  box-shadow: 0 4px 24px rgba(212, 70, 138, 0.12);
}

.sr-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #d4468a, #ff6b6b, #ff9f43, #d4468a);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media screen and (max-width: 599px) {
  .sr-frame {
    padding: 12px;
  }
}

/* =========================================
   秘密のお部屋 バナーグリッド
   ========================================= */
.secret-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 900px) {
  .secret-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 599px) {
  .secret-banner-grid {
    grid-template-columns: 1fr;
  }
}

.banner-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.banner-card__visual {
  display: block;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

a.banner-card__visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.banner-card__blur {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(24px);
  transform: scale(1.15);
}

.banner-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px 4px 0;
}

.banner-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #d4468a;
  line-height: 1.4;
  margin: 0 0 8px;
}

.banner-card__desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 14px;
}

.banner-card__action {
  margin-top: auto;
}

.banner-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #d4468a 0%, #f07ab0 50%, #d4468a 100%);
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position 0.5s ease;
  letter-spacing: 0.04em;
}

.banner-card__btn:hover {
  background-position: left center;
}

.banner-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.banner-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #d4468a, #ff6b6b, #ff9f43);
  border: none;
  border-radius: 50px;
  padding: 1px 10px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.banner-card__btn--disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: #c9a0b4;
  letter-spacing: 0.04em;
  cursor: not-allowed;
  pointer-events: none;
}

.banner-card__visual--disabled {
  display: block;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: not-allowed;
  filter: grayscale(40%);
  opacity: 0.75;
}

.banner-card__coming-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.88);
  color: #999;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 2;
}

.sr-frame--disabled::before {
  background: linear-gradient(135deg, #ccc, #e0e0e0, #ccc, #e0e0e0);
}
