/* Reset style */
* {
  font-family: serif;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-weight: 500;
  }
body{
	text-align: left;
    font-size: 18px;
	color: #424444; 
    background-color: #ffffff;
    line-height: 1.3em;
    }

a { text-decoration: none; }
a:link { color:  #db2d58; }
a:hover { color:  #C7B82D; }
a:active { color:  #C7B82D; }
a:visited { color:  #db2d58; }

@media(min-width:750px){
    .pc{
        display: none !important;
    }
}
@media(max-width:750px){
    .sp{
        display: none !important;
    }
}
/**　※スマホのみ　全ページ共通　ヘッダー部分**/
.toptitle{
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: left;
	padding-left: 20px;
	background: #f7ba68;
}
.toptitle img/**劇団ロゴ**/{
	width: 130px;
}

/**　※スマホのみ　全ページ共通　ハンバーガーメニュー**/
	/**メニューボタン**/
	.menu-btn {
		position: fixed;
		top: 10px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background: #db2d58;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #ffffff;
		position: absolute;
	}
	.menu-btn span:before {
		bottom: 8px;
	}
	.menu-btn span:after {
		top: 8px;
	}
	/**ボタンがタップされたとき三本線を「×」マークにする設定**/
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	#menu-btn-check {
		display: none;/**チェックボックスを非表示**/
	}
	/**メニュー内容**/
	.menu-content {
		width: 40%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;/*leftの値を変更してメニューを画面外へ*/
		z-index: 80;
		background: darkkhaki;
		transition: all 0.5s;/*アニメーション設定*/
	}
	.menu-content ul {
		padding: 70px 10px 0;
	}
	.menu-content ul li {
		border-bottom: solid 1px #ffffff;
		list-style: none;
	}
	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 15px;
		box-sizing: border-box;
		color:#ffffff;
		text-decoration: none;
		padding: 9px 15px 10px 0;
		position: relative;
	}
	.menu-content ul li a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 2px #ffffff;
		border-right: solid 2px #ffffff;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 16px;
	}
	/**ボタンを押したらメニューが出てくる**/
	#menu-btn-check:checked ~ .menu-content {
		left: 60%;/*メニューを画面内へ*/
	}


/**トップページ**/
	/**公演名**/
	.title{
		width:  100%;
		height: auto;
		padding: 5px 0 20px 0;
		text-align: center;
		background:  #f7ba68;
		font-weight: bold;
				color: white;
	}
	.title p{

	}
	.title h1{
		margin: 10px auto 10px auto;
		font-size: 2.2em;
		line-height: 1em;

	}
	.title h1 span{
		font-size: 0.8em;
	}
	img.tirashi{
		width: 100%;
		margin-bottom: 0;
		vertical-align: top;
	}
	/**キャッチコピー・作品概要**/
	.intro{
		width: 100%;
		padding: 25px;

		line-height: 1.5em;
		border-style: none;
		text-align: left;
	}
	.catch{
		font-size: 1.8em;
		font-weight: bold;
		margin: 5px auto 10px auto;
		line-height: 1.3em;
	}
	.intro p{
		font-weight: 600;
	}
	.intro p span{
		font-weight: 600;
		color: #db2d58;
	}

	/**スタッフ・キャスト**/
	.staffcast{
		width: 100%;
		padding: 10px 25px 25px 25px;
		line-height: 1.5em;
		text-align: left;
		background: whitesmoke;
	}
	h2{
		font-size: 1.3em;
		margin: 30px 0 20px 0;
		text-align: center;
		line-height: 1em;
	}
	img.imgprofile{
		width: 100px;
		display: block;
		margin: 35px auto 10px auto;
	}
	h3{
		text-align: center;
		font-size: 1.1em;
		margin: 15px auto 10px auto;
	}
	h3 span{
		font-size: 0.6em;
	}
	p.profile{
		font-size: 0.9em;
		line-height: 1.3em;
	}
	p.staff{
		text-align: center;
	}
		/**出演者顔写真**/
		.castgrid {
			display: grid;
			gap: 20px 16px;
			grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
			margin: 15px;
			text-align: center;
		}
		.castgrid >li{
			height: 100%;
			display: grid;
			place-items: center; 
			color: #fff;
			font-weight: bold;
		}
		.castgrid img{
			height: 120px;
		}
	p.cau01{
		text-align: center;
	}


/**公演概要**/
	.information{
		width: 100%;
		margin-top: 0;
		margin-bottom: 60px;
		font-size: 1em;
		line-height: 1.5em;
		text-align: left;
	}
	dl.info{
		border-bottom: 1px solid  #db2d58;
	}
	dl dt.info_read{
		width: 25%;
		border-top: 1px solid  #db2d58;
		border-left: 8px solid  #db2d58;
		margin: 0;
		margin-bottom: 5px;
		padding: 15px 5px 10px 15px;
		float: left;
		clear: left;
		font-weight: bold;
	}
	dl dd{
		margin: 0;
		border-top: 1px solid  #db2d58;
	}
	.infoitem_read{
		padding: 15px 5px 10px 8px;
		margin-bottom: 5px;
		margin-left: 25%;
	}
	.infoitem_read span{
		font-size: 0.8em;
	}
	/**日程表**/
	.information table{
		margin: 10px auto 10px 0;
		border-collapse: collapse;
		line-height:1.5;
	}
	.information td, th{
		width: 75px;
		text-align: center;
		/**border: solid 2px  #6f514e;**/
		padding: 5px;
		border-bottom:1px solid #424444e0;
		border-right:1px dotted #424444e0;
	}
	.information td{
		line-height: 1.2em;
	}
	.information th.red{
		color:  #a32222bf;
	}
	.information tr:first-child{  /* 最初の行の指定 */
    		border-bottom: 2px solid #424444e0;
	}
	.information tr:last-child{ /* 最後の行の指定 */
    		border-bottom: 0;
	}
	.information td:first-child{ /* 一番左の列の指定 */
		border-right: 0;
  }
	.information td:last-child{ /* 一番右の列の指定 */
  		border-right: 0;
	}
	.information th:first-child{ /* 一番左の列の指定 */
		border-right: 2px solid #424444e0;
	}
	.information th:last-child{ /* 一番右の列の指定 */
		border-right: 0;
	}
	.information th.a {
		line-height: 1.5em;
	}
	span.maeuri{
		font-size: 1em;
		font-weight: bold;

	}
	p.kome{
		margin: 10px auto 10px auto;
		font-size: 0.9em;
		line-height: 1.3;
	}
	a.tomonokai{
		line-height: 1.3;
		border-bottom: dotted;
		border-color:#db2d58a4;
		border-width:1px;
	}
	a.application{
		width: 60%;
		font-size: 1.3em;
		font-weight: bold;
		margin: auto 0 auto 0;
		padding: 0;
		border-bottom: dotted;/*下線を点線にする*/
		border-color:#db2d58a4;
		border-width:1px;
	}
	/*******フッター********/
	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;
	}
	
/*******申込みページ********/
	.tptitle{
		width: 100%;
		height: auto;
		padding: 20px;
		background:#570f21;
		text-align: center;
		font-weight: bold;
		color: white;
	}
	.ticketinfo{
		font-size: 1.3em;
		line-height: 1.2em;
		margin: 20px;
	}
	.ticketinfo p{
		font-family: 'Noto Serif JP', serif;
		text-align: center;
	}
	span.red{
		color: #db2d58;
		font-weight: bold;
	}
	span.contact{
		font-size: 0.8em;
		font-family: 'Noto Serif JP', serif;
	}

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

/********公演班だより********/

	h1.tyr{
		font-size: 1.5em;
		margin: 0 auto;
		color: white;
		width: 0 auto;
		height: 55px;
		padding: 15px;
		line-height: 1em;
		text-align: center;
		background: #db2d58;
	}
	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: 95%;
		padding: 2%;
		background-color: #ffffff;
		margin: 1% auto;
		border: solid 1px #db2d58;
	}
	.tyr img {
		margin: 5px;
	}
	.tyr p{
		text-align: left;
		line-height: 135%;
	}
	p.center{
		text-align: center;
	}
	.tyr a:link { color: blue; }
	.tyr a:hover { color: lightblue; }
	.tyr a:active { color: lightblue; }
	.tyr a:visited { color: blue; }

	.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;
	}
	p.gotop {
		text-align: center;
		color: #db2d58;
		margin-bottom: 30px;
	}


/**大人のための演劇ワークショップ**/
.syousai{
	width: 100%;
	margin-top: 10px;
	padding: 10px 50px 25px 50px;
	line-height: 1.5em;
	text-align: left;
}

/**

不要だろうけど一応保存しておくもの

img.left { float: left; }
div.right { float: right; padding: 1px; font-size: 12px; border: none; text-align: right; }
div.clear { clear: right; clear: left; width: 100%; }
p.data { font-weight: bold; }
p.center { text-align: center; }
p.left { text-align: left; }
p.right { text-align: right; }
p.name { text-align: right; font-size: 12px; font-weight: bold; }


	table.tbl-r1 {
		margin: 0 auto;
	}
	table.tbl-r1 td{
		font-size: 1em;
		font-weight: bold;
		text-align: center;
		line-height: 1.3em;
		background-color: #dfd5d4;
		color: #46442b;
		vertical-align: top;
	}
	table.tbl-r1 td.middle{
		vertical-align: middle;
	}
	table.tbl-r1 img{
		width: 120px;
	}

	.gnav{
		background: #ffffffc2;
		display: flex;
		position: fixed;
		justify-content: left;
		width: 100%;
		padding-left: 10px;
	}
	.gnav ul{
		margin-left: 0px;
		display: flex;
		list-style: none;
	}
	.gnav ul li a{
		border-radius: 10px;
		width: 100px;
		height: 45px;
		font-family: 'Noto Serif JP', serif;
		margin: 8px 0px;
		padding-top: 12px;
		color: black;
		display: block;
		text-align: center;
		vertical-align: middle;
		text-decoration: none;
		transition: 0.1s;
	}
	.gnav ul li a:hover{
		color: white;
		background: #6f514e;
	}
	.gnav ul li a.toppage{
		background: none;
	}
	.gnav ul li a.toppage:hover{
		background: none;
	}
	img.imgtoppage {
		width: 90px;
	}
**/