/* 共通 */
html {
  visibility: hidden;
  scroll-behavior: smooth;
}
html.wf-active,
html.loading-delay {
  visibility: visible;
}
img {
  width: 100%;
}
body {
  font-family: solano-gothic-pro-mvb, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 80px;
}

main {
  padding-top: 2px;
}
body.noscroll {
  overflow: hidden;
}
.container {
  max-width: 800px;
  margin: auto;
  width: 94%;
}
.container-l {
  max-width: 1200px;
  margin: auto;
  width: 94%;
}
.container-sm {
  max-width: 750px;
}
.mx-auto {
  margin: auto;
}
.txt-center {
  text-align: center;
}
.w-600 {
  font-weight: 600;
}
.mt-20 {
  margin-top: 20px;
}
.mt-60 {
  margin-top: 60px;
}
.px-\[10px\] {
  padding-right: 10px;
  padding-left: 10px;
}
.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.pb-\[20px\]{
    padding-bottom: 20px;
}
.pt-\[20px\]{
    padding-top: 20px;
}
.font-medium{
    font-size: 1.3rem;
}
.lh-2{
    line-height: 2;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-2 {
  flex: 0 0 50%;
}
@media screen and (min-width: 751px) {
  .md\:flex-4 {
    flex: 0 0 25%;
  }
}

/* HEADER */
.site-title {
  font-size: 1.5rem;
}

/* TOP */
.top-gif {
  max-width: 200px;
  padding-right: 45px;
}
.t-ttl {
  font-size: 2rem;
  letter-spacing: 6px;
}

iframe {
  width: 100%;
}
.youtube {
  position: relative;
  width: 100%;
  /* padding-top: 56.25%; */
}
.addHeight {
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* flex 基本 */
.flex-box {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 2.5vw;
}
.flex-box__col--4,
.flex-box__col--3,
.flex-box__col--2 {
  width: 100%;
}
.flex-box__col--4 {
  margin-bottom: 30px;
}
.ct-ttl {
  padding: 15px 0;
}
.ttl-wrap {
  text-align: center;
}
.category-ttl {
  position: relative;
  display: inline-block;
  padding: 0 70px;
  font-size: 2rem;
}

.category-ttl:before,
.category-ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

.category-ttl:before {
  left: 0;
}
.category-ttl:after {
  right: 0;
}
.l-page .index {
  max-width: 430px;
  margin: 40px auto 60px;
  width: 90%;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center;
  /* border: 1
px
 dashed; */
  padding: 20px;
}

.archive-ttl {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  color: #848484;
  padding-top: 30px;
}
.link-btn {
  display: block;
  width: 100%;
  padding: 20px;
  border: 3px solid;
  border-radius: 50px;
  font-weight: 800;
  margin: 10px 0;
  text-align: center;
  font-size: 1.3rem;
}

/* ttl */
.page-ttl {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 30px auto;
  color: white;
  padding: 15px;
  width: 85%;
  font-size: 30px;
  font-weight: bold;
}

.page-ttl::before {
  transform: skewX(-25deg);
  content: ""; /*ボックスを作る*/
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: black;
}
@media screen and (min-width: 751px) {
  .flex-box__col--4 {
    width: 25%;
    padding: 0 10px;
  }
  .flex-box__col--3 {
    width: 33.3%;
    padding: 0 10px;
  }
  .flex-box__col--2 {
    width: 50%;
    padding: 15px;
    margin: initial;
  }

  .link-btn {
    margin: 20px 0;
  }
}

/* header */
.header {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  box-shadow: 0px 5px 17px 0px rgb(0 0 0 / 8%);
  width: 100%;
  height: 65px;
  top: 0;
  margin: 0;
  z-index: 99;
  background: white;
}
/* hamburger */
.burger-btn {
  display: block;
  width: 39px;
  height: 39px;
  position: relative;
  z-index: 3;
  border: none;
}
.bar {
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(0, 0, 0);
}
.bar_top {
  top: 10px;
}
.bar_mid {
  top: 50%;
  transform: translate(-50%, -50%);
}
.bar_bottom {
  bottom: 10px;
}
.burger-btn.close .bar {
  background-color: white;
}
.burger-btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
  transition: transform 0.3s;
}
.burger-btn.close .bar_mid {
  opacity: 0;
  transition: opacity 0.3s;
}
.burger-btn.close .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
  transition: transform 0.3s;
}

/* hamburger in */
.nav-wrapper {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.header-nav {
  width: 100%;
  height: 100%;
  background-color: #1b1310;
  z-index: 2;
}
.header-nav .nav-list {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.header-nav .nav-item {
  margin-right: 0;
  margin-bottom: 40px;
  color: white;
  font-size: 1.5rem;
}
.pcnavi-wrap {
  display: none;
}
.pcnavi-wrap__nav .nav-item {
  padding: 0 20px;
  font-size: 1.3rem;
}
@media screen and (min-width: 751px) {
  .burger-btn {
    display: none;
  }
  .pcnavi-wrap {
    display: block;
  }
}

/* TOPに戻る */
.top-button {
  position: fixed;
  right: 0;
  bottom: 40px;
  font-size: 35px;
  z-index: 10;
  color: #000;
  font-weight: bold;
  background: #f8dd52;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;

  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.top-button.active {
  opacity: 1;
  visibility: visible;
}

/* アルバム */
.album,
.common-block {
  max-width: 800px;
  margin: auto;
  width: 90%;
  box-shadow: 0 0 36px #e2e2e2;
}
.album__in {
  display: none;
  flex-wrap: wrap;
  padding: 0 35px 35px;
}
.album__list {
  margin-top: 16px;
}
.album__list a {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  border-bottom: 1px dashed;
  padding: 13px 0;

  position: relative;
}
.album__list a::before,
.common-block a::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 0px;
  border-top: solid 1px #838383;
  border-right: solid 1px #838383;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 13px;
  margin-top: -4px;
}
.album__in .artwork {
  flex: 0 0 100%;
  max-width: 100%;
}
.album__in .desc {
  flex: 0 0 100%;
  max-width: 100%;
  color: #838383;
}
.album__ttl {
  font-size: 29px;
  margin-bottom: 16px;
}
.album__ttl.pc-ttl {
  display: none;
}
.album__ttl.sp-ttl {
  padding: 20px 15px 20px 30px;
  margin-bottom: initial;
  color: #838383;
  position: relative; /* 追加 */
  font-size: 19px;
  cursor: pointer;
}

/* スマホ用 トグル*/

/* 擬似要素で下三角形を作成 */
.album__ttl.sp-ttl:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #838383;
  border-bottom: 1px solid #838383;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

/* オープン時にopenクラスを付与 */
.album__ttl.sp-ttl.open:after {
  transform: rotate(225deg);
}

@media screen and (min-width: 751px) {
  .album__ttl {
    font-weight: bold;
  }
  .album__ttl.sp-ttl {
    display: none;
  }
  .album__ttl.pc-ttl {
    display: block;
  }
  .album__in {
    padding: 45px;
    display: flex;
  }
  .album__in .artwork {
    flex: 0 0 30%;
    max-width: 30%;
    padding: 0 20px 0 0;
  }
  .album__in .desc {
    flex: 0 0 70%;
    max-width: 70%;
    padding-left: 25px;
  }
}

/* アルバム以外の共通ブロック */
.common-block {
  max-width: 600px;
}
.common-block a {
  display: block;
  width: 100%;
  padding: 20px 15px 20px 30px;
  font-size: 19px;
  margin-bottom: 20px;
  color: #838383;
  cursor: pointer;
  position: relative;
}
.common-block a::before {
  right: 28px;
}
@media screen and (min-width: 751px) {
  .common-block a {
    font-size: 23px;
    cursor: pointer;
    margin-bottom: initial;
    padding: 23px;
    margin-bottom: 35px;
  }
}

/* カテゴリナビ */
.cat-navi {
  margin: 56px 0;
}
.cat-navi ul {
  display: flex;
  overflow-x: scroll;
  padding: 9px;
  font-size: 25px;
  justify-content: flex-start;
  border-bottom: 2px solid;
  border-top: 2px solid;
}
.cat-navi ul::-webkit-scrollbar {
  display: none;
}
.cat-navi ul li {
  /* min-width: 70px; */
  padding: 0 20px;
  white-space: nowrap;
}
.category-term.selected {
  color: black;
  font-weight: bold;
}
.category-term {
  color: #838383;
}
@media screen and (min-width: 751px) {
  .cat-navi ul {
    justify-content: center;
  }
}

/* FAN ART */
.fan-art{
    font-family: Helvetica, 游ゴシック, "Yu Gothic", YuGothic, HiraKakuProN-W3, メイリオ, Meiryo, sans-serif;

}
.fan-art__box img {
  object-fit: contain;
  height: 180px;
  box-shadow: 0 0 10px #e2e2e2;
  border-radius: 9px;
  cursor: pointer;
}

@media screen and (min-width: 751px) {
  .fan-art__box img {
    height: 300px;
  }
}
/* モーダルウィンドウ
------------------------------------------*/
/* これが無いとモーダルウィンドウ表示の際に余白が出る */
* {
  margin: 0;
  padding: 0;
}

/* モーダル全体(背景＋本体) */
/* .modal{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
  } */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 50px 0px;
  overflow: auto;
  /* opacity: 1;
    visibility: visible; */
  /* transition: .3s; */
  box-sizing: border-box;
  z-index: 99999;
}
/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
}

/* モーダル本体 */
/* .modal-content{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: scroll;
    max-width: 650px;
    width: 90%;
    background: white;
    padding: 15px;
  } */
.modal-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 650px;
  width: 85%;
  background: white;
  padding: 15px;
}
.modal-content img{
    max-width: 80%;
}
a.modal-close {
  display: block;
  max-width: 450px;
  margin: 15px auto;
  width: 90%;
  text-align: center;
  padding: 15px;
  border: 1px solid #d7d7d7;
  color: #626262;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .modal-content {
    /* top: 50%; */
    width: 60%;
    /* height: 70%; */
    padding: 40px;
  }
}

/* ページネーション */
.pagination {
    margin: 40px 0 0;
}
.nav-links {
    display: flex;
    justify-content: center;
}
.pagination .page-numbers {
    display: inline-block;
    margin-right: 10px;
    padding: 3px 15px;
    color: #0f1419;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #181818;
}
.pagination .current {
    background: #181818;
    color: #fff;
}
.pagination .prev,
.pagination .next {
    background: transparent;
    box-shadow: none;
    color: #181818;
}
.pagination .dots {
    background: transparent;
    box-shadow: none;
    border: none;
}