@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.0.1/dist/css/yakuhanmp.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
:root {
  --device-breakpoint: 576px;
}

@media screen and (hover: none) and (pointer: coarse) {
  :root {
    --device-breakpoint: 780px;
  }
}
.effected, .effected::before, .effected::after, .effected > *, .effected > *::before, .effected > *::after {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1, 1) !important;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

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

#root, #__next {
  isolation: isolate;
}

/* added */
ul,
ol {
  list-style: none;
}

html {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-style: normal;
  font-size: calc(30 * var(--device-breakpoint) / 780);
  color: #262626;
}
@media screen and (max-width: 779px) {
  html {
    font-size: 3.8461538462vw;
  }
}

.l-page {
  /*========================
  汎用パーツ
  =========================*/
}
.l-page * {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.l-page__note {
  font-size: calc(19rem / 30);
}
@media screen and (max-width: 779px) {
  .l-page .hide-sp {
    display: none !important;
    visibility: hidden;
  }
}
@media print, screen and (min-width: 780px) {
  .l-page .hide-pc {
    display: none !important;
    visibility: hidden;
  }
}
.l-page sup {
  top: auto;
  font-size: 60%;
  vertical-align: baseline;
  letter-spacing: .01em;
}
.l-page h1 sup, .l-page h2 sup, .l-page h3 sup, .l-page h4 sup {
  font-size: 40%;
}
.l-page img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
.l-page .txt-small {
  font-size: 88%;
}
.l-page .txt-blue {
  color: #000065;
  font-weight: 600;
}
.l-page a.hoverUp {
  display: block;
  transition: .2s;
}
.l-page a.hoverUp:hover {
  transform: translateY(-0.5em);
  opacity: .8;
}
.l-page .blue_btn {
  cursor: pointer;
  display: block;
  background-color: #000065;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  margin: 0 0 calc(40 / 710 * 100%);
  padding: .5em 1em;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s;
}
@media (hover: hover) {
  .l-page .blue_btn:hover {
    opacity: .7;
  }
}
.l-page .modal-btn {
  cursor: pointer;
  display: block;
  transition: opacity .2s;
}
@media (hover: hover) {
  .l-page .modal-btn:hover {
    opacity: .7;
  }
}

.l-page__bg {
  background-color: #f3f2f8;
}
.l-page__inner {
  max-width: var(--device-breakpoint);
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}

.l-header {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 990;
  /*========================
  ハンバーガーメニュー設定スタート
  =========================*/
  /*============
  nav
  =============*/
  /*============
  .toggle_btn
  =============*/
  /*============
  #mask
  =============*/
  /*========================
  ハンバーガーメニュー設定エンド
  =========================*/
  /*========================
  ロゴヘッダー設定
  =========================*/
  /*========================
  シェアボタン設定
  =========================*/
}
.l-header nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: .5s;
  z-index: 999;
}
@media screen and (max-width: 779px) {
  .l-header nav {
    left: -240px;
    width: 240px;
  }
}
.l-header nav .inner {
  padding: 3.5rem 25px 25px 25px;
}
.l-header nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header nav .inner ul li {
  position: relative;
  margin: 0;
  text-align: left;
}
.l-header nav .inner ul li a {
  display: block;
  color: #000065;
  font-size: 14px;
  font-weight: 700;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
.l-header nav .inner ul li a:hover {
  background: #f3f2f8;
}
.l-header .open nav {
  left: 0;
}
.l-header .toggle_btn {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 3.25rem;
  height: 3.25rem;
  transform: translate(0, 0);
  transition: all .5s;
  cursor: pointer;
  z-index: 999;
}
.l-header .toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 1.25rem;
  height: 2px;
  margin: auto;
  background-color: white;
  transition: all .5s;
}
.l-header .toggle_btn span:nth-child(1) {
  top: 1rem;
}
.l-header .toggle_btn span:nth-child(2) {
  top: 1.5rem;
}
.l-header .toggle_btn span:nth-child(3) {
  top: 2rem;
}
.l-header .open .toggle_btn span {
  background-color: #000065;
}
.l-header .open .toggle_btn span:nth-child(1) {
  transform: translate(0, 0.5rem) rotate(-45deg);
}
.l-header .open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.l-header .open .toggle_btn span:nth-child(3) {
  transform: translate(0, -0.5rem) rotate(45deg);
}
.l-header #mask {
  display: none;
}
.l-header .open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6666a2;
  opacity: .7;
  z-index: 998;
  cursor: pointer;
  transition: all .5s;
}
.l-header__logo {
  position: fixed;
  z-index: 996;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000065;
}
.l-header__logo a {
  color: #FFF;
  display: block;
  padding: 0 3.25rem;
  line-height: 1;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.25rem;
}
.l-header__logo a img {
  height: 1.25rem;
  aspect-ratio: 483 / 30;
}
.l-header__share {
  position: fixed;
  z-index: 997;
  top: 0;
  right: 0;
  width: 3.25rem;
  height: 3.25rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-header__share img {
  width: 1.25rem;
  height: 1.25rem;
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(78deg) brightness(102%) contrast(101%);
}
.l-header__share-msg {
  display: none;
  position: fixed;
  width: fit-content;
  padding: .5em .5em;
  line-height: 1;
  background-color: #000065;
  color: #fff;
  top: 3.75rem;
  right: 0.75rem;
  margin: auto;
  text-align: center;
  border-radius: 5px;
  z-index: 998;
}

.index-page .l-contents {
  padding: 4.5rem calc(20 / 780 * 100%) 1.5rem;
  /*========================
  作品一覧ページ
  =========================*/
}
.index-page .l-contents .c-manga-ttl {
  display: flex;
  margin-bottom: calc(50 / 710 * 100%);
}
.index-page .l-contents .c-manga-ttl__pic {
  width: calc(230 / 710 * 100%);
}
.index-page .l-contents .c-manga-ttl__txtarea {
  flex: 1;
  text-align: left;
  padding: 0 0 0 1rem;
}
.index-page .l-contents .c-manga-ttl__ttl {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: .75em;
}
.index-page .l-contents .c-manga-ttl__update {
  font-size: .86rem;
}
.index-page .l-contents .c-manga-ttl__favorite {
  font-size: .86rem;
  font-weight: 700;
}
.index-page .l-contents .c-manga-ttl__favorite span {
  display: inline-block;
  margin-right: .5em;
  color: #ff004e;
}
.index-page .l-contents .c-manga-list__item {
  position: relative;
  margin-bottom: calc(20 / 710 * 100%);
}
.index-page .l-contents .c-manga-list__item-link {
  color: #FFF;
  display: flex;
  align-items: center;
  background-color: #6666a2;
  border: #6666a2 solid 1px;
  text-decoration: none;
  transition: opacity .2s;
}
@media (hover: hover) {
  .index-page .l-contents .c-manga-list__item-link:hover {
    opacity: .7;
  }
}
.index-page .l-contents .c-manga-list__pic {
  width: calc(250 / 690 * 100%);
}
.index-page .l-contents .c-manga-list__pic img {
  width: 100%;
}
.index-page .l-contents .c-manga-list__txtarea {
  flex: 1;
  text-align: left;
  padding: 0 0 0 1rem;
}
.index-page .l-contents .c-manga-list__ttl {
  position: relative;
  font-size: 1rem;
  line-height: 1.3;
  padding-left: 1.35em;
  text-box: trim-both cap alphabetic;
}
.index-page .l-contents .c-manga-list__ttl::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: url("../img/common/arrow_round.svg") no-repeat left center;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin: auto;
  aspect-ratio: 1 / 1;
}
.index-page .l-contents .c-manga-list__favorite {
  font-size: .86rem;
  color: #262626;
}
.index-page .l-contents .c-manga-list__favorite span {
  display: inline-block;
  margin-right: .5em;
  color: #ff004e;
}
.index-page .l-contents .c-manga-intro {
  margin: 2rem 0;
}
.index-page .l-contents .c-manga-intro__ttl {
  text-align: left;
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.index-page .l-contents .c-manga-intro__txt {
  text-align: left;
}
.index-page .l-contents .c-manga-banner {
  margin: 2rem 0;
  padding: 2rem 0 0;
  border-top: #000065 solid 1px;
  transition: opacity .2s;
}
@media (hover: hover) {
  .index-page .l-contents .c-manga-banner:hover {
    opacity: .7;
  }
}

.detail-page .l-page__bg {
  background-color: transparent;
}

.detail-page .l-contents {
  padding: 4rem 0 1.5rem;
  /*========================
  作品個別ページ
  =========================*/
}
.detail-page .l-contents .c-storyttl {
  margin: 0 1rem 1rem;
  line-height: 1;
}
.detail-page .l-contents .c-manga-page {
  margin: 0 0 1rem;
}
.detail-page .l-contents .c-manga-page__item {
  position: relative;
}
.detail-page .l-contents .c-manga-page a {
  transition: opacity .2s;
}
@media (hover: hover) {
  .detail-page .l-contents .c-manga-page a:hover {
    opacity: .7;
  }
}
.detail-page .l-contents .c-manga-page.story1 .c-manga-page__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(450 / 780 * 100%);
  margin: auto auto calc(80 / 800 * 100%);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}
.detail-page .l-contents .c-manga-page.story2 .c-manga-page__btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: calc(425 / 780 * 100%);
  margin: calc(2850 / 800 * 100%) auto auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}
.detail-page .l-contents .c-manga-page.story3 .c-manga-page__btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: calc(450 / 780 * 100%);
  margin: calc(1480 / 800 * 100%) auto auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}
.detail-page .l-contents .c-manga-page.story4 .c-manga-page__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(425 / 780 * 100%);
  margin: auto auto calc(150 / 800 * 100%);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}
.detail-page .l-contents .c-manga-page.story5 .c-manga-page__btn {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(346 / 780 * 100%);
  margin: calc(1000 / 800 * 100%) auto auto calc(250 / 800 * 100%);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}
.detail-page .l-contents .c-manga-page.story5 .c-manga-page__btn img {
  width: 90%;
  margin: auto;
}
.detail-page .l-contents .c-manga-page.story6 {
  margin-bottom: calc(80 / 800 * 100%);
}
.detail-page .l-contents .c-manga-page.story6 .c-manga-page__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(450 / 780 * 100%);
  margin: auto auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}
.detail-page .l-contents .c-story-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 calc(30 / 780 * 100%);
}
.detail-page .l-contents .c-story-link.first {
  justify-content: flex-end;
}
.detail-page .l-contents .c-story-link__item.comingsoon {
  position: relative;
}
.detail-page .l-contents .c-story-link__item.comingsoon::after {
  content: "Coming Soon";
  color: #FFF;
  font-weight: 700;
  font-size: 88%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.detail-page .l-contents .c-story-link__item.comingsoon a {
  pointer-events: none;
}
.detail-page .l-contents .c-story-link__item a {
  position: relative;
  text-align: left;
  display: block;
  text-decoration: none;
  color: #000065;
  font-weight: 700;
  background-color: #FFF;
  border: #000065 solid 1px;
  padding: .25em 1.5em;
  transition: opacity .2s;
}
.detail-page .l-contents .c-story-link__item a:hover {
  opacity: .7;
}
.detail-page .l-contents .c-story-link__item a.prev::before, .detail-page .l-contents .c-story-link__item a.next::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  background: url("../img/common/arrow_round_blue.svg") no-repeat left center;
  background-size: contain;
  width: 1.25em;
  margin: auto;
  aspect-ratio: 1 / 1;
}
.detail-page .l-contents .c-story-link__item a.prev {
  padding-left: 1.75em;
}
.detail-page .l-contents .c-story-link__item a.prev::before {
  left: .25em;
  transform: rotate(180deg);
}
.detail-page .l-contents .c-story-link__item a.next {
  padding-right: 1.75em;
}
.detail-page .l-contents .c-story-link__item a.next::before {
  right: .25em;
}
.detail-page .l-contents .c-story-link__item a span {
  display: block;
  font-weight: 400;
  font-size: 88%;
}
.detail-page .l-contents .c-tateyomi-icon {
  pointer-events: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5rem;
  height: 5rem;
  margin: auto;
  background-color: #000065;
  opacity: .7;
  border-radius: .5rem;
  color: #FFF;
  font-size: .75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  animation: fadeOut 0.7s ease-in 1s forwards;
}
.detail-page .l-contents .c-tateyomi-icon::before {
  content: "";
  display: block;
  width: .75rem;
  height: .75rem;
  border: #FFF solid 2px;
  border-left: transparent;
  border-top: transparent;
  transform: rotate(45deg);
}
@keyframes fadeOut {
  0% {
    opacity: .7;
  }
  100% {
    opacity: 0;
  }
}
footer {
  background-color: #000065;
  color: #FFF;
  padding: 1rem;
  font-size: calc(19rem / 30);
}

.modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-out;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  max-width: 500px;
  width: fit-content;
  padding: 0 1rem;
}

.modal-close {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  top: -45px;
  right: 1rem;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.modal-content {
  text-align: center;
}
.modal-content img {
  max-height: 75vh;
  margin: 0 auto;
}
