@charset "UTF-8";
/* CSS Document */

/*英語見出し用フォント 400/500/600
font-family: 'Shippori Mincho', serif;
/*文章基本フォント 300/400/500/700
font-family: 'Zen Kaku Gothic New', sans-serif;

緑：#007c80
青：#052bb7
赤：#8c0106
文字色：#161c2c*/

/*共通*/
html{
	scroll-behavior: smooth;
}

body{
	background-color: #F8F5F2;
	margin: 18px;
}

*{
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

img{
	max-width: 100%;
	height: auto;
}

a{
	text-decoration: none;
}

ul{
	list-style: none;
}

dd{
	margin: auto;
}

dl{
	margin: auto;
}

h1, h2, h3, h4, h5, h6{
  margin: 0;
  padding : 0;
}

p{
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #161c2c;
	line-height: 1.2;
}

/*h2*/
.page_title{
	font-family: 'Shippori Mincho', serif;
	color: #025B65;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	border-bottom: solid 2px #025B65;
}


/*h3*/
.date{
	font-family: 'Shippori Mincho', serif;
	font-size: 18px;
	font-weight: 500;
	color: #025B65;
	line-height: 1.5;
	margin-bottom: 5px;
}

.new{
	font-family: 'Shippori Mincho', serif;
	font-size: 15px;
	font-weight: 500;
	color: #8c0106;
	line-height: 1;
	margin-bottom: 3px;
	
}

.big_news{
	text-align: center;
	font-family: 'Shippori Mincho', serif;
	color: #025B65;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	margin-top:30px;
	margin-bottom: 10px;
}

.live_month{
	font-family: 'Shippori Mincho', serif;
	color: #e29676;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	border-bottom: dashed 2px #e29676;
	margin-bottom: 40px;
	margin-top: 40px;
}


/*h4*/
.event_title{
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #161C2C;
	text-decoration: underline;
	line-height: 1.3;
	margin-left: 20px;
}

.komidashi{
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #161C2C;
	line-height: 1.3;
	margin-top: 10px;
}

/*-----------------------改行-----------------------*/

/*PCでは無効（改行しない）*/
.sma{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}

@media(max-width:768px){
    .pc{
        display: none !important;
    }
}

/*-----------------------ボタンデザイン-----------------------*/
.btn{
	display: inline-block;
	border: solid 2px #161C2C;
	border-radius: 20px;
	font-weight: bold;
	padding: 10px 40px;
	font-size: 15px;
	color: #161C2C;
	transition: all 0.6s;
	cursor: pointer;
	background-color:#F8F5F2;
}

.btn:hover{
	color: #025B65;
	border: solid 2px #025B65;
}

/*-----------------------ヘッダー-----------------------*/
.site-header{
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	background-color: #F8F5F2;
	width: 100%;
	height: 60px;
	line-height: 1;
	z-index:10;
}

@media(min-width:768px){
	.site-header{
		align-items:center;
		justify-content: space-between;
	}
}

.site-logo{
	font-family: 'Shippori Mincho', serif;
	font-size: 30px;
	font-weight: 600;
	color: #161c2c;
	margin-top: 13px;
	margin-left: 10px;
}

@media(min-width:768px){
	.site-logo{
		margin-top: 0px;
	}
	
}


.site-header .site-nav{
	width: 100%;
}

@media (min-width:768px) {
	.site-header .site-nav{
		width: auto;
	}
}

.site-header .main-nav {
	display: none;
	padding: 0;
	margin: 0;
	margin-top: 8px;
	background-color: #F8F5F2;
}

@media (min-width:768px) {
	.site-header .main-nav {
		display: block;
		margin: 0;
		line-height: 0;
		background-color: #F8F5F2;
		
	}
}

.site-header .main-nav__item a{
	display: block;
	padding: 20px;
	font-size: 15px;
	color: #161c2c;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	text-align: center;
}

@media (min-width:768px) {
	.site-header .main-nav__item a{
	display: block;
	font-size: 15px;
	color: #161c2c;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	text-align: center;
		
	}
}

.site-header .main-nav__item a:hover{
	background-color: #F8F5F2;
	color: #025B65;
}

/*-----------------------フッター-----------------------*/

/*footer固定*/
.all {
	position: relative;
    padding-bottom: 50px;
    box-sizing: border-box;
    min-height: 100vh;
}

.footer {
      position: absolute;
      bottom: 0;
}

.footer{
	width: 100%;
	height: 50px;
	background-color: #F8F5F2;
	padding: 0;
	margin: 0;
}


.sns{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	
}

.sns_icon{
	width: 30px;
	height: 30px;
	margin: 10px 10px;
	padding: 0;
}

.c{
	font-size: 12px;
	color:#161c2c;
	text-align: center;
	padding-bottom: 20px;
	margin-top: 10px;
}

/*-----------------------home-----------------------*/

#home{
	margin-top: 80px;
}

.sns_2{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding-bottom: 20px;
	
}

.banner_img{
	max-width:350px;
	height: auto;
	margin: 0 auto;
	padding-bottom: 10px;
}

.banner{
	margin-top: 20px;
	margin-bottom: 20px;
}


/*PC表示*/
/*幅800px以内*/
@media (min-width:768px) {
	.top_photo{
		max-width: 800px;
		margin: 0 auto;
	}
	
	.sns_2{
		max-width: 800px;
		margin: 0 auto;		
	}
	
	.banner{
		display: flex;
		flex-direction: row;
		justify-content: center;
		
	}
	
	.banner_img{
		width: 100%;
		height: auto;
		margin: 5px;
	}
}

/*-----------------------youtube-----------------------*/

.youtube{
	margin-bottom: 50px;
}

/*PC表示*/
/*幅800px以内*/
@media (min-width:768px) {
	.youtube{
		max-width: 800px;
		margin: 0 auto;
		margin-bottom: 50px;
	}
}

/*-----------------------ライブスケジュール-----------------------*/

#live{
	margin-top: 80px;
	margin-bottom: 50px;
}

.schedule{
	margin-top: 50px;
	padding-bottom: 50px;
}

.content{
	margin-top: 80px;
}

.content_live{
	margin-bottom: 80px;
}

/*PC表示*/
/*幅800px以内*/
@media (min-width:768px) {
.schedule{
	max-width: 800px;
	margin: 0 auto;
	}
}


/*-----------------------ディスコグラフィー-----------------------*/

#disc{
	margin-top: 80px;
	margin-bottom: 50px;
}

.disc{
	margin-top: 50px;
	padding-bottom: 50px;
}

/*PC表示*/
/*幅800px以内*/
@media (min-width:768px) {
.disc{
	max-width: 800px;
	margin: 0 auto;
	}
}


/*-----------------------映像-----------------------*/

#mv{
	margin-top: 80px;
	margin-bottom: 50px;
}


@media (min-width:768px) {
.mv{
	max-width: 800px;
	margin: 0 auto;
	}
}

.more_btn{
	text-align: center;
	margin-bottom: 40px;
	margin-top: 40px;
}
	
/*-----------------------通販-----------------------*/

#shop{
	margin-top: 80px;
	margin-bottom: 50px;
}

.shop_entry{
	text-align: center;
	margin-top: 50px;
	color: #8C0106;
	text-decoration: underline;
}

@media (min-width:768px) {
.shop{
	max-width: 800px;
	margin: 0 auto;
	}
}


/*-----------------------といあわせ-----------------------*/

#contact{
	margin-top: 80px;
	margin-bottom: 50px;
}

.contact{
	padding-bottom: 50px;
}

.mail{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 40px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #8C0106;
	text-decoration: underline;
}


@media (min-width:768px) {
.contact{
	max-width: 800px;
	margin: 0 auto;
	}
}

/*-----------------------プロフィール-----------------------*/

#prof{
	margin-top: 80px;
	margin-bottom: 50px;
}

.prof{
	padding-bottom: 50px;
}

@media (min-width:768px) {
.prof{
	max-width: 800px;
	margin: 0 auto;
	}
}

.prof_photo{
	margin-top: 20px;
	margin-bottom: 20px;
}

/*-----------------------もどる-----------------------*/

.page_back{
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: center;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #161C2C;
	text-decoration: underline;
}

