@charset "UTF-8";
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

トップページ レイアウト

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
@media screen and (min-width: 521px) and (max-width: 1024px) {
  .pagetitle.top {
    width: auto;
  }
}
.mainwrapper.top {
  gap: 0;
}
.mainwrapper.top.grid {
  grid-template-columns: 1fr;
  grid-template-areas: "mainvisual" "left" "right";
}

/* PC */
@media screen and (min-width: 1025px), print {
  .mainwrapper.top.grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "mainvisual mainvisual" "left right";
    gap: 0px 60px;
  }
  .mainwrapper.top.grid .mainvisual {
    grid-area: mainvisual;
  }
  .mainwrapper.top.grid .mainwrapper__left {
    grid-area: left;
  }
  .mainwrapper.top.grid .mainwrapper__right {
    grid-area: right;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

メインビジュアル

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.mainvisual {
  margin-top: -20px;
  height: 36vh;
}
.mainvisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* タブレット */
@media screen and (min-width: 521px) and (max-width: 1024px) {
  .mainvisual {
    margin-top: -80px;
  }
}
/* PC */
@media screen and (min-width: 1025px), print {
  .mainvisual {
    margin-top: -120px;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

更新履歴

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.update {
  height: 140px;
  overflow-y: auto;
  padding-right: 20px;
}

.update__item {
  display: flex;
  gap: 20px;
  padding: 8px 20px;
  margin-bottom: 10px;
  background-color: #EFF6F6;
}
.update__item:last-child {
  margin-bottom: 0px;
}

/* スマホ */
@media screen and (max-width: 520px) {
  .update__item {
    flex-direction: column;
    gap: 20px;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 INFO

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ Profile －－－－－－－－－－*/
.profile__img {
  padding: 0 60px;
}
.profile__img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: auto;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 CONTACT

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.mailform input {
  width: max(50%, 400px);
  max-width: 100%;
  margin: 0 0 20px;
}
.mailform textarea {
  width: 100%;
  margin: 0 0 20px;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 MAP

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.maplinkcontainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 0px;
}

.maplink {
    background-color: glay;
    text-align: center;
}


/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 SUBMAPLINK

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.submaplinkcontainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0px;
}

.submaplink {
    background-color: glay;
    text-align: center;
}


/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

CHARACTER

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.charalist--l {
  grid-template-columns: 1fr;
  gap: 40px;
}

.charalist__item {
  position: relative;
  align-items: flex-start;
  height: 100%;
  gap: 40px;
}
.charalist__item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #EFF6F6;
  z-index: -1;
}
.charalist__item .charalist__img {
  width: 40%;
  height: 100%;
}
.charalist__item .charalist__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.charalist__item .charalist__body {
  width: calc(60% - 40px);
  padding: 40px;
  padding-top: 140px;
}
.charalist__item .charalist__body > :first-child {
  margin-top: 0;
}
.charalist__item .charalist__body .gridlist {
  gap: 0;
}
.charalist__item .charalist__body .gridlist .gridlist__label {
  background-color: #ACCFD1;
  border-bottom: 2px solid #EFF6F6;
}
.charalist__item .charalist__body .gridlist .gridlist__text {
  background-color: #fff;
  border-bottom: 2px solid #EFF6F6;
}
.charalist__item .charalist__body .charalist__name {
  font-size: 2.6rem;
}

/* タブレット */
@media screen and (max-width: 768px) {
  .charalist__item {
    gap: 0;
  }
  .charalist__item .charalist__body {
    width: 60%;
  }
}
/* スマホ */
@media screen and (max-width: 520px) {
  .charalist__item.flex {
    display: block;
  }
  .charalist__item.flex .charalist__img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .charalist__item.flex .charalist__img img {
    width: 100%;
    height: auto;
  }
  .charalist__item.flex .charalist__body {
    width: 100%;
    padding: 20px;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 NOVEL

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－  小説一覧ページ －－－－－－－－－－*/
.novellist.--2column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.novellist.--2column .novellist__item {
  margin: 0;
}
.novellist.--2column > :last-child {
  margin-bottom: 0;
}
.novellist.--2column .novellist__text {
  margin-left: 0px;
}

.novellist__item {
  margin-top: 40px;
  margin-bottom: 40px;
}
.novellist__item a {
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.novellist__item a:hover {
  background-color: #EFF6F6;
}

/* 小説のタイトル */
.novellist__title {
  display: inline-block;
  position: relative;
  padding: 4px 10px;
}
.novellist__title::before, .novellist__title::after {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
}
.novellist__title::before {
  border-left: solid 1px #4D4D4D;
  border-top: solid 1px #4D4D4D;
  top: 0;
  left: 0;
}
.novellist__title::after {
  border-right: solid 1px #4D4D4D;
  border-bottom: solid 1px #4D4D4D;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 1025px), print {
  .novellist__title {
    font-size: 1.8rem;
  }
}

a.novellist__title:hover::before {
  top: 2px;
  left: 2px;
}
a.novellist__title:hover::after {
  bottom: 2px;
  right: 2px;
}

/* 数字プラス小タイトルの数字の色 */
.novellist__number {
  color: #ACCFD1;
  margin-right: 10px;
}

/* 短編小説の説明文 */
.novellist__text {
  display: block;
  font-size: 0.8em;
  margin: 10px;
  margin-left: 20px;
}

/*－－－－－－－－－－ 長編小説ページ －－－－－－－－－－*/
.longnovel {
  padding-top: 35px;
}
.longnovel .longnovel__title {
  font-size: 2.4rem;
  font-weight: normal;
  margin: 40px 0;
  border-bottom: 2px solid #ACCFD1;
}
.longnovel .novellist .novellist__item {
  margin-top: 30px;
}

/*－－－－－－－－－－ 小説のページ －－－－－－－－－－*/
.novelpage {
  padding-top: 40px;
}

.novelpage__inner {
  max-width: 800px;
  margin: auto;
}

.novelpage__main p {
  letter-spacing: 3px;
  font-family: "Noto Serif JP", serif;
}

/* 小説のタイトル */
.novelpage__title {
  position: relative;
  font-size: 3rem;
  padding: 10px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
  border: 1px solid #ACCFD1;
}
.novelpage__title::before {
  position: absolute;
  top: 50%;
  left: -20px;
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #ACCFD1;
}

/* 前後ページへのナビ */
.pagenav {
  font-family: "Oswald", "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 120px 0;
}

.pagenav__item {
  padding: 8px 16px;
  background-color: #EFF6F6;
}
.pagenav__item a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.pagenav__item a i {
  margin-top: 3px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.pagenav__item a:hover i {
  opacity: 1;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
}
.pagenav__item.--prev a i {
  margin-right: 10px;
}
.pagenav__item.--prev a:hover i {
  transform: translateX(-6px);
  -webkit-transform: translateX(-6px);
  -moz-transform: translateX(-6px);
  -ms-transform: translateX(-6px);
  -o-transform: translateX(-6px);
}
.pagenav__item.--next a i {
  margin-left: 10px;
}
.pagenav__item.--next a:hover i {
  transform: translateX(6px);
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

GALLERY

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.gallerylist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.gallerylist__item {
  width: calc((100% - 80px) / 5);
  height: auto;
}
@media screen and (max-width: 1024px) {
  .gallerylist__item {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 767px) {
  .gallerylist__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 520px) {
  .gallerylist__item {
    width: calc((100% - 20px) / 2);
  }
}
.gallerylist__item a {
  position: relative;
  display: block;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.gallerylist__item a::before {
  content: "";
  display: block;
  padding-top: 100%;
  /*100%=親要素の横幅*/
}
.gallerylist__item a:hover {
  filter: saturate(0.5);
  -webkit-filter: saturate(0.5);
}
.gallerylist__item a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

COMIC

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ 漫画タイトル一覧ページ －－－－－－－－－－*/
.comiclist {
  padding: 40px 0;
}

.comiclist__item {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.comiclist__item .comiclist__img {
  position: relative;
  width: 100%;
  height: 30vh;
}
.comiclist__item .comiclist__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comiclist__item .comiclist__body {
  padding-top: 80px;
  position: relative;
}
.comiclist__item .comiclist__body .comiclist__title {
  position: absolute;
  top: 20px;
  left: -80px;
  width: calc(100% + 80px);
  background-color: #EFF6F6;
  padding: 10px 20px;
}

/* スマホ */
@media screen and (max-width: 520px) {
  .comiclist__item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .comiclist__item .comiclist__body {
    padding-top: 0;
  }
  .comiclist__item .comiclist__body .comiclist__title {
    position: static;
    width: 100%;
  }
}
/*－－－－－－－－－－ 漫画表紙ページ －－－－－－－－－－*/
.comic {
  padding-top: 40px;
}

.comic__mainvisual {
  position: relative;
}

/* 漫画タイトル */
.comic__title {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 50%;
  background-color: #EFF6F6;
  padding: 10px 20px;
}

/* スマホ */
@media screen and (max-width: 520px) {
  .comic__title {
    position: static;
    margin-bottom: 20px;
    width: 100%;
  }
}
/*－－－－－－－－－－ 漫画目次 －－－－－－－－－－*/
/* 目次ボタン */
.comicnav-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: fixed;
  bottom: 20px;
  right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  background-color: #EFF6F6;
  color: #4D4D4D;
  border: 0;
  padding-top: 4px;
  z-index: 999;
  cursor: pointer;
}
.comicnav-btn .arrow {
  width: 10px;
  height: 10px;
  transform: rotate(225deg);
  margin-top: 4px;
  margin-right: 0px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
}
.comicnav-btn._active .arrow {
  transform: rotate(45deg);
  margin-right: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

/* リスト */
.comicnav {
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: smaller;
  padding: 70px 40px 70px;
  background-color: #ACCFD1;
  color: #fff;
  transition: 0.4s;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  z-index: 99;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}
.comicnav._active {
  transform: translateX(0);
  transition: 0.4s;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.comicnav a {
  text-decoration: none;
  color: inherit;
}

.episodelist {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

/*－－－－－－－－－－ 漫画一覧 －－－－－－－－－－*/
.cardlist a {
  text-decoration: none;
}
@media screen and (max-width: 520px) {
  .cardlist {
    gap: 10px;
  }
}
.cardlist .cardlist__item {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 768px) {
  .cardlist .cardlist__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 520px) {
  .cardlist .cardlist__item {
    width: calc((100% - 10px) / 2);
  }
}

/*－－－－－－－－－－ 漫画のページ －－－－－－－－－－*/
.comicpage__main img {
  margin: auto;
  margin-bottom: 20px;
}/*# sourceMappingURL=each.css.map */