/* Reset style */
* {
  font-family: serif;
  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-color: #ffffff;
    line-height: 1.3em;
    }

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

/********※スマホのみ表示**********/
@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;
	}
}

/**　※スマホのみ　全ページ共通　ヘッダー部分**/
.toptitle{
	width: 100%;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: left;
	padding-left: 20px;
	background: #30539c;
}
.toptitle img/**劇団ロゴ**/{
	width: 100px;
}
.toptitleh1{
	font-size: 1em;
	color: white;
	margin-left: 15px;
}

/**　※スマホのみ　全ページ共通　ハンバーガーメニュー**/
	/**メニューボタン**/
	.menu-btn {
		position: fixed;
		top: 10px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background:#243f75;
	}
	.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: #243f75c2;
		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%;/*メニューを画面内へ*/
	}

/*******全ページ共通　フッター********/
	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: #30539cda;
			text-align: center;
			font-weight: bold;
			color: white;
			font-size: 1.1em;
			 /**#db2d58　#C7B82D**/
		}
	/**　お申込みフォームのリンク　**/
		a.entryforma/**友の会ご入会お申込みフォーム**/, a.forma_blue/**「春の連続公演」先行予約フォーム**/{
			line-height: 1.5em;
			font-weight: 900;
			text-align: center;
			display: block;
		}
		a.entryforma/**友の会ご入会お申込みフォーム**/{
			font-size:1.5em;
			color: white;
			width: 100%;
		}
		a.forma_blue/**「春の連続公演」先行予約フォーム**/{
			/**border-bottom: dotted;
			border-width:1px;**/
			font-size: 1.1em;
			color: white;
		}
		.forma{/**「春の連続公演」先行予約フォームをcenter寄せにしたくてわざわざdivで囲んだ**/
			text-align: center;
			box-shadow: 1px 1px 4px 1px #ccc;
			border-top-left-radius: var(--border-radius, 15px);
    		border-top-right-radius: var(--border-radius, 15px);
    		border-bottom-right-radius: var(--border-radius, 15px);
    		border-bottom-left-radius: var(--border-radius, 15px);
			border-color: #8dd1eb;
			width: 70%;
			padding-top: 5px;
			padding-bottom: 10px;
			background: #8dd1eb;
			margin: 10px auto 10px auto;
		}
	/** 枠　**/
		.entryform/**「ご入会お申込みフォーム」**/,.box-senkou/**「先行予約受付中！」 **/,.box-entry{
			width: 85%;
			padding-bottom: 20px;
			line-height: 1.5em;
			text-align: center;
			display: block;
			margin: 20px auto 0 auto;
		}
		.entryform/**「ご入会お申込みフォーム」**/{
		padding-top: 20px;
		border: 2px solid #30539c;
		box-shadow: 1px 1px 4px 1px #ccc;
   		border-top-left-radius: var(--border-radius, 10px);
    	border-top-right-radius: var(--border-radius, 10px);
    	border-bottom-right-radius: var(--border-radius, 10px);
    	border-bottom-left-radius: var(--border-radius, 10px);
	    	background: #30539c;
		}
		.box-senkou/**「先行予約受付中！」 **/,.box-entry{
	    	border: 2px solid #c1af2d;
			margin-bottom: 20px;
		}
		.box-entry{
			border: 2px solid #30539c;
		}
	/**　枠内のタイトル　**/
		.box-senkou h2/**「2026年3月『春の連続公演』先行予約受付中！」 **/,.box-entry h2{
			color: white;
			padding: 0.5em 20px;
			margin: 0;
			font-weight: bold;
			font-size: 1.2em;
			background: #c1af2d;
		}
		.box-entry h2{
			background: #30539c;
		}
	/**　枠内の文章**/
		.box-senkou p,.box-entry p{
			padding: 20px 30px;
			line-height: 1.2em;
			text-align: left;
			color: #424444;
		}
		.box-entry p{
			text-align: center;
			font-weight: 600;
			margin-top: 10px;
			font-size: 1.2em;
		}
		span.red{
			color: #db2d58;
			font-weight: bold;
		}
	/**　チラシ画像　**/
		img.tirashi/**春の連続公演のチラシ**/{
			width: 75%;
			margin: 15px auto 0 auto;
			display: block;
			/**vertical-align: top;**/
		}



	
