/* init */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main, summary, time, mark, audio, video, a, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ul li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
  font-size: 75%;
}

sub {
  vertical-align: text-bottom;
  font-size: 75%;
}

input, textarea, select {
  z-index: auto;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

time {
  display: inline;
}

[hidden] {
  display: none;
}

input::-ms-clear, input::-ms-reveal, input:focus::-ms-clear, input:focus::-ms-reveal {
  visibility: hidden;
  display: none;
}

button::-moz-focus-inner, input[type=reset]::-moz-focus-inner, input[type=button]::-moz-focus-inner, input[type=submit]::-moz-focus-inner, input[type=file] > input[type=button]::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  outline: none;
}

button,
input[type=submit],
input[type=button],
input[type=reset] {
  cursor: pointer;
}

small {
  font-size: 85%;
}

i, em {
  font-weight: normal;
  font-style: normal;
}

b {
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrapper {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  position: relative;
  min-width: 1200px;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  display: block;
  height: auto;
  width: 200px;
}
header .buynow {
  width: 150px;
  height: auto;
}
header .buynow a {
  display: block;
  transition: all 0.3s ease;
}
header .buynow a img {
  width: 100%;
  height: auto;
  display: block;
}
header .buynow a:hover {
  opacity: 0.5;
}

footer {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  right: 0;
  text-align: right;
  font-size: 1rem;
  color: #666;
  z-index: 1;
  padding: 0 30px 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fullPageScroll {
  width: 100%;
  height: 100dvh;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  overflow-x: hidden;
}

.section {
  width: 100%;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.pagination {
  width: 40px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  top: calc(50% - 180px);
  z-index: 99;
}

.pagination a {
  display: block;
  width: 20px;
  height: 20px;
  margin: 5px 0;
  border-radius: 50%;
  background-color: #0070b1;
  transition: transform 0.2s;
  border: 2px #35447f solid;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.pagination a.active {
  transform: scale(1.6);
  background-color: #fff;
  color: #35447f;
}

section {
  position: relative;
  overflow: hidden;
}
section.section0 {
  background: #005499;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
section.section0 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/img/sec0/bg.webp) no-repeat center;
  background-size: cover;
  z-index: 0;
  filter: blur(40px);
  transition: all 0.75s ease 0.5s;
}
section.section0 .inner {
  aspect-ratio: 16/9;
  position: relative;
  min-width: 800px;
  max-width: 1600px;
  width: 100%;
}
section.section0 .inner .image1,
section.section0 .inner .image2,
section.section0 .inner .text {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  filter: blur(20px);
  opacity: 0;
  transition: all 0.75s ease;
}
section.section0 .inner .image1 {
  transition-delay: 1s;
}
section.section0 .inner .image2 {
  transition-delay: 1.5s;
}
section.section0 .inner .text {
  transition-duration: 2s;
}
section.section0 .scroll {
  width: 40px;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.75s ease 2s;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
section.section0 .scroll img {
  width: 100%;
  height: auto;
  -webkit-animation: scrollAnim 1.5s ease-in-out infinite;
          animation: scrollAnim 1.5s ease-in-out infinite;
}
section.section0.active .bg {
  filter: blur(0);
}
section.section0.active .inner .image1,
section.section0.active .inner .image2,
section.section0.active .inner .text {
  filter: blur(0);
  top: 50%;
  opacity: 1;
}
section.section0.active .scroll {
  opacity: 1;
}
section.section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #35447f;
}
section.section1 .inner {
  aspect-ratio: 16/9;
  position: relative;
  width: 900px;
}
section.section1 .inner h2 {
  position: relative;
  margin: 0 auto;
  width: 480px;
  filter: blur(20px);
  transition: all 0.75s ease 0.5s;
  top: 50px;
}
section.section1 .inner .primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
section.section1 .inner .primary .image1 {
  width: 50%;
  height: auto;
  padding: 20px 40px 0;
  filter: blur(20px);
  transition: all 0.75s ease 0.75s;
  top: 50px;
  opacity: 0;
}
section.section1 .inner .primary dl {
  width: 50%;
  margin-bottom: 200px;
  filter: blur(20px);
  transition: all 0.75s ease 1s;
  top: 50px;
  opacity: 0;
  position: relative;
}
section.section1 .inner .primary dl dt {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
section.section1 .inner .primary dl dd {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
}
section.section1 .inner p {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  filter: blur(20px);
  transition: all 0.75s ease 1.5s;
  top: 50px;
  opacity: 0;
  position: relative;
}
section.section1.active .inner h2 {
  filter: blur(0);
  top: 0;
}
section.section1.active .inner .primary .image1 {
  filter: blur(0);
  top: 0;
  opacity: 1;
}
section.section1.active .inner .primary dl {
  filter: blur(0);
  top: 0;
  opacity: 1;
}
section.section1.active .inner p {
  filter: blur(0);
  top: 0;
  opacity: 1;
}
section.section2, section.section3, section.section4 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
section.section2 .inner, section.section3 .inner, section.section4 .inner {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 90dvh;
}
section.section2 .inner h2, section.section3 .inner h2, section.section4 .inner h2 {
  position: relative;
  margin: 0 auto 20px;
  width: 400px;
  background-color: #35447f;
  color: #fff;
  padding: 0 0 5px;
  border-radius: 30px;
  text-align: center;
  font-size: 3.6rem;
  height: 60px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.25em;
}
section.section2 .inner .manga, section.section3 .inner .manga, section.section4 .inner .manga {
  height: calc(90dvh - 80px);
  width: auto;
  overflow: hidden;
}
section.section2 .inner .manga img, section.section3 .inner .manga img, section.section4 .inner .manga img {
  height: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
  display: block;
  position: relative;
  left: -100%;
  transition: left 0.75s ease 0.5s, opacity 0.5s ease 0.25s;
}
section.section2.active .inner .manga img, section.section3.active .inner .manga img, section.section4.active .inner .manga img {
  left: 0;
  opacity: 1;
}
section.section5 {
  background-color: #35447f;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section5 .inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
section.section5 .inner h2 {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  position: relative;
  filter: blur(20px);
  transition: all 0.75s ease;
  top: 50px;
}
section.section5 .inner h2 img {
  width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
section.section5 .inner .features {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.section5 .inner .features li {
  width: calc((100% - 40px) / 3);
  height: auto;
  position: relative;
  filter: blur(20px);
  transition: all 0.75s ease;
  top: 50px;
  opacity: 0;
}
section.section5 .inner .features li:nth-child(1) {
  transition-delay: 0.5s;
}
section.section5 .inner .features li:nth-child(2) {
  transition-delay: 1s;
}
section.section5 .inner .features li:nth-child(3) {
  transition-delay: 1.5s;
}
section.section5.active .inner h2 {
  filter: blur(0);
  top: 0;
}
section.section5.active .inner .features li {
  filter: blur(0);
  top: 0;
  opacity: 1;
}
section.section6 {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section6 .inner {
  aspect-ratio: 200/126;
  position: relative;
  min-width: 800px;
  max-width: 1000px;
  width: 100%;
}
section.section6 .inner .image1,
section.section6 .inner .image2,
section.section6 .inner .image3,
section.section6 .inner .image4,
section.section6 .inner .image5,
section.section6 .inner .image6,
section.section6 .inner .image7 {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  filter: blur(20px);
  transition: all 0.75s ease;
  opacity: 0;
}
section.section6 .inner .image1 {
  z-index: 7;
  transition-delay: 0.5s;
}
section.section6 .inner .image2 {
  z-index: 6;
  transition-delay: 1s;
}
section.section6 .inner .image3 {
  z-index: 5;
  transition-delay: 1.5s;
}
section.section6 .inner .image4 {
  z-index: 4;
  transition-delay: 2s;
}
section.section6 .inner .image5 {
  z-index: 3;
  transition-delay: 2.5s;
}
section.section6 .inner .image6 {
  z-index: 2;
  transition-delay: 3s;
}
section.section6 .inner .image7 {
  z-index: 1;
  transition-delay: 3.5s;
}
section.section6.active .inner .image1,
section.section6.active .inner .image2,
section.section6.active .inner .image3,
section.section6.active .inner .image4,
section.section6.active .inner .image5,
section.section6.active .inner .image6,
section.section6.active .inner .image7 {
  filter: blur(0);
  top: 50%;
  opacity: 1;
}
section.section7 {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section7 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/img/sec7/bg.webp) no-repeat center;
  background-size: cover;
  z-index: 0;
  filter: blur(40px);
  transition: all 0.75s ease 0.5s;
}
section.section7 .inner {
  position: relative;
  width: 1000px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 60px;
       column-gap: 60px;
  z-index: 1;
}
section.section7 .inner .image1 {
  width: 470px;
  filter: blur(20px);
  transition: all 0.75s ease 1s;
  position: relative;
  top: 50px;
  opacity: 0;
}
section.section7 .inner .image2 {
  width: 470px;
  filter: blur(20px);
  transition: all 0.75s ease 1.5s;
  position: relative;
  top: 80px;
  opacity: 0;
}
section.section7 .inner p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 20px;
}
section.section7.active .bg {
  filter: blur(0);
}
section.section7.active .inner .image1 {
  filter: blur(0);
  top: 0;
  opacity: 1;
}
section.section7.active .inner .image2 {
  filter: blur(0);
  top: 0;
  opacity: 1;
}
section.section8 {
  background-color: #35447f;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section8 .inner {
  width: 840px;
  margin: 0 auto;
}
section.section8 .inner h2 {
  margin-bottom: 40px;
  width: 100%;
}
section.section8 .inner h2 img {
  width: 540px;
  height: auto;
  display: block;
  margin: 0 auto;
}
section.section8 .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
section.section8 .inner ul li {
  width: calc((100% - 40px) / 3);
  text-align: center;
  position: relative;
  opacity: 0;
  transition: all 0.75s ease;
  transform: rotate(15deg);
  transform-origin: center;
  left: 40px;
  top: 50px;
}
section.section8 .inner ul li img {
  display: block;
  margin: 0 auto 20px;
  width: 100%;
  height: auto;
}
section.section8 .inner ul li b {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
section.section8 .inner ul li a {
  display: block;
  margin-top: 10px;
  transition: all 0.3s ease;
}
section.section8 .inner ul li a img {
  width: 150px;
  height: auto;
  display: block;
}
section.section8 .inner ul li a:hover {
  opacity: 0.5;
}
section.section8 .inner ul li:nth-child(1) {
  transition-delay: 0.5s;
}
section.section8 .inner ul li:nth-child(2) {
  transition-delay: 1s;
}
section.section8 .inner ul li:nth-child(3) {
  transition-delay: 1.5s;
}
section.section8.active .inner ul li {
  opacity: 1;
  transform: rotate(0deg);
  left: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .wrapper {
    min-width: 320px;
  }
  .pagination {
    width: 30px;
    height: auto;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .pagination a {
    width: 20px;
    height: 20px;
    margin: 5px 0;
    border-radius: 50%;
    line-height: 1;
  }
  .pagination a.active {
    transform: scale(1.6);
  }
  header {
    padding: 15px;
  }
  header h1 {
    width: 140px;
  }
  header .buynow {
    width: 120px;
  }
  footer {
    font-size: 0.8rem;
    padding: 0 15px 10px 0;
  }
  .section {
    padding: 0;
  }
  section {
    padding: 0;
    display: block;
  }
  section.section0 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  section.section0 .bg {
    background-image: url(/img/sec0/bg_sp.webp);
  }
  section.section0 .inner {
    aspect-ratio: auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  section.section0 .inner .image1,
  section.section0 .inner .image2,
  section.section0 .inner .text {
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 100%;
  }
  section.section0 .inner .image1 {
    position: relative;
  }
  section.section0.active .inner .image1,
  section.section0.active .inner .image2,
  section.section0.active .inner .text {
    top: 0;
  }
  section.section1 {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.section1 .inner {
    aspect-ratio: auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 15px;
  }
  section.section1 .inner h2 {
    width: 100%;
    padding: 0 4vw;
    margin-bottom: 4vw;
  }
  section.section1 .inner .primary {
    flex-direction: column-reverse;
    padding: 0 15px;
  }
  section.section1 .inner .primary .image1 {
    padding: 0 24vw;
    width: auto;
  }
  section.section1 .inner .primary dl {
    width: 100%;
    margin-bottom: 20px;
  }
  section.section1 .inner .primary dl dt {
    font-size: 8vw;
    margin-bottom: 4vw;
  }
  section.section1 .inner .primary dl dd {
    font-size: 5vw;
    line-height: 1.6;
  }
  section.section1 .inner p {
    font-size: 4.2vw;
    text-align: left;
    padding-right: 20px;
  }
  section.section2, section.section3, section.section4 {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.section2 .inner, section.section3 .inner, section.section4 .inner {
    min-width: 0;
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
    padding: 0 13vw 0;
  }
  section.section2 .inner h2, section.section3 .inner h2, section.section4 .inner h2 {
    width: 100%;
    font-size: 6vw;
    padding: 2vw 4vw;
    margin-bottom: 4vw;
    height: auto;
  }
  section.section2 .inner .manga, section.section3 .inner .manga, section.section4 .inner .manga {
    height: auto;
    width: auto;
  }
  section.section2 .inner .manga img, section.section3 .inner .manga img, section.section4 .inner .manga img {
    height: 100%;
    width: auto;
  }
  section.section5 {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.section5 .inner {
    min-width: 0;
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
    padding: 0 15px;
  }
  section.section5 .inner h2 {
    width: 100%;
    padding: 0 4vw;
  }
  section.section5 .inner .features {
    flex-direction: column;
    padding-right: 4vw;
  }
  section.section5 .inner .features li {
    width: 100%;
    margin-bottom: 6vw;
  }
  section.section6 {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.section6 .inner {
    min-width: 0;
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
    padding: 0;
    aspect-ratio: auto;
  }
  section.section6 .inner .image1,
  section.section6 .inner .image2,
  section.section6 .inner .image3,
  section.section6 .inner .image4,
  section.section6 .inner .image5,
  section.section6 .inner .image6,
  section.section6 .inner .image7 {
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 100%;
    padding: 0 20px;
  }
  section.section6 .inner .image1 {
    position: relative;
  }
  section.section6.active .inner .image1,
  section.section6.active .inner .image2,
  section.section6.active .inner .image3,
  section.section6.active .inner .image4,
  section.section6.active .inner .image5,
  section.section6.active .inner .image6,
  section.section6.active .inner .image7 {
    top: 0;
  }
  section.section7 {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.section7 .bg {
    background-image: url(/img/sec7/bg_sp.webp);
  }
  section.section7 .inner {
    min-width: 0;
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
    padding: 0 15px;
    flex-direction: column;
    row-gap: 20px;
  }
  section.section7 .inner .image1,
  section.section7 .inner .image2 {
    width: 100%;
  }
  section.section7 .inner .image2 {
    margin-top: 6vw;
  }
  section.section7 .inner p {
    font-size: 4vw;
    margin: 0 20px 0 0;
  }
  section.section8 {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.section8 .inner {
    min-width: 0;
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
    padding: 0 15px;
  }
  section.section8 .inner h2 {
    width: 100%;
    padding: 0 4vw;
    margin-bottom: 4vw;
  }
  section.section8 .inner ul {
    flex-direction: column;
  }
  section.section8 .inner ul li {
    width: 100%;
    margin-bottom: 4vw;
    transform: none;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  section.section8 .inner ul li img {
    width: 25%;
    margin: 0;
  }
  section.section8 .inner ul li div {
    width: 75%;
    padding-left: 4vw;
  }
  section.section8 .inner ul li b {
    font-size: 3.6vw;
    text-align: left;
  }
}

/*# sourceMappingURL=styles.css.map */