@import "https://fonts.googleapis.com/css2?family=Klee+One&display=swap";
@import "https://fonts.googleapis.com/css2?family=Spectral:wght@200;300;400;500;600;700&display=swap";
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, :before, :after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.15;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  clear: both;
  height: 0;
  color: inherit;
  border-top-width: 1px;
  margin: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  background-color: #0000;
  text-decoration: none;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

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

button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type="number"] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

.display-pc {
  display: block;
}

@media screen and (width <= 768px) {
  .display-pc {
    display: none;
  }
}

.display-sp {
  display: none;
}

@media screen and (width <= 768px) {
  .display-sp {
    display: block;
  }
}

.br-pc {
  display: block;
}

@media screen and (width <= 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}

@media screen and (width <= 768px) {
  .br-sp {
    display: block;
  }
}

.font-bold {
  font-weight: 600;
}

.font-s {
  font-size: 1.4rem;
}

.font-base {
  font-size: 1.6rem;
}

.font-m {
  font-size: 1.8rem;
}

.font-l {
  font-size: 2rem;
}

.line-through {
  text-decoration: line-through;
}

.text-link {
  color: #518be2;
  padding: .1rem;
  line-height: 2rem;
  transition: all .3s;
  display: inline-block;
  position: relative;
}

.text-link:after {
  content: "";
  background-color: #518be2;
  width: 0;
  height: .1rem;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.text-link:hover:after {
  width: 100%;
}

.button {
  cursor: pointer;
}

.button-base {
  z-index: 1;
  color: #333;
  text-align: center;
  background: none;
  border: 1px solid #333;
  border-radius: .4rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 5rem;
  transition: all .5s;
  display: block;
  position: relative;
  overflow: hidden;
}

.button-base:before {
  content: "";
  z-index: -1;
  transform-origin: 100%;
  background: #333;
  width: 100%;
  height: 100%;
  transition: transform .5s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
}

.button-base:hover {
  color: #fff;
}

.button-base:hover:before {
  transform-origin: 0%;
  transform: scaleX(1);
}

.button-transparent {
  z-index: 1;
  color: #fff;
  text-align: center;
  background: none;
  border: 1px solid #fff;
  border-radius: .4rem;
  width: auto;
  padding: .5rem 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.5rem;
  transition: all .5s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.button-transparent:before {
  content: "";
  z-index: -1;
  transform-origin: 100%;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform .5s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
}

.button-transparent:hover {
  color: #333;
}

.button-transparent:hover:before {
  transform-origin: 0%;
  transform: scaleX(1);
}

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

body {
  color: #333;
  letter-spacing: 0;
  font-family: Spectral, Klee One, cursive, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}

.wrapper {
  width: auto;
  max-width: 120rem;
}

.genre-label {
  border-radius: .4rem;
  padding: .1rem .8rem;
  display: inline-block;
}

.genre-label__cs {
  background-color: #387f94;
}

.genre-label__tw {
  background-color: #3d6aaf;
}

body {
  color: #fff;
  background-color: #333;
  animation: 2s fade-in;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body .genre-label {
  border-radius: .4rem;
  padding: .3rem .8rem 0;
  font-size: 1.4rem;
  display: inline-block;
}

body .genre-label__cs {
  background-color: #387f94;
}

body .genre-label__tw {
  background-color: #3d6aaf;
}

body .genre-label__pg {
  background-color: #964653;
}

body .rating {
  color: #d68e5e;
  border-radius: .4rem;
  padding: .3rem .8rem 0;
  font-size: 1.4rem;
  display: inline-block;
  box-shadow: inset 0 0 0 1px #d68e5e;
}

body.scrolled #sitename {
  opacity: 0;
}

body.scrolled #header {
  bottom: 7vh;
}

@media screen and (width <= 768px) {
  body.scrolled #header {
    bottom: 5.5vh;
  }
}

body.scrolled #header .gnav {
  backdrop-filter: blur(5px) brightness(.8);
}

body .sitename {
  text-align: center;
  min-width: 30rem;
}

body .sitename p {
  text-align: center;
}

body .sitename__head {
  margin: 0 0 2rem;
}

body .sitename__sub {
  line-height: 1.5rem;
}

body .sitename__sub--lu {
  font-size: 1.6rem;
}

body .sitename__sub--note {
  font-size: 1.4rem !important;
}

body header {
  z-index: 2;
  width: 100%;
  transition: bottom .3s;
  position: fixed;
  bottom: 25vh;
}

@media screen and (width <= 768px) {
  body header {
    bottom: 25vh;
  }
}

body header .gnav {
  backdrop-filter: blur(5px) brightness(1.5);
  border-radius: 100rem;
  width: 75rem;
  margin: 0 auto;
  padding: 1rem 0 .8rem;
}

@media screen and (width <= 1366px) and (width >= 769px) {
  body header .gnav {
    width: 85vw;
  }
}

@media screen and (width <= 768px) {
  body header .gnav {
    border-radius: unset;
    width: 100%;
    padding: 1.8rem 2rem 1rem;
  }
}

body header .gnav__menu {
  justify-content: center;
  gap: 4rem;
  display: flex;
}

@media screen and (width <= 1366px) and (width >= 769px) {
  body header .gnav__menu {
    gap: 3.5rem;
  }
}

@media screen and (width <= 768px) {
  body header .gnav__menu {
    gap: 3.5rem;
  }
}

body header .gnav__menu-item-link {
  align-items: center;
  font-size: 2.5rem;
  line-height: 4rem;
  transition: all .3s;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  body header .gnav__menu-item-link {
    flex-direction: column;
    width: 4rem;
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}

body header .gnav__menu-item-link:before {
  content: "";
  width: 2rem;
  height: 2rem;
  margin: 0 .8rem;
  display: block;
}

@media screen and (width <= 768px) {
  body header .gnav__menu-item-link:before {
    margin: 0;
  }
}

body header .gnav__menu-item-link--top:before {
  content: "";
  background: url("icon-home.7daaac4a.svg") center / contain no-repeat;
}

body header .gnav__menu-item-link--illust:before {
  content: "";
  background: url("icon-illust.6d906757.svg") center / contain no-repeat;
}

body header .gnav__menu-item-link--novel:before {
  content: "";
  background: url("icon-novel.fe03d15e.svg") center / contain no-repeat;
}

body header .gnav__menu-item-link--blog:before {
  content: "";
  background: url("icon-record.95f9d88b.svg") center / contain no-repeat;
}

body header .gnav__menu-item-link--link:before {
  content: "";
  background: url("icon-link.002eb97b.svg") center / contain no-repeat;
}

body header .gnav__menu-item-link--mail:before {
  content: "";
  background: url("icon-mail.54582181.svg") center / contain no-repeat;
}

body header .gnav__menu-item-link:hover {
  animation: .5s text-blur;
}

@keyframes text-blur {
  0% {
    filter: blur();
  }

  50% {
    filter: blur(4px);
  }

  100% {
    filter: blur();
  }
}

body header .gnav.top ul {
  gap: 5rem;
}

body header .gnav.top ul li a {
  padding: .3rem .5rem;
  font-size: 2rem;
}

body.top .cat-title {
  text-align: center;
  margin: 0 auto 5rem;
  font-size: 4rem;
  line-height: 4rem;
}

@media screen and (width <= 768px) {
  body.top .cat-title {
    margin: 0 auto 3rem;
  }
}

body.top .cat-title span {
  margin: 0 0 1rem;
  line-height: 3rem;
  display: inline-block;
}

body.top .lead {
  text-align: center;
  margin: 0 auto 5rem;
}

body.top .popup-overlay {
  z-index: 9999;
  background: #0009;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

body.top .popup-content {
  color: #333;
  background: #fff;
  border-radius: .8rem;
  width: 100rem;
  padding: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 2rem #0000004d;
}

@media screen and (width <= 768px) {
  body.top .popup-content {
    width: 90vw;
    height: 70vh;
    overflow: scroll;
  }
}

body.top .popup-content h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

body.top .popup-content p, body.top .popup-content section {
  margin-bottom: 2rem;
}

body.top .popup-content section:nth-last-child(2) {
  margin-bottom: 3rem;
}

body.top .popup-content section h2 {
  border-bottom: 3px solid #e3e3e3;
  border-radius: .6rem;
  margin-bottom: .5rem;
  padding: .3rem .5rem;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}

@media screen and (width <= 768px) {
  body.top .popup-content section h2 {
    margin-bottom: 1rem;
  }
}

body.top .popup-content section h2:after {
  content: "";
  z-index: 1;
  background-color: #518be2;
  width: 4rem;
  height: .3rem;
  position: absolute;
  bottom: -.3rem;
  left: 0;
}

body.top .popup-content section p {
  padding: 0 .5rem;
}

body.top .parallax__wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
}

body.top .parallax__inner {
  clip: rect(auto, auto, auto, auto);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

body.top .parallax__bg {
  z-index: -1;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

body.top .parallax__bg-01 {
  background-image: image-set("fv.d38beca2.webp" 1x type("image/webp"), "fv.dbc455bd.jpg" 1x type("image/jpeg"));
  position: relative;
  overflow: hidden;
}

body.top .parallax__bg-01 .star {
  opacity: 0;
  background-color: #fff;
  border-radius: 50%;
  animation: 4s infinite twinkle;
  display: block;
  position: absolute;
  box-shadow: 0 0 4px 2px #fff3;
}

@keyframes twinkle {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

body.top .parallax__bg-02 {
  background-image: image-set("sv.201ece8e.webp" 1x type("image/webp"), "sv.d26aa893.jpg" 1x type("image/jpeg"));
  background-position: 50% 30%;
}

body.top .parallax__bg-03 {
  background-image: linear-gradient(160deg, #0f142299 0%, #0b142de6 55%, #060a14 100%);
}

body.top .parallax__content {
  align-items: center;
  width: 100%;
  display: flex;
}

@media screen and (width <= 768px) {
  body.top .parallax__content {
    padding: 0;
  }
}

body.top .fv {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding: 5rem 0;
  display: flex;
  position: relative;
}

body.top .fv__head {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 30vh;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.top .fv__head picture img {
  width: 30rem;
  height: auto;
  animation: 2s slide-fade;
}

@media screen and (width <= 768px) {
  body.top .fv__head picture img {
    width: 20rem;
  }
}

@keyframes slide-fade {
  from {
    opacity: 0;
    transform: translate(0, 20%);
  }

  to {
    opacity: 1;
    transform: translate(0);
  }
}

body.top .fv__head h1 {
  text-shadow: -.1rem .2rem 1.2rem #333c;
  opacity: 1;
  font-size: 5rem;
  line-height: 5rem;
  transition: opacity .3s;
}

@media screen and (width <= 768px) {
  body.top .fv__head h1 {
    font-size: 4rem;
  }
}

body.top .contents {
  width: 100%;
  min-height: 100vh;
}

@media screen and (width <= 768px) {
  body.top .contents {
    height: auto;
  }
}

body.top .contents__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 15rem 5rem;
}

@media screen and (width <= 768px) {
  body.top .contents__inner {
    padding: 10rem 2rem;
  }
}

body.top .contents.illust {
  background-color: #444;
}

body.top .contents.illust .contents__inner {
  padding: 10rem 5rem;
}

@media screen and (width <= 768px) {
  body.top .contents.illust .contents__inner {
    padding: 10rem 2rem;
  }
}

body.top .contents.illust .illust--check {
  display: none;
}

body.top .contents.illust .illust__list {
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: center;
  gap: 5rem;
  display: flex;
}

body.top .contents.illust .illust__list > .illust-col {
  text-align: center;
  --thumb-zoom: 1;
  --thumb-pos-x: 50%;
  --thumb-pos-y: 50%;
  --thumb-origin-x: 50%;
  --thumb-origin-y: 50%;
  --thumb-zoom-sp: var(--thumb-zoom);
  --thumb-pos-x-sp: var(--thumb-pos-x);
  --thumb-pos-y-sp: var(--thumb-pos-y);
  --thumb-origin-x-sp: var(--thumb-origin-x);
  --thumb-origin-y-sp: var(--thumb-origin-y);
}

body.top .contents.illust .illust--close, body.top .contents.illust .illust__modal {
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition-property: all;
  transition-duration: .2s;
  transition-delay: 0s;
  position: fixed;
  top: 0;
  left: 0;
}

body.top .contents.illust .illust--check:checked ~ .illust--close, body.top .contents.illust .illust--check:checked ~ .illust__modal {
  visibility: visible;
  opacity: 1;
  transition-duration: .8s;
  transition-delay: .2s;
}

body.top .contents.illust .illust--check:checked ~ .illust__modal {
  background: #000000b3;
}

body.top .contents.illust .illust--check:checked ~ .illust--close {
  cursor: url("cross.836a93c2.svg"), auto;
  z-index: 3;
  background: none;
}

body.top .contents.illust .illust__thumb {
  object-fit: cover;
  object-position: var(--thumb-pos-x) var(--thumb-pos-y);
  width: 100%;
  height: 100%;
  transform: scale(var(--thumb-zoom));
  transform-origin: var(--thumb-origin-x) var(--thumb-origin-y);
  display: block;
}

@media screen and (width <= 768px) {
  body.top .contents.illust .illust__thumb {
    object-position: var(--thumb-pos-x-sp) var(--thumb-pos-y-sp);
    transform: scale(var(--thumb-zoom-sp));
    transform-origin: var(--thumb-origin-x-sp) var(--thumb-origin-y-sp);
  }
}

body.top .contents.illust .illust__modal {
  background: none;
}

body.top .contents.illust .illust__item {
  background: #fff;
  border-radius: 1rem;
  max-width: 99vw;
  max-height: 100%;
  padding: .5em;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.top .contents.illust .illust__item-caption-title {
  padding: 1.5rem 0;
  line-height: 2rem;
}

body.top .contents.illust .illust__caption {
  text-align: center;
  color: #333;
  margin: 0 auto;
  font-size: .75rem;
}

body.top .contents.illust .full-size {
  vertical-align: middle;
  max-width: 90vw;
  max-height: 90vh;
}

body.top .contents.illust .illust--open {
  filter: grayscale();
  border-radius: 1rem;
  width: 23rem;
  height: 18rem;
  transition: all .2s;
  display: block;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  body.top .contents.illust .illust--open {
    width: 25rem;
  }
}

body.top .contents.illust .illust--open:hover {
  filter: grayscale(0);
  transition: all .2s;
}

body.top .contents.illust .illust__meta {
  color: #a7afbb;
  margin-top: .5rem;
}

body.top .contents.novel {
  text-align: center;
  background-color: #222630;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

body.top .contents.novel span.symbol {
  letter-spacing: .2rem;
}

body.top .contents.novel .contents__inner {
  padding: 10rem 5rem;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .contents__inner {
    padding: 10rem 2rem;
  }
}

body.top .contents.novel .novel__list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  max-width: 85rem;
  margin: 0 auto;
  display: flex;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__list {
    gap: 3rem;
  }
}

body.top .contents.novel .novel__item {
  width: calc(50% - 2.5rem);
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__item {
    width: 100%;
  }
}

body.top .contents.novel .novel__item .novel__check {
  display: none;
}

body.top .contents.novel .novel__item .novel__check:checked ~ .novel__modal {
  visibility: visible;
  opacity: 1;
  background: #000000b3;
  transition-duration: .8s;
  transition-delay: .2s;
}

body.top .contents.novel .novel__item .novel__check:checked ~ .novel__modal .novel__close {
  opacity: 1;
  visibility: visible;
  transition-duration: .8s;
  transition-delay: .2s;
}

body.top .contents.novel .novel__card {
  width: 100%;
  max-width: unset;
  backdrop-filter: blur(4px);
  text-align: left;
  background-color: #ffffff0d;
  border: 1px solid #ffffff38;
  border-radius: 1.4rem;
  margin: 0;
  padding: 2.2rem;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__card {
    padding: 2rem;
  }
}

body.top .contents.novel .novel__card > .novel__meta-row {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  margin: 0;
  display: flex;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__card > .novel__meta-row {
    bottom: 1.8rem;
    right: 1.8rem;
  }
}

body.top .contents.novel .novel__card > .novel__meta-row .novel__meta {
  margin: 0;
}

body.top .contents.novel .novel__meta {
  color: #9fb3d6;
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

body.top .contents.novel .novel__meta--modal {
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
  position: static;
}

body.top .contents.novel .novel__title {
  color: #fff;
  cursor: pointer;
  font-size: 2.1rem;
  text-decoration: none;
  transition: opacity .28s, color .28s, text-shadow .28s;
  display: inline-block;
}

body.top .contents.novel .novel__title:hover {
  opacity: .76;
  text-shadow: 0 0 1.2rem #bad3ff59;
}

body.top .contents.novel .novel__title:focus-visible {
  outline-offset: 4px;
  outline: 1px solid #9fb3d6;
}

body.top .contents.novel .novel__excerpt {
  color: #ffffffe0;
  margin: 0 0 3rem;
  line-height: 2rem;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__excerpt {
    margin: 0 0 4rem;
  }
}

body.top .contents.novel .novel__modal {
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  background: none;
  justify-content: center;
  align-items: stretch;
  padding: 2rem;
  transition-property: all;
  transition-duration: .2s;
  transition-delay: 0s;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__modal {
    padding: 0;
  }
}

body.top .contents.novel .novel__modal-inner {
  scrollbar-width: thin;
  scrollbar-color: #a3bef5e0 #ffffff1a;
}

body.top .contents.novel .novel__modal-inner::-webkit-scrollbar {
  width: 1rem;
}

body.top .contents.novel .novel__modal-inner::-webkit-scrollbar-track {
  background: #ffffff1a;
  border-radius: 999px;
}

body.top .contents.novel .novel__modal-inner::-webkit-scrollbar-thumb {
  background: linear-gradient(#bad3ff 0%, #7f9fce 100%);
  border: 2px solid #10192b8c;
  border-radius: 999px;
}

body.top .contents.novel .novel__modal-inner::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#d2e2ff 0%, #9ab7e3 100%);
}

body.top .contents.novel .novel__close {
  visibility: hidden;
  opacity: 0;
  z-index: 13;
  backdrop-filter: blur(8px);
  color: #f5f9ff;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  text-shadow: 0 .2rem .8rem #00000073;
  background: #fff3;
  border: 1px solid #ffffff6b;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 4.4rem;
  height: 4.4rem;
  font-size: 2.4rem;
  line-height: 1;
  transition: opacity .28s, background .28s, box-shadow .28s, border-color .28s, color .28s;
  display: flex;
  position: fixed;
  top: 2rem;
  right: 2rem;
  box-shadow: 0 .8rem 2rem #00000059, inset 0 1px #ffffff59;
}

body.top .contents.novel .novel__close:hover {
  opacity: 1;
  background: #ffffff4d;
  transition-delay: 0s;
  box-shadow: 0 1.2rem 2.4rem #0000006b, inset 0 1px #ffffff73;
}

body.top .contents.novel .novel__close:active {
  opacity: .92;
}

body.top .contents.novel .novel__close:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #bad3fff2;
}

body.top .contents.novel .novel__modal-inner {
  z-index: 12;
  color: #fff;
  text-align: left;
  background: #111b33;
  border-radius: 1.2rem;
  width: calc(100vw - 4.8rem);
  max-width: 60vw;
  height: min(90vh, 80rem);
  max-height: 90vh;
  margin: auto;
  padding: 5rem;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 1.5rem 4rem #00000080;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__modal-inner {
    max-width: 100vw;
  }
}

body.top .contents.novel .novel__modal-inner h2 {
  text-align: center;
  margin: 0 0 4rem;
  font-size: 2.4rem;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__modal-inner h2 {
    margin: 0 0 3rem;
  }
}

body.top .contents.novel .novel__modal-inner pre {
  color: #ffffffe6;
  letter-spacing: .5px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
  font-family: Spectral, Klee One, cursive, sans-serif;
  line-height: 2.8rem;
  font: inherit;
}

body.top .contents.novel .novel__modal-inner p {
  color: #ffffffe6;
  margin: 0 0 1.4rem;
  line-height: 2.1rem;
}

body.top .contents.novel .novel__modal-inner p:last-child {
  margin-bottom: 0;
}

@media screen and (width <= 768px) {
  body.top .contents.novel .novel__modal-inner {
    border-radius: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    padding: 4rem 2.4rem;
  }
}

body.top .contents-bridge {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 45vh;
  min-height: 30rem;
  display: flex;
  position: relative;
}

@media screen and (width <= 768px) {
  body.top .contents-bridge {
    height: 30vh;
    min-height: 18rem;
  }
}

body.top .contents-bridge__inner {
  z-index: 1;
  letter-spacing: .08em;
  font-size: 1.9rem;
  position: relative;
}

body.top .contents-bridge .parallax__bg {
  opacity: .85;
}

body.top .footer {
  position: relative;
}

body.top .footer__inner {
  text-align: center;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

body.top .footer__top {
  margin: 0 0 10rem;
}

@media screen and (width <= 768px) {
  body.top .footer__top {
    width: 100%;
  }
}

body.top .footer__top .link .cat-title {
  margin: 0 0 5rem;
}

body.top .footer__top .link__inner-item {
  background: linear-gradient(145deg, #fff, #e6e6e6, .2px);
  border-radius: 23px;
  padding: 3rem 4rem;
  box-shadow: 27px 27px 54px #011653, -27px -27px 54px #0130af;
}

@media screen and (width <= 768px) {
  body.top .footer__top .link__inner-item {
    padding: 3rem;
  }
}

body.top .footer__top .link__inner-item li {
  margin: 0 0 1.5rem;
}

body.top .footer__top .link__inner-item--tag {
  text-align: left;
  align-items: center;
  display: flex;
  margin: 0 0 .5rem !important;
}

body.top .footer__top .link__inner-item--tag:last-child {
  margin: 0 !important;
}

body.top .footer__top .link__inner-item--tag span {
  text-align: center;
  align-items: center;
  display: flex;
}

body.top .footer__top .link__inner-item--tag span:before {
  content: "";
  background: url("icon-hanepen.661bb939.svg") center / contain no-repeat;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: .5rem;
  display: block;
}

body.top .footer__bottom {
  align-items: center;
  gap: 1.5rem;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

body.top .footer__bottom p {
  padding: 2rem 0;
}

@media screen and (width <= 768px) {
  body.top .footer__bottom p {
    padding: 1rem 0;
  }
}

body.top .footer__bottom a {
  line-height: 1;
  transition: transform 1s;
  display: block;
}

body.top .footer__bottom a:hover {
  transition: transform 1s;
  transform: rotateY(360deg);
}

body.top .footer__bottom a img {
  width: 2rem;
  height: auto;
}
/*# sourceMappingURL=opacity-zero.a6e6fddc.css.map */
