@charset "utf-8";
/* CSS Document */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

section,div,ui,li,p,a {
    font-family: 'Noto Sans JP', HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
	color: #040000;
}
*::selection {
  background: rgba(230, 0, 19, 0.3);
}
ul,ol {
    list-style: none;
}
a {
	text-decoration: none;
	color: #040000;
}
img {
	width: 100%;
	height: auto;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.font-en {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}
.font-italic {
	font-style: italic;
}
.font-red {
	color: #e60012;
}

.pc {
	display: block;
}
.sp {
	display: none;
}

.line {
    width: 45px;
    height: 45px;
    border: 1px solid;
    border-color: #e60012 transparent transparent transparent;
    transform: rotate(-60deg);
}
.rotate-anime {
	animation: rotate-anime 2.6s ease infinite;
}
@keyframes rotate-anime {
	0% { transform:translateY(0) }
	7.69231% { transform:translateY(0) }
	15.38462% { transform:translateY(0) }
	30.76923% { transform:translateY(-5px) }
	38.46154% { transform:translateY(0) }
	46.15385% { transform:translateY(-5px) }
	61.53846% { transform:translateY(0) }
	100% { transform:translateY(0) }
}

@media all and (max-width: 760px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	
}

.li-sp{
  display: none;
}

@media all and (max-width: 760px) {
   .li-sp {
		display: block;
	}
}




/*header*/
#logo {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 70px;
    text-align: center;
    padding: 15px 0;
    line-height: 0;
	z-index: 1001;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}
.head-logo__img {
	width: 169.5px;
	margin: auto;
}

.head-nav {
    position: fixed;
    top: 0;
    right: calc(100% - 70px);
    background: #fff;
    width: 70px;
    min-width: 365px;
    height: 100vh;
    margin: 0;
    padding: 0;
    z-index: 1002;
    cursor: pointer;
    color: #262626;
    left: -295px;
	  transition: .2s;
 }


  .head-nav {
      overflow: auto;
   }

  .head-nav .menu_list{
    padding-bottom: 50px;
  }

.head-nav.active {
	left: 0;
	z-index: 9999;
	cursor: default;
}
.nav__btn {
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    width: 70px;
    height: 95px;
    padding-top: 45px;
    text-align: center;
    transition: .6s cubic-bezier(0.86, 0, 0.07, 1);
    cursor: pointer;
    z-index: 10000;
}
.nav__btn div {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
}
.nav__btn span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    background-color: #e60012;
    border-radius: 20px;
    width: 25px;
    height: 1px;
    transform-origin: center center;
    transition: .2s ease-out;
}
.nav__btn span:nth-of-type(1) {
    top: 3px;
    right: 5px;
}
.nav__btn span:nth-of-type(2) {
    top: 12px;
    right: 5px;
    width: 30px;
}
.nav__btn span:nth-of-type(3) {
    top: 20px;
    right: 5px;
    width: 35px;
}
.nav__btn b {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.head-nav.active .nav__btn span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
    width: 45px;
    right: 2px;
    top: 6px;
}
.head-nav.active .nav__btn span:nth-of-type(2) {
    animation: active-menu-bar02 .4s forwards;
    opacity: 0;
}
.head-nav.active .nav__btn span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
    width: 45px;
    right: 0px;
    top: 20px;
}
.head-nav.active .nav__btn b {
    transform: translateX(-10px);
    opacity: 0;
}

.nav__menu {
    position: absolute;
    top: 95px;
    left: 40px;
}

.menu_logo {
    max-width: 162px;
    margin-bottom: 40px;
	transition: 0.6s;
}
.menu_logo:hover {
	opacity: 0.6;
}
.menu_list .menu-item {
	margin-bottom: 5px;
}
.menu_list .menu-item a {
    font-size: 25px;
    font-weight: bold;
    padding: 0 .3em;
    background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgb(230, 0, 18) 50%);
    background-position: 0 0;
    background-size: 200% auto;
    transition: .3s;

    color: #e60012;
    font-style: italic;
}
.menu_list .menu-item a:hover {
  background-position: -100% 0;
  color: #fff;
}

.nav__sns {
    position: absolute;
    bottom: 20px;
    right: 15px;
    margin: -10px -15px 0px;
    padding: 0px 15px 0px;
    text-align: center;
    transition: .6s cubic-bezier(0.86, 0, 0.07, 1);
}
.nav__sns .line {
    position: absolute;
    top: -30px;
    left: 30px;
}
.nav__sns .sns-s {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 0px 13px;
    color: #e60012;
    font-size: 16px;
    font-weight: bold;
    margin-left: -5px;
	margin-bottom: 0px;
}
.nav__sns .sns_list a {
    display: inline-block;
    padding: 7px;
    font-size: 19px;
    color: #e60012;
    line-height: 0;
}
.nav__sns .sns_list a:hover {
	opacity: 0.8;
}


.icontop {
    padding-bottom:15px
}

.fa-youtube{
  font-size: 94%;
}

.head-copy-wrap{
    height: auto;
    position: fixed;
    top: 50%;
    left: calc(100% - 35px);
    z-index: 1011;
}

.head-copy {
   /*top: 50%;*/
}

.head-copy p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 12px;
    color: #040000;
    font-weight: 500;
}


.head-pagetop{
    width: 50px;
    height: auto;
    position: fixed;
    bottom: 20px;
    right: 10px;
    transition: .3s;
    opacity: 1;
/*    transform: translateY(0%);*/
}


.head-pagetop:hover{
  opacity: 0.9;
}

.hidetop{
  opacity: 0;
  bottom: -200px;
  /*transform: translateY(200%);*/
}

.sc-sns{ 
  display: none;
}

.menu_link_g{
  padding: 32px 0 0 10px;
}

.menu_link_g a{
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  color: #717171;
  letter-spacing: -0.02rem;
}

.ico_right{
  margin-right: 4px;
}

.ico_opb{
  font-size: 15px;
  opacity: 0.5;
}

.ico_news {
  font-size: 12px;
  margin-right: 0;
  margin-left: 6px;
  position: relative;
  top: -1px;
}


@media all and (max-width: 1140px) {
	.nav__sns {
		bottom: 100px;
	}
	.nav__sns .sns-s {
		margin-left: -10px;
	}
}
@media all and (max-width: 980px) {
	#logo {
		height: 80px;
		padding: 20px 0;
	}
	.head-nav {
		background: none;
		height: 100vh;
	}
	.head-nav.active {
		background: #fff;
	}
	.nav__sns {
		right: 16px;
		bottom: auto;
		top: 50%;
	}
  .sc-sns{ 
    display: block;
  }
  /*PC以外開閉時表示*/ 

  .head-nav .menu-sns{
    display: none;
  }
  .head-nav.active .menu-sns{
    display: block;
  }

  .sc-sns .nav__sns{
    position: fixed;
    z-index: 9990;
    top: auto;
    bottom: 30px;
    left: 5px;
    right: auto;
    text-align: left;
    height: auto;
  }

  .sc-sns.active .nav__sns{
    display: none;
    z-index: 1000;
  }
  
  .official_sns{
    margin-top: 20px;
  }
/*  .share_sns{
     position:fixed;
     bottom: 20px;
  }*/
}


@media all and (max-width: 760px) {
	#logo {
		height: 70px;

	}
	.head-nav {
		left: -92%;
		left: calc(55px - 100%);
		min-width: 100%;
	}
	.head-logo__img {
		width: 21%;
	}
  
  .head-copy {
   /* top: 50%;*/
 
}
  
	.nav__btn {
		right: -10px;
	}
	.nav__sns {
		right: 15px;
    position: absolute;

    top: 50%;
	}
	.nav__sns .line {
		top: -13px;
		left: 30px;
		width: 30px;
		height: 30px;
	}
	.nav__sns .sns-s {
		font-size: 9px;
		margin-left: -5px;
	}
	
  .head-copy-wrap{
      height: auto;
      position: fixed;
      top: 50%;
      left: calc(100% - 25px);
      z-index: 1002;
  }

  .head-copy-tex {
    position: relative;
    /*bottom: 20px; top戻るボタン利用時はこちら*/
    bottom: 0px;
    transform: translateY(0%);
    transition: .3s;
  }


  .hidebottom{
    bottom: 20px;
    transform: translateY(100%);
    transition: .3s;
  }

	.head-copy p {
		font-size: 10px;
	}

  .head-pagetop{
      width: 50px;
      height: auto;
      position: relative;
      /*top: 21px;*/
      bottom: -8px;
      left: auto;
      right: 34px;
      z-index: 1000;
      opacity: 1;
          transform: translateY(0%);
      transition: .6s;
  }

  .head-pagetop img{
    margin: 0 auto;
    text-align: center;
    }


  .hidetop{
    right: 34px;
    bottom: -5px;
    opacity: 0;
    transition: .6s;
    transform: translateY(240%);
  }

  .fvnone{
    top: auto;
    bottom: 90px;
    opacity: 1;
  }

  .fvnone_tex{
    top: auto;
    bottom: 34px;
    /*bottom: 90px;*/
    opacity: 1;
  }

  .fvnone.snsactive , .fvnone_tex.snsactive{
    /*top: 48%;*/
    opacity: 1;
  }
 
}

@media all and (max-height: 500px) {
  /*.fvnone{
    top: auto;
    bottom: 50px;
  }

  .fvnone_tex{
    top: auto;
    bottom: 30px;
  }*/
}


@media screen and (orientation: landscape) {
  .is-mobile .nav__sns .sns-s{
    font-size: 9px;
  }
}

@media all and (max-width: 420px) {
	.head-nav {
		/*left: -360px;*/
		/*left: -87%;*/
	}
	.head-logo__img {
		width: 40%;
	}
}
@media all and (max-width: 380px) {
	/*.head-nav {
		left: -322px;
	}*/
}
@media all and (max-width: 320px) {
	/*.head-nav {
		left: -264px;
	}*/
	.nav__sns {
		right: 22px;
	}

  .nav__sns .sns-s {
		/*display: none;*/
	}

}

@media all and (max-width: 760px) {
	.head-logo__img{
    display: none;
	}

	.home .head-logo__img{
    display: block;
	}

	.page-id-8987 .head-logo__img{
    display: block;
	}
 	.page-id-5470 .head-logo__img{
    display: block;
	}
}


@media all and (max-width: 980px) {
	.sc-sns {
		opacity: 0;
    transition: .3s;
	}
  .fvnone_tex {
		opacity: 0;
    transition: .3s;
	}
	.sc-sns.snsblock {
		opacity: 1;
    transition: .3s;
    }
  .fvnone_tex.snsblock {
		opacity: 1;
    transition: .3s;
	}
}

/*footer*/
#footer {
    position: absolute;
    width: calc(100% - 70px);
    background: #f5f5f5;
    text-align: center;
    margin: auto;
    color: #040000;
    z-index: 1010;
    margin-left: 70px;
    padding-right:70px;
}
.foot-inner {
    padding: 25px 10px;
}
.foot-inner p {
    font-size: 12px;
}

p.footertext{
  padding-bottom: 10px;
}

p.footertext a{
  font-size: 11px;
  text-decoration: underline;
}

.foot-menu{
  display: flex;
  justify-content: center;
}
.foot-menu .footertext{
  padding: 0 10px 10px 10px;
}

@media all and (max-width: 980px) {
	#footer {
		margin-left: 0;
		padding-right: 0;
		z-index: 100;
		width: 100%;
	}
}

/*コンテンツ共有*/
.main-content {
	padding-left: 70px;
}
@media all and (max-width: 980px) {
	.main-content {
		padding-left: 0;
	}
}


/*左側*/
.home-image__area {
    float: left;
	width: 46.5%;
	position: fixed;
	overflow: hidden;
    height: 100%;
}
.home-image__bg {
    padding-top: 70px;
    background-color: #000;
    background-repeat: no-repeat;
    background-position-x: center;
    /*background-position-y: -25%;*/
    background-size: 200%;
    z-index: 998;
}

@media all and (max-width: 760px) {
  .home-image__bg {
      background-size: cover;
      visibility:hidden;
  }
}

.home-image__bg:before {
    content: '';
    background: inherit;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -o-filter: blur(15px);
    -ms-filter: blur(15px);
    filter: blur(15px);
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    z-index: -1;
}

.home-image__box {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 999;
}
.home-image__box .box__img {
    width: 570px;
    margin-left: -450px;
}
@media all and (max-width: 1140px) {
	.home-image__box .box__img {
		width: 455px;
		margin-left: -340px;
	}
}
@media all and (max-width: 980px) {
	.home-image__area {
		float: none;
		width: 100%;
		position: relative;
		overflow: hidden;
		height: 102vh;
	}
	.home-image__box {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.home-image__box .box__img {
		margin: auto;
		width: 570px;
	}
}
@media all and (max-width: 760px) {

	.home-image__area {
		height: auto;
	}
	.home .home-image__box {
		top: 0%;
		left: 0%;
    right:0%;
		transform: translate(0%, 0%);
    width: 100%;
    position: relative;
	}
	.home-image__box .box__img {
		margin: auto;
		width: 100%;
    max-width: 460px;
	}

    .home-image__box{
    display: none;
    }
    .home .home-image__box , .profile .home-image__box{
    display: block;
    }

}
@media all and (max-height: 500px) {
	.home-image__box {
		top: 90%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.home-image__box .box__img {
		width: 100%;

	}
}

@media all and (max-height: 500px) {
	.is-mobile .home-image__box {
    position: absolute;
    height: 100vh;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);

	}
	.is-mobile .home-image__box .box__img {
		width: 100%;
    height: 100vh;
    max-width: 500px;
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
   .is-mobile .home-image__area{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   }
}

@media (orientation: landscape) and (max-height: 500px){
	.is-mobile .home-image__box .box__img {
    max-width: 80%;
  }
}


/*右側中身*/
.home-content__area {
    float: right;
    width: 51.5%;
}
.home-box {
	background-color: #fff;
    background-image: url(../img/img-bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    color: #fff;
/*    height: 100vh;*/
    padding: 110px 40px 40px 40px;

}
.section-title {
    text-align: center;
    color: #040000;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 5px;
	margin-top: 10%;
	margin-bottom: 10%;
}

.section-title-middle {
    text-align: center;
    color: #a1a1a1;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    margin-top: 30px;
    margin-bottom: 7%;
}

.content__area_inner {
    max-width: 460px;
    margin: auto;
}
.content-btn {
	text-align: right;
	padding-top: 15px;
}
.content-btn a {
	transition: 0.6s;
}
.content-btn a:hover .btn-text {
	opacity: 0.8;
}
.content-btn .btn-text {
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    color: #e60012;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}
.content-btn .icon-btn {
    width: 30px;
    height: 30px;
    background: #e60012;
    text-align: center;
    line-height: 1.7;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
	transition: 0.6s;
}
.content-btn .icon-btn i {
    font-size: 12px;
}
.content-btn:hover .icon-btn {
	transition: 0.6s;
	transform: rotate(225deg);
}
@media all and (max-width: 1150px) {
	.home-box {
		padding: 110px 55px 40px 55px;
	}
}
@media all and (max-width: 980px) {
	.home-content__area {
		float: none;
		width: 100%;
		height: auto !important;
	}
	.content__area_inner {
		max-width: 90%;
	}
}
@media all and (max-width: 760px) {
	.content__area_inner {
		max-width: 95%;
	}

	.home #movie .content__area_inner {
		max-width: 100%;
	}

	.home-box {
		padding: 70px 30px 70px 35px;
	}

  .section-title {
		font-size: 2.8rem;
		line-height: 1;
		margin-top: 15%;
		margin-bottom: 20%;
	}
  
  .home-content__area .section-title{
    display: none;
  }
}



/*スマホ　ぼかし取り*/
@media all and (max-width: 760px) {
   .is-mobile .home-image__area{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
   }
  .is-mobile .home-image__box {
      position: relative;
      top: 55%;
      left: 0%;
      right: 0%;
      transform: translate(0%, 0%);
      width: 100%;
  }
  .is-mobile .home-box {
    padding: 44px 30px 70px 35px;
  }
}

/*スマホ　ぼかし取り*/
/*@media all and (max-width: 760px) {
   .home.is-mobile  .home-image__area{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   }
  .home.is-mobile .home-image__box {
      position: absolute;
      top: 55%;
      left: 0%;
      right: 0%;
      transform: translate(0%, -50%);
      width: 100%;
  }
  .home.is-mobile .home-box {
    padding: 70px 30px 70px 35px;
  }
}
*/



/*title 追従*/
@media all and (max-width: 760px) {

  .title_fixed{
      height:33px
  }

  .title_fixed .section-title {
  }

/*
  .title-box .section-title, .title-box02 .section-title{
    transition:.5s;
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 0;
    padding: 24px 16px 16px 16px;
    box-sizing: border-box;
    position: fixed;
    background-color: #f1f1f1;
    top: -70px;
    left: 0;
    right: 0;
    z-index: 999;
    height: 32px;
  }
 
  .title-box.active .section-title, .title-box02.active .section-title{
    transition:.5s;
    top:5px;
*/

/*title変換*/
  .navbar-default1 , .navbar-default2, .navbar-default3, .navbar-default4, .navbar-default5, .navbar-default6, .navbar-defaultcat{
    
    transition:.5s;
    font-size: 8vw !important;
    line-height: 70px;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0px 30px 0px 30px;
    background-color: #fff;
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    height: 70px;
    box-sizing: border-box;
  }
  .showtitle1, .showtitle2, .showtitle3, .showtitle4, .showtitle5, .showtitle6, .showtitlecat{
     top: 0px;
     transition:.5s;
   }

}





/*news-area*/
.news-list__item {
	border-bottom: 1px solid #595959;
	margin-bottom: 35px;
}
.item-head {
    position: relative;
}
.item-head .date {
    display: inline-block;
    width: 100px;
    margin-right: 10px;
    color: #595959;
    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
}
.item-head .line {
	position: absolute;
}
.item-head .category {
    display: inline-block;
    /*width: 110px;*/
    margin-left: 25px;
	margin-right: 15px;
    color: #e60012;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
}
.item-head .category.no_date {
    margin-left: 0;
}
.item-head .icon-new {
    width: 40px;
    height: 40px;
    background: #e60012;
    text-align: center;
    line-height: 2.3;
    border-radius: 50%;
    margin: auto;
    color: #fff;
    display: inline-block;
    margin-top: -30px;
    vertical-align: inherit;
}
.item-head .icon-new span {
    font-size: 12px;
    font-weight: 600;
}
.item-news .news-text {
    padding: 15px 0;
	font-weight: 500;
}
.item-news .news-text a {
    font-size: 16px;
    font-weight: 500;
    padding: 0 .3em;
    background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgb(4, 0, 0) 50%);
    background-position: 0 0;
    background-size: 200% auto;
    transition: .3s;
}
.item-news .news-text a:hover {
  background-position: -100% 0;
  color: #fff;
}

@media all and (min-width: 760px) {
  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .news-list__item{
    margin-bottom: 24px;
  }

  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .news-list__item .line{
    width: 34px;
    height: 34px;
  }

  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .news-area .section-title{
    margin-top: 4%;
    margin-bottom: 4%;
  }

  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .item-news .news-text{
    padding: 10px 0;
  }

  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .news-list li:nth-child(n+5){
     display:none;
  }

  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents #discography{
    padding-bottom: 5%;
  }

  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .profile-area{
    padding-bottom: 0%;
  }
}

@media all and (max-width: 760px) {
	.item-head .date {
		width: 93px;
	}
	/*.item-head .category {
		width: 75px;
	}*/
}
@media all and (max-width: 320px) {
	.item-head .date {
		width: 85px;
		margin-right: 3px;
	}
	.item-head .category {
		width: 96px;
		margin-left: 11px;
		margin-right: 0;
	}
}

/* release-area */
.release-area {
	padding-bottom: 15%;
}
.release_line {
    border: 3px solid #151515;
    margin-top: 31%;
}
.release-normal  {
    margin-top: -25%;
}
.release-normal__jacket {
    max-width: 320px;
    text-align: center;
    margin: auto;
}
.release-data {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}
.data-head {
    position: relative;
}
.data-head .date {
    font-weight: bold;
    display: inline-block;
    width: 45%;
    font-size: 18px;
}
.data-head .date .release {
    margin-left: 5px;
}
.data-head .line {
	position: absolute;
}
.data-head .new-cd {
    font-weight: bold;
    display: inline-block;
    width: 45%;
    margin-left: -5%;
    font-size: 18px;
	text-transform: uppercase;
}

@media all and (min-width: 761px) {
  #discography .data-head, #release .data-head{
    display: flex;
    justify-content: center;
  }

  #discography .data-head .date, #release .data-head .date{
    width: auto;
    text-align: right;
    
  }

  #discography .data-head .new-cd, #release .data-head .new-cd{
    width: auto;
    text-align: left;
    margin-left: 0%;
  }
  
  .line-margin{ padding: 0 10px;}
  
}

.data-title {
    margin: 15px auto 0;
}
.data-title p {
    font-size: 30px;
    font-weight: bold;
}
.data-artist p {
    font-size: 18px;
    font-weight: bold;
}

.limited-list {
    padding: 0 15px 35px;
}
.limited-list__item {
    float: left;
    width: 32.3%;
    margin-right: 5px;
}
.limited-list__item:last-of-type {
	margin-right: 0;
}
.limited-list__item .item_text {
    font-size: 14px;
    text-align: center;
}
@media all and (max-width: 980px) {
	.limited-list__item {
		float: left;
		width: 32.3%;
		margin-right: 1.5%;
	}
	.data-head .date {
		width: 200px;
	}
	.data-head .new-cd {
		width: 215px;
	}
}
@media all and (max-width: 760px) {
	.data-head .date {
		width: 100%;
		font-size: 6vw;
	}
	.data-head .line {
		transform: rotate(0deg);
		width: 70px;
		top: 38px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.data-head .new-cd {
		width: 100%;
		margin: 20px auto 0;
	}
	.release-normal__jacket {
		max-width: 85%;
	}
	.limited-list__item {
		width: 48%;
		margin-bottom: 20px;
	}
	.limited-list__item:last-of-type {
		margin-right: 0;
		float: inherit;
	}
}

@media all and (max-width: 330px) {
	.data-head .line {
		top: 34px;
	}
  
  .popup-inner .release-data{
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* discography-area */

/*ヘッダー分余白*/
.inner-link{
  display: block;
  height: 1px;
  margin-top:-100px;
  padding-top:100px;
}

#discography {
    padding-bottom: 15%;
}
#discography-page #discography { /*一覧ページ用*/
	height: auto;
	min-height: 115vh;
}
.discography-list__box {
    float: left;
    width: 47%;
    margin-right: 27px;
    margin-bottom: 30px;
	position: relative;
}
.discography-list__box:nth-of-type(2n) {
	margin-right: 0;
}


@media all and (min-width: 761px) {
  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .discography-list li:nth-child(n+3){
     display:none;
  }

  _:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .discography-list li:nth-child(n+4){
     display:none;
  }
}
.discography-list__box::before,
.discography-list__box::after {
    display: block;
    content: '';
    background-color: #595959;
    position: absolute;
    width: 11px;
    height: 1px;
    bottom: 0px;
    right: -20px;
}
.discography-list__box:before {
    width: 1px;
    height: 11px;
    bottom: -5px;
    right: -15px;
}
.discography-list__box:nth-of-type(2n)::before,
.discography-list__box:nth-of-type(2n)::after {
	content: none;
}
.discography-list__img {
    position: relative;
    display: inline-block;
    z-index: 2;
}
.discography-list__box a .discography-list__img img {
	transition: all 0.3s;
}
.discography-list__box a:hover .discography-list__img img {
	transform: translate(7px, 7px);
}
.discography-list__img::after {
    content: '';
    border-style: solid;
    border-width: 0 0 205px 205px;
    border-color: transparent transparent #e60013 transparent;
    position: absolute;
    bottom: -3px;
    right: -7px;
    z-index: -1;
}
.discography-list__data {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #595959;
}
.list__data-type {
    text-transform: uppercase;
    font-weight: 500;
}
.list__data-title {
    font-weight: bold;
    font-size: 25px;
}
.list__data-artist {
    font-weight: bold;
}

@media all and (min-width: 760px) {

  .list__data-type {
      font-size: 90%;
  }
  .list__data-title {
      font-weight: bold;
      font-size: 20px;
      line-height: 1.2;
  }

  .listtitle-flex{
    display: flex;
    align-items: center;
    justify-content: center;
      min-height: 52px;
  }

}

@media (max-width: 1142px) and (min-width: 980px) {
  .list__data-title {
      font-size: 16px;
  }
}

#discography.discography-area .content-btn {
	margin: auto;
}
@media all and (max-width: 1150px) {
	.discography-list__box {
		width: 46%;
	}
	.discography-list__img::after {
		border-width: 0 0 180px 180px;
	}
}
@media all and (max-width: 768px) {
	.discography-list__img::after {
		border-width: 0 0 270px 270px;
	}
}
@media all and (max-height: 500px) {
	.discography-list__img::after {
		border-width: 0 0 280px 280px;
	}
}
@media all and (max-width: 760px) {
	.discography-list__img::after {
		border-width: 0 0 250px 250px;
	}
}
@media all and (max-width: 420px) {
	.discography-list__box {
		float: none;
		width: 85%;
		margin: 0 auto 30px;
	}
	.discography-list__box.all-list:last-child {
    border-bottom: 0px solid #595959;
	}
}
@media all and (max-width: 760px) {
	.all-list-flex {
		display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
	}

	.discography-list__box.all-list {
		float: none;
		width: 100%;
		margin: 0 auto 20px;
    border-bottom: 1px solid #595959;
	}

	.discography-list__box:nth-of-type(2n) {
		margin-right: auto;
	}
	.discography-list__box::before,
	.discography-list__box::after {
		content: none;
	}
	.discography-list__img::after {
		border-width: 0 0 280px 280px;
	}
}

@media all and (max-width: 500px) {
	.all-list .discography-list__img::after {
		border-width: 0 0 136px 136px;
    bottom: -1px;
    right: -5px;
	}
}

@media all and (max-width: 375px) {
	.discography-list__img::after {
		border-width: 0 0 250px 250px;
	}
}

@media all and (max-width: 360px) {
	.discography-list__img::after {
		border-width: 0 0 136px 136px;
	}
}

@media all and (max-width: 320px) {
	.discography-list__img::after {
		border-width: 0 0 200px 200px;
	}
}
@media all and (max-height: 320px) {
	.discography-list__img::after {
		border-width: 0 0 220px 220px;
	}
}
@media all and (max-width: 640px) {
	.discography-list__img::after {
		border-width: 0 0 220px 220px;
	}
}

@media all and (max-width: 420px) {
	.discography-list__img::after {
		border-width: 0 0 240px 240px;
	}
}


@media all and (max-width: 760px) {
  .all-list .discography-list__data{ 
    width: 46%;
    text-align: left;
    padding: 0;
    border: none;
    }

  .all-list .discography-list__data p{ 
    font-size: 14px;
    }

  .all-list .discography-list__img{
    width: 46%;
  }

  .all-list p.list__data-title{
    font-size: 15px;
    line-height: 1.4;
    padding: 5px 0;
  }

}


/* anchor link*/

.dg-anchorbox{
text-align: center;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  display: none;
}

.dg-anchorlist{
  text-align: center;
  width: 47%;
  margin: 3px;
  box-sizing: border-box;
}

.dg-anchorlist a{
  font-size: 13px;
  text-align: center;
  padding: 10px 3px 10px 3px;
  display: block;
  background-color: rgba( 0, 0, 0, 0.1);
  height: 4em;
  align-items: center;
  padding: 0px 3px 0px 3px;
  display: flex;
  justify-content: center;

}

@media all and (min-width: 761px) {
  .dg-anchorlist a:hover{
    color: #fff;
    background-color: rgba( 0, 0, 0, 1);
  }
}

/* discography tab changes*/

.tab-wrap{

}

.tab-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 30px auto;
}
.tab {
  flex-grow:1;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1em;
  color: #b9b9b9;
  position: relative;
  padding: 0 0.3em;
  border-right: 1px solid #b9b9b9;
  /*border-radius: 10px 10px 0 0;*/
  background-color: transparent;
  transition: all .2s;
  cursor: pointer;
}

.tab:last-child {
  border-right: 0px solid #b9b9b9;
}

.tab:not(:last-of-type) {
  /*margin-right: 0.5em;*/
}
/* タブ現在値 */
.current {
  color: #040000;
  background-color: transparent;
}
.current::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
}

.menu {
 /*padding: 2em 1em;*/
  background-color: transparent;
  transition: all .2s;
  cursor: pointer;
}

.menu-container {
  /* fadein・outのために指定 */
  position: relative;

}
.menu-box {
  width: 100%;
  /* fadein・outのために指定 */
  /*position: absolute;
  top: 0;*/
}



/* profile-area */
.profile-area {
    padding-bottom: 15%;
}
.member-data {
    float: left;
    width: 47.3%;
	margin-bottom: 20px;
    margin-right: 20px;
	position: relative;
}
.member-data:nth-of-type(2n) {
	margin-right: 0;
}

@media all and (min-width: 760px) {
/* chrome scrollfix*/
_:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .member-data {
    float: left;
    width: 31%;
    margin-bottom: 20px;
    margin-right: 15px;
    position: relative;
  }
_:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .member-data:nth-of-type(2n) {
    margin-right: 15px;
  }
_:lang(x)::-internal-media-controls-overlay-cast-button, .topcontents .member-data:nth-of-type(3n) {
    margin-right: 0;
  }
}


.hover-mask {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 15px;
    opacity: 0;
}
.hover-mask .name {
    border: 2px solid #fff;
    width: 100%;
    padding: 5px;
    font-size: 18px;
    font-weight: bold;
}
.member-data:hover .hover-mask {
	opacity: 1;
	transition:all 0.6s ease;
}

@media all and (max-width: 980px) {
	.member-data {
		width: 48%;
	}
}
@media all and (max-width: 760px) {
	.member-data {
		width: 47.5%;
		margin-right: 10px;
		margin-bottom: 10px;
	}
}

.is-mobile .hover-mask .name {
  display: none;
}


/**********下層ページ***********/

/*archive-news*/
#archive-news .home-box {
	height: auto;
	min-height: 115vh;
}
.pager-all {
    text-align: center;
    margin: auto;
}
.pager-all li {
	display: inline-block;
	vertical-align: middle;
}
.pager-all .pager-all__item a,
.pager-all .pager-all__item span {
    width: 40px;
    height: 40px;
    background: #fff;
    display: block;
    border-radius: 50%;
    line-height: 2.5;
    font-weight: bold;
    color: #e60012;
    margin: 0 2px;
    border: 1px solid #e60012;
	transition: 0.6s;
}
.pager-all .pager-all__item.on-page span {
    background: #e60012;
    color: #fff;
}
.pager-all .pager-all__item a:hover {
	background: #e60012;
	color: #fff;
}
.pager-all .previous {
	margin-right: 5px;
}
.pager-all .next {
	margin-left: 5px;
}
.pager-all .previous a,
.pager-all .next a {
    color: #595959;
}

/*single*/
#single .home-box,
#profile .home-box {
    height: auto;
	min-height: 115vh
}

@media all and (max-width: 760px) {
	#archive-news .home-box,
	#single .home-box,
	#profile .home-box {
		min-height: inherit;
	}
}

/*discography*/
.discography-data__head .data-head .new-cd {
    width: 35%;
}



.data__head-text p {
	line-height: 1.6;
}

p.lh_L {
	line-height: 1.8 !important;
}

p.lh_S {
	line-height: 1.4 !important;
}

.data__list-head {
    padding: 10px;
}
.data__list-item {
    border: 2px solid #040000;
    margin-top: 25%;
}
.list-item__img {
    margin: auto;
    width: 60%;
    margin-top: -15%;
}

.discography-data__list {
    margin: 10% auto 0;
}
.data__list-content {
    margin: 10px 0;
    position: relative;
}
.head-title {
    font-weight: bold;
    display: inline-block;
    width: 49%;
    font-size: 18px;
    text-align: center;
    vertical-align: middle;
}
.data__list-content .line {
    position: absolute;
    top: 5px;
    width: 70px;
    height: 70px;
}
.head-data {
    display: inline-block;
    width: 40%;
    margin-left: 8%;
    font-size: 13px;
    vertical-align: middle;
    margin-top: 5px;
}
.head-data .tax {
    font-size: 90%;
}

.discography-data__text {
    padding: 0 10px 20px;
}
.discography-data__text strong {
    margin-top: 10px;
	margin-bottom: 3px;
    display: block;
	margin-left: -20px;
} 

.discography-data__text strong.br_ex {
    display: inline-block !important;
}

.discography-data__text p {
	margin-left: 20px;
	font-size: 14px;
	line-height: 1.7;
}
.discography-data__text img {
	width: auto;
    max-width: 95%;
}
.discography-area .other {
    margin: 20px auto;
    background: #040000;
    padding: 15px;
}
.discography-area .other p {
	color: #fff;
	font-size: 14px;
}
.discography-area .other ul {
    list-style: disc;
    padding-left: 25px;
    margin: 10px auto 0;
}
.discography-area .other ul li {
    color: #fff;
	font-size: 14px;
}
.discography-area .note {
    margin: 7% auto 3%;
}
.note__text {
    font-size: 14px;
    color: #313131;
}
.discography-area .content-btn {
	margin: 16% auto;
}

.store-btn .boder-btn {
    text-align: right;
    margin: 10px auto 0;
}
.store-btn .boder-btn a {
    display: inline-block;
    /*width: 100%;*/
    border: 1px solid #e60012;
    border-radius: 50px;
    padding: 10px 25px;
    text-align: center;
    background: #fff;
    color: #e60012;
    font-weight: 500;
	transition: 0.6s;
}
.store-btn .boder-btn a:hover {
	background: #e60012;
	color: #fff;
	/*letter-spacing: 1px;*/
}
.store-btn:last-of-type .boder-btn a {
	margin-bottom: 5%;
}
.store-btn .boder-btn a br {
	display: none;
}
.store-btn.info-area .boder-btn {
    text-align: center;
}
.store-btn.info-area .boder-btn a {
	width: 100%;
}

.store-btn.info-area .boder-btn .btn-icon{ 
  margin-left: 16px;
}

@media all and (max-width: 760px) {
	.discography-data__head .data-head .new-cd {
		width: 100%;
		margin-top: 20px;
	}
	.data__list-content {
		margin: 10px 0 0;
	}
	.list-item__img {
		width: 85%;
	}
	.head-title {
		width: 100%;
		margin-bottom: 7px;
	}
	.data__list-content .line {
		transform: rotate(0deg);
		height: auto;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		position: inherit;
		border-top: 1px solid #e60012;
		display: block;
	}
	.head-data {
		width: 100%;
		margin-left: 0;
		text-align: center;
		margin-top: 8px;
	}
	.discography-area .note .note__text {
		font-size: 12px;
	}
	.store-btn .boder-btn {
		margin: 15px auto 0;
	}
	.store-btn:last-of-type .boder-btn {
		margin: 15px auto 30%;
	}
	.store-btn:last-of-type .boder-btn {
		margin-bottom: 10%;
	}
	.store-btn .boder-btn a {
		font-size: 13px;
	}
	.store-btn:last-of-type .boder-btn a {
		margin-bottom: 0;
	}
}

/*single-news*/
.news__head .single-title {
	font-size: 25px;
	margin-bottom: 15px;
	font-weight: bold;
    width: 100%;
    display: block;
    overflow-wrap: normal;
}
.news__head .line  {
	height: auto;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	position: inherit;
	border-top: 1px solid #e60012;
	display: block;
	transform: rotate(0deg);
}
.news__head .date {
	font-size: 18px;
	margin-top: 15px;
	color: #595959;	
    width: 100%;
	display: block;
}
.news__content p {
	line-height: 1.8;
}

.post_btn {
    margin: 15% auto;
    text-align: center;
}
.post_btn a {
    width: 35%;
    display: inline-block;
    vertical-align: middle;
	padding: 0.5em 0em;
    background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgb(4, 0, 0) 50%);
    background-position: 0 0;
    background-size: 200% auto;
    transition: .3s;
}
.post_btn a:hover {
    background-position: -100% 0;
    color: #fff;
}
.post_btn a:first-of-type i {
    color: #595959;
    margin-right: 10px;
}
.post_btn a:last-of-type i {
    color: #595959;
    margin-left: 10px;
}
.post_btn a:hover i {
	color: #fff;
}
.news-notice {
	font-size: 85%;
	color: #909090;
	padding-bottom: 20px;
}
.media-head {
    padding: 7% 0 2%;
}
.media-head__top {
	padding-bottom: 4%;
}
.media-list .date {
	color: #e60012;
}
.media-list .category {
    color: #040000;
    font-size: 16px;
}
@media all and (max-width: 760px) {
	.news__head .single-title {
		font-size: 20px;
		margin-bottom: 15px;
	}
	.news__head .date {
		font-size: 16px;
		margin-top: 15px;
	}
	.post_btn a {
		width: 49%;
	}
	.media-head .single-title,
	.media-head__top .single-title {
		font-size: 30px;
	}
	.media-list .date {
		width: 97px;
	}
	.media-list .item-head .category {
		margin-left: 15px;
	}
	.item-head .category.no_date {
		margin-left: 0;
	}
}

/*page-member*/
#member .home-box {
	height: auto;
}
.page-member__data {
    float: left;
    width: 47.3%;
    margin-bottom: 20px;
    margin-right: 20px;
    position: relative;
}
.page-member__data:nth-of-type(2n) {
	margin-right: 0;
}
@media all and (max-width: 980px) {
	.page-member__data {
		width: 48%;
	}
}
@media all and (max-width: 760px) {
	.page-member__data {
		width: 47.5%;
		margin-right: 10px;
		margin-bottom: 10px;
	}
}


/*single-profile*/
.profile-name__data {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}
.name-jp {
    font-weight: bold;
    display: inline-block;
    width: 45%;
    font-size: 30px;
    vertical-align: middle;
}
.profile-name__data .line {
    top: 10px;
}
.name-en {
    font-weight: bold;
    display: inline-block;
    width: 50%;
    margin-left: 0;
    font-size: 25px;
    vertical-align: middle;
    color: #595959;
}
.profile__content {
    border: 3px solid #151515;
    padding: 40px 20px;
    text-align: center;
    margin: 10% auto 0;
}
.profile__content p {
    font-weight: 500;
    line-height: 2;
}
.profile_notice {
    margin: 5% auto;
}
@media all and (max-width: 760px) {
	.name-jp {
		width: 100%;
		margin-bottom: 7px;
	}
	.profile-name__data .line {
		transform: rotate(0deg);
		height: auto;
		top: 0;
		left: 0;
		right: 0;
		margin: auto;
		position: inherit;
		border-top: 1px solid #e60012;
		display: block;
	}
	.name-en {
		width: 100%;
		margin-left: 0;
		text-align: center;
		margin-top: 8px;
	}
}

/*modal*/
.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}
.popup.is-show {
	opacity: 1;
	visibility: visible;
}


.popup-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 95%;
	max-width: 620px;
	padding: 25px;
	background-color: #fff;
	z-index: 2;
	border-radius: 5px;
  background-image: url(../img/img-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}
.popup-inner img {
	width: 100%;
}

.popup-inner .release-data{
  margin-top: 20px;
  margin-bottom: 20px;
}

.popup-inner .release-normal__jacket{
  width: 37vh;
  max-width: 270px;
  min-width: 180px;
  padding-top: 20px
}

.popup-inner .data-title {
  margin: 10px auto 0;
}

.popup-inner .data-title p{
  line-height: 1.1;
}

@media all and (max-width: 760px) {
  .popup-inner .release-normal__jacket{
  width: 40vh;
  max-width: 270px;
  }
}


.popup-inner .release_line{
  margin-top: 0;
}

.popup-inner .release-area {
  padding-bottom: 0;
}

.popup-inner .section-title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 5.5vh;
}



  .popup-inner .release-normal{
    margin-top: 0;
  }



@media screen and (orientation: landscape) {
 /* .is-mobile .popup-inner .release-normal{
    margin-top: 10%;
  }*/
  .is-mobile .popup-inner{
    height: auto;
    max-height: 80vh;
    position: relative;
    overflow-y: scroll;
    display: flex;
    justify-content: center;
         -webkit-overflow-scrolling: touch;
        align-aitems: flex-start;
         
  }
  .is-mobile .popup-inner .release-area{
    width: 80vw;
     height: 100%;

  }
  .is-mobile .popup-inner .release_line{
    margin-top: 0;
  }
}



.close-btn {
    width: 10px;
    position: absolute;
    right: 20px;
    top: 0px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}

/*
.close-btn i {
    font-size: 30px;
    color: #ffffff;
}
*/
.close-btn i {
    font-size: 30px;
    color: #e60012;
}

.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	z-index: 1;
	cursor: pointer;
}

.single-logo {
    text-align: center;
    margin: 0px auto 15px;
    max-width: 175px;
}
.list {
    margin-bottom: 5%;
}
.list .list-item {
    float: left;
    width: 32%;
    margin-right: 10px;
    text-align: center;
}
.list .list-item:last-of-type {
	margin-right: 0;
}
.title-area {
    text-align: center;
}
.title-area .title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}
.title-area .title .disc-title {
    font-size: 160%;
    vertical-align: middle;
    margin: 0 -13px;
}
.title-area .sub-data {
    font-size: 14px;
}
@media all and (max-width: 760px) {
	.popup-inner {
    width: 90%;
    height: auto;
    max-height: 80vh;
		padding: 28px 15px 24px 15px;
    position: relative;
    overflow-y: scroll;
    display: flex;
    justify-content: center;
    align-aitems: flex-start;
	}
	.list .list-item {
		width: 30%;
	}
	.list .list-item .text {
		font-size: 85%;
	}
	.title-area .title {
		font-size: 21px;
	}
  .popup-inner .release-area {
    width: 94%;
    padding-bottom: 0;
    height: 100%;
  }

  .popup-inner .section-title {
    font-size: 2rem;
    margin-top: 0%;
    margin-bottom: 0%;
  }
  .release_line {
  padding: 0 10px;
}

/*
  .close-btn {
    right: 10px;
  }*/

}


@media all and (max-width: 760px) {
  .popup-inner .section-title {
  /*color: red;*/
    font-size: 1.6rem;
    padding: 20px 0;
	}
  .popup-inner .release-normal__jacket{
    max-width: 48vw;
    min-width: auto;
    padding-top: 20px;
  }
  .popup-inner .release-data{
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .popup-inner .data-title p{
    font-size: 6vw;
    line-height:1.2;
  }

	.popup-inner .data-head .date {
		font-size: 4vw;
	}
	.popup-inner .data-head .new-cd {
		font-size: 4vw;
	}
  .popup-inner .data-title{
    margin: 10px auto 0;
   }

  .popup-inner .data-head .new-cd{
    margin: 10px auto 0;
  }
  .popup-inner .data-head .line{
    top: 50%;
  }
  .popup-inner .content-btn{ padding-bottom: 10px;}

}

@media all and (max-width: 330px) {
  .popup-inner .release-normal__jacket{
    max-width: 44vw;
  }
}


@media all and (max-width: 330px) {
  .popup-inner .section-title {
    font-size: 8vw;
    letter-spacing: 0.2rem;
	}
.popup-inner {
		padding: 20px 15px 20px 15px;
	}
}

/*404*/
.content-404 {
    padding-top: 70px;
}
.page-404 {
    padding: 70px;
    margin: auto;
    min-height: 85.5vh;
    position: relative;
    background: #f9f9f9;
}
.page-404 .page-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	min-width: 70%;
}
.page-area .logo {
    display: inline-block;
    width: 32%;
    vertical-align: middle;
	text-align: right;
}
.page-area .logo img {
    max-width: 290px;
}
.page-area .comment {
    display: inline-block;
    width: 62%;
    margin-left: 5%;
    vertical-align: middle;
}
.page-area .comment .title {
    font-size: 3.4rem;
    color: #d71518;
}
.page-area .comment .sub-title {
    font-size: 1.2rem;
}
.page-area .comment p {
    margin-top: 4%;
}
.page-area .btn {
    width: 27%;
    margin: 6% auto;
    text-align: center;
}
.page-area .btn a {
    border: 1px solid #d71518;
    border-radius: 50px;
    display: block;
    padding: 15px;
    color: #d71518;
    background: #fff;
	transition: 0.6s;
}
.page-area .btn a:hover {
	background: #d71518;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
}
@media all and (max-width: 760px) {
	.page-404 {
		padding: 30px;
	}
	.page-404 .page-area {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0, 0);
	}
	.page-area .logo {
		display: block;
		text-align: center;
		margin: 15% auto;
		width: 50%;
	}
	.page-area .logo img {
		max-width: 100%;
	}
	.page-area .comment {
		display: block;
		width: 90%;
		margin: auto;
		text-align: center;
	}
	.page-area .comment .title {
		font-size: 2.2rem;
		font-weight: bold;
	}
	.page-area .comment .sub-title {
		font-size: 1rem;
		text-align: left;
	}
	.page-area .comment p {
		margin-top: 10%;
		text-align: left;
		font-size: 14px;
	}
	.page-area .btn {
		width: 90%;
		margin: 10% auto;
	}
	.page-area .btn a {
		padding: 8px;
	}
}

/*policy*/
.page-area .comment.comment-policy {
    display: block;
    width: 62%;
    margin: auto;
    vertical-align: middle;
}
.content-policy {
    padding-top: 70px;
}
.page-policy {
    padding: 70px;
    margin: auto;
    min-height: 85.5vh;
    position: relative;
    background: #f9f9f9;
}
.page-policy .page-area {
    position: relative;
  	min-width: 70%;
}

.page-area .comment.comment-policy p {
  margin-top: 20px;
  text-align: left;
  font-size: 14px;
}

.page-area .comment.comment-policy .sub-title {
    font-size: 1.2rem;
    padding-top: 40px;
}

.page-area .comment .title-policy{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 60px;
}



@media all and (max-width: 760px) {
  .page-area .comment.comment-policy {
    display: block;
    width: 90%;
    margin: auto;
    vertical-align: middle;
  }
	.page-policy {
		padding: 30px;
	}
	.page-policy .page-area {
		position: inherit;
	}
  .page-area .comment .title-policy{
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 30px;
  }
}

/*company*/

#onecolumn .section-title {
    margin-top: 2%;
    margin-bottom: 6%;
}

.page-area .comment.comment-onecolumn {
    display: block;
    width: 62%;
    margin: auto;
    vertical-align: middle;
}
.content-onecolumn {
    padding-top: 70px;
}
.page-onecolumn {
    padding: 70px;
    margin: auto;
    min-height: 85.5vh;
    position: relative;
    background: #f9f9f9;
}
.page-onecolumn .page-area {
    position: relative;
  	min-width: 70%;
}

.page-area .comment.comment-onecolumn p {
  margin-top: 1px;
  text-align: left;
  font-size: 14px;
}

.middle-line{
  padding-bottom: 10px;
}

.page-area .comment.comment-onecolumn .tb-ul .sub-title {
    font-size: 1rem;
    padding-top: 0px;
    width: 20%;
}

.page-area .comment .title-onecolumn{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 60px;
}

.tb-ul li{
  padding: 20px 0;
  border-bottom: 1px solid #e3e3e3;
}

.tb-left{
  width: 70%;
}
/*
.tb-inbd{
  border-bottom: 1px dotted #e3e3e3;
}

.tb-inbd:last-child{
  border-bottom: none;
}
*/

.bdright{
  border-right: 1px solid #e3e3e3;
}

.tb-ul li:last-child{
  border-bottom: none;
}

.tb-flex{ 
  display:flex;
}

.tb-nen{
  width: 5rem;
}

#onecolumn h3::after {
    display: block;
    content: '';
    background-color: #e60012;
    width: 90px;
    height: 1px;
    margin: auto;
    margin-top: 20px;
}

.tL{ 
  text-align: left !important;
}

.tR{ 
  text-align: right !important;
}

@media all and (max-width: 760px) {
  .page-area .comment.comment-onecolumn {
    display: block;
    width: 90%;
    margin: auto;
    vertical-align: middle;
  }
	.page-onecolumn {
		padding: 30px;
	}
	.page-onecolumn .page-area {
		position: inherit;
	}
  .page-area .comment .title-onecolumn{
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 30px;
  }


  .page-area .comment.comment-onecolumn .tb-ul .sub-title {
      width: 30%;
  }



  .page-area .comment.comment-onecolumn .tb-flex .flexright{
      width: 70%;
  }


  .tb-nen{
    width: 30%;
  }

  .middle-line{
    padding-bottom: 14px;
  }
}




#single-news table{
	margin: 15px 0;
	width: 100%;
	border-collapse: collapse;
}
#single-news table th,
#single-news table td{
	background: #fff;
    border: 1px solid;
    padding: 5px;
}
#single-news table th{
	background: #e6e6e6;
}

/*音声プレイヤーcss追加0710*/
#discography .mejs-container {
    width: 91% !important;
    margin: 5px auto 10px;
}
.mejs-container,
.mejs-container
.mejs-controls,
.mejs-embed,
.mejs-embed body {
	border-radius: 50px;
	background: #000 !important;
}

/*movie*/
.lity {
	background: rgba(0, 0, 0, 0.8);
}
.lity-close {
    width: auto;
    height: 35px;
    right: 1%;
    top: 5%;
    font-size: 12vh;
}
.lity-close:active {
	top: 5%;
}
.lity-close:hover, .lity-close:focus,
.lity-close:active, .lity-close:visited {
	font-size: 12vh;
}
.movie__box video {
	max-width: 960px;
	width: 100% !important;
}
/*
.home-box .movie-list{
  margin-left: -25px;
  margin-right: -30px;
}
*/
/* youtube 埋め込み用*/
/*.ytube {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.ytube iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.ytube a {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
*/


@media (min-width: 1300px){
  .home-box .movie-list{
    margin-left: -25px;
    margin-right: -30px;
  }
}


@media (min-width: 1400px){
  .home-box .movie-list{
    margin-left: -45px;
    margin-right: -60px;
  }
}


@media (max-width: 764px){
  .home-box .movie-list{
    margin-left: -5px;
    margin-right: -5px;
  }
}

.movie-list .movie-list__item {
	float: left;
	width: 48.5%;
    padding-bottom: 5%;
    margin-bottom: 8%;
    border-bottom: 1px solid #ccc;
}
.movie-list .movie-list__item:nth-of-type(2n) {
	float: right;
}
.movie-btn__box {
	position: relative;
}
.movie-btn__box .start-btn {
    position: absolute;
    background: #e60012;
    border: 1px solid #e60012;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 1.3;
    font-size: 30px;
    padding: 0px 18.5px;
    height: 45px;
    width: 45px;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: 0.6s;
}
.movie-btn__box .movie-btn__a {
	display: block;
  position: relative;
}
.movie-btn__box .movie-btn__a:hover .start-btn {
	background: #fff;
	color: #e60012;
	transition: 0.6s;
}
.movie-title {
    text-align: center;
    margin: 4.5% auto 0;
}

/*top用*/
.movie-list__item.top-movie {
/*	float: none;*/
	width: 100%;
}
.movie-list .movie-list__item.top-movie:last-of-type {
	border-bottom: none;
}
.movie-list__item.top-movie .movie-btn__box .start-btn {
	line-height: 1.5;
	font-size: 30px;
	padding: 0px 20.5px;
	height: 50px;
	width: 50px;
	top: 55%;
}

@media (max-width: 760px){
  .movie-list__item.top-movie .movie-btn__box .start-btn {
    top: 62%;
  }
}

/* movie slider*/
.slider {
  width: 90%;
  margin: 0 auto 80px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.mslider{
  width: 100%;
}
.mslider .slick-slide{
  margin: 5px;
}

.slider .slick-list {
  padding: 0 24% 0 0!important;
}


@media (max-width: 760px){
	.lity-close {
		top: 8%;
	}
	.movie-list .movie-list__item {
/*		float: none;*/
		width: 100%;
	}
	.movie-list .movie-list__item:last-of-type {
		border-bottom: none;
	}
	.movie-btn__box .start-btn {
		line-height: 1.5;
		font-size: 30px;
		padding: 0px 20.5px;
		height: 50px;
		width: 50px;
		top: 45%;
	}
}

/*live*/
.live-box {
    padding: 15px;
	padding-bottom: 30px;
	margin-top: 25%;
}
.live-box .live-img {
    width: 90%;
    text-align: center;
    margin: auto;
    margin-top: -20%;
    margin-bottom: 10%;
}
.live-box .live-data {
    margin: 6% auto;
    text-align: center;
}
.live-box .live-data .live-title h3 {
    font-size: 1.4em;
}
.live-box .live-data .live-date {
    color: #888888;
    margin-top: 12px;
    font-weight: bold;
}
.live-box .live-data .live-date::before {
    display: block;
    content: '';
    background-color: #e60012;
    width: 45px;
    height: 1px;
    margin: auto;
    margin-bottom: 10px;
}
.live-box .live-information p {
    line-height: 1.8;
}
.live-box .live-information a {
	text-decoration: underline;
}
.top-live.live-box {
	padding: 0;
	margin: 0;
}
.top-live .live-img {
	width: 100%;
    margin: auto;
    position: relative;
    display: inline-block;
    z-index: 2;
}
/*
.top-live .live-img::before {
    content: '';
    border-style: solid;
    border-width: 150px 150px 0 0;
    border-color: #e60013 transparent transparent transparent;
    position: absolute;
    top: -5px;
    left: -6px;
    z-index: -1;
}
.top-live .live-img::after {
    content: '';
    border-style: solid;
    border-width: 0 0 150px 150px;
    border-color: transparent transparent #e60013 transparent;
    position: absolute;
    bottom: -2px;
    right: -6px;
    z-index: -1;
}
*/
.top-live .live-img img {
	transition: all 0.3s ease 0s;
}
.top-live a:hover .live-img img {
	transform: translate(0.1875em,0.1875em);
}
.nowrap{
	white-space: nowrap;
}