@charset "UTF-8";

:root {
  /* Colors ----------- */
  --color-black: #333;
  --color-white: #fff;
  --color-pink-base: #ffecfe;
  --color-pink-01: #f86790;
  --color-pink-02: #d25183;

  /* Space ----------- */
  --space-0: 0px;
  --space-4: 4px;
  --space-8: 8px;
  --space-10: 10px;
  --space-15: 15px;
  --space-20: 20px;
  --space-25: 25px;
  --space-28: 28px;
  --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:
    'Yu Gothic', '游ゴシック', yugothic, '游ゴシック体', 'ヒラギノ角ゴ Pro W3', sans-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: 8px;
  right: 8px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ffdbdd;
  border: 0;
  border-radius: 50%;
}

@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: #fb6290;
  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(248 103 190 / 95%);
}

@media (min-width: 768px) {

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

.lp-overlay-menu > nav ul {
    display: flex;
    flex-direction: column;
    gap: 17px;
    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 {
      display: flex;
      align-items: center;
      min-height: 29px;
      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 {
    background: #fff;
  }

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;
  overflow: clip;
}

@media (min-width: 768px) {

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

.page-hero .page-hero-main {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    height: 100%;
    overflow: clip;
  }

@media (min-width: 768px) {

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

@media (min-width: 768px) {

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

.page-hero .page-hero-main .page-hero-title {
      display: flex;
      align-items: flex-start;
      width: 57.3%;
      transform: translate(0, 12.5%);
    }

@media (min-width: 768px) {

.page-hero .page-hero-main .page-hero-title {
        z-index: 15;
        align-items: center;
        width: auto;
        transform: translate(0, 0);
    }
      }

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

@media (min-width: 768px) {

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

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

@media (min-width: 768px) {

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

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

@media (min-width: 768px) {

.page-hero .page-hero-copyright {
      right: 10%;
      bottom: 0;
      left: unset;
      justify-content: flex-end;
      justify-self: center;
  }
    }

.page-hero .page-hero-divider {
    position: absolute;
    bottom: 0;
    z-index: 5;
  }

.page-hero .page-hero-bg-desktop {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #ffc0d2 0%, #ffc0d2 50%, #f6a6ff 50%, #f6a6ff 100%);
  }

.page-hero .page-hero-bg-mobile {
    position: relative;
    inset: 0;
    z-index: 1;
    display: block;
  }

.page-hero .page-hero-bg-mobile > img {
      width: 100%;
      height: auto;
      max-height: none;
    }

@media (min-width: 768px) {

.page-hero .page-hero-bg-mobile {
      display: none;
  }
    }

.page-hero .page-hero-heart-01 {
    position: absolute;
    top: 16px;
    right: 8px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0, 0);
  }

.page-hero .page-hero-heart-01 > img {
      transform: translate(0, 0);
    }

@media (min-width: 768px) {

.page-hero .page-hero-heart-01 {
      top: 50%;
      right: unset;
      left: 50%;
      transform: translate(-50%, -50%);
  }

      .page-hero .page-hero-heart-01 > img {
        transform: translate(60%, -55%);
      }
    }

.page-hero .page-hero-heart-02 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
  }

.page-hero .page-hero-heart-02 > img {
      transform: translate(0, 0);
    }

@media (min-width: 768px) {
      .page-hero .page-hero-heart-02 > img {
        transform: translate(-90%, -23%);
      }
    }

.page-hero .page-hero-azakawa-01 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  }

.page-hero .page-hero-azakawa-02 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
  }

.page-hero .page-hero-message-desktop {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 10;
    width: 100%;
    max-width: 1592px;
    pointer-events: none;
    transform: translate(-50%, 10%);
  }

.page-hero .page-hero-message-mobile {
    position: absolute;
    bottom: 0;
    z-index: 5;
    width: 100%;
  }

.page-hero .page-hero-message-mobile > img {
      width: 90%;
      height: auto;
      margin: auto;
    }

@media (min-width: 768px) {

.page-hero .page-hero-message-mobile {
      display: none;
  }
    }

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

.page-nav {
  background: #f867be;
}

@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: 10px;
    padding: 10px 40px 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: 100%;
      padding: 0 60px;
  }
    }

.page-nav > ul > li {
    width: calc(50% - 5px);
    min-height: 30px;
    text-align: left;
  }

@media (min-width: 768px) {

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

.page-nav > ul > li > a {
    display: inline-block;
    font-weight: 700;
    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(255 236 254 / 24%);
    }
  }

.sec-news {
  padding: var(--space-40) var(--space-28) var(--space-30);
  background-color: var(--color-pink-base);
}

@media (min-width: 768px) {

.sec-news {
    padding: var(--space-60) 0 var(--space-30);
}
  }

.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: 70px;
  }

.sec-news .sec-title > img {
      width: auto;
      font-size: 0;
      line-height: 1;
    }

@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 {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    border-top: 4px dotted var(--color-pink-02);
  }

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

@media (min-width: 768px) {

.sec-news .news-item a {
      flex-direction: row;
      align-items: flex-start;
  }
    }

.sec-news .news-item:last-child {
    border-bottom: 4px dotted var(--color-pink-02);
  }

.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-10);
  }

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

.sec-news .news-item-text {
    font-weight: 700;
    color: var(--color-pink-02);
  }

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

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

.sec-news:not(:has(.news-more)) {
    padding-bottom: 60px;
  }

@media (min-width: 768px) {

.sec-news:not(:has(.news-more)) {
      padding-bottom: 120px;
  }
    }

.sec-summary-divider {
  background-color: var(--color-pink-base);
}

.sec-summary-divider > img {
    width: 100%;
    height: auto;
    font-size: 0;
    line-height: 1;
  }

.sec-summary {
  padding: var(--space-40) var(--space-28) var(--space-30);
  background-color: #ffc0d2;
}

@media (min-width: 768px) {

.sec-summary {
    padding: var(--space-60) 0 var(--space-30);
}
  }

.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: 70px;
  }

.sec-summary .sec-title > img {
      width: auto;
      font-size: 0;
      line-height: 1;
    }

@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);
      align-items: flex-start;
  }
    }

.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: #ffc0d2;
}

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

.sec-characters {
  padding: var(--space-40) var(--space-25) var(--space-30);
  background-color: var(--color-pink-base);
}

@media (min-width: 768px) {

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

.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: 70px;
  }

.sec-characters .sec-title > img {
      width: auto;
      font-size: 0;
      line-height: 1;
    }

@media (min-width: 768px) {

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

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

.character-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  padding: 30px 20px;
  overflow: hidden;
  background-color: var(--color-white);
  border: 3px dashed var(--color-pink-02);
  border-radius: 20px;
}

@media (min-width: 768px) {

.character-card {
    flex-direction: row;
    width: 100%;
    padding: 49px 50px;
}
  }

.character-card .character-card-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

@media (min-width: 768px) {

.character-card .character-card-info {
      gap: 30px;
      width: 530px;
  }
    }

.character-card .character-card-actor {
    flex: 1;
  }

.character-card .character-card-name {
    /* style */
  }

.character-card .character-card-description {
    font-weight: 700;
  }

/* 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 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 265px;
}

@media (min-width: 768px) {

.cta-trial {
    height: 416px;
}
  }

.cta-trial .cta-trial-button {
    position: relative;
    z-index: 3;
    padding: 0;
    cursor: pointer;
  }

.cta-trial .cta-trial-bg-top {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    background-image: url('../img/cta-trial-sec-divider-top-sp.png');
    background-size: cover;
  }

@media (min-width: 768px) {

.cta-trial .cta-trial-bg-top {
      height: 63px;
      background-image: url('../img/cta-trial-sec-divider-top-pc.png');
  }
    }

.cta-trial .cta-trial-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url('../img/cta-trial-sp.png');
    background-position: center;
    background-size: cover;
  }

@media (min-width: 768px) {

.cta-trial .cta-trial-bg {
      background-image: url('../img/cta-trial-pc.png');
  }
    }

.cta-trial .cta-trial-bg-bottom {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: 100%;
    background-size: cover;
  }

@media (min-width: 768px) {

.cta-trial .cta-trial-bg-bottom {
      height: 63px;
      background-image: url('../img/cta-trial-sec-divider-bottom-pc.png');
  }
    }

.sec-author-comment {
  padding: var(--space-40) var(--space-28) var(--space-30);
  background-color: #f6a6ff;
}

@media (min-width: 768px) {

.sec-author-comment {
    padding: var(--space-60) 0 var(--space-30);
}
  }

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

@media (min-width: 768px) {

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

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

.sec-author-comment .sec-title > img {
      width: auto;
      font-size: 0;
      line-height: 1;
    }

@media (min-width: 768px) {

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

.sec-author-comment .author-comment {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    align-self: stretch;
    padding: 25px 20px;
    background: #fff;
    border: 3px dashed var(--color-pink-02);
    border-radius: 20px;
  }

@media (min-width: 768px) {

.sec-author-comment .author-comment {
      flex-direction: row;
      gap: 40px;
      width: auto;
      height: auto;
      padding: 45px 80px;
  }
    }

.sec-author-comment .author-comment .author-comment-name {
      display: flex;
      flex-shrink: 0;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      width: auto;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
      color: var(--color-pink-02);
      text-align: center;
      letter-spacing: 1.6px;
    }

.sec-author-comment .author-comment .author-comment-name > img {
        width: 144px;
        height: 144px;
        aspect-ratio: 1/1;
        border-radius: 9999px;
      }

.sec-author-comment .author-comment dd {
      font-size: 14px;
      font-weight: 700;
      line-height: 175%; /* 24.5px */
      color: #333;
      letter-spacing: 1.4px;
    }

.sec-comic-info-divider {
  background-color: #f6a6ff;
}

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

.sec-comic-info {
  padding: var(--space-60) var(--space-30) var(--space-30);
  background-color: var(--color-pink-base);
}

@media (min-width: 768px) {

.sec-comic-info {
    padding: var(--space-60) 0 0;
}
  }

.sec-comic-info .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-comic-info .sec-container {
      gap: var(--space-40);
      padding: 0 20px;
  }
    }

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

.sec-comic-info .sec-title > img {
      width: auto;
      font-size: 0;
      line-height: 1;
    }

@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-20);
    align-items: center;
    width: 100%;
    padding: var(--space-30) 0;
  }

@media (min-width: 768px) {

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

.sec-comic-info .comic-card-body {
    display: flex;
    flex-direction: column;
  }

@media (min-width: 768px) {

.sec-comic-info .comic-card-body {
      max-width: 700px;
  }
    }

.sec-comic-info .comic-card-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
    font-size: 14px;
    font-weight: 700;
    line-height: 170%; /* 23.8px */
    color: var(--color-pink-02);
  }

@media (min-width: 768px) {

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

.sec-comic-info .bookstore-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-15);
  }

.sec-comic-info .bookstore-list dt {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-15);
      font-size: 20px;
      font-weight: 700;
      line-height: 182.023%; /* 36.405px */
      color: var(--color-pink-02);
      text-align: center;
    }

.sec-comic-info .bookstore-list dt::before,
      .sec-comic-info .bookstore-list dt::after {
        width: 100%;
        height: 0;
        content: '';
        border-top: 3px dotted var(--color-pink-02);
      }

.sec-comic-info .bookstore-list dt::after {
        display: none;
      }

@media (min-width: 768px) {

.sec-comic-info .bookstore-list dt::after {
          display: block;
      }
        }

.sec-comic-info .bookstore-list dt::before {
        display: block;
      }

@media (min-width: 768px) {

.sec-comic-info .bookstore-list dt::before {
          display: none;
      }
        }

@media (min-width: 768px) {

.sec-comic-info .bookstore-list dt {
        grid-template-columns: auto 1fr;
        gap: var(--space-15);
        align-items: center;
    }
      }

.sec-comic-info .bookstore-list .note {
      color: var(--color-black);
      text-align: center;
    }

@media (min-width: 768px) {

.sec-comic-info .bookstore-list .note {
        text-align: right;
    }
      }

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

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

@media (min-width: 768px) {

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

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

.sec-comic-info .store-links .note {
      color: var(--color-black);
    }

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

.sec-drama-info-divider {
  background-color: var(--color-pink-base);
}

.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: #f867be;
}

@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: 70px;
  }

.sec-drama-info .sec-title > img {
      width: auto;
      font-size: 0;
      line-height: 1;
    }

@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-15);
  }

@media (min-width: 768px) {

.sec-drama-info .detail-info-container {
      min-width: 675px;
  }
    }

.sec-drama-info .detail-info {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }

@media (min-width: 768px) {

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

.sec-drama-info .detail-info-appearance {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
    font-weight: 700;
    color: #fff;
  }

@media (min-width: 768px) {

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

.sec-drama-info .detail-info-appearance > dt {
      font-size: 18px;
      font-weight: 700;
    }

@media (min-width: 768px) {

.sec-drama-info .detail-info-appearance > dt {
        font-size: 22px;
    }
      }

.sec-drama-info .detail-info-appearance > dd {
      font-size: 14px;
    }

.sec-drama-info .drama-info-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 70px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-pink-02);
    text-decoration: none;
    background: #fff;
    border: 2px solid var(--color-pink-02);
    border-radius: 45px;
  }

.sec-drama-info .drama-info-link > .icon {
      position: absolute;
      top: 50%;
      right: 20px;
      width: 22px;
      height: auto;
      transform: translateY(-50%);
    }

@media (min-width: 768px) {

.sec-drama-info .drama-info-link > .icon {
        right: 40px;
        width: 32px;
        height: auto;
        transform: translateY(-50%);
    }
      }

@media (min-width: 768px) {

.sec-drama-info .drama-info-link {
      width: 640px;
      height: 90px;
      font-size: 22px;
  }
    }
