@charset "UTF-8";
.gNavi {
  text-transform: uppercase;
  font-weight: 900;
  font-family: 'Hina Mincho', serif;
}

.menu,
.menu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu {
  position: fixed;
  top: 20px;
  right: 25px;
  width: 44px;
  height: 22px;
  z-index: 10;
  border: none;
  background: none;
}

.menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #999;
  z-index: 10;
}

.menu span:nth-of-type(1) {
  top: 0px;
}

.menu span:nth-of-type(2) {
  top: 10px;
}

.menu span:nth-of-type(3) {
  bottom: 0px;
}

.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
  background-color: #fff;
}

.menu.active span:nth-of-type(2) {
  opacity: 0;
}

.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  background-color: #fff;
}

#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #212121;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem;
}

#nav svg {
  height: 56px;
  opacity: .7;
}

#nav.active {
  right: 0;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

#nav img {
  width: 100%;
  margin: 0 0 3rem 0;
}

@media (min-width: 769px) {
  #nav img {
    width: 260px;
    margin: 0 0 6rem 0;
  }
}

#nav .navs {
  font-weight: 700;
  width: 100%;
}

@media (min-width: 769px) {
  #nav .navs {
    width: 400px;
  }
}

#nav .navs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#nav .navs ul li {
  list-style: none;
  width: 50%;
}

#nav .navs a {
  color: #fff;
  text-decoration: none;
  padding: .5rem .5rem;
  display: block;
}

#nav .navs a:hover {
  text-decoration: none;
}

#nav .navs ul {
  margin-bottom: 3rem;
}

#nav .navs .gNavi {
  margin: 0;
  padding: 1.5rem 1.5rem 1.5rem 0;
  font-size: 2.4rem;
}

#top li.top,
#news li.news,
#schedule li.schedule,
#music li.music,
#movie li.movie,
.profile li.profile,
.store li.store,
.fanclub li.fanclub,
.contact li.contact {
  opacity: .4;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  word-break: break-all;
  margin: 0;
  padding: 0;
}

body {
  color: #999;
  font-size: 1.4rem;
  background: #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  font-family: 'Sawarabi Mincho', serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Hina Mincho', serif;
  text-transform: uppercase;
}

h5 {
  font-size: 1.6rem;
}

a,
a:link,
a:visited {
  color: #666;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover,
a:active {
  text-decoration: none;
  color: #707070;
}

a.btn:link,
a.btn:visited {
  color: #666;
  border: #666 1px solid;
  border-radius: 3px;
  display: inline-block;
  padding: .5rem 1.5rem;
}

a.btn:hover,
a.btn:active {
  background: #707070;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
}

.view-all {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 1.5rem 0 0;
}

.view-all .btn {
  position: relative;
}

.view-all .btn::after {
  content: '';
  position: absolute;
  display: block;
  width: 2rem;
  border-top: 1px solid #666;
  top: 50%;
  right: -1rem;
}

.back2list {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 1.5rem 0 0;
}

.back2list .btn {
  position: relative;
}

.back2list .btn::after {
  content: '';
  position: absolute;
  display: block;
  width: 2rem;
  border-top: 1px solid #666;
  top: 50%;
  left: -1rem;
}

img {
  max-width: 100%;
  -webkit-user-drag: none;
  -moz-user-select: none;
  user-drag: none;
  pointer-events: none;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  padding: 0;
}

header h1 {
  margin: 0;
}

header img {
  height: 44px;
}

.hero {
  width: 100%;
  height: 100vh;
  background: #ccc;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main {
  padding: 8rem 0;
}

main section {
  padding: 6rem 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}

footer {
  margin-top: auto;
  text-align: center;
  background: #000;
  padding: 3rem 0 6rem;
}

footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 769px) {
  footer ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer ul li {
  list-style: none;
  margin: 0;
  width: 50%;
}

@media (min-width: 769px) {
  footer ul li {
    width: auto;
  }
}

footer ul li a {
  display: block;
  width: 100%;
  padding: 3rem;
}

footer ul li a:link,
footer ul li a:visited {
  color: #fff;
  text-transform: uppercase;
}

.home h2 {
  font-size: 4rem;
  margin: 1.5rem 0;
}

.home h3 {
  font-size: 2.8rem;
  margin: 0 0 1.5rem 0;
}

.home .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home .item .jk {
  width: 40%;
}

@media (min-width: 769px) {
  .home .item .jk {
    width: 430px;
  }
}

.home .item .detail {
  width: calc(60% - 1.5rem);
}

@media (min-width: 769px) {
  .home .item .detail {
    width: calc(100% - 445px);
  }
}

.home .item .detail h4 {
  font-size: 2.1rem;
  margin: 1.5rem 0;
}

.home .item .detail .date {
  font-size: 1.8rem;
  margin: 0 0 3rem 0;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

ul.newsList {
  margin: 0 0 6rem;
}

ul.newsList li {
  list-style: none;
}

ul.newsList li a {
  padding: 3rem 1.5rem;
  display: block;
  position: relative;
}

ul.newsList li a::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
  -webkit-transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
  transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
}

ul.newsList li a:hover::after {
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
          transform: translate(50%, -50%) rotate(-45deg);
}

ul.newsList li + li {
  border-top: 1px solid #ccc;
}

.newsNavi {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px dotted #ccc;
  padding: 3rem 0;
}

@media (min-width: 769px) {
  .newsNavi {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.newsNavi li {
  list-style: none;
}

.newsNavi li a {
  padding: 1.5rem 0;
  display: block;
}

@media (min-width: 769px) {
  .newsNavi li {
    width: calc(100% / 3);
  }
}

.newsNavi li:first-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 769px) {
  .newsNavi li:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: left;
  }
}

.newsNavi li:nth-child(2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 769px) {
  .newsNavi li:nth-child(2) {
    text-align: center;
  }
}

.newsNavi li:last-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 769px) {
  .newsNavi li:last-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: right;
  }
}

ol.trackList,
ul.trackList {
  margin: 3rem;
}

ol.trackList li,
ul.trackList li {
  margin: 0 0 1.5rem;
}

ol.trackList li p,
ul.trackList li p {
  font-size: .8em;
}

.scheduleList {
  margin: 0 0 6rem;
}

.scheduleList li {
  list-style: none;
}

.scheduleList li a {
  font-size: 1.4rem;
  padding: 3rem 1.5rem;
  display: block;
  position: relative;
}

.scheduleList li a::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
  -webkit-transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
  transition: all 250ms cubic-bezier(0.5, 0, 0.5, 1);
}

.scheduleList li a:hover::after {
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
          transform: translate(50%, -50%) rotate(-45deg);
}

.scheduleList li a span {
  font-size: 1.4em;
  display: inline-block;
}

.scheduleList li a em {
  font-style: normal;
  margin-left: 1.5rem;
  padding: .2rem 1rem;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.scheduleList li .disable {
  font-size: 1.4rem;
  padding: 3rem 1.5rem;
  display: block;
  position: relative;
}

.scheduleList li + li {
  border-top: 1px solid #ccc;
}

.schedule_date {
  font-size: 2.4rem;
}

.schedule_detail {
  padding: 3rem 0;
}

.schedule_publish {
  padding: 3rem 0;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
}

.localNavi {
  margin: 1.5rem auto;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.localNavi li {
  list-style: none;
}

.localNavi li a {
  display: inline-block;
  padding: 1rem 2.5rem;
}

@media (min-width: 769px) {
  .localNavi li a {
    padding: 1.5rem;
  }
}

.music.single article {
  margin: 0 0 6rem;
}

@media (min-width: 769px) {
  .music.single article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .music.single article .jk {
    width: 60%;
  }
  .music.single article .detail {
    width: calc(40% - 3rem);
  }
  .music.single article .detail h2 {
    margin: 3rem 0;
  }
}

.music.single article h3.headingLine {
  font-size: 2.6rem;
  margin: 0 0 3rem;
}

.musicList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -0.75rem;
}

@media (min-width: 769px) {
  .musicList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.musicList li {
  list-style: none;
  margin: 0 0.75rem 2rem;
  width: calc((100% - 3rem) / 2);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
  .musicList li {
    width: calc((100% - 4.5rem) / 3);
  }
}

.musicList li a {
  display: block;
  padding: 1.5rem;
  height: 100%;
}

.musicList li a .jk {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 1 / 1;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.musicList li a .jk::before {
  content: '';
  background: inherit;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.musicList li a .jk img {
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.musicList li a h3 {
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
}

@media (min-width: 769px) {
  .musicList li a h3 {
    font-size: 2.1rem;
    margin: 0 0 .5rem 0;
  }
}

.relatedItems ul li {
  list-style: none;
}

.relatedItems ul li a {
  display: block;
}

.relatedItems ul li a .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.relatedItems ul li a .wrap .jk {
  width: 40%;
}

.relatedItems ul li a .wrap .detail {
  width: calc(60% - 1.5rem);
}

.tagList {
  margin: 0 0 1rem 0;
}

.tagList li {
  font-size: 1.1rem;
  list-style: none;
  display: inline;
  padding: .2rem .8rem;
  margin: 0 .5rem 1.5rem 0;
  border: 1px solid #999;
  border-radius: 5px;
  word-break: keep-all;
}

.movieList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -0.75rem;
  background: #ccc;
}

.movieList li {
  list-style: none;
  margin: 0 0.75rem 2rem;
  width: calc((100% - 3rem) / 2);
}

.movieList li a {
  display: block;
  padding: 1.5rem;
}

.movieList li a img {
  width: 200%;
  display: block;
}

.storeList li {
  list-style: none;
}

.wp-pagenavi {
  /* 全体 */
  margin: 20px 0;
  font-size: 12px;
}

.wp-pagenavi a {
  /* フォント色 */
  color: #4a4a4a;
}

.pages {
  /* 左の表記 */
  margin-right: 20px;
}

.wp-pagenavi .current,
.wp-pagenavi a.page {
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

.wp-pagenavi .current {
  /* カレント数字 */
  border: none;
  background: #666;
  color: #fff;
}

.wp-pagenavi a.page:hover {
  /* マウスオーバー */
  background: #666;
  color: #fff;
}

.wp-pagenavi .first,
.wp-pagenavi .extend {
  /* ... */
  margin-right: 10px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  /* 記号の削除 */
  display: none;
}
/*# sourceMappingURL=style.css.map */