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

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

body{
	background-color: #fff;
}

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

a{
	text-decoration: none;
}

ul{
	list-style: none;
}


/*全体フォント*/

*{
	font-family: 'Zen Maru Gothic', serif;
}

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

h2{
	font-size: 20px;
	font-weight: 500;
	color: #909CA5;
	line-height: 1.5;
}

.pagetitle{
	text-align: center;
}

.pagetitle h1{
	font-size:25px;
	font-weight: 700;
	color: white;
	background-color: #909CA5;
	display: inline-block;
	padding: 10px;
	filter: drop-shadow(3px 3px 0px #BEC1C3);
}

/*CDジャケ画像のサイズ最大300px固定*/
.cd_jk{
	max-width: 300px;
}

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

.container3{
	margin: 0 auto;
	padding: 40px auto;
	max-width: 800px;
	text-align: center;
	
}

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

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

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

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

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

@media (min-width:1200px) {
	.site-header .site-logo{
		display: block;
		width: 300px;
		padding: 0 0 0 20px;
		margin: 0;
	}
}

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

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

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

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

.site-header .main-nav__item a{
	display: block;
	padding: 20px;
	border-top: 1px solid #ccc;
	font-size: 18px;
	font-weight: 700;
	color: #bec1c3;
}

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

.site-header .main-nav__item a:hover{
	background-color: #bec1c3;
	color: white;
}

/* 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:1200px) {
	.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: #bec1c3;
	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: white;
}

.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:1200px) {
	.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);
}

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

.main-vis{
	margin-left: 10px;
	margin-right: 10px;
}

.asya{
	border-bottom: double #2F4CAB 3px;
	padding-bottom: 20px;
	margin-bottom: 50px;
}

/*PC以上でアー写とTL横並び*/
@media(min-width:1200px){
	.site-main .container{
		display: flex;
		max-width: 1000px;
		justify-content: center;
	}
	.site-main .container img{
		width: 680px;
		height: auto;
		flex: 1;
		margin-right: 20px;
	}
	.site-main .container .twitter{
		width: 300px;
	}
}

/*ニュース*/
.news_title{
	font-size: 18px;
	color: #2F4CAB;
}

.news-list{
	max-width: 500px;
	margin-bottom: 20px;
}

.date{
	font-size: 15px;
	color: #BEC1C3;
}

.title_link{
	font-size:15px;
	color: #BEC1C3;
	text-decoration: underline;
}

/*ニュース１件ずつページ*/

#news_one{
	margin: 80px 20px;
}

#news_one h3{
	font-size: 20px;
	font-weight: 500;
	color: #2F4CAB;
	margin-top: 40px;
	margin-bottom: 20px;
}

#news_one a{
	font-size: 15px;
	font-weight: 300;
	color:#2F4CAB;
	text-decoration: underline;
}

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

#news_one .pre{
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 15px;
	font-weight: 300;
	color: #909CA5;
	line-height: 1.5;
	
}

/*ニュース一覧*/
#news_all{
	margin: 80px 10px;
}

#news_all .pagetitle{
	margin-bottom: 40px;
}

#news_all h3{
	font-size: 20px;
	font-weight: 500;
	color: #2F4CAB;
	margin-top: 40px;
	margin-bottom: 20px;
}



#news_all a{
	font-size: 15px;
	font-weight: 300;
	color: #2F4CAB;
	text-decoration: underline;
}

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

#news_all .recent-list{
	border-bottom: double #2F4CAB 3px;
	padding-top: 30px;
	padding-bottom: 50px;
	
}



/*ツアー画像*/
.news{
	padding: 50px 20px;
}

.news img{
	width: 100%;
	height: auto;
	text-align: center;
}

/*ニューリリース*/
.release{
	background-image: url("../jj_img/CD_haikei.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}

.release_content{
	padding: 10px 20px;
	margin: 20px;
	text-align: center;
}

.release_content .cd_jk{
	border: solid white 5px;
	margin-left: auto;
	margin-right: auto;
}

.release_content h2{
	color: #FFFFFF;
	font-weight: 700;
}

.release_item{
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
}

@media(min-width:1200px){
	.release_content{
		display: flex;
		max-width: 100%;
		margin: 80px;
		justify-content: center;
		align-items: center;
	}
	
	.release_item{
		flex-basis: 30%;
	}
	
	.slide-wrapper{
		flex-basis: 70%;
	}
}

/*フッター*/
.footer{
	width: 100%;
	height: 50px;
	background-color: #BEC1C3;
	padding: 0;
	margin: 0;
}

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

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

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

.footer-link{
	font-size: 13px;
	color: white;
	text-decoration: underline;
	
}
/*スケジュール*/

#schedule{
	margin: 70px 10px; 
}

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

#disco{
	margin: 70px 10px;
}

/*ミュージックビデオ*/

#MV{
	margin: 70px 10px;
}

#MV .pagetitle{
	border-bottom: double #2F4CAB 3px;
	padding-bottom: 20px;
}

.MV{
	border-bottom: double #2F4CAB 3px;
	padding: 20px 0;
	text-align: center;
}

/*youtubeレスポンシブ*/
.youtube {
	position:relative;
	width: 100%;
	max-width: 560px;
	margin: 10px;
}

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

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

/*問い合わせページ*/
#contact{
	margin: 70px 10px;
}

.contact{
	text-align: center;
	padding-bottom: 40px;
}

.midashi{
	font-size: 20px;
	color: #2F4CAB;
	margin-bottom: 10px;
}

.form{
	padding-top: 20px;
	padding-bottom: 20px;
}

.btn{
	display: inline-block;
	border: solid 3px #2F4CAB;
	border-radius: 20px;
	font-weight: bold;
	padding: 10px 20px;
	font-size: 14px;
	color: white;
	transition: all 0.6s;
	cursor: pointer;
	background-color: #2F4CAB;
}

.btn:hover{
	background-color: white;
	color: #2F4CAB;
}

.wpcf7 input[name="your-name"] { /* 名前入力欄 */
 width: 100%;
	max-width: 500px;
}
.wpcf7 input[name="your-email"] { /* メール入力欄 */
 width: 100%;
	max-width: 500px;
}
.wpcf7 input[name="your-subject"] { /* タイトル入力欄 */
 width: 100%;
	max-width: 500px;
}
.wpcf7 textarea[name="your-message"] { /* 本文入力欄 */
 width: 100%;
	max-width: 500px;
}
