/* Reset style */
/**　水色　#8dd1eb　カーキ色　 #c8b62f**/
* {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  }
body{
	text-align: left;
    font-size: 18px;
	color: #424444; 
    background: #ffffff;
    line-height: 1.3em;
    }

a { text-decoration: none; }
a:link { color:  #4b9b26; }
a:hover { color:  #4b9b26; }
a:active { color:  #4b9b26; }
a:visited { color:  #4b9b26; }

/********※スマホのみ表示**********/
@media(min-width:750px){
    .pc{
        display: none !important;
    }
}
/********※PCのみ表示**********/
@media(max-width:750px){
    .sp{
        display: none !important;
    }
}
/*PCでは無効（改行しない）*/
.smbr{
	display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:750px) {
	.smbr{
		display: block;
	}
}

/*******index.html********/
/**ヘッダー部分**/
	.gnav{
		background:  #5a9c03b0;
		display: flex;
		position: fixed;
		justify-content: left;
		width: 100%;
		height: 75px; /**mainのpadding-topの数値と数値を合わせる**/
		padding-left: 10px;
	}
	.gnav ul{
		margin-left: 2px;
		display: flex;
		list-style: none;
	}
	.gnav ul li a{
		width: 120px;
		height: 60px;
		border-radius: 15px;
		font-weight: bold;
		margin: 8px 4px;
		padding-top: 12px;
		color: black;
		display: block;
		text-align: center;
		vertical-align: middle;
		text-decoration: none;
		transition: 0.1s;
	}
	.gnav ul li a.gnavitem{
		padding-top: 16px;
		color: whitesmoke;
	}
	.gnav ul li a.gnavitem:hover{
		color: white;
		background: #4d2b0ba2;
	}
	.gnav ul li.logo a{
		width: 150px;
		height: 60px;
		margin: 3px 0;
	}
	main { padding-top: 75px;/**gnavのheightと数値を合わせる**/ }

	/*******全ページ共通　フッター********/
footer{
	width: 100%;
	background:  #30539c;
	color: #e6eaf7;
	line-height: 1.2em;
	padding-top: 20px;
	padding-bottom: 30px;
	font-family: serif;
	position: absolute;
	height: auto;
}
footer p{
	font-size: 0.9em;
	font-family: serif;
	text-align: center;
}
.footerlogo{
	width: 180px;
	display: block;
	margin: 0 auto 10px auto;
}

/**トップページ**/
/***　hの設定***/
	h2{
		font-size: 1.3em;
		margin: 30px 0 5px 0;
		text-align: center;
		/**line-height: 1em;**/
		font-weight: bold;
	}
	h3{
		text-align: center;
		font-size: 1.1em;
		margin: 30px auto 10px auto;
		font-weight: 700;
	}
	h3 span{
		font-size: 0.6em;
	}
	/**公演名**/
	.title{
		width: 100%;
		height: auto;
		padding: 15px 0 20px 0;
		text-align: center;
		/**line-height: 1.3em;**/
		background:  #5a9c03de;
		color: whitesmoke;
	}
	.title h1{
		line-height: 1.3em;
		margin: 5px auto 5px auto;
		font-size: 2.4em;
		/**padding-bottom: 1%;**/
		font-family:  serif;
		font-weight: 700;
		letter-spacing: 0.1rem;
	}
	.title h1 span{
		font-size: 0.8em;
	}
	.title h2{
		font-size: 1.1em;
		line-height: 1.3em;
		margin: 10px auto 10px auto;
		text-align: center;
		font-weight: bold;
	}
	.title p{
		font-family: serif;
		margin-top: 5px;
		font-weight: 600;
	}
	
	/**チラシ画像**/
	img.tirashi{
		width: 500px;
		margin: 15px auto 0 auto;
		/**vertical-align: top;**/
	}
	img.bigtirashi{
		width: 600px;
		margin: 0 10px 10px 10px;
		display: block;
	}
	.zoom-image{
		width: 500px;
		margin: 1% auto 0 auto;
		display: block; /* インライン要素として表示 */
		transition: transform 0.4s ease; /* ホバー時のアニメーション */
	}
	/*.zoom-image:hover{
	transform: scale(1.01); /* ホバー時に1.2倍に拡大
	}*/
	.zoom-image img{
	width: 500px;  /*縮小画像の幅 */
	height: auto; /* 高さを自動調整 */
	margin: 0 auto 10px auto;
	}

	/**キャッチコピー・作品概要**/
	.intro,.catch1{
		width: 500px;
		/*padding: 0 25% 1% 25%;*/
		line-height: 1.5em;
		border-style: none;
		text-align: left;
		margin: 0 auto 10px auto;
	}
	.catch{
		font-size: 1.6em;
		font-weight: bold;
		margin: 5px auto 10px auto;
		line-height: 1.3em;
	}
	.catch1{
		width: 420px;
		font-size: 1.6em;
		letter-spacing: 0.1em;
		margin: 20px auto 25px auto;
		padding: 0 4px 3px 4px;
		background: #c1c40e;
		color: black;
		text-align: center;
	}
	.intro p{
		font-family: sans-serif;
		font-weight: 400;
		font-size: 0.9em;
		line-height: 1.4em;
		padding: 8px 0;
		letter-spacing: 0.05em;
	}
	.intro p span{
		font-weight: 700;
		font-family: sans-serif;
	}
	/****スタッフ・あらすじ・出演者など*****/
	.whitesmoke{
		background: whitesmoke;
		width: 100%;
		padding: 5px;
		line-height: 1.5em;
		text-align: left;
	}
	/**「作・演出」「あらすじ」「スタッフ」「出演」見出し
	.whitesmoke h2{
		text-align: center;
	}**/
	/**「（作家の名前）」見出し**/
	.whitesmoke h3{
		font-weight: 900;
	}
	.whitesmoke h3 span{
		font-size: 0.8em;
	}
	.whitesmoke p{
		width: 500px;
		line-height: 1.4em;
		padding: 8px 0;
		margin: auto;
		font-family: serif;
		font-weight: 500;
		font-size: 0.9em;
		text-align: left;
	}
	img.imgprofile/*作家の写真*/{
		width: 100px;
		display: block;
		margin: 35px auto 10px auto;
	}
	img.book{
		width: 70px;
		float: right;
		display: block;
		margin: 5px 10px 0 0;
	}
	p.staff{
		text-align: center;
	}
	p.staff span{
		font-size: 0.8em;
	}

	/**出演者顔写真**/
	.castgrid {
		width: 500px;
		display: grid;
		gap: 20px 5px;
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		margin: auto;
		text-align: center;
	}
	.castgrid .break/*中村と清原の間の改行*/{
  		grid-column: 1 / -1;
	}
	.castgrid >li{
		height: 100%;
		display: grid;
		place-items: center; 
		font-weight: bold;
	}
	.castgrid img{
		width: 100px;
		height: 120px;
	}
	p.cau01/**俳優名をクリックするとプロフィールが表示されます**/{
		text-align: center;
		padding-top: 0;
		font-size: 0.8em;
		margin-bottom: 10px;
	}
	h2.messeage{
		width: 500px;
		margin: 40px auto 20px auto;
	}

	h4.messenger{
		width: 500px;
		margin: auto;
		text-align: right;
		font-weight: 700;
	}

	/***続きを読む***/
	.container{
		width: 500px;
		margin: auto;
	}
	.content{
			line-height: 1.4em;
			padding: 8px 0;
					font-family: serif;
			font-weight: 600;
			font-size: 0.9em;
	}

	#cb,#cb2{
	display: none;
	}

	.more_btn{
	display: block;
	position: relative;
	margin: 1em auto 0;
	padding: 8px 16px;
	border: 1px solid #999;
	text-align: center;
	cursor: pointer;
	}
	#cb ~ .more_btn::before,#cb2 ~ .more_btn::before{
	content: "続きを読む";
	}
	#cb:checked ~ .more_btn::before,#cb2:checked ~ .more_btn::before{
	content: "閉じる";
	}
	#cb ~ .more_btn::after,#cb2 ~ .more_btn::after{
	content: "";
	position: absolute;
	top: calc(-4em - 1px);
	left: 0;
	width: 100%;
	height: 3em;
	background: linear-gradient(transparent,whitesmoke);
	}
	#cb:checked ~ .more_btn::after,#cb2:checked ~ .more_btn::after{
	display: none;
	}

	.more_wrap{
	display: none;
	font-weight: 600;
	}
	#cb:checked ~ .more_wrap,#cb2:checked ~ .more_wrap{
	display: block;
	}

/**公演概要**/
	.nittei_zenkoku{
		width: 600px;
		font-size: 1em;
		line-height: 1.5em;
		text-align: left;
		display: block;
		margin: 0 auto 50px auto;
		text-align: center;
	}
	.nittei_zenkoku p{
		margin: 0 auto 10px auto;
		font-size: 0.9em;
	}
	.nittei_zenkoku h4{
		font-size: 1.1em;
		font-weight: bold;
	}
	/**日程表**/
	.nittei_zenkoku table{
		width: 95%;
		margin: 10px auto 10px 0;
		border-collapse: collapse;
		line-height:1.5;
	}
	.nittei_zenkoku table{
		margin: 10px auto 10px auto;
	}
	.nittei_zenkoku table span{
		font-size: 0.8em;
	}
	.nittei_zenkoku td, th{
		text-align: center;
		border: 3px solid #ebebeb;
		padding: 15px;
	}
	.nittei_zenkoku td{
		line-height: 1.2em;
	}
	.nittei_zenkoku th.red{
		color:  #db2d58;
	}



	
/********稽古場だより********/

	h1.tyr{
		font-size: 1.5em;
		margin: 10px auto 0 auto;
		color: white;
		width: 0 auto;
		height: 55px;
		padding: 15px;
		line-height: 1em;
		text-align: center;
		background: #c1af2d;
	}
	h1.tbtyrtitle span{
	font-size: 0.8em;
	}
	/****/
	#kakotyr,.kakotyr {
	font-weight: bold;
	font-size: 1.2em;
	color: white;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	background: #2FBCE8;
	width: 350px;
	height: 100px;
	line-height: 1.2em;
	padding: 10px;
	}
	
	.kakotyr div{
	background: white;
	margin: auto;
	margin-top: 10px;
	width: 150px;
	height: 40px;
	padding: 7px;
	border-radius: 10px;
	}

	.left {
	float: left;
	}
	
	.right {
	float: right;
	}
	
	/****/
	.tyr{
		width: 600px;
		padding: 20px;
		background-color: #ffffff;
		margin: 15px auto;
		border: solid 1px #c1af2d;
	}
	.tyr img.tate {
		width: 70%;
		margin: 2% auto;
		display: block;
	}
	.tyr img.yoko {
		width: 100%;
		margin: 2% auto;
		display: block;
	}
	.tyr p{
		text-align: left;
		line-height: 135%;
		margin-top: 2%;
	}
	p.center{
		text-align: center;
	}
	.tyr a:link { color: #30539c; }
	.tyr a:hover { color: lightblue; }
	.tyr a:active { color: lightblue; }
	.tyr a:visited { color: #30539c; }

	.clearfix::after {
		content: "";
		display: block;
		clear: both;
	}
	p.date{
		font-weight: bold;
	}
	p.name{
		font-weight: bold;
		text-align: right;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	a.name{
		font-weight: bold;
	}
	p.gotop {
		text-align: center;
		color: #db2d58;
		margin-bottom: 30px;
	}
