@charset "UTF-8";

*{
	color: #4e4e4e;
    font-family: 'Noto Sans JP', sans-serif;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
	cursor: pointer;
	display: block
}

img{
	width: 100%;
}

.box_flex{
	display: flex;
}

.container{
	text-align: center;
}

.sec_gallery{
	background: #EEE;
}

.sec_ticket{
	background: #def2ff;
}

.sec_blue{
	background-image: url("../images/bg_blue.png");
	background-repeat: repeat-x;
	background-position: top center;
	padding-top: 25px;
}

.sec_yellow{
	background-image: url("../images/bg_yellow.png");
	background-repeat: repeat-x;
	background-position: top center;
	padding-top: 25px;
}


/*ボタン共通*/
input[type="submit"] {
	-webkit-appearance: none;
}

.btn_cmn{
	border-radius: 30px;
	height: 45px;
	margin: 0 auto;
}

.btn_cmn:hover{
	cursor: pointer;
}

.btn_cmn p{
	display: block;
}

.btn_1{
	background: #52b9fa;
	color: #FFF;
}

.btn_1 p{
	line-height: 45px;
	color: #FFF;
}

.btn_2{
	border: 3px solid #52b9fa;
}

.btn_2 p{
	line-height: 39px;
	color: #52b9fa;
}
 
/*ヘッダー共通*/
.header_box{
	width: 100%;
	background-color: #FFF;
	z-index: 10;
}

/*キービジュアル共通*/
.box_hero img{
	vertical-align: bottom;
}


/*ニュース共通*/
.sec_news{
	background: #4e4e4e;
	display: table;
	width: 100%;
}

.sec_news p,span{
	color: #FFF;
}

.ttl_news{
	text-align: center;
	display: table-cell;
}

.contents_news{
	display: table-cell;
	vertical-align: middle;
}

.date{
	padding-right: 5px;
}

/*ギャラリー共通*/
.list_more {
	display: none;
}

/*入団案内*/
.list_detail:last-child{
	margin-bottom: 0;
}

h4{
	background: #faec52;
	padding: 10px 0;
}

.sec_join p{
	text-align: left;
	margin: 0 auto;
}

.sec_join .small_txt{
	font-size: 0.8em;
	color: #4e4e4e;
}

.sec_join .btn_cmn p{
	text-align: center;
	margin: auto;
}

/*チケット*/
.box_ticket{
	background: #FFF;
	margin: 0 auto;
}

.box_ticket .small_txt{
	font-size: 0.8em;
	margin-top: 10px;
}

/*SNS*/
.sec_sns ul{
	text-align: center;
}

.sec_sns li{
	display: inline-block;
}

/*フッター*/
footer{
	background: #EEE;
	text-align: center;
}

footer p{
	font-size: 0.8em;
	line-height: 2.4em;
}

.copy{
	background: #52b9fa;
}

.copy p{
	font-size: 0.8em;
	color: #FFF;
}

h5{
	display: inline-block;
	border-bottom: 5px dotted #faec52;	
}

/*お問い合わせ*/
.sec_inquiry .small_txt{
	color: #4E4E4E;
	font-size: 0.8em;
}	

.list_inquiry {
	margin-bottom: 20px;
	padding-bottom: 20px;		
	border-bottom: 2px dotted #5F5F5F;
}

input,textarea{
	background: #DEF2FF;
	border: none;
	height: 30px;
	padding: 5px;
}

.sec_inquiry dl{
	margin: 0 auto;
}

.sec_inquiry dt{
	text-align: left;
}

.gender{
	vertical-align: middle;
	margin-right: 5px;
}

textarea{
	height: 150px;
	resize: none;
}

.btn_submit{
	border:none;
}

/*サンクスページ*/
.sec_thanks h5{
	margin-bottom: 30px;
}

.txt_thanks p{
	margin-bottom: 20px;
	line-height: 1.5;
}


/*SP*/
@media screen and (max-width: 768px) { 
	.only_pc{
		display: none;
	}

	.only_sp{
		display: block;
	}

	.header_box{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 75px;
	}

	h1{
		height: 50px;
	}

	h1 img{
		width: auto;
		height: 75%;
		margin-top: 5px;
		margin-left: 15px;
	}

	.btn_cmn{
		width: 80%;
	}

/*ナビゲーションメニュー*/
	.nav_menu{
		position: fixed;
		z-index: 2;
		top: 0;
		left: 0;
		background: #929292;
		color: #fff;
		text-align: center;
		width: 100%;
		height: 100%;
		transform: translateY(-100%);
		transition: all 0.5s;
	}

	.nav_menu.active{
		transform: translateY(0%);
	}

	.logo_nav{
		margin: 75px auto 35px;
		width: 20%;
	}

	.nav_global li{
		display: inline-block;
		width: 30%;
		margin-bottom: 20px;

	}

	.nav_global a{
		font-size: 0.8em;
	}

	.nav_global img{
		width: 50%;
	}

	.nav_global p{
		color: #FFF;
		font-weight: bold;
		margin-top: 10px;
	}

	.nav_sns li{
		display: inline-block;
		margin: 5vw 5vw 0;
	}

/*ハンバーガーメニュートグル*/
	.Toggle {
	    display: block;
	    position: absolute;
	    right: 15px;
	    top: 25px;
	    width: 50px;
	    height: 50px;
	    z-index: 3;
	}
 
	.Toggle span {
	    display: block;
	    position: absolute;
	    width: 38px;
	    border-bottom: solid 4px #4e4e4e;
	    border-radius: 4px;
	    -webkit-transition: .35s ease-in-out;
	    -moz-transition: .35s ease-in-out;
	    transition: .35s ease-in-out;
	    left: 6px;
	}
	 
	.Toggle span:nth-child(1) {
	    top: 10px;
	}
	 
	.Toggle span:nth-child(2) {
	    top: 22px;
	}
	 
	.Toggle span:nth-child(3) {
	    top: 34px;
	}
	 
	.Toggle.active span:nth-child(1) {
	    top: 19px;
	    left: 8px;
	    -webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	    border-bottom: solid 4px #FFF;
	}
	 
	.Toggle.active span:nth-child(2),
	.Toggle.active span:nth-child(3) {
	    top: 19px;
	    -webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    transform: rotate(45deg);
	    border-bottom: solid 4px #FFF;
	}

/*キービジュアル*/
	.box_hero{
		margin-top: 75px;
	}

/*ニュース*/
	.sec_news{
		height: 20vw;
	}

	.sec_news p,span{
		font-size: 0.8em;
	}

	.ttl_news{
		width: 20vw;
		border-right: 1px dotted #FFF;
		line-height: 20vw;
	}

	.contents_news{
		padding-left: 10px;
	}

/*メインコンテンツ*/
	.container{
		margin: 0 3vw;
		padding:30px 0 50px;
	}

	h2{
		font-size: 6vw;
		margin-bottom: 15px;
	}

/*ぴーすとは*/	
	h3{
		font-size: 5.5vw;
		padding: 15px 0 20px;
		background-image: url("../images/ttl_about_sp.png");
		background-repeat: no-repeat;
		background-size: 75%;
		background-position: center;
	}

	#about p{
		font-size: 0.9em;
		line-height: 1.8em;
	}

	#about img{
		margin-top: 20px;
	}

	.peace{
		margin-bottom: 30px;
	}

/*ギャラリー*/
	.sec_gallery li{
		background: #FFF;
		margin: 0 auto 20px;
		padding: 10px;
		width: 80%;
	}

	.ttl_gallery{
		margin:10px 0;
	}

/*入団案内*/
	.list_detail{
		margin-bottom:20px;
	}

	h4{
		width: 80%;
		margin: 0 auto 10px;
	}

	.sec_join p{
		width: 70%;
	}

	.btn_2{
		margin-bottom: 20px;
	}

	.btn_2:last-child{
		margin-bottom: 0;
	}

/*チケット*/
	.box_ticket{
		width: 90%;
		padding: 15px;
	}

/*SNS*/
	.sec_sns ul{
		text-align: center;
	}

	.sec_sns li{
		width: 10vw;
		margin: 10vw 5vw;
	}

/*フッター*/
	footer{
		padding-top: 20px;
	}

	footer img{
		width: 20%;
		margin: 10px 0;
	}

	.copy{
		padding: 3px 0;
	}

/*トップに戻る*/
	.page_top{
	  width: 50px;
	  height: 50px;
	  position: fixed;
	  right: 3vw;
	  bottom: 3vw;
	  background: #000;
	  opacity: 0.6;
	  border-radius: 50%;
	}

	.page_top a{
	  position: relative;
	  width: 50px;
	  height: 50px;
	}

	.page_top a::before{
	  font-family: 'Font Awesome 5 Free';
	  font-weight: 900;
	  content: '\f106';
	  font-size: 25px;
	  color: #fff;
	  position: absolute;
	  width: 25px;
	  height: 25px;
	  top: -5px;
	  bottom: 0;
	  right: 0;
	  left: 0;
	  margin: auto;
	  text-align: center;
	}	

/*団員専用ページ*/
	h5{
		font-size: 5.5vw;
		margin-bottom: 10px;
	}

	.sec_schedule{
		margin-top: 75px;
	}

	.tbl_schedule {
		width: 90%;
		margin: 0 auto 20px;
	}
	
	.tbl_schedule .thead {
		display: none;
	}
	
	.tbl_schedule tr {
		width: 100%;
	}

	.tbl_schedule td {
		display: block;
		text-align: left;
		width: 100%;
		line-height: 1.8em;
		margin-bottom: 15px;
	}
	
	.tbl_schedule td:first-child {
		background: #faec52;
		font-weight: bold;
		text-align: center;
	}
	
	.tbl_schedule td:before {
		content: attr(data-label);
		display: block;
		font-weight: bold;
		border-bottom: 2px dotted #faec52;
	}

/*ギャラリー作品ページ*/
	.sec_cmn_gallery{
		margin-top: 75px;
	}

	.box_cmn_gallery img{
		width: 90%;
		margin-bottom: 20px;
	}

	.box_detail,
	.box_story{
		width: 90%;
		margin: 0 auto 20px;
		font-size: 4vw;
	}

	.theater{
		margin-bottom: 10px;
	}

	.box_staff,
	.box_name{
		text-align: left;
	}

	.box_name{
		margin-left: 5vw;
	}

	.box_story h5{
		font-size: 5vw;
	}

	.box_story p{
		line-height: 1.75;
		text-align: left;
	} 

/*お問い合わせ*/
	.sec_inquiry{
		margin-top: 75px;
	}

	.txt_inquiry{
		margin: 20px 0;
		line-height: 1.5;
	}

	.sec_inquiry .box_flex{
		flex-direction: column;
	}

	.sec_inquiry dt{
		margin-bottom: 5px;
	}

	.input_name{
		width: 48%;
	}

	.input_address{
		width: 98%;
	}

	.left{
		text-align: left;
	}

	textarea{
		width: 98%;
	}

/*サンクスページ*/
	.sec_thanks{
		margin-top: 75px;
	}

}

/*PC*/
@media screen and (min-width: 769px) { 
	.only_sp{
		display: none;
	}

	.only_pc{
		display: block;
	}

	header,footer,section{
		min-width: 1200px;
	}

	.container,.container_pc{
		width: 1200px;
		margin: 0 auto;
		padding: 0;
	}

	.btn_cmn{
		width: 30%;
	}

/*ヘッダーメニュー*/
	.header_box{
		height: 130px;
	}

	.header_box ul{
		display: flex;
		justify-content: center;
		margin: 15px 0;
	}

	.header_box li{
		border-left: 2px dotted #4e4e4e;
		text-align: center;
	}

	.header_box li:nth-child(-n+3),
	.header_box li:nth-last-child(-n+3)
	{
		width: 120px;
	}

	.logo{
		width: 300px;
	}

	.header_box li:last-child{
		border-right: 2px dotted #4e4e4e;
	}

	.header_box img{
		width: 60px;
	}

	.logo img{
		width: 200px;
	}

/*メインビジュアル*/
	.box_hero{
		min-width: 1200px;
	}

/*ニュース*/
	.sec_news{
		height: 100px;
	}

	.ttl_news{
		width: 100px;
		border-right: 2px dotted #FFF;
		line-height: 100px;
	}

	.contents_news{
		padding-left: 20px;
	}

/*メインコンテンツ*/
	.container{
		padding: 50px 0 100px;
	}

	h2{
		margin-bottom: 30px;
		font-size: 2em;
	}	

/*ぴーすとは*/	
	h3{
		font-size: 1.8em;
		padding: 30px 0 40px;
		background-image: url("../images/ttl_about_pc.png");
		background-repeat: no-repeat;
		background-size: 75%;
		background-position: center;
	}

	#about p{
		line-height: 2.5;
	}

	#about img{
		width: 50%;
		margin: 50px auto 0;
	}

	.peace{
		margin-bottom: 80px;
	}

/*ギャラリー*/
	.sec_gallery ul{
		overflow: auto;
	}

	.list_more{
		clear: left;
	}

	.sec_gallery li{
		float: left;
		background: #FFF;
		margin: 0 10px 50px;
		padding: 10px;
		width: 380px;
	}

	.ttl_gallery{
		margin:10px 0;
	}

	.ttl_gallery p:first-child{
		margin-bottom: 10px;
	}

/*入団案内*/
	.list_detail{
		width: 70%;
		text-align: left;
		margin: 0 auto 50px;
	}

	h4{
		text-align: center;
		width: 270px;
		display: inline-block;
	}

	.sec_join p{
		display: inline-block;
		margin-left: 50px;
		vertical-align: middle;
	}

	.btn_2{
		margin-bottom: 50px;
	}

	.btn_2:last-child{
		margin-bottom: 0;
	}

/*チケット*/
	.box_ticket{
		width: 70%;
		padding: 50px;
	}

/*SNS*/
	.sec_sns li{
		width: 60px;
		margin: 50px 30px;
	}

/*フッター*/
	footer{
		padding-top: 30px;
	}

	footer img{
		width: 80px;
		margin: 20px 0;
	}

	.copy{
		padding: 10px 0;
	}

	.copy p{
		width: 1200px;
		margin: 0 auto;
	}

/*団員専用ページ*/
	h5{
		font-size: 1.2em;
		margin-bottom: 10px;
	}

	.tbl_schedule {
		margin: 0 auto 50px;
	}

	.tbl_schedule:last-child {
		margin: 0;
	}

	.tbl_schedule tr {
		height: 40px;
		vertical-align: middle;
	}
		
	.tbl_schedule th {
		background: #faf6cb;
		vertical-align: middle;
	}

	.tbl_schedule td {
		width: 300px;
		border-bottom: 3px dotted #dcdcdc;
		border-right: 3px dotted #dcdcdc;
		vertical-align: middle;
	}
	
	.tbl_schedule td:first-child {
		background: #faec52;
		font-weight: bold;
		text-align: center;
		width: 150px;
		border: none;
	}

/*ギャラリー作品ページ*/
	.box_cmn_gallery{
		margin: 50px 10px;
		display: flex;
		justify-content: space-between;
	}

	.box_cmn_gallery img{
		width: 380px;
	}

	.box_detail{
		margin: 0 auto;
	}

	.box_detail p{
		line-height: 2em;
	}

	.theater{
		margin-bottom: 10px;
	}

	.box_staff{
		width: 50%;
		text-align: right;
		margin-right: 10px;
	}

	.box_name{
		width: 50%;
		text-align: left;
		margin-left: 10px;		
	}

	.box_story{
		margin: 30px auto 0;
		width: 60%;
	}

	.box_story p{
		line-height: 1.5;
		text-align: left;
	}

/*お問い合わせ*/
	.txt_inquiry{
		margin:30px 0 50px;
		line-height: 1.5;
	}

	.sec_inquiry .small_txt{
		color: #4E4E4E;
		font-size: 0.8em;
	}	

	.list_inquiry {
		margin-bottom: 20px;
		padding-bottom: 20px;		
		border-bottom: 2px dotted #5F5F5F;
	}

	input,textarea{
		background: #DEF2FF;
		border: none;
		height: 30px;
		padding: 5px;
	}

	.sec_inquiry dl{
		width: 65%;
		margin: 0 auto;
	}

	.sec_inquiry dt{
		width: 210px;
		text-align: left;
	}

	.input_name{
		width: 280px;
	}

	.input_address{
		width: 560px;
	}

	label{
		margin-left: 20px;
	}

	textarea{
		width: 560px;
		height: 150px;
		resize: none;
	}

	.btn_submit{
		border:none;
	}

}