@charset "UTF-8";
/***********************************************
***  Reset
***********************************************/
.ball-container {
  width: 100%;
  overflow-x: hidden;
  position: absolute;
  bottom: 0;
  padding-top: 200px;
}
.ball {
  width: 30px;
  height: 30px;
  background: url("../img/common/deco/ball.png") no-repeat center/contain;
  position: relative;
  left: 0;
  opacity: 0;
  transform-origin: center center;
}
/* AOSでトリガー */
.aos-animate.ball {
  opacity: 1;
  animation: bounceAndRoll 4.5s ease-out forwards;
}
/* 跳ねて→2回弾んで→ゆっくり転がる */
@keyframes bounceAndRoll {
  /* いきなり空中から登場（ちょっと上にいる状態） */
  0% {
    transform: translate(0, -200px) rotate(-200deg) scaleY(1) scaleX(1);
  }
  /* 着地（1回目） */
  13% {
    transform: translate(80px, 0) rotate(180deg) scaleY(1) scaleX(1);
  }
  13.5% {
    transform: translate(80px, 0) rotate(180deg) scaleY(0.7) scaleX(1.2);
  }
  13.8% {
    transform: translate(80px, 0) rotate(180deg) scaleY(1) scaleX(1);
  }
  /* 小さく弾む（2回目） */
  17% {
    transform: translate(110px, -20px) rotate(360deg) scaleY(1.05) scaleX(0.95);
  }
  /* 2回目の着地 */
  22% {
    transform: translate(140px, 0) rotate(520deg) scaleY(1) scaleX(1);
  }
  /* 転がりながら右へ進む（時間をたっぷりとる） */
  100% {
    transform: translate(600px, 0) rotate(1440deg);
  }
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}
body {
  position: relative;
  background-color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: calc(22.75 / 13);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #000;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.08em;
}
a.click-area-link:hover path, a.click-area-link:hover rect, a.click-area-link:hover polygon {
  fill: #ebebeb;
}
@media (max-width: 799px) {
  body {
    font-size: 12px;
  }
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
ul, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
dl, dd {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
  word-break: break-all;
}
figure {
  margin: 0;
  line-height: 0;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
svg {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
pre {
  margin: 0;
  font-family: inherit;
  white-space: inherit;
}
p a, dd a, pre a {
  display: inline;
  border-bottom: 1px solid #FF4200;
  text-decoration: none;
  color: inherit;
}
p a:hover, dd a:hover, pre a:hover {
  border-bottom: 0;
}
html:not(.viewport--fixed) {
  -webkit-text-size-adjust: 100%;
}
/***********************************************
***  アニメーション
***********************************************/
/* AOSの移動距離を短くする（例：20pxに変更） */
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
}
[data-aos="fade-down"] {
  transform: translate3d(0, -30px, 0);
}
[data-aos="fade-right"] {
  transform: translate3d(-30px, 0, 0);
}
[data-aos="fade-left"] {
  transform: translate3d(30px, 0, 0);
}
.common-playguide-btn {
  position: fixed;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  width: 80%;
  max-width: 400px;
  background-image: linear-gradient(to bottom, #d2ab2d, #aa8a23);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 0 10px rgb(0 0 0 / 40%);
  border: 4px solid #fff;
}
.common-playguide-btn a {
  display: inline-block;
  color: #fff;
  width: 100%;
  height: 100%;
  line-height: 2;
  font-weight: 700;
  padding: 10px 0 20px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-decoration: none;
  letter-spacing: .05em;
  font-size: 20px;
}
.common-playguide-btn a:before {
  content: '';
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shine 12s ease-in-out infinite;
  position: absolute;
  top: -180px;
  left: 0;
  opacity: 0;
  transform: rotate(45deg);
}
@keyframes shine {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  20.5% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  25% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.common-playguide-btn a:after {
  content: '';
  position: absolute;
  background: none;
}
.common-playguide-btn a .btn-icon {
  position: relative;
  width: 430px;
}
.common-playguide-btn a .btn-icon:after {
  position: absolute;
  content: "";
  display: inline-block;
  margin-left: 8px;
  background: url(/assets/img/common/icon-ticket.svg) center / cover no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  top: 0;
  right: -30px;
}
.common-playguide-btn a:hover {
  opacity: .9;
}
@media (max-width: 1100px) {
  .common-playguide-btn {
    bottom: -20px;
  }
  .common-playguide-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 600px) {
  .common-playguide-btn {
    bottom: -19px;
  }
}
@media (max-width: 460px) {
  .common-playguide-btn {
    width: 90%;
  }
  .common-playguide-btn a:after {
    top: 13px;
    margin-left: 12px;
    display: none;
  }
}
.common-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.3s ease;
}
.common-pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
}
.common-pagetop img {
  display: block;
  width: 100%;
  height: auto;
  animation: pagetopHoverCycle 10s linear infinite;
}
@keyframes pagetopHoverCycle {
  0%, 80% {
    transform: translateY(0);
  }
  83.333% {
    transform: translateY(-8px);
  }
  86.666% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-8px);
  }
  93.333% {
    transform: translateY(0);
  }
  96.666% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .common-pagetop {
    display: none;
  }
}
/***********************************************
***  Common class
***********************************************/
.common-section {
  position: relative;
}
.ib {
  display: inline-block;
}
.inner {
  width: 440px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 500px) {
  .inner {
    width: 90%;
  }
}
.btn-default-container {
  text-align: center;
}
.btn-default {
  position: relative;
  display: inline-block;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  background: #e50013;
  border-radius: 40px;
  border: 2px solid #ffffff;
  padding: 6px 50px;
  text-align: center;
  width: min(100%, 320px);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.btn-default.break {
  line-height: 1.2;
}
.btn-default a {
  text-decoration: none;
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}
.btn-default a::after {
  content: "";
  position: absolute;
  inset: 0 25px 0 auto;
  display: block;
  margin: auto;
  background: url(/assets/img/common/icon-next.svg) center / cover no-repeat;
  width: 25px;
  height: 25px;
}
.btn-default .small {
  font-size: 12px;
}
.link-default {
  border-bottom: 2px solid #e50013;
}
.link-default:hover {
  border-bottom: 2px solid #e50013;
}
.heading-default {
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}
.heading-default .en {
  font-size: 50px;
  line-height: 1.2;
}
.heading-default .en .red {
  color: #e50013;
}
.heading-default .jp {
  font-size: 16px;
  position: relative;
  display: inline-block;
}
.heading-default .jp:before {
  content: "";
  position: absolute;
  width: 3.5em;
  height: 1px;
  background-color: #e50013;
  top: 50%;
  left: -4em;
}
.heading-default .jp:after {
  content: "";
  position: absolute;
  width: 3.5em;
  height: 1px;
  display: block;
  background-color: #e50013;
  top: 50%;
  right: -4em;
}
.heading-default .wrap, .heading-default .wrap .inn {
  display: block;
}
.heading-default .wrap .inn.jp {
  display: inline-block;
}
.my-hook {
  opacity: 0;
  transform: translateY(14px);
}
.heading-default .wrap {
  overflow: hidden;
  opacity: 0;
}
.heading-default .wrap + .wrap {
  margin-top: 10px;
}
.heading-default .wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.heading-default.aos-animate .wrap {
  opacity: 1;
}
.heading-default.aos-animate .wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.heading-default.aos-animate .wrap .inn.jp {
  transition-delay: .5s;
}
.sub-heading-default {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.sub-heading-default .text {
  padding-top: 10px;
}
.sub-heading-default:before {
  position: absolute;
  content: "";
  background-color: #e50013;
  width: 30px;
  height: 6px;
  left: 0;
  bottom: 0;
}
.sub-heading-default:after {
  position: absolute;
  content: "";
  background: url("../img/common/bg-heading.png");
  background-size: 100px auto;
  width: calc(100% - 30px);
  height: 6px;
  right: 0;
  bottom: 0;
}
/* コンテナ（全体の当たり判定だけ） */
.spark {
  position: relative;
  display: inline-block;
  width: 32px; /* 全体の幅（最大の三角に合わせる）*/
  height: 40px; /* 全体の高さ（下端までの合計）*/
}
/* 共通アニメ（AOSで発火） */
.spark, .spark::before, .spark::after {
  opacity: 0;
  transform: translateX(-6px);
  animation: triIn .8s ease forwards;
  animation-play-state: paused;
}
.spark.aos-animate, .spark.aos-animate::before, .spark.aos-animate::after {
  animation-play-state: running;
}
/* ====== 三角1（上）：本体背景 ====== */
.spark {
  --w1: 15px;
  --h1: 20px; /* ← サイズ */
  --x1: 0px;
  --y1: 0px; /* ← 位置 */
  background: url("../img/common/deco/icon-sub-heading-1.svg") no-repeat;
  background-size: var(--w1) var(--h1);
  background-position: var(--x1) var(--y1);
  animation-delay: 0s; /* 表示順 1つ目 */
  position: relative;
  margin-top: -10px;
}
/* ====== 三角2（中）：::before ====== */
.spark::before {
  content: "";
  position: absolute;
  width: var(--w2, 22px);
  height: var(--h2, 14px);
  left: var(--x2, 8px);
  top: var(--y2, 14px);
  background: url("../img/common/deco/icon-sub-heading-2.svg") no-repeat 0 0 / 100% 100%;
  animation-delay: .2s; /* 表示順 2つ目 */
}
/* ====== 三角3（下）：::after ====== */
.spark::after {
  content: "";
  position: absolute;
  width: var(--w3, 21px);
  height: var(--h3, 7px);
  left: var(--x3, 11px);
  top: var(--y3, 33px);
  background: url("../img/common/deco/icon-sub-heading-3.svg") no-repeat 0 0 / 100% 100%;
  animation-delay: .4s; /* 表示順 3つ目 */
}
/* ふわっと出す */
@keyframes triIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.lead-default {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  line-height: 1.4;
}
.sub-lead-default {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1.4;
}
.common-notice-lists {
  padding-left: 1.5em;
}
.common-notice-list {
  position: relative;
  margin-bottom: 0.5em;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.common-notice-list:before {
  content: "※";
  position: absolute;
  font-size: 10px;
  color: #FF676A;
  left: -1.5em;
  top: 2px;
}
.common-notice-lists.dot .common-notice-list:before {
  content: "・";
  position: absolute;
  font-size: 10px;
  color: #000;
  left: -1.5em;
  top: 2px;
}
.common-notice-lists.number .common-notice-list {
  list-style: decimal;
  position: inherit;
}
.common-notice-lists.notice .common-notice-list {
  margin-bottom: 1em;
}
.common-notice-lists.dot .common-notice-list:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FF676A;
  left: -1.5em;
  top: 6px;
}
.common-notice-lists.dot-gray .common-notice-list:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #9A9A9A;
  left: -1.2em;
  top: 8px;
}
.common-notice-lists.kome .common-notice-list {
  margin-bottom: 0.5em;
}
.common-notice-lists.kome .common-notice-list:before {
  content: "※";
  position: absolute;
  background-color: transparent;
  font-size: 10px;
  color: #000;
  left: -1.5em;
  top: 2px;
}
.common-notice-lists.mb0 .common-notice-list {
  margin-bottom: 0;
}
/***********************************************
***  Loader
***********************************************/
.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fff;
  z-index: 2000;
  transition: opacity .4s ease, visibility .4s ease;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  text-align: center;
}
.loader-text {
  margin: 0 0 20px 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.loader-anime {
  width: 120px;
  height: 22px;
  margin: 0 auto;
  border-radius: 20px;
  color: #e50013;
  border: 2px solid #000;
  position: relative;
}
.loader-anime::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 100% 0 0;
  border-radius: inherit;
  background: currentColor;
  animation: l6 2s infinite;
}
@keyframes l6 {
  100% {
    inset: 0
  }
}
@media (max-width: 600px) {
  .loader-chara {
    width: 160px;
    text-align: center;
    margin: 0 auto;
  }
}
/***********************************************
***  wrapper
***********************************************/
.wrapper {}
.main {
  order: 2;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.20);
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 540px;
  margin: 0 auto;
}
.left-area {
  order: 1;
  position: fixed;
  left: 0;
  width: calc(50% - 270px);
}
.right-area {
  order: 3;
  position: fixed;
  right: 0;
  z-index: 20;
  width: calc(50% - 270px);
  text-align: center;
}
.comics-container {
  width: 300px;
  margin: 16vh auto 0;
  padding: 40px 20px;
  background: #fff2f7;
  min-height: 480px;
}
.header {
  width: fit-content;
  margin: 16vh auto 0;
  padding: 40px 30px;
  box-shadow: 0 0 6px rgb(0 0 0 / 30%);
}
@media (min-width: 1400px) {
  .comics-container {
    width: 360px;
    margin: 24vh auto 0;
    min-height: 500px;
  }
  .header {
    margin: 24vh auto 0;
  }
}
@media (max-width: 1200px) {
  .comics-container {
    display: none;
  }
  .header {
    padding: 40px 10px;
  }
}
@media (max-width: 1100px) {
  .header {
    box-shadow: inherit;
  }
}
@media (max-width: 550px) {
  .main {
    width: 100%;
  }
}
/***********************************************
***  Header
***********************************************/
.header-logo {
  width: 200px;
  margin: 0 auto 20px;
}
.header-logo a {
  width: 100%;
  height: 100%;
  display: block;
}
.header-x-btn {
  background-color: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
}
.header-x-btn a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 7px 14px 2px 36px;
}
.header-x-btn a:before {
  position: absolute;
  content: "";
  background: url(../img/common/header/x-icon.svg);
  width: 18px;
  height: 18px;
  background-size: contain;
  top: 7px;
  left: 12px;
}
.header-x-icon {
  width: 30px;
  display: inline-block;
}
.global-navigation {
  text-align: center;
}
.global-navigation-mob-btn {
  display: none;
}
.global-navigation-lists {
  background-size: contain;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.global-navigation-list {
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
}
.global-navigation-list .red {
  color: #e50013;
}
.global-navigation-list a {
  display: block;
  position: relative;
}
.global-navigation-list a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background-color: #fff2f7;
  background-size: 100px auto;
  background-repeat: repeat;
  transition: .2s;
  z-index: -1;
  left: 0;
  top: 0;
}
.global-navigation-list a:hover:before {
  width: 100%;
}
.global-navigation-list img {
  height: 30px;
  width: auto;
}
.header.fixed {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  margin-top: 0;
  animation: DownAnime 1s forwards;
}
.header.fixed .header-logo {
  width: 100px;
  padding: 10px;
}
.header.fixed.pages {
  animation: inherit;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header.fixed > .global-navigation {
  display: none;
}
#global-navigation-mob-btn-check {
  display: none;
}
.global-navigation-mob-unshown {
  display: none;
}
.header-playguide-btn {
  margin: 30px auto 0;
  padding: 8px 30px;
  width: min(100%, 240px);
  font-size: 18px;
}
.header-playguide-btn a::after {
  inset: 0 10px 0 auto;
}
@media only screen and (max-width: 1100px) {
  .header-playguide-btn {
    display: none;
  }
  .header.fixed {
    border-top: none;
    border-bottom: none;
  }
  .header {
    margin-top: 0;
    width: 100%;
    padding-top: inherit;
  }
  .global-navigation-mob-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    box-shadow: 3px 3px 5px #ffffff;
    border: 1px solid #B3B3B3;
    padding: 10px;
    background-color: #fff;
  }
  .global-navigation-mob-btn-inner {
    position: relative;
    width: 40px;
    height: 40px;
  }
  .global-navigation-mob-btn-line {
    position: absolute;
    background-color: #000;
    width: 100%;
    height: 3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .global-navigation-mob-btn-line:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
  }
  .global-navigation-mob-btn-line:nth-of-type(2) {
    position: absolute;
    top: 14px;
    left: 0;
  }
  .global-navigation-mob-btn-text {
    position: absolute;
    top: 23px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
  .header-logo {
    width: 280px;
    margin-top: 50px;
  }
  .global-navigation-lists {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background: transparent;
    position: relative;
  }
  .global-navigation-lists:before {
    position: absolute;
    content: "";
    width: 70%;
    max-width: 320px;
    height: 150px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url("../img/common/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .global-navigation-list {
    padding: 0;
    margin: 0 auto 16px;
    display: inline-block;
    list-style: none;
    width: 100%;
    text-align: center;
  }
  .global-navigation-list:nth-child(5), .global-navigation-list:nth-child(6) {
    border-bottom: none;
  }
  .global-navigation-list a {
    display: inline-block;
    font-size: 24px;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
    position: relative;
  }
  .global-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    top: -100vh;
    left: 0;
    z-index: 80;
    background: #fff;
    overflow-x: hidden;
    transition: all 0.5s;
  }
  .header.fixed > .global-navigation {
    display: block;
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation {
    top: 0;
    display: block;
    border: 2px solid;
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn .global-navigation-mob-btn-line {
    top: 10px;
    transform: rotate(25deg);
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn .global-navigation-mob-btn-line:nth-of-type(2) {
    bottom: 0;
    transform: rotate(-25deg);
  }
  #global-navigation-mob-btn-check:checked ~ #global-navigation-mob-close {
    display: block;
    opacity: .5;
  }
}
/* Comics auto-rotator */
.comics-area {
  position: sticky;
  top: 90px;
  padding: 20px;
  background: #fafafa;
  margin: 20px;
}
.comics-area__cover {
  max-width: 100px;
  height: 180px;
  margin: 0 auto;
}
@media (min-width: 1400px) {
  .comics-area__cover {
    max-width: 160px;
    height: 260px;
    margin: 0 auto;
  }
}
@media (min-width: 1800px) {
  .comics-area__cover {
    max-width: 200px;
    height: 320px;
    margin: 0 auto;
  }
}
.comics-area__cover img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 0 2px #bbb;
}
/* ← フェード時間をCSS変数で渡せるように */
.comics-area__viewer {
  position: relative;
  min-height: 280px;
  --fade-s: 1.8s; /* デフォのフェード秒数（JS/HTMLで上書き可） */
}
.comics-caption {
  display: block;
  margin: 0 auto;
  text-align: left;
}
.book {
  text-align: center;
  position: absolute;
  inset: 0;
  display: grid;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  /* ゆっくりフェード（以前コメントアウトしていた行を変数対応で復活） */
  transition: opacity var(--fade-s, 1.8s) ease;
  will-change: opacity;
}
/* ※ ここでpositionをrelativeにするとクロスフェード時にレイアウトが動くので
   “重ねたまま”にしたい場合は absoluteのままにするのが安全です。 */
.book.is-active {
  opacity: 1;
  pointer-events: auto;
  /* position: relative;  ← レイアウトが動くなら削除 or 無効化推奨 */
  z-index: 1; /* アクティブを前面に */
}
/* アニメ苦手設定に配慮（短縮） */
@media (prefers-reduced-motion: reduce) {
  .book {
    transition-duration: 0.2s;
  }
}
.comics-area__cover {}
.comics-paw-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px; /* 全体サイズは調整してください */
  height: 420px;
  opacity: 0.2;
}
.paw {
  position: absolute;
  width: 28px; /* ← 半分サイズに変更 */
  opacity: 0;
  transform: translateY(10px) scale(0.9) rotate(-8deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.paw.is-show {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}
/* 右下→左上方向に配置 */
.paw:nth-child(1) {
  left: 160px;
  top: 340px;
  transform: translateY(10px) rotate(-6deg);
}
.paw:nth-child(2) {
  left: 120px;
  top: 310px;
  transform: translateY(10px) rotate(-10deg);
}
.paw:nth-child(3) {
  left: 140px;
  top: 260px;
  transform: translateY(10px) rotate(-4deg);
}
.paw:nth-child(4) {
  left: 80px;
  top: 230px;
  transform: translateY(10px) rotate(-16deg);
}
.paw:nth-child(5) {
  left: 100px;
  top: 180px;
  transform: translateY(10px) rotate(-5deg);
}
.paw:nth-child(6) {
  left: 40px;
  top: 160px;
  transform: translateY(10px) rotate(-18deg);
}
.paw:nth-child(7) {
  left: 60px;
  top: 100px;
  transform: translateY(10px) rotate(-3deg);
}
.paw:nth-child(8) {
  left: 20px;
  top: 60px;
  transform: translateY(10px) rotate(-22deg);
}
@media only screen and (max-width: 1200px) {
  .comics-caption {
    width: 90%;
  }
}
/***********************************************
***  footer
***********************************************/
.footer {
  padding: 60px 0 20px;
}
@media only screen and (max-width: 1100px) {
  .footer {
    padding: 60px 0 80px;
  }
}
.footer-text {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 40px;
  line-height: 1.5;
  position: relative;
  margin-bottom: 90px;
}
.footer-text:after {
  position: absolute;
  content: "";
  font-size: 200px;
  width: 100px;
  height: 100px;
  background: url(../img/chara/chara-punch.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: inherit;
  bottom: -70px;
  left: 0;
  right: 0;
  margin: auto;
}
.footer-text .red {
  color: #e60012;
}
.footer-bnr-text {
  max-width: 280px;
  display: block;
  margin: 0 auto 10px;
}
.footer-bnr {
  max-width: 320px;
  display: block;
  margin: 0 auto 20px;
  border: 1px solid #e60012;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.30);
}
.footer-bnr a {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-bnr img {
  height: auto;
  transition: transform .6s ease;
}
.footer-bnr:hover img {
  transform: scale(1.05);
}
.footer-copyright {
  font-size: 11px;
  text-align: center;
}