@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Sawarabi+Gothic&display=swap");
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

UPDATE

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.lastupdate {
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  border: var(--edge);
  border-radius: 20px;
  box-sizing: border-box;
}

.lastupdate::before {
  content: "";
  position: absolute;
bottom: 65%;
  left: 75%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-bottom: 12px solid var(--white);
  z-index: 2;
    border-top-width:25px;
    border-bottom-width:25px;
    border-left-width:9px;
    border-right-width:9px;
    margin-left: -9px;
    /* margin-bottom: 2px; */
}

.lastupdate::after {
  content: "";
  position: absolute;
bottom: 100%;
  left: 75%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom: 14px solid var(--secondary);
  z-index: 1;
    border-top-width:20px;
    border-bottom-width:20px;
    border-left-width:7px;
    border-right-width:7px;
    margin-left: -7px;
}

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

更新履歴

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.update {
 /* height: 140px; */
  overflow-y: auto;
  /* padding: 0 20px; */
  letter-spacing: 1.5px;
}

.update__item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}
.update__item:not(:last-child) {
  border-bottom: 1px dashed var(--secondary);
}
.update__item time  {
  color: var(--highlight);
  margin-right: 10px;
}

@media screen and (max-width: 520px) {
.update__item time  {
    display: block;
}
}

/* スマホ */
@media screen and (max-width: 520px) {
  .update__item {
    display: block;
    /* flex-direction: row; */
    /* gap: 4px; */
  }

.update__desc {
    /* font-size: small; */
}
}

.label--update{
    background-color: var(--secondary);
    width: 7.5rem;
    text-align: center;
    letter-spacing: 0.2rem;
    margin: 0 1rem;
}

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

トピック一覧

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.topiclist__item {
  container-type: inline-size;
  /* margin-bottom: 20px; */

}

.topiclist__item + .topiclist__item {
    border-top: 1px dashed var(--secondary);
}

.topiclist__item:last-child {
  margin: 0;
}
.topiclist__item .grid {
  gap: 0;
  text-decoration: none;
  /* align-items: flex-start; */
  padding: 30px 0;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* 表示サイズを変えたい場合は200pxの部分を変更 */
}



.topiclist__item__img {
  /* width: 100%;
  height: 100%; */
  -o-object-fit: cover;
     object-fit: cover;
border: 1px solid var(--secondary);
    margin: 0 auto; /* 左右のマージンを auto にして中央に寄せる */

}

.topiclist__item__desc {

}

.topiclist__item__title {
  text-align: center;
  text-decoration: underline;
  /* text-decoration-style: dashed; */
  text-decoration-color: var(--highlight);
}

.topiclist__item__caption {
    display: block;
    font-size: smaller;
    color: var(--caption);
    letter-spacing: 0.75px;
    padding: 5px 0;
}


.topiclist__item__update {
    text-align: right;
    display: block;
    font-size: x-small;
    color: var(--caption);
    letter-spacing: 0.75px;
}

.topiclist__item .grid a {
    text-align: center; /* テキストを中央寄せにするために追加 */
    display: flex;

}

/* @container (max-width: 600px) {
  .grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }
} */



@media screen and (max-width: 520px) {
.topiclist__item .grid {
  gap: 20px;
}


.topiclist__item__caption {
    padding: 5px 3rem;
}

}



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

 ABOUT

 －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ Profile －－－－－－－－－－*/

.profile__inner.grid {
grid-template-columns: 1fr 3fr;
align-items: flex-start;
}

.profile__img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: auto;

border: 1px solid var(--secondary);
    padding: 15%;
    width: 100%;
    min-width: 50px;
    max-width: 150px;
    height: auto;
    display: block;
}

.profile__inner {
    margin-top: 1rem;
}

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

LINK

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

ul.linklist{
gap:0;
}

li.linklist__item {
    display: inline;
}

li.linklist__item::after {
    content: '｜';
    margin: 0 -4px 0 1px;
}
li.linklist__item:last-of-type::after {
    content: none;
}

ul.flex > li.linklist__item {
    display: flex;
}

ul.flex > li.linklist__item::after {
    margin: 0;
}

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

 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;
}
@media screen and (max-width: 520px) {
  .novellist.--2column {
    grid-template-columns: 1fr;
  }
}

.novellist__item {
  /* list-style: none; */
  margin-bottom: 30px;
}

.novellist__item:last-of-type {
    margin: 0;
}

.novellist__item .grid {
  grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
  gap: 20px;
}

/* 小説のタイトル */
.novellist__title {
  display: inline-block;
  /* font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem); */
  padding: 5px;
  /* border: 4px solid #FFEDED; */
}

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

.novellist__title + * {
  margin-left: 0.5rem;
}

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

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

/*－－－－－－－－－－ 長編小説ページ －－－－－－－－－－*/
.longnovel .longnovel__title {
  font-weight: normal;
  margin: 40px 0 80px;
  text-align: center;
  letter-spacing: 8px;
}
.longnovel .novellist .novellist__item {
  margin-bottom: 30px;
}
.longnovel .novellist > :last-child {
  margin-bottom: 0;
}
.longnovel .novellist.--2column .novellist__item {
  margin: 0;
}

/*－－－－－－－－－－ 小説のページ －－－－－－－－－－*/
.novelpage__inner {
  max-width: 800px;
  margin: auto;
  padding: 40px 0;
}

.novelpage__title {
  margin-bottom: 80px;
  letter-spacing: 4px;
}

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

.pagenav__item a {
  display: flex;
  align-items: center;
  /* text-decoration: none; */
  padding: 0 10px;
font-family: 'Sawarabi Gothic';
}
.pagenav__item a i {
  color: #FFC4C4;
  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: 4px;
}
.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: 4px;
}
.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);
}

p.uploaddate {
    font-size: smaller;
    text-align: center;
}

.scenechange {
    text-align: center;
    color: var(--secondary);
    margin: 13rem 0;
}

.warningtext {
    margin-bottom: 200px;
}

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

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;
}

img.yume-nushi {
    filter: blur(20px);
}

figure {
    margin: 2em 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--secondary);
    border-radius: 5px;
}

figcaption {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--white);
    text-align: center;
    font-size: 2rem;
    font-weight: bolder;
    transform: translate(-50%, -50%);
    letter-spacing: 5px;
    white-space: nowrap;
    text-shadow: 0 0 10px var(--paragraph);
}


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

COMIC

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ 漫画タイトル一覧ページ －－－－－－－－－－*/
.comiclist__item {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.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 {
  background-color: #FFEDED;
  padding: 8px 10px 6px;
}

/* スマホ */
@media screen and (max-width: 520px) {
  .comiclist__item {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .comiclist__item .comiclist__img img {
    position: relative;
    max-height: 40vh;
  }
  .comiclist__item .comiclist__body {
    padding-top: 0;
  }
  .comiclist__item .comiclist__body .comiclist__title {
    position: static;
    width: 100%;
    margin: 20px 0;
  }
}
/*－－－－－－－－－－ 漫画表紙ページ －－－－－－－－－－*/
/* メイン画像 */
.comic__mainvisual {
  position: relative;
  margin-bottom: 40px;
}

/* タイトル */
.comic__title {
  position: absolute;
  right: 0;
  bottom: 0;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff;
}

/*－－－－－－－－－－ キャラクター紹介 －－－－－－－－－－*/
/* キャラクター名一覧 */
.charanamelist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.charanamelist .charanamelist__item {
  cursor: pointer;
}

/* キャラクタープロフィール部分 */
.charalist--3 {
  margin-bottom: 40px;
}
.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;
}

.episodelist {
  margin: 40px 0;
  padding: 20px 40px;
  background-color: #FFEDED;
}

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

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;
  }
}

.off-list__img {
    max-height: 400px;
    display: block;
    margin: auto;
}

.off-list__body {
    padding: 0 2vw;
}