/* ========================================
   Font Face
======================================== */

/* Regular (400) */
@font-face {
  font-family: 'Rakuten Sans JP';
  src: url("https://im.akimg.tv.rakuten.co.jp/static/common/fonts/rakutensansjp-2/RakutenSansJP2TN-Regular.otf") format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* Bold (700) */
@font-face {
  font-family: 'Rakuten Sans JP';
  src: url("https://im.akimg.tv.rakuten.co.jp/static/common/fonts/rakutensansjp-2/RakutenSansJP2TN-Bold.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* Heavy / Black (800) */
@font-face {
  font-family: 'Rakuten Sans JP';
  src: url("https://im.akimg.tv.rakuten.co.jp/static/common/fonts/rakutensansjp-2/RakutenSansJP2TN-Heavy.otf") format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: block;
}


/* ========================================
   CSS Variables
======================================== */

:root {
  --main-color: #159701;
}


/* ========================================
   Reset & Base
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', -apple-system, Roboto, Helvetica, sans-serif;
  color: #333;
  padding-bottom: calc(97px + env(safe-area-inset-bottom));
}


/* ========================================
   Main Visual (MV)
======================================== */

.mv {
  background: var(--main-color);
  width: 100%;
  overflow: hidden;
}

.mv-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 40px;
  background: url(../img/main_bg.png) no-repeat;
  background-position: center top;
  background-size: 970px;
}

.mv-content {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Speech bubble */
.mv-subtitle-card {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.25));
  flex-shrink: 0;
}

.mv-subtitle-header {
  background: #FFD91D;
  border-radius: 10px 10px 0 0;
  padding: 10px 16px;
  color: #333;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  width: 450px;
}

.mv-subtitle-body-row {
  display: flex;
  align-items: center;
}

.mv-subtitle-body {
  display: flex;
  width: 450px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 10px 10px;
  background: #FFF;
  min-height: 42px;
}

.mv-subtitle-text {
  color: #333;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.mv-subtitle-highlight {
  color: #BF0000;
  font-weight: 700;
}

.mv-bubble-arrow-right {
  display: block;
  flex-shrink: 0;
  margin-left: -2px;
}

.mv-bubble-arrow-down {
  display: none;
}

/* Coupon number display */
.mv-coupon-display {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mv-star-left {
  align-self: flex-start;
  flex-shrink: 0;
}

.mv-star-right {
  align-self: flex-end;
  flex-shrink: 0;
}

.mv-coupon-block {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.mv-coupon-number {
  font-family: 'Rakuten Sans JP';
  font-size: 105px;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-right: 3.6px;
  text-shadow: 4px 5px 0px #2222226b;
}

.mv-coupon-percent {
  font-family: 'Rakuten Sans JP';
  font-size: 82px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 5px;
  text-shadow: 4px 5px 0px #2222226b;
}

.mv-coupon-label {
  font-family: 'Rakuten Sans JP';
  font-size: 46px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 4px 5px 0px #2222226b;
}

/* Campaign period bar */
.mv-campaign {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.mv-campaign-badge {
  display: inline-flex;
  padding: 0 24px;
  border-left: 1px solid #FFF;
  border-right: 1px solid #FFF;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.mv-campaign-date-text {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}


/* ========================================
   Navigation Section
======================================== */

.navi-section {
  padding: 0 20px 24px 20px;
}

.navi-inner {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.navi-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 24px 8px 16px;
  background: var(--main-color);
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.navi-item:hover {
  opacity: 0.8;
  text-decoration: none;
}

.navi-item-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.navi-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.navi-item:first-child .navi-icon {
  margin-right: 3px;
}

.navi-label {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.navi-label--mobile {
  display: none;
}

.navi-chevron {
  flex-shrink: 0;
}


/* ========================================
   Coupon Section
======================================== */

.coupon-section {
  padding: 20px;
}

.coupon-section-inner {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.coupon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.coupon-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  width: 100%;
}

.coupon-header-line {
  flex: 1;
  height: 3px;
  background-image: radial-gradient(circle, var(--main-color) 1.5px, transparent 1.5px);
  background-size: 7.25px 3px;
  background-repeat: repeat-x;
  background-position: center;
}

.coupon-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.icon-circle-bg {
  fill: var(--main-color);
}

.coupon-icon-circle {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.coupon-icon-inner {
  position: absolute;
  left: 17px;
  top: 22px;
}

.coupon-sparkle-lg {
  position: absolute;
  left: 34px;
  top: 8px;
}

.coupon-sparkle-sm {
  position: absolute;
  left: 42px;
  top: 21px;
}

.coupon-sparkle-lg path,
.coupon-sparkle-sm path {
  stroke: var(--main-color);
}

.coupon-header-text {
  display: flex;
  flex-direction: column;
}

.coupon-header-label {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.coupon-header-title {
  font-size: 24px;
  font-weight: 900;
  color: #bf0000;
  line-height: 1.3;
}

.coupon-ticket-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Coupon cards */
.coupon-cards-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.coupon-text-card-wrap {
  display: block;
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
  text-decoration: none;
  transition: 0.2s ease;
}

.coupon-text-card-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.coupon-text-card-wrap:hover {
  opacity: 0.9;
  transform: translateY(-1%);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

/* Coupon end state */
.coupon-end {
  filter: brightness(30%);
  pointer-events: none;
  cursor: default;
}

/* Coupon terms */
.coupon-terms {
  padding: 10px 0 16px 0;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  text-align: center;
}

.coupon-terms-link {
  color: #BF0000 !important;
  text-decoration: underline !important;
  font-weight: 400;
  text-underline-offset: 2px;
}

.coupon-terms-link:visited {
  color: #BF0000;
}

/* Plus coupon area */
.plus-coupon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.plus-badge-pc {
  display: block;
  font-family: 'Noto Sans JP', -apple-system, Roboto, Helvetica, sans-serif;
}

.plus-badge-sp {
  display: none;
  font-family: 'Noto Sans JP', -apple-system, Roboto, Helvetica, sans-serif;
}

.plus-coupon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 40px;
  border: 1px solid #ffd91d;
  border-radius: 4px;
  background: #fff;
  width: 100%;
}

.plus-coupon-visual {
  display: flex;
  align-items: flex-end;
}

.plus-icon-cluster {
  position: relative;
  width: 67px;
  height: 70px;
  flex-shrink: 0;
}

.plus-coupon-digits {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}

.plus-number {
  font-family: 'Rakuten Sans JP';
  font-size: 70px;
  font-weight: 800;
  color: #333;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-right: 3.6px;
}

.plus-percent {
  font-family: 'Rakuten Sans JP';
  font-size: 54.6px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin-right: 5px;
}

.plus-label {
  font-family: 'Rakuten Sans JP';
  font-size: 30.8px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.plus-coupon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.plus-coupon-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  text-align: center;
}

.plus-coupon-main {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  text-align: center;
}

.plus-coupon-highlight {
  color: #bf0000;
}

.plus-coupon-footnote {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  text-align: center;
}


/* ========================================
   Recommend Section
======================================== */

.recommend-section {
  padding: 20px;
}

.recommend-inner {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recommend-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  width: 100%;
}

.recommend-header-line {
  flex: 1;
  height: 3px;
  background-image: radial-gradient(circle, var(--main-color) 1.5px, transparent 1.5px);
  background-size: 7.25px 3px;
  background-repeat: repeat-x;
  background-position: center;
}

.recommend-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.recommend-icon-circle {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.recommend-icon-bg {
  fill: var(--main-color);
}

.recommend-icon-inner {
  position: absolute;
  left: 18px;
  top: 18px;
}

.recommend-sparkle {
  position: absolute;
  left: 34px;
  top: 5px;
}

.recommend-sparkle path {
  stroke: var(--main-color);
}

.recommend-header-text {
  display: flex;
  flex-direction: column;
}

.recommend-heading {
  color: #bf0000;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}

.recommend-subheading {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* Drama group */
.drama-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.drama-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.group-bar {
  display: block;
  width: 6px;
  height: 32px;
  background: #ffd000;
  border-radius: 3px;
  flex-shrink: 0;
}

.drama-group-title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.drama-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.drama-card:hover {
  opacity: 0.8;
}

.card-thumbnail {
  width: 100%;
  aspect-ratio: 7 / 10;
  background: #d9d9d9;
}

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

.card-title {
  color: #014D94;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* もっと見る button */
.more-btn-wrapper {
  display: flex;
  justify-content: center;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  border: 1px solid #014D94;
  border-radius: 40px;
  background: #fff;
  color: #014D94 !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-more:hover {
  background: rgba(0, 99, 224, 0.08);
  text-decoration: none;
}

/* BL作品一覧 button */
.drama-list-btn-wrapper {
  display: flex;
  justify-content: center;
}

.btn-drama-list {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 24px;
  border-radius: 6px;
  background: #ffd000;
  text-decoration: none;
  width: 335px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-drama-list:hover {
  background: #f0c400;
}

.btn-drama-list-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.btn-drama-list-inner span {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.btn-drama-list-arrow {
  flex-shrink: 0;
}


/* ========================================
   Choose Section
======================================== */

.choose-section {
  padding: 20px;
}

.choose-inner {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.choose-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  width: 100%;
}

.choose-header-line {
  flex: 1;
  height: 3px;
  background-image: radial-gradient(circle, var(--main-color) 1.5px, transparent 1.5px);
  background-size: 7.25px 3px;
  background-repeat: repeat-x;
  background-position: center;
}

.choose-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.choose-icon-circle {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.choose-icon-bg {
  fill: var(--main-color);
}

.choose-icon-inner {
  position: absolute;
  left: 19px;
  top: 18px;
}

.choose-sparkle {
  position: absolute;
  left: 34px;
  top: 5px;
}

.choose-sparkle path {
  stroke: var(--main-color);
}

.choose-header-text {
  display: flex;
  flex-direction: column;
}

.choose-heading {
  color: #bf0000;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}

.choose-subheading {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

/* Banners row */
.choose-banners {
  display: flex;
  gap: 24px;
}

.choose-banner-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.choose-banner-link-wrap {
  display: block;
  transition: opacity 0.2s ease;
}

.choose-banner-link-wrap:hover {
  opacity: 0.85;
}

.choose-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 137 / 77;
  display: block;
}

.choose-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #159701;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.choose-link:hover {
  color: #0055c0;
}

.choose-link-icon {
  flex-shrink: 0;
}

.choose-link span {
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ========================================
   Check Section
======================================== */

.check-section {
  padding: 20px;
}

.check-inner {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.check-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.check-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.check-heading {
  color: #bf0000;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.check-banners-desktop {
  display: block;
  width: 100%;
  height: auto;
  max-width: 970px;
}

.check-banners-mobile {
  display: none;
}

.check-banner-img {
  display: block;
  width: 100%;
  height: auto;
}


/* ========================================
   Tag Section
======================================== */

.tag-section {
  padding: 20px;
}

.tag-inner {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tag-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  width: 100%;
}

.tag-header-line {
  flex: 1;
  height: 3px;
  background-image: radial-gradient(circle, var(--main-color) 1.5px, transparent 1.5px);
  background-size: 7.25px 3px;
  background-repeat: repeat-x;
  background-position: center;
}

.tag-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tag-icon-circle {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.tag-icon-bg {
  fill: var(--main-color);
}

.tag-icon-inner {
  position: absolute;
  left: 18px;
  top: 18px;
}

.tag-sparkle {
  position: absolute;
  left: 34px;
  top: 5px;
}

.tag-sparkle path {
  stroke: var(--main-color);
}

.tag-header-text {
  display: flex;
  flex-direction: column;
}

.tag-heading {
  color: #bf0000;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
}

.tag-subheading {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.tag-list {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 30px;
  background: rgba(0, 99, 224, 0.10);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.tag-item:hover {
  background: rgba(0, 99, 224, 0.18);
  text-decoration: none;
}

.tag-item-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tag-hash {
  color: #0063e0;
  font-family: 'A-OTF Shin Maru Go Pro', 'Noto Sans JP', -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
}

.tag-label {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.tag-chevron {
  flex-shrink: 0;
}


/* ========================================
   Copyright Section
======================================== */

.copyright-section {
  padding: 0 20px 24px 20px;
}

.copyright-inner {
  max-width: 970px;
  margin: 0 auto;
}

.copyright-text {
  color: #333;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

/* ========================================
   Float CTA
======================================== */

.float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 16px 24px 16px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* 2つボタン時のラッパー */
.float-cta-btns-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* ボタン共通 */
.float-cta-btn {
  display: block;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.float-cta-btn:hover {
  opacity: 0.8;
}

/* 前半ボタン */
.float-cta-btn--first {
  width: 333px;
  height: auto;
  aspect-ratio: 333 / 70;
  background-image: url(../img/float/btn-first-pc.png);
}

/* 後半ボタン */
.float-cta-btn--second {
  width: 333px;
  height: auto;
  aspect-ratio: 333 / 70;
  background-image: url(../img/float/btn-second-pc.png);
}

/* 1つボタン */
.float-cta-btn--single {
  width: 365px;
  height: auto;
  aspect-ratio: 365 / 65;
  background-image: url(../img/float/btn-single-pc.png);
}

.float-cta-note {
  font-family: 'Noto Sans JP', -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  flex-shrink: 0;
}

.float-cta-note-text {
  color: #333;
}

.float-cta-note-link {
  color: #BF0000 !important;
  text-decoration: underline !important;
}

/* ========================================
   PC (min-width: 768px)
======================================== */

@media (min-width: 768px) {

  /* Float CTA */
  .float-cta-note-text {
    display: block;
  }

  /* Choose banners */
  .choose-banners {
    justify-content: center;
    gap: 12px;
  }

  .choose-banner-item {
    width: 427px;
    flex: none;
  }

  /* Plus coupon */
  .plus-icon-cluster {
    width: 67px;
    height: 70px;
  }

  .plus-percent {
    font-size: 54.6px;
  }

  .plus-label {
    font-size: 30.8px;
  }

}


/* ========================================
   SP (max-width: 767px)
======================================== */

@media (max-width: 767px) {

  /* Base */
  body {
    padding-bottom: calc(93px + env(safe-area-inset-bottom));
  }

  /* MV */
  .mv {
    padding-bottom: 14px;
    background: var(--main-color) url(../img/main_bg_sp.png) no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .mv-inner {
    height: auto;
    min-height: 240px;
    padding: 13px 20px 0;
    justify-content: flex-start;
    gap: 8px;
    align-items: center;
    background: none;
  }

  .mv-content {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
  }

  .mv-subtitle-card {
    width: 335px;
    filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.25));
  }

  .mv-subtitle-header {
    font-size: 16px;
    padding: 8px 16px;
    width: 100%;
  }

  .mv-subtitle-body-row {
    flex-direction: column;
    align-items: center;
  }

  .mv-subtitle-body {
    width: 335px;
    padding: 8px 16px;
    min-height: auto;
  }

  .mv-subtitle-text {
    font-size: 13px;
    line-height: 1.2;
    width: auto;
  }

  .mv-bubble-arrow-right {
    display: none;
  }

  .mv-bubble-arrow-down {
    display: block;
    margin: -3px auto 0;
  }

  .mv-coupon-display {
    gap: 4px;
  }

  .mv-star-left,
  .mv-star-right {
    width: 28px;
    height: 27px;
  }

  .mv-coupon-block {
    align-items: flex-end;
  }

  .mv-coupon-number {
    font-size: 70px;
    letter-spacing: -2.105px;
  }

  .mv-coupon-percent {
    font-size: 55px;
  }

  .mv-coupon-label {
    font-size: 31px;
    white-space: nowrap;
  }

  .mv-campaign {
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }

  .mv-campaign-badge {
    font-size: 14px;
    padding: 0 16px;
    line-height: 1.3;
  }

  .mv-campaign-date-text {
    font-size: 14px;
    white-space: normal;
    text-align: center;
  }

  /* Navigation */
  .navi-section {
    padding: 0 12px 16px 12px;
  }

  .navi-item {
    padding: 12px 8px;
    gap: 8px;
  }

  .navi-item-content {
    flex-direction: column;
    gap: 4px;
  }

  .navi-label {
    font-size: 14px;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navi-label--desktop {
    display: none;
  }

  .navi-label--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* Coupon */
  .coupon-section {
    padding: 20px;
  }

  .coupon-terms-link {
    display: block;
  }

  .coupon-header {
    gap: 16px;
  }

  .coupon-header-content {
    gap: 8px;
  }

  .coupon-header-title {
    font-size: 22px;
  }

  .coupon-cards-wrap {
    flex-direction: column;
    align-items: center;
  }

  .coupon-text-card-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .plus-badge-pc {
    display: none;
  }

  .plus-badge-sp {
    display: block;
  }

  .plus-coupon-content {
    padding: 16px;
  }

  .plus-icon-cluster {
    width: 52px;
    height: 55px;
  }

  .plus-icon-cluster img {
    width: 52px;
    height: 55px;
  }

  .plus-number {
    font-size: 50px;
    letter-spacing: -0.03em;
  }

  .plus-percent {
    font-size: 39px;
  }

  .plus-label {
    font-size: 22px;
  }

  .plus-coupon-main {
    font-size: 20px;
  }

  .plus-coupon-subtitle {
    font-size: 14px;
  }

  .plus-coupon-month {
    display: block;
  }

  /* Recommend */
  .recommend-section {
    padding: 20px;
  }

  .recommend-header {
    gap: 16px;
  }

  .recommend-header-content {
    gap: 8px;
  }

  .recommend-heading {
    font-size: 22px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 13px;
    row-gap: 24px;
  }

  .drama-list-btn-wrapper {
    padding: 0;
  }

  .btn-drama-list {
    width: 100%;
    max-width: 335px;
  }

  /* Choose */
  .choose-section {
    padding: 20px;
  }

  .choose-header {
    gap: 16px;
  }

  .choose-header-content {
    gap: 8px;
  }

  .choose-heading {
    font-size: 22px;
  }

  .choose-banners {
    flex-direction: column;
  }

  /* Check */
  .check-section {
    padding: 20px;
  }

  .check-banners-desktop {
    display: none;
  }

  .check-banners-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  /* Tag */
  .tag-section {
    padding: 20px;
  }

  .tag-header {
    gap: 16px;
  }

  .tag-header-content {
    gap: 8px;
  }

  .tag-heading {
    font-size: 22px;
  }

  .tag-list {
    gap: 12px 8px;
    max-width: 336px;
  }

  /* Copyright */
  .copyright-section {
    padding: 16px 20px;
  }

  /* Float CTA */
  .float-cta {
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px 12px;
  }

  /* 2つボタン時 */
  .float-cta-btns-wrap {
    width: 100%;
    gap: 8px;
  }

  .float-cta-btns-wrap .float-cta-btn {
    flex: 1;
  }

  /* 前半ボタン SP */
  .float-cta-btn--first {
    width: auto;
    height: auto;
    aspect-ratio: 165 / 58;
    background-image: url(../img/float/btn-first-sp.png);
    background-size: 100% 100%;
  }

  /* 後半ボタン SP */
  .float-cta-btn--second {
    width: auto;
    height: auto;
    aspect-ratio: 165 / 58;
    background-image: url(../img/float/btn-second-sp.png);
    background-size: 100% 100%;
  }

  /* 1つボタン SP */
  .float-cta-btn--single {
    width: 100%;
    height: auto;
    aspect-ratio: 335 / 44;
    background-image: url(../img/float/btn-single-sp.png);
    background-size: 100% 100%;
  }

  .float-cta-note {
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
  }

}
