@charset "UTF-8";
/***********************************************
***  Reset
***********************************************/
.ball-container {
  width: 100%;
  overflow-x: hidden;
  overflow-y: 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-animate.ball {
  opacity: 1;
  animation: bounceAndRoll 4.5s ease-out forwards;
}
@keyframes bounceAndRoll {
  0% {
    transform: translate(0, -200px) rotate(-200deg) scaleY(1) scaleX(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);
  }
  17% {
    transform: translate(110px, -20px) rotate(360deg) scaleY(1.05) scaleX(0.95);
  }
  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: #c7e1f5 url(../img/top/topmain-1-bg.webp);
  background-size: 1000px auto;
  background-repeat: repeat;
  background-position: 0 0;
  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;

  animation: bg-move-diagonal 30s linear infinite;
}
body.yellow {
  position: relative;
  background: #fffcdb url(../img/top/topmain-2-bg.webp);
}
@keyframes bg-move-diagonal {
  from {
    background-position: 0px 0px;
  }
  to {
     background-position: -1000px 1000px;
  }
}
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%;
}
/***********************************************
***  アニメーション
***********************************************/

[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-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
***********************************************/
.view_timer {
  display: none;
}
.view_timer.is-visible {
  display: block;
}
.view_timer.is-visible.flex {
  display: flex;
}
.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;
}
.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;
}
.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; 
  position: relative;
  margin-top: -10px;
}
.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; 
}
.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; 
}
@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;
}

/***********************************************
***  wrapper
***********************************************/
.wrapper {}
.main {
  order: 2;

  position: relative;
  z-index: 10;
  overflow: hidden;
  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%;
  }
}
