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

/*共通*/

html{
	scroll-behavior: smooth;
}

body{
	background-color: white;
}

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

*{
	font-family: 'Shippori Mincho B1', serif;
}

a{
	text-decoration: none;
}

ul{
	list-style: none;
}

dd{
	margin: 0;
}

p{
	font-size: 15px;
	font-weight: 300;
	color: #181818;
	line-height: 1.5;
}

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

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

/*h2*/
.page_title{
	font-size: 20px;
	font-weight: 700;
	color: #333C7B;
	border-bottom: solid 3px #333C7B;
}

/*h3*/
.midashi{
	font-size: 18px;
	font-weight: 600;
	color: #333C7B;
	border-bottom: solid 3px #333C7B;
}

/*youtubeレスポンシブ*/

.MV{
	position:relative;
	width: 90%;
	max-width: 560px;
	margin: 20px;
}

.MV::before{
	content: "";
	display: block;
	width: 100%;
	padding-top: 56.25%;
}

.MV iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}


/*最大幅を800pxに固定して中央寄せ*/
.container{
	margin: 0 auto;
	padding: 40px 10px;
	max-width: 800px;
}

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

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

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

.site-header .site-logo{
	display: block;
	max-width: 250px;
	margin: 10px 0 0 20px;
}

@media (min-width:768px) {
	.site-header .site-logo{
		display: block;
		max-width: 350px;
		margin: 0 auto;
		margin-top: 10px;
		margin-bottom: 20px;
	}
}

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

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

.site-header .main-nav {
	display: none;
	padding: 0;
	margin: 0;
	background-color: #181818;
	border-bottom: 1px solid #ffffff;
}

@media (min-width:768px) {
	.site-header .main-nav {
		display: block;
		justify-content: center;
		margin: 0 auto;
		border-bottom: none;
		line-height: 0;
	}
}

.site-header .main-nav__item a{
	display: block;
	padding: 20px 30px;
	border-top: 1px solid #fff;
	font-size: 15px;
	font-weight: 800;
	color: #fff;
}

@media (min-width:768px) {
	.site-header .main-nav__item a{
		border-top: none;
	}
}

.site-header .main-nav__item a:hover{
	background-color: #fff;
	color: #181818;
}

/*--------------------------ナビメニュー-------------------*/
/* hamburger switch */
.site-header input[type="checkbox"]:checked ~ .main-nav {
	display: block;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.site-header input[type="checkbox"]:checked ~ .main-nav__item {
	flex: 1;
	line-height: 0;
}

@media (min-width:768px) {
	.site-header input[type="checkbox"]:checked ~ .main-nav,
	.site-header input[type="checkbox"]~ .main-nav {
		display: flex;
		flex-direction: row;
	}
}

/* hamburger icon */
.site-header .site-nav__toggle {
	display: none;
}
.site-header .site-nav__toggle-label{
	position: absolute;
	display: block;
	top: 10px;
	right: 10px;
}

.site-header .site-nav__toggle-label span {
	display: block;
	width: 40px;
	height: 39px;
	background-color: #181818;
	cursor: pointer;
}

.site-header .site-nav__toggle-label span span{
	display: block;
	overflow: hidden;
	width: 1px;
	height: 1px;
}
.site-header .site-nav__toggle-label span span::before,
.site-header .site-nav__toggle-label span span::after,
.site-header .site-nav__toggle-label span::after {
	position: absolute;
	left: 10px;
	content: "";
	width: 20px;
	height: 3px;
	background-color: #ffffff;
}

.site-header .site-nav__toggle-label span span::before {
	top: 10px;
}

.site-header .site-nav__toggle-label span span::after {
	top: 18px;
}

.site-header .site-nav__toggle-label span::after {
	bottom: 10px;
}

@media (min-width:768px) {
	.site-header .site-nav__toggle-label{
		display: none;
	}
}

/* hamburger icon checked */
.site-header input[type="checkbox"]:checked ~ .site-nav__toggle-label span span::before {
	top: 19px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.site-header input[type="checkbox"]:checked ~ .site-nav__toggle-label span span::after{
	display: none;
}

.site-header input[type="checkbox"]:checked ~ .site-nav__toggle-label span::after {
	top: 19px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}


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

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

.footer-link{
	color: white;
	font-size: 12px;
	text-decoration: underline;
}

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

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

.sns .c{
	font-size: 12px;
	color:white;
	margin: 10px 5px;
	padding: 0;
}

/*--------------------------サイトメイン-------------------*/

.site-main{
	margin-top: 100px;
}

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


.news{
	border-bottom: solid 3px #333C7B;
	margin-top:20px;
	margin-bottom: 40px;
}

.TL{
	background-color: rgba(51,60,123,0.7);
	padding-top:20px;
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.tw{
	width: 90%;
}

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

#prof{
	margin-top: 100px;
}

@media (min-width:768px){
	#prof{
		margin-top: 150px;
	}
}

.main_img{
	margin: 0 auto;
	padding: 10px;
}

.band_prof{
	margin-top: 50px;
	border-bottom: solid 3px #333C7B;
}

.band_prof p{
	text-align: center;
}

.band_sns img{
	max-width: 40px;
	height: auto;
	margin-right: 10px;
	vertical-align: middle;
}

.band_sns p{
	font-size: 15px;
	vertical-align: middle;
	margin-bottom: 40px;
}

.member_prof{
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	border-bottom: solid 3px #333C7B;
}

.name{
	text-align: center;
	margin-bottom: 40px;
}

.name p{
	font-size: 18px;
	margin-bottom: 5px;
}

.name img{
	max-width: 40px;
	height: auto;
}

@media (min-width:768px){
	.member_prof{
		display: flex;
		justify-content: center;
	}
	.name{
		margin-left: 40px;
		margin-right: 40px;
	}
}

.aztic{
	padding-top: 50px;
	margin-bottom: 40px;
}
.aztic img{
	max-width: 200px;
}

/*------------------------スケジュール---------------------*/

#schedule{
	margin-top: 100px;
}

@media (min-width:768px){
	#schedule{
		margin-top: 150px;
	}
}

article{
	margin: 0 10px 30px 10px;
}

.live_img{
	max-width: 300px;
	height: auto;
	padding: 5px;
	margin: 0 auto;
}

.live_title{
	color: #181818;
	font-size:18px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 15px;
	
}

.live_place,.live_cast{
	color: #181818;
	font-size:15px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 8px;
}

.live_time,.live_charge{
	color: #181818;
	font-size:14px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 5px;
	text-align: end;
}

.live_ticket p{
	text-align: end;
	text-decoration: underline;
	color: #181818;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 8px;
}

@media (min-width:768px){
	.live_content{
		display: flex;
		justify-content: space-around;
	}
	.live_img{
		margin: 20px;
	}
	.live_more{
		max-width: 350px;
	}
	.live_cast{
		margin-bottom: 50px;
	}
}