@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}
a img {
    margin-bottom: 1rem;
}
a img:hover {
	opacity: 0.8;
}
.underline {
	border-bottom: 3px solid var(--base-color);
	padding-bottom: 0.5rem;
}

/*ヘッダー
-------------------------------------*/
.head {
	display: flex;
    flex-direction: row;
    padding: 1rem 0 0 0;
}

.head h1 { 
    padding: 1rem 0;
}
.telbox {
	margin-left: auto;
	font-size: 3.0rem;
	padding: 1rem 0 0 0;
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin-bottom: 1rem;
}
nav li {
    display: block;
    flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
}
nav a:hover {
    background-color: var(--back-color);   
}
nav a {
    padding: 1rem;
}



@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.head {
	flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}
.telbox {
	margin-left: 0;
	text-align: center;
}
.head #open,#close  {
    position: absolute;
    top: 28px;
    right: 12px;
    }
nav ul {
	flex-direction: column;
}

nav li {
	padding-top: 0;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}

#sns{
	margin-top: 40px;
}

#sns ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin-bottom: 1rem;
}
#sns li {
    display: block;
    flex: 1 0 auto;
}
#sns li a {
    text-decoration: none;
    text-align: center;
}
#sns a:hover {
    background-color: var(--back-color);   
}
#sns a {
    padding: 1rem;
}


/*メイン画像
-------------------------------------*/
.mainimg img {
	width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 5rem 0;
}

/*新着情報
-------------------------------------*/
.news h2 {
    border-bottom: 3px solid var(--base-color);
	padding-bottom: 0.5rem;
}
.news li {
    list-style-type: none;
	border-bottom: 1px solid var(--border-color);
	padding: 0.5rem 0;
}

.news p {
	padding: 0.5rem;
	font-size: 1.8rem;
	font-weight: normal;
	font-style: normal;
	margin: 0;
}

.news img {
  width: 167px;
  height: 88px;
  object-fit: cover; /* 画像のリサイズ */
}

.news hr {
	margin-top: 10px;
	margin-bottom: 10px;
}

.view-more {
  text-align: right;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

.date {
	float: left;
	margin-bottom: 0.5em;
	color: darkgrey
}

.title {
	padding-left: 120px;
	margin-bottom: 0.5em;
}

.newsdate{
	color: darkgrey;
	font-size: 1.2rem;
}

/*movie
-------------------------------------*/
.movie {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}

.movie h2 {
    border-bottom: 3px solid black;
	padding-bottom: 0.5rem;
}

/*live_list
-------------------------------------*/
.live_list {
    margin: 20px auto;
    max-width: 100%;
    position: relative;
}

.live_list h2 {
    border-bottom: 3px solid black;
	padding-bottom: 0.5rem;
}

.live_list img{
	height: 171px;
}

/*newrelease
-------------------------------------*/
.newrelease {
}

.newrelease h2 {
    border-bottom: 3px solid black;
	padding-bottom: 0.5rem;
}

.newrelease p{
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 0;
}

.newrelease h3{
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 0;
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color);
    padding: 5rem 0;
}
footer h5 {
    border-bottom: 3px solid var(--border-color);
}

.footer_logo{
	width: 100px;
	margin-left: auto;
	margin-right: auto;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #F7F7F7;
}
.copyright a {
    color: var(--base-color);
    text-decoration: none;
	display: inline-block;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 100px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background-color: var(--link-color);
}
/*パンくずリスト
-----------------------------------*/
.breadcrumb {
    margin: 0 0 1em 0;
    padding: 0;	
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: var(--link-color);
}

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

/*liveschedule
-------------------------------------*/
.liveschedule {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.0rem;
    position: relative;
}

.liveschedule h2 {
    border-bottom: 3px solid black;
	padding-bottom: 0.5rem;
}

.pastlive {
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	text-align: center;
}

/*livedate
-------------------------------------*/
.live_deta {
  width: 100%;
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
	margin-top: 20px;
  border-bottom: 1px dashed gray;
}

.live_mom {
  font-size: 2rem;
  height: 40px;
  margin-bottom: 0;
  line-height: 40px;
}

.live_day {
  font-size: 2.5rem;
  font-weight: 400;
  height: 40px;
  margin-bottom: 0;
  line-height: 40px;
}

.livedate h3 {
  position: relative;
  padding: 1em 0.9em;
  text-align: center;
}

.livedate h3:before,
.livedate h3:after {
  position: absolute;
  content: '';
}

.livedate h3:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

.livedate h3:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

.event_title h4{
	position: relative;
	padding-bottom: 10px;
}

.event_title h4:after {
	content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #dcdcdc, #dcdcdc 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #dcdcdc, #dcdcdc 2px, #fff 2px, #fff 4px);
}

.event_title span{
	display: inline-block;
	background: #a9a9a9;
	color: #fff;
	letter-spacing: .05em;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 0.7em;
	font-weight: bold;
	margin-right: 5px;
}

.event_title h3{
	display: inline-block;
	background: #000;
	color: #fff;
	letter-spacing: .05em;
	font-weight: bold;
	margin-right: 5px;
    padding: .3em .5em;
    font-size: 1.2em;
}

.event_title .liveact{
	font-size: 1.2em;
	font-weight: 700;
}

/*livedate2
-------------------------------------*/
.live_deta2{
  width: 100%;
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
}



/*PCスマホ表示切替
-------------------------------------*/
.example>div{
}
@media(min-width:751px){
    .sp{
        display: none !important;
    }
}
@media(max-width:750px){
    .pc{
        display: none !important;
    }
}

.sp .button02 {
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1.3em;
	text-align: center;
}
.button02:hover {
  color: #2f4f4f;
  background-color: #b0e0e6;
}



/*margin
-------------------------------------*/
.margin10 {
	margin: 10px;
}

.margin20 {
	margin: 20px;
}


/*news_list
-------------------------------------*/
.news_list {
	width: 100%;
	padding: 15px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	border: 1px solid black;
}

.news_list h3{
	text-transform: none;
  padding-bottom: 5px;
  border-bottom: 1px dashed #666;
	font-weight: 700;
	font-size: 150%;
}

/*sidebar_live
-------------------------------------*/
.sidebar_live{
	border-bottom: 1px dashed #666;
	margin-bottom: 15px;
}

.sidebar_live h3{
	font-size: 90%;
	margin-bottom: 10px;
}

.sidebar_live h4{
	line-height: 1.6;
	font-size: 100%;
	font-family: 'Noto Sans JP',sans-serif;
	font-weight: 700;
	text-align: left;
	margin-bottom: 10px;
}

.sidebar_live p{
	font-size: 76%;
	padding-top: 2px;
	padding-left: 20px;
	text-align: right;
	margin-bottom: 10px;
}

/*biography
-------------------------------------*/
.biography{
	margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.0rem;
    position: relative;
}

.biography h2{
    border-bottom: 3px solid var(--base-color);
	padding-bottom: 0.5rem;
}

.biography h5{
	text-align: center;
	font-size: 2.4rem;
	font-weight: 300;
	margin-top: 20px;
}

.m_sns{
}

.m_sns p{
	text-align: center;
}

.m_sns h4{
}

.m_sns ul{
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin-bottom: 1rem;
}

.m_sns li{
    display: block;
    flex: 1 0 auto;
}

.m_sns li a{
    text-decoration: none;
    text-align: center;
}

.m_sns a:hover{
    background-color: var(--back-color);   
}

.m_sns a{
    padding: 1rem;
}

.mvlist li{
	list-style: none;
	width: 33%;
	margin-bottom: 20px;
	margin-left: 2px;
}

.mvlist ul{
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.mvlist p{
	font-size: 1.4rem;
  font-weight: 700;
}

@media (max-width: 800px) {
	.mvlist ul li {
    width: 100%;
  }
}

/*discography
-------------------------------------*/
.disc_list ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.disc_list li{
	list-style: none;
  width: 33%;
  margin-bottom: 20px;
	margin-left: 2px;
}

.disc_list a img{
	margin-bottom: 0;
}

.disco-ttl{
font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
	padding-left: 10px;
}

.disc-detail-box{
	width: 100px;
	display:flex;
	justify-content: center;
	align-items: center;
	margin-right: 5px;
	padding: 5px;
	font-size: 1.3rem;
	background-color: #A2A2A2;
	color: #ffffffff;
}

@media (max-width: 800px) {
	.disc_list ul li {
    width: 100%;
  }
}

.disc_detail{
	display: flex;
	box-sizing: border-box;
	float: none;
	line-height: normal;
	position: static;
	z-index: auto;
	margin-bottom: 10px;
}

.disc_text{
	padding: 5px;
	font-size: 1.3rem;
	white-space: pre-wrap;
	width: 100%;
	box-sizing: border-box;
	text-decoration: inherit;
}