@charset "UTF-8";

:root {
  /* Colors ----------- */
  --color-black: #222;
  --color-white: #fff;
  --color-light-blue-01: #b6dff7;
  --color-light-blue-02: #eaf7ff;
  --color-blue: #2b62ca;
  --color-deep-blue: #131388;
  --color-purple: #792d71;
  --color-pink: #ff76a8;

  /* Space ----------- */
  --space-0: 0px;
  --space-4: 4px;
  --space-8: 8px;
  --space-10: 10px;
  --space-15: 15px;
  --space-20: 20px;
  --space-25: 25px;
  --space-30: 30px;
  --space-40: 40px;
  --space-50: 50px;
  --space-60: 60px;
  --space-70: 70px;
  --space-140: 140px;

  /* Fonts ----------- */

  /* size */
  --font-size-9: 9px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-30: 30px;
  --font-size-34: 34px;
  --font-size-40: 40px;

  /* family */
  --font-family-base: 'Noto Sans JP', sans-serif;
  --font-family-mincho: 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
}

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

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  font-variation-settings: inherit;
  font-feature-settings: inherit;
  color: inherit;
  word-spacing: inherit;
  letter-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + :disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
  outline: 0;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  max-block-size: 100%;
  vertical-align: bottom;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  block-size: 0;
  overflow: visible;
  color: inherit;
  border: none;
  border-block-start: 1px solid;
}

:where(dialog, [popover]) {
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
  color: inherit;
  background: none;
  border: none;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline-offset: 3px;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  border: 0 !important;
  clip-path: inset(50%) !important;
}

/* ----------- Utilities ----------- */

.desktop-only {
  display: none;
}

@media (min-width: 768px) {

.desktop-only {
    display: block;
}
  }

.mobile-only {
  display: none;
}

@media (max-width: 767.98px) {

.mobile-only {
    display: block;
}
  }

/* ----------- Base Styles ----------- */

html {
  scroll-behavior: smooth;
}

@media (min-width: 768px) {

html {
    scroll-padding-top: 70px;
}
  }

html,
body {
  block-size: 100%;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-black);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {

body {
    font-size: var(--font-size-16);
}
  }

.lp-page-root {
  display: flex;
  flex: 1;
  flex-direction: column;
  block-size: 100%;
}

.lp-page-header {
  padding: var(--space-20) var(--space-25);
  font-size: var(--font-size-24);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  background: var(--color-blue);
}

.lp-page-main {
  flex: 1;
}

.lp-page-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--space-20) 0;
}

@media (min-width: 768px) {

.lp-page-footer {
    padding: var(--space-20) var(--space-25);
}
  }

@media (min-width: 768px) {
  .lp-hamburger,
  .lp-overlay-menu {
    display: none;
  }
}

.lp-hamburger {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(182 223 247 / 100%);
}

@media (min-width: 768px) {

.lp-hamburger {
    display: none;
}
  }

.lp-hamburger span,
.lp-hamburger span::before,
.lp-hamburger span::after {
  display: block;
  width: 23px;
  height: 2px;
  content: '';
  background: var(--color-blue);
  transition: 0.2s ease;
}

.lp-hamburger span {
  position: relative;
}

.lp-hamburger span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.lp-hamburger span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.lp-overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgb(43 98 202 / 95%);
}

@media (min-width: 768px) {

.lp-overlay-menu {
    display: none;
}
  }

.lp-overlay-menu > nav ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    font-family: var(--font-family-mincho);
    font-size: var(--font-size-18);
    font-weight: 700;
    color: #fff;
  }

.lp-overlay-menu > nav ul a {
      color: inherit;
      text-decoration: none;
    }

@media (any-hover: hover) {
        .lp-overlay-menu > nav ul a:hover {
          opacity: 0.8;
        }
      }

body[data-is-menu-open='true'] {
  overflow: clip;
}

@media (min-width: 768px) {

body[data-is-menu-open='true'] {
    overflow: auto;
}
  }

body[data-is-menu-open='true'] .lp-overlay-menu {
    display: flex;
  }

@media (min-width: 768px) {

body[data-is-menu-open='true'] .lp-overlay-menu {
      display: none;
  }
    }

body[data-is-menu-open='true'] .lp-hamburger span {
    transform: rotate(45deg);
  }

body[data-is-menu-open='true'] .lp-hamburger span::before {
    top: 0;
    transform: rotate(90deg);
  }

body[data-is-menu-open='true'] .lp-hamburger span::after {
    top: 0;
    opacity: 0;
  }

.page-hero {
  position: relative;
  min-height: auto;
}

@media (min-width: 768px) {

.page-hero {
    min-height: 670px;
    max-height: 670px;
}
  }

.page-hero .page-hero-main {
    position: relative;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    overflow: clip;
  }

@media (min-width: 768px) {

.page-hero .page-hero-main {
      height: 670px;
  }
    }

@media (min-width: 768px) {

.page-hero .page-hero-main img {
        max-inline-size: none;
        max-block-size: none;
    }
      }

.page-hero .page-hero-cta {
    position: absolute;
    bottom: 20%;
    left: 0;
    z-index: 3;
    display: flex;
    width: 100%;
    padding-left: 10px;
  }

@media (min-width: 768px) {

.page-hero .page-hero-cta {
      bottom: 20px;
      left: unset;
      justify-content: flex-end;
      justify-self: center;
      max-width: 830px;
      padding-left: 0;
  }
    }

.page-hero .page-hero-cta-button {
    display: block;
    width: 26.6%;
  }

@media (min-width: 768px) {

.page-hero .page-hero-cta-button {
      display: block;
      width: 104px;
  }
    }

.page-hero .page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

.page-hero .page-hero-bg img {
      max-inline-size: none;
      width: 100%;
      max-block-size: none;
      height: 100%;
      object-fit: cover;
    }

.page-nav-trigger {
  height: 1px;
  margin-bottom: -1px;
  pointer-events: none;
}

.page-nav {
  font-family: var(--font-family-mincho);
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--color-blue, #2b62ca) 0%,
    #1751c0 50%,
    var(--color-blue, #2b62ca) 100%
  );
}

@media (min-width: 768px) {

.page-nav {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding: 25px;
    transition: box-shadow 0.2s ease;
}
  }

.page-nav > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    padding: 30px 20px;
    margin: 0 auto;
  }

@media (min-width: 768px) {

.page-nav > ul {
      display: flex;
      flex-wrap: nowrap;
      gap: 0;
      align-items: flex-start;
      justify-content: space-between;
      width: 1000px;
      padding: 0;
  }
    }

.page-nav > ul > li {
    width: 50%;
    text-align: center;
  }

@media (min-width: 768px) {

.page-nav > ul > li {
      width: auto;
      text-align: left;
  }
    }

.page-nav > ul > li > a {
    display: inline-block;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
  }

@media (any-hover: hover) {
      .page-nav > ul > li > a:hover {
        opacity: 0.8;
      }
    }

@media (min-width: 768px) {
    .page-nav[data-is-scroll='true'] {
      box-shadow: 0 12px 32px rgb(18 44 95 / 24%);
    }
  }

.sec-news {
  padding: var(--space-40) var(--space-25) var(--space-60);
  background-color: var(--color-light-blue-02);
  background-image: none;
}

@media (min-width: 768px) {

.sec-news {
    padding: var(--space-70) 0 var(--space-140);
    background-image: url('../img/news-sec-bg-pc.png');
    background-position: center top;
    background-size: cover;
}
  }

.sec-news .sec-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 0;
    margin: 0 auto;
  }

@media (min-width: 768px) {

.sec-news .sec-container {
      gap: var(--space-40);
  }
    }

.sec-news .sec-title {
    height: 50px;
  }

.sec-news .sec-title > img {
      width: 100%;
      height: auto;
      font-size: 0;
      line-height: 1;
      transform: scale(1.2);
    }

@media (min-width: 768px) {

.sec-news .sec-title {
      width: auto;
      height: auto;
  }
    }

.sec-news .news-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
  }

.sec-news .news-item a {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    text-decoration: none;
  }

@media (min-width: 768px) {

.sec-news .news-item a {
      flex-direction: row;
      gap: var(--space-20);
      align-items: flex-start;
  }
    }

.sec-news .news-item + .news-item {
    padding-top: var(--space-20);
    border-top: 1px solid var(--color-light-blue-01);
  }

.sec-news .news-item-eyecatch {
    flex-shrink: 0;
    width: 100%;
    height: auto;
  }

@media (min-width: 768px) {

.sec-news .news-item-eyecatch {
      width: 192px;
      height: auto;
  }
    }

.sec-news .news-item-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
  }

@media (min-width: 768px) {

.sec-news .news-item-body {
      gap: var(--space-10);
  }
    }

.sec-news .news-item-date {
    font-family: var(--font-family-mincho);
    font-style: normal;
    font-weight: 900;
    color: var(--color-blue);
  }

.sec-news .news-item-text {
    /* style */
  }

.sec-news .news-more {
    display: flex;
    justify-content: center;
  }

.sec-news .news-more-button {
    width: 161px;
  }

@media (min-width: 768px) {

.sec-news .news-more-button {
      width: 182px;
  }
    }

.sec-summary-divider {
  background-color: var(--color-light-blue-02);
}

.sec-summary-divider > img {
    width: 100%;
    height: auto;
    font-size: 0;
    line-height: 1;
    transform: translateY(2px);
  }

.sec-summary {
  padding: var(--space-30) var(--space-25) var(--space-60);
  background-color: var(--color-deep-blue);
  background-size: cover;
}

@media (min-width: 768px) {

.sec-summary {
    padding: var(--space-40) 0 var(--space-140);
}
  }

.sec-summary .sec-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

@media (min-width: 768px) {

.sec-summary .sec-container {
      gap: var(--space-40);
  }
    }

.sec-summary .sec-title {
    height: 50px;
  }

.sec-summary .sec-title > img {
      width: 100%;
      height: auto;
      font-size: 0;
      line-height: 1;
      transform: scale(1.2);
    }

@media (min-width: 768px) {

.sec-summary .sec-title {
      width: auto;
      height: auto;
  }
    }

.sec-summary .sec-summary-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

@media (min-width: 768px) {

.sec-summary .sec-summary-body {
      gap: var(--space-40);
  }
    }

.sec-summary .summary-description {
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-white);
    letter-spacing: 0.1em;
  }

.sec-summary .summary-description strong {
      color: var(--color-pink);
    }

.sec-summary .summary-images {
    margin-inline: calc(var(--space-25) * -1);
  }

@media (min-width: 768px) {

.sec-summary .summary-images {
      margin-inline: 0;
  }
    }

.sec-characters-divider {
  background-color: var(--color-light-blue-02);
}

.sec-characters-divider > img {
    width: 100%;
    height: auto;
    font-size: 0;
    line-height: 1;
    transform: translateY(0);
  }

.sec-characters {
  padding: var(--space-30) var(--space-25) var(--space-60);
  background-color: var(--color-light-blue-01);
  background-image: url('../img/characters-sec-bg.png');
  background-size: cover;
}

@media (min-width: 768px) {

.sec-characters {
    padding: var(--space-40) 0 var(--space-140);
}
  }

.sec-characters .sec-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

@media (min-width: 768px) {

.sec-characters .sec-container {
      gap: var(--space-40);
  }
    }

.sec-characters .sec-title {
    height: 50px;
  }

.sec-characters .sec-title > img {
      width: 100%;
      height: auto;
      font-size: 0;
      line-height: 1;
      transform: scale(1.2);
    }

@media (min-width: 768px) {

.sec-characters .sec-title {
      width: auto;
      height: auto;
  }
    }

/* ============ Character Card ============ */

.character-card {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 20px;
}

/* --- Top section (gradient bg + character info + comic image) --- */

.character-card-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  align-items: center;
  padding: var(--space-40) var(--space-30);
  background-color: #2a1a5e;
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {

.character-card-top {
    /* カード1・3: PCではinfo右・comic左（row-reverse で HTML順を逆に） */
    flex-direction: row-reverse;
    gap: var(--space-40);
    padding: var(--space-40);
}
  }

.character-card-01 .character-card-top {
  background-image: url('../img/character-card-01-bg-sp.png');
}

@media (min-width: 768px) {

.character-card-01 .character-card-top {
    background-image: url('../img/character-card-01-bg-pc.png');
}
  }

.character-card-02 .character-card-top {
  background-image: url('../img/character-card-02-bg-sp.png');
}

@media (min-width: 768px) {

.character-card-02 .character-card-top {
    flex-direction: row;
    background-image: url('../img/character-card-02-bg-pc.png');
}
  }

.character-card-03 .character-card-top {
  background-image: url('../img/character-card-03-bg-sp.png');
}

@media (min-width: 768px) {

.character-card-03 .character-card-top {
    background-image: url('../img/character-card-03-bg-pc.png');
}
  }

/* Character info (name + description) */

.character-card-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: var(--space-10);
  min-width: 0;
}

.character-card-name {
  font-family: var(--font-family-mincho);
  font-size: var(--font-size-24);
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {

.character-card-name {
    font-size: var(--font-size-34);
}
  }

.character-card-description {
  font-family: var(--font-family-mincho);
  font-size: var(--font-size-16);
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.character-card-description strong {
    font-size: var(--font-size-18);
    font-style: normal;
    color: var(--color-pink);
  }

@media (min-width: 768px) {

.character-card-description {
    font-size: var(--font-size-20);
}

    .character-card-description strong {
      font-size: var(--font-size-24);
    }
  }

/* Comic image */

.character-card-comic {
  flex-shrink: 0;
  margin: 0;
}

.character-card-comic-frame {
  width: 265px;
  overflow: hidden;
  border: 2px solid var(--color-black);
  transform: rotate(2deg);
}

.character-card-comic-frame > img {
    display: block;
    width: 100%;
    height: auto;
  }

@media (min-width: 768px) {

.character-card-comic-frame {
    width: 235px;
    border-width: 1.5px;
}
  }

.character-card-02 .character-card-comic-frame {
  transform: rotate(-2deg);
}

/* --- Bottom section (white bg + actor info + comment) --- */

.character-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  align-items: center;
  padding: 0 var(--space-30) var(--space-60);
  margin-top: -60px;
}

@media (min-width: 768px) {

.character-card-bottom {
    flex-direction: row-reverse;
    gap: var(--space-30);
    align-items: flex-start;
    padding: var(--space-40);
    margin-top: -70px;
}
  }

@media (min-width: 768px) {

.character-card-02 .character-card-bottom {
    flex-direction: row;
}
  }

/* Actor */

.character-card-actor {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: var(--space-10);
  align-items: center;
}

.character-card-actor-image {
  width: 150px;
  height: 150px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
}

.character-card-actor-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

@media (min-width: 768px) {

.character-card-actor-image {
    width: 200px;
    height: 200px;
}
  }

.character-card-actor-name {
  font-size: var(--font-size-15);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-black);
  text-align: center;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {

.character-card-actor-name {
    font-size: var(--font-size-16);
}
  }

/* Comment */

.character-card-comment {
  flex: 1;
  font-size: var(--font-size-14);
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-purple);
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {

.character-card-comment {
    padding-top: var(--space-70);
    font-size: var(--font-size-15);
}
  }

.cta-trial {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-deep-blue);
}

.cta-trial-container {
  /* style */
}

.sec-author-comment {
  padding: var(--space-40) var(--space-25) var(--space-60);
  background-color: var(--color-light-blue-02);
}

@media (min-width: 768px) {

.sec-author-comment {
    padding: var(--space-70) 0 var(--space-140);
}
  }

.sec-author-comment .sec-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
    width: 100%;
    max-width: 850px;
    padding: 0 25px;
    margin: 0 auto;
  }

@media (min-width: 768px) {

.sec-author-comment .sec-container {
      gap: var(--space-40);
  }
    }

.sec-author-comment .sec-title {
    height: 50px;
  }

.sec-author-comment .sec-title > img {
      width: 100%;
      height: auto;
      font-size: 0;
      line-height: 1;
      transform: scale(1.2);
    }

@media (min-width: 768px) {

.sec-author-comment .sec-title {
      width: auto;
      height: auto;
  }
    }

.sec-author-comment .author-comments {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-40);
    width: 100%;
  }

.sec-author-comment .author-comments > * {
      min-width: 0;
    }

@media (min-width: 768px) {

.sec-author-comment .author-comments {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-60);
  }
    }

.sec-author-comment .author-comment {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
  }

.sec-author-comment .author-comment .author-comment-name {
      width: 203px;
    }

.sec-comic-info-divider {
  background-color: var(--color-light-blue-02);
}

.sec-comic-info-divider > img {
    width: 100%;
    height: auto;
    font-size: 0;
    line-height: 1;
    transform: translateY(2px);
  }

.sec-comic-info {
  padding: var(--space-30) var(--space-25) var(--space-60);
  background-color: var(--color-light-blue-01);
  background-image: none;
}

@media (min-width: 768px) {

.sec-comic-info {
    padding: var(--space-40) 0 var(--space-140);
    background-image: url('../img/comic-info-sec-bg-pc.png');
    background-position: center center;
    background-size: contain;
}
  }

.sec-comic-info .sec-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
    width: 100%;
    max-width: 850px;
    padding: 0 25px;
    margin: 0 auto;
  }

@media (min-width: 768px) {

.sec-comic-info .sec-container {
      gap: var(--space-40);
  }
    }

.sec-comic-info .sec-title {
    height: 50px;
  }

.sec-comic-info .sec-title > img {
      width: 100%;
      height: auto;
      font-size: 0;
      line-height: 1;
      transform: scale(1.2);
    }

@media (min-width: 768px) {

.sec-comic-info .sec-title {
      width: auto;
      height: auto;
  }
    }

.sec-comic-info .comic-card {
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    align-items: center;
    width: 100%;
    padding: var(--space-40) var(--space-30) var(--space-60);
    background: var(--color-light-blue-02, #eaf7ff);
    border-radius: var(--space-20);
  }

@media (min-width: 768px) {

.sec-comic-info .comic-card {
      flex-direction: row;
      gap: var(--space-40);
      align-items: center;
      padding: var(--space-40);
  }
    }

.sec-comic-info .comic-card-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
  }

@media (min-width: 768px) {

.sec-comic-info .comic-card-body {
      gap: var(--space-40);
  }
    }

.sec-comic-info .comic-card-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
  }

.sec-comic-info .store-links {
    display: flex;
    gap: var(--space-10);
    justify-content: center;
  }

.sec-comic-info .store-links > a {
      display: inline-block;
      width: 120px;
      height: auto;
    }

.sec-comic-info .store-links > a img {
        filter: drop-shadow(2px 3px 5px rgb(0 0 0 / 30%));
      }

@media (min-width: 768px) {

.sec-comic-info .store-links > a img {
          filter: drop-shadow(3px 4px 7px rgb(0 0 0 / 30%));
      }
        }

@media (min-width: 768px) {

.sec-comic-info .store-links {
      gap: var(--space-20);
      justify-content: flex-start;
  }

      .sec-comic-info .store-links > a {
        width: 140px;
      }
    }

/* ----------- Drama Info Section ----------- */

.sec-drama-info-divider {
  background-color: var(--color-light-blue-01);
}

.sec-drama-info-divider > img {
    width: 100%;
    height: auto;
    font-size: 0;
    line-height: 1;
    transform: translateY(2px);
  }

.sec-drama-info {
  padding: var(--space-30) var(--space-25) var(--space-60);
  background: var(--color-blue);
}

@media (min-width: 768px) {

.sec-drama-info {
    padding: var(--space-40) 0 var(--space-140);
}
  }

.sec-drama-info .sec-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

@media (min-width: 768px) {

.sec-drama-info .sec-container {
      gap: var(--space-40);
  }
    }

.sec-drama-info .sec-title {
    height: 50px;
  }

.sec-drama-info .sec-title > img {
      width: 100%;
      height: auto;
      font-size: 0;
      line-height: 1;
      transform: scale(1.2);
    }

@media (min-width: 768px) {

.sec-drama-info .sec-title {
      width: auto;
      height: auto;
  }
    }

.sec-drama-info .detail-info-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
  }

.sec-drama-info .detail-info {
    font-family: var(--font-family-mincho);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }

.sec-drama-info .detail-info small {
      font-size: 15px;
    }

@media (min-width: 768px) {

.sec-drama-info .detail-info {
      font-size: 20px;
  }

      .sec-drama-info .detail-info small {
        font-size: 16px;
      }
    }

.sec-drama-info .drama-info-link {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(325px, calc(100vw - 25px));
    min-height: 56px;
    padding: var(--space-10) 0;
    font-size: var(--font-size-18);
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    letter-spacing: 0.1em;
    text-decoration: none;
    background-color: var(--color-purple);
    border-radius: var(--space-10);
    box-shadow: 0 2px 7px rgb(255 255 255 / 50%);
    transition: filter 0.2s ease;
  }

@media (min-width: 768px) {

.sec-drama-info .drama-info-link {
      width: min(454px, calc(100vw - 40px));
      min-height: 60px;
      font-size: var(--font-size-20);
  }
    }

.sec-drama-info .drama-info-link:hover {
    filter: brightness(1.08);
  }
