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

入口

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.index {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index::before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/ink1.jpg) no-repeat center 80%;
  background-size: cover;
  z-index: -1;
}
.index .entrance {
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 60px;
}
.index .entrance::before, .index .entrance::after {
  position: absolute;
  content: "";
  display: block;
  width: 120%;
  border: 1px solid #fff;
  padding-top: 120%;
  z-index: -1;
}
.index .entrance::before {
  top: -60px;
  left: -40px;
  border-bottom: none;
  border-right: none;
}
.index .entrance::after {
  bottom: -60px;
  right: -40px;
  border-top: none;
  border-left: none;
}
.index .sitename {
  font-family: "WindSong", "Shippori Mincho", "Yu Mincho", "Yu Mincho medium", cursive, serif;
  font-size: 6rem;
  color: #fff;
  letter-spacing: 8px;
  margin-bottom: 40px;
  transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
  -moz-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
}
.index .sitename a {
  text-decoration: none;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  /* ホバー時の設定 */
}
@media (hover: hover) {
  .index .sitename a:hover {
    background: none;
    filter: blur(3px);
    -webkit-filter: blur(3px);
  }
}
.index .subtitle {
  text-align: center;
  color: #fff;
  letter-spacing: 4px;
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

更新履歴

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

.update__item {
  display: flex;
  gap: 20px;
  padding: 8px 20px;
  background-color: rgba(189, 207, 228, 0.2);
}
.update__item:not(:last-child) {
  margin-bottom: 10px;
}
.update__item time {
  color: #1063d0;
}

/* スマホ */
@media screen and (max-width: 520px) {
  .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

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－  小説一覧ページ －－－－－－－－－－*/
.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 {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  background: linear-gradient(transparent 60%, rgba(50, 128, 233, 0.2) 60%);
}
.novellist__title:not(p):hover {
  background-color: rgba(189, 207, 228, 0.2);
}

.short .novellist__title {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}

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

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

/*－－－－－－－－－－ 長編小説ページ －－－－－－－－－－*/
.longnovel {
  padding-top: 80px;
}
.longnovel .longnovel__title {
  position: fixed;
  top: 20px;
  left: calc(12vw + min(1220px, 70vw));
  font-size: clamp(2.4rem, 2.08rem + 1.6vw, 4rem);
  font-weight: normal;
  color: #fff;
  height: 50vh;
  padding: 10px;
  writing-mode: vertical-rl;
  filter: drop-shadow(0px 0px 10px rgba(142, 179, 229, 0.5));
  z-index: 1;
  text-wrap: balance;
}
.longnovel .novellist .novellist__item {
  margin-bottom: 30px;
}
.longnovel .novellist > :last-child {
  margin-bottom: 0;
}

/* タブレット */
@media screen and (max-width: 1180px) {
  .longnovel {
    padding-top: 0;
  }
  .longnovel .longnovel__title {
    position: relative;
    top: -10rem;
    left: 0;
    width: -moz-fit-content;
    width: fit-content;
    height: 21rem;
    margin: auto;
    padding: 20px 10px 20px 8px;
    background: rgba(142, 179, 229, 0.6);
  }
  .novelpage .longnovel__title {
    display: none;
  }
}
/*－－－－－－－－－－ 小説のページ －－－－－－－－－－*/
.novelpage__inner {
  max-width: 800px;
  margin: auto;
  padding: 80px 0;
}

.novelpage__title {
  margin: auto;
  margin-bottom: 80px;
  padding: 10px;
  text-align: center;
}

/* 前後ページへのナビ */
.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 {
  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);
}

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

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: 1180px) {
  .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;
  background-color: #fff;
  padding: 10px;
}
.comiclist__item .comiclist__img {
  position: relative;
  width: 100%;
  height: 100%;
}
.comiclist__item .comiclist__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comiclist__item .comiclist__body .comiclist__title {
  position: absolute;
  top: -10px;
  left: -10px;
  color: #fff;
  background-color: rgba(107, 211, 224, 0.6);
  padding: 8px 10px;
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
}

/* スマホ */
@media screen and (max-width: 520px) {
  .comiclist__item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .comiclist__item .comiclist__img img {
    position: relative;
    max-height: 40vh;
  }
}
/*－－－－－－－－－－ 漫画表紙ページ －－－－－－－－－－*/
.comic {
  padding-top: 80px;
}

/* メイン画像 */
.comic__mainvisual {
  background-color: #fff;
  margin-bottom: 80px;
}
.comic__mainvisual img {
  max-height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
}

/* タイトル */
.comic__title {
  position: fixed;
  top: 20px;
  left: calc(12vw + min(1220px, 70vw));
  font-size: clamp(2.4rem, 2.08rem + 1.6vw, 4rem);
  font-weight: normal;
  color: #fff;
  height: 50vh;
  padding: 10px;
  writing-mode: vertical-rl;
  filter: drop-shadow(0px 0px 10px rgba(142, 179, 229, 0.5));
  z-index: 1;
  text-wrap: balance;
}

/* タブレット */
@media screen and (max-width: 1180px) {
  .comic {
    padding-top: 0;
  }
  .comic__title {
    position: relative;
    top: -10rem;
    left: 0;
    width: -moz-fit-content;
    width: fit-content;
    height: 21rem;
    margin: auto;
    padding: 10px 20px;
    background: rgba(107, 211, 224, 0.6);
  }
  .comicpage .comic__title {
    display: none;
  }
}
/*－－－－－－－－－－ キャラクター紹介 －－－－－－－－－－*/
/* キャラクター名一覧 */
.charanamelist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 40px 0;
}

.charanamelist .charanamelist__item {
  cursor: pointer;
}

/* キャラクタープロフィール部分 */
.charalist--3 .charalist__item {
  position: relative;
  height: 100%;
  display: none;
}

.charalist--3 .charalist__item .charalist__img {
  width: 40%;
  height: 100%;
  max-height: 60vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

.charalist--3 .charalist__item .charalist__body {
  width: calc(60% - 20px);
}

.charalist--3 .charalist__item .charalist__body > :first-child {
  margin-top: 0;
}

.charalist--3 .charalist__item .charalist__body .charalist__name {
  font-size: clamp(2rem, 1.422rem + 2.37vw, 3.2rem);
}

.charalist--3 .charalist__item.show {
  display: flex;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .charalist--3 .charalist__item {
    display: none;
  }
  .charalist--3 .charalist__item.flex .charalist__img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .charalist--3 .charalist__item.flex .charalist__img img {
    width: 100%;
    height: auto;
  }
  .charalist--3 .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;
}

/* あとがき、話数リスト */
.afterword,
.episodelist {
  margin: 80px;
}

/* スマホ */
@media screen and (max-width: 520px) {
  .afterword,
  .episodelist {
    margin: 40px;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

OFFLINE

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

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

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