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

エントランス

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
#index {
  position: relative;
  overflow: hidden;
}
#index::before {
  position: absolute;
  top: -10%;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 120%;
  background: url("../images/index.png") center center no-repeat;
  background-size: contain;
  z-index: -1;
}
#index .mainwrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  margin: auto;
}
#index .mainwrapper::-webkit-scrollbar {
  display: none;
}
#index .mainwrapper .entrance {
  padding: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
#index .mainwrapper .entrance .sitename {
  position: static;
  text-align: center;
  margin: 40px 0;
  padding: 0;
  background: none;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
#index .mainwrapper .entrance .sitename:hover {
  color: inherit;
}
#index .mainwrapper .entrance .entrance__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
}
#index .mainwrapper .entrance .entrance__link .heart {
  opacity: 0;
  margin-top: 10px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
#index .mainwrapper .entrance .entrance__link:hover .heart {
  opacity: 1;
}

/* スマホ */
@media screen and (max-width: 520px) {
  #index::before {
    background-size: 140%;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

更新履歴

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

.update__item {
  display: flex;
  gap: 20px;
  padding: 8px 20px;
  background-color: rgba(238, 226, 225, 0.6);
}
.update__item:not(:last-child) {
  margin-bottom: 10px;
}

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

トピック一覧

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.topiclist__item {
  margin-bottom: 40px;
}
.topiclist__item:last-child {
  margin: 0;
}
.topiclist__item .grid {
  gap: 20px;
  text-decoration: none;
  align-items: flex-start;
}
.topiclist__item .grid p {
  margin: 0;
}

/* タブレット、スマホ */
@media screen and (max-width: 768px) {
  .topiclist__item .grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 ABOUT

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

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

LINK

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.linklist__item a {
  text-decoration: none;
}

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

 CONTACT

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

/* タブレット、スマホ */
@media screen and (max-width: 768px) {
  .mailform input,
  .mailform textarea {
    max-width: 100%;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

 NOVEL

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ 名前変換フォーム －－－－－－－－－－*/
.namechange {
  margin-top: 20px;
  padding: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
.namechange .btn {
  margin: auto;
}

.namechange__main {
  margin-bottom: 20px;
}

.namechange__item label {
  margin-right: 10px;
}

@media screen and (max-width: 520px) {
  .namechange {
    padding: 20px;
  }
}
/*－－－－－－－－－－  小説一覧ページ －－－－－－－－－－*/
.novellist {
  margin-top: 20px;
}
.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-bottom: 40px;
}
.novellist__item .grid {
  grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
  gap: 20px;
}

/* 小説のタイトル */
.novellist__title {
  color: #deadac;
  font-size: 1.6rem;
}
@media screen and (min-width: 1025px), print {
  .novellist__title {
    font-size: 1.8rem;
  }
}

.short .novellist__title {
  font-size: 1.4rem;
}
@media screen and (min-width: 1025px), print {
  .short .novellist__title {
    font-size: 1.6rem;
  }
}

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

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

/*－－－－－－－－－－ 長編小説ページ －－－－－－－－－－*/
.longnovel .longnovel__title {
  margin-bottom: 60px;
  font-size: 3rem;
  color: #deadac;
  text-shadow: 4px 4px 0 rgba(238, 226, 225, 0.6);
}
@media screen and (max-width: 520px) {
  .longnovel .longnovel__title {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
.longnovel .novellist .novellist__item {
  margin-bottom: 30px;
}
.longnovel .novellist > :last-child {
  margin-bottom: 0;
}

/*－－－－－－－－－－ 小説のページ －－－－－－－－－－*/
.novelpage__inner {
  max-width: 800px;
  margin: auto;
  padding: 80px 0;
}
@media screen and (max-width: 520px) {
  .novelpage__inner {
    padding: 40px 0;
  }
}

.novelpage__title {
  margin-bottom: 80px;
}

/* 前後ページへのナビ */
.pagenav {
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 80px 0;
}

.pagenav__item a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.pagenav__item a i {
  margin-top: 0px;
  opacity: 0;
  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);
}
.pagenav__item.--index a {
  position: relative;
}
.pagenav__item.--index a::after {
  position: absolute;
  top: 6px;
  left: calc(50% - 10px);
  content: "";
  width: 20px;
  height: 20px;
  background: rgba(222, 173, 172, 0.6);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.pagenav__item.--index a:hover::after {
  opacity: 1;
}

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

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;
  width: 100%;
  display: block;
}
.gallerylist__item a::before {
  content: "";
  display: block;
  padding-top: 100%;
  /*100%=親要素の横幅*/
}
.gallerylist__item a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

COMIC

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ 漫画タイトル一覧ページ －－－－－－－－－－*/
.comiclist__item {
  position: relative;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.comiclist__item .comiclist__img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 30vh;
}
.comiclist__item .comiclist__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comiclist__item .comiclist__body {
  padding-top: 0;
}
.comiclist__item .comiclist__body .comiclist__title {
  position: absolute;
  top: -20px;
  left: -10px;
  background-color: rgba(222, 173, 172, 0.6);
  color: #fff;
  padding: 8px 20px 2px;
  margin: 20px 0;
  transform: rotate(-8deg);
  -webkit-transform: rotate(-8deg);
  -moz-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  -o-transform: rotate(-8deg);
}

/* スマホ */
@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: relative;
    top: 0;
    left: -10px;
    width: calc(100% + 10px);
    margin: 20px 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
}
/*－－－－－－－－－－ 漫画表紙ページ －－－－－－－－－－*/
/* メイン画像 */
.comic__mainvisual {
  margin-bottom: 40px;
}

/* タイトル */
.comic__title {
  font-size: 3rem;
  margin: 60px 0 40px;
}
@media screen and (max-width: 520px) {
  .comic__title {
    font-size: 2.4rem;
  }
}

/*－－－－－－－－－－ 漫画目次 －－－－－－－－－－*/
/* 目次ボタン */
.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: 6px;
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  background-color: #deadac;
  color: #fff;
  border: 0;
  padding-top: 4px;
  z-index: 99;
  cursor: pointer;
}
.comicnav-btn .arrow {
  width: 10px;
  height: 10px;
  transform: rotate(225deg);
  margin-top: 4px;
  margin-right: 0px;
  border-color: #fff;
}
.comicnav-btn._active .arrow {
  transform: rotate(45deg);
  margin-right: 10px;
}

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

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

/*－－－－－－－－－－ キャラクター紹介 －－－－－－－－－－*/
/* パターン１ ２列表示 */
.charalist {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1024px) {
  .charalist {
    grid-template-columns: 1fr;
  }
}

/* パターン２ １列表示*/
.charalist--l {
  grid-template-columns: 1fr;
  gap: 40px;
}

/* パターン1、2共通 */
.charalist__item {
  position: relative;
  height: 100%;
}
.charalist__item .charalist__img {
  width: 40%;
  height: 100%;
  max-height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.charalist__item .charalist__body {
  width: calc(60% - 20px);
}
.charalist__item .charalist__body > :first-child {
  margin-top: 0;
}
.charalist__item .charalist__body .charalist__name {
  font-size: larger;
}

.charalist--l .charalist__item .charalist__img {
  max-height: 80vh;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .charalist__item.flex {
    display: block;
  }
  .charalist__item.flex .charalist__img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .charalist__item.flex .charalist__img img {
    width: 100%;
    height: auto;
  }
  .charalist__item.flex .charalist__body {
    width: 100%;
  }
}
/*－－－－－－－－－－ 漫画一覧 －－－－－－－－－－*/
.cardlist a {
  text-decoration: none;
}
@media screen and (max-width: 520px) {
  .cardlist {
    gap: 10px;
  }
}
.cardlist .cardlist__item {
  width: calc((100% - 60px) / 4);
}
.cardlist .cardlist__item a .cardlist__img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@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);
  }
  .cardlist .cardlist__item a .cardlist__img {
    height: 140px;
  }
}

/*－－－－－－－－－－ 漫画のページ －－－－－－－－－－*/
.comicpage__main img {
  margin: auto;
  margin-bottom: 20px;
}

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

OFFLINE

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.off-list {
  gap: 60px;
  margin-bottom: 80px;
}

.storelist {
  gap: 10px;
  margin: 20px 0;
}

/* タブレット */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .off-list {
    gap: 20px;
  }
}