/*
Theme Name: kangei
Theme URI: https://kangei.main.jp/
Description: 関西芸術座サイト用デザイン
Version: 1.0
Author: Jun.S
Author URI: https://kajilabo.net/

/*---------------------------------------------------------
  						reset
---------------------------------------------------------*/
body, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt ,dd, p,img, table,th, tr, td{

	margin: 0px;
	padding: 0px;
	list-style-type: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
table {
	border-spacing: 0;
	
}

img{
	vertical-align:middle;
}



/*---------------------------------------------------------
  						styel
---------------------------------------------------------*/
html {
	font-size: 62.5%;
　/*1remが10px*/
 } 

body {
	font-family: "Century Gothic", "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
	font-size: 1.5rem;
	line-height: 3.0rem;
	color: #444;
	width: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;

}

img {
	user-select:none;
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE */
	-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
	-webkit-user-drag: none;
    -khtml-user-drag: none;
	-webkit-user-select: none; /* Chrome, Safari, and Opera */
	-webkit-touch-callout: none; /* Disable Android and iOS callouts*/
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: #739100;
}
a:hover {
	color: #0F7EA3;
}
#contents a:hover img{
	filter: Alpha(Opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
}


/*---------------------------------------------------------
  					Hamburger  Menu
---------------------------------------------------------*/

* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.fullmenu a {
	color: #FFF;
}
.fullmenu a:hover {
	color: #FC3;
}
.fullmenu {
position: fixed;
z-index: 9;
top: 0;
right: 0;
}
/*menuコンテンツ*/
.fullmenu .menu {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
	height: 100%;
	pointer-events: none;
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	align-items: center;
	justify-content: center;
}
.fullmenu .menu > nav {
	display: flex;
	overflow-y: auto;
	width: 200vw;
	height: 200vw;
	transition: all 0.4s ease;
	-webkit-transform: scale(0);
	transform: scale(0);
	text-align: center;
	border-radius: 50%;
	background: rgba(0,131,143 ,0.9);
	flex: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	align-items: center;
	justify-content: center;

}
.fullmenu .menu > nav > ul {
	display: block;
	max-height: 100vh;
	transition: opacity 0.4s ease;
	opacity: 0;
	padding-top: 10.0rem;
}
.fullmenu .menu > nav > ul::after {
	display: block;
	  width: 1px;
  height: 12.0rem; /* padding-bottom分 */
  content: '';
}

.fullmenu .menu > nav > ul > li > a {
	position: relative;
	display: block;
	transition: color 0.4s ease;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
	font-size: 1.8rem;
	font-weight: bold;
	padding-bottom: 1.0rem;
	padding-top: 2.0rem;
}

/*クリックしたらメニューが開閉の動作*/
.fullmenu .toggle {
position: absolute;
z-index: 10;
top: 0;
right: 0;
width: 5.0rem;
height: 5.0rem;
opacity: 0;
}
.fullmenu .toggle:checked + .hamburger > span {
-webkit-transform: rotate(135deg);
transform: rotate(135deg);
}
.fullmenu .toggle:checked + .hamburger > span:before,
.fullmenu .toggle:checked + .hamburger > span:after {
top: 0;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.fullmenu .toggle:checked + .hamburger > span:after {
opacity: 0;
}
.fullmenu .toggle:checked ~ .menu {
visibility: visible;
pointer-events: auto;
}
.fullmenu .toggle:checked ~ .menu > nav {
transition-duration: 0.75s;
-webkit-transform: scale(1);
transform: scale(1);
}
.fullmenu .toggle:checked ~ .menu > nav > ul {
opacity: 1;
}

/*ハンバーガー*/
.fullmenu .hamburger {
position: absolute;
z-index: 9;
top: 0;
right: 0;
display: block;
width: 5.0rem;
height: 5.0rem;
padding: 0.5em 0.8em;
transition: box-shadow 0.4s ease;
border-radius: 0 0.10em 0.10em 0;
background: rgba(0,151,167 ,0.7);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.fullmenu .hamburger > span {
position: relative;
top: 50%;
display: block;
width: 100%;
height: 2px;
transition: all 0.4s ease;
background: #fefefe;
}
.fullmenu .hamburger > span:before,
.fullmenu .hamburger > span:after {
position: absolute;
z-index: 9;
top: -10px;
right: 0;
display: block;
width: 100%;
height: 2px;
content: '';
transition: all 0.4s ease;
background: inherit;
}
.fullmenu .hamburger > span:after {
top: 10px;
}


.sub-menu li a{
	padding: .5rem;
	text-align: left;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
	display: block;
}


.sub-menu li a::before{
	content: '▸';
	padding-right: 1.0rem;
}


/*---------------------------------------------------------
  				　　パンくずリスト
---------------------------------------------------------*/
#topic_path {
	max-width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	font-size: 1.3rem;
	clear: both;
	padding-top: 30px;
	padding-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
}

#topic_path li {
	display: inline;
}


#topic_path li:after {
	content: " > ";
	margin-right: 5px;
	margin-left: 5px;
}

#topic_path li:last-child:after {
        content: none;
}

/*---------------------------------------------------------
  						basic
---------------------------------------------------------*/
.pc_only{
	display: none;
}

main h1 ,.h3-top-page {
	padding-bottom: 20px;
	border-left-width: thick;
	border-left-style: solid;
	border-left-color: #0F7EA3;
	color: #0F7EA3;
	text-indent: 15px;
	padding-top: 20px;
	font-size: 2.8rem;
	line-height: 3.0rem;
}

main h1 {
	margin-bottom: 3.0rem;
	margin-top: 2.0rem;
}

.h3-top-page{
	margin-bottom: 10px;
}

main h2{
	background-image: url(https://kangei.main.jp/wp-content/themes/kangei/images/common/bg_h2.png);
	background-repeat: no-repeat;
	border: 1px solid #aaa;
	box-shadow: 0px 0px 10px #aaa;
	color: #FFF;
	font-size: 1.3rem;
	font-weight: normal;
	text-indent: 4.0rem;
	line-height: 2.0rem;
	height: 20px;
	clear: both;
	margin-top: 3.0rem;
	margin-bottom: 2.0rem;
	background-position: 20px 0px;
	background-color: #0F7EA3;
}


.h2_sub {
	font-size: 11px;
	padding-left: 30px;
}
.h2_little {
	background-image: none;
	background-color: #669900;
	padding-top: 8px;
	padding-bottom: 8px;
	font-weight: bold;
	font-size: 1.6rem;
	margin-top: 80px;
	margin-bottom: 0px;
}/*little_works*/

#side h2 {
	margin-top: 50px;
	margin-bottom: 10px;
}

h3 {
	font-size: 3.0rem;
	color: #FF6699;
	padding-bottom: 2.0rem;
	line-height: 1.5em;
	padding-top: 3.2rem;
}
.h3_sub {
	font-size: 2.2rem;
}

.h3_original {
	font-weight: bold;
	color: #666;
	text-align: right;
	padding-bottom: 20px;
	padding-right: 10px;
}/*history,tour_child*/


h4 {
	color: #0F7EA3;
	font-size: 2.4rem;
	text-indent: 1.2rem;
	padding-bottom: 0.8rem;
	margin-bottom: 2.0rem;
	margin-top: 3.0rem;
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #0F7EA3;
}

header {
	padding-bottom: 30px;

}
#header_in {
	margin-right: auto;
	margin-left: auto;
}
#title {
	text-align: center;
}
#contents {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
}
main {
	margin-bottom: 3.0rem;
}
main a {
	text-decoration: underline;
	color: #FF6699;
}
main a:hover {
	color: #739100;
}

#side {
	width: 100%;
}

/*---------------------------------------------------------
  				          topics
---------------------------------------------------------*/

.topics {
	font-size: 1.4rem;
	width: 96%;
	margin-right: 2%;
	margin-left: 2%;
	line-height: 2.2rem;
}
.topics dd {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.topics  a {
	color: #0F7EA3;
	text-decoration: underline;
}
.topics  a:hover {
	color: #739100;
}


.n_news::before {
	content: "NEWS";
	font-size: 1.3rem;
	padding-right: 5px;
	padding-left: 5px;
	background-color: #F66;
	font-weight: bold;
	color: #FFF;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-right: 10px;
}

.n_announce::before {
	content: "お知らせ";
	font-size: 1.3rem;
	padding-right: 5px;
	padding-left: 5px;
	background-color: #6d5868;
	font-weight: bold;
	color: #FFF;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-right: 10px;
}

.n_media::before {
	content: "出演";
	padding-right: 10px;
	padding-left: 10px;
	background-color: #4686A8;
	font-weight: bold;
	color: #FFF;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-right: 10px;
}
.n_stage::before {
	content: "公演";
	padding-right: 10px;
	padding-left: 10px;
	background-color: #693;
	font-weight: bold;
	color: #FFF;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-right: 10px;
}

.new_icon {
	font-weight: bold;
	color: #F03;
}
.hide_box {
	display: none;
}
.more {
	width: 80px;
	height: 40px;
	border-radius: 0 0 40px 40px;
	cursor: pointer;
	font-size: 14px;
	color: #FFF;
	background-color: #333;
	text-align: center;
	float: right;
	margin-right: 20px;
	margin-top: -10px;
	margin-bottom: 20px;
}

/*---------------------------------------------------------
  				     Accordion menu (FAQ)
---------------------------------------------------------*/

.faq{
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999;
	display: block;
}


.faq dt{
	line-height: 2em;
	cursor: pointer;
	font-weight: bold;
	padding-top: 20px;
	padding-bottom: 20px;
}

.faq dt span{
	display: block;
	margin-right: 40px;
}



.faq dd{
	line-height: 1.8em;
	display: none;
    padding-bottom: 20px;
}

.faq dt span::before {
	content: "Q";
	padding-right: 10px;
	color: #F36;
	font-size: 22px;
	font-weight: bold;
}

.faq dd p::before {
	content: "A";
	padding-right: 10px;
	color: #39C;
	font-size: 22px;
	font-weight: bold;
}

.faq .fas{
	transition: ease-in-out 300ms;
	line-height: 35px;
	margin-right: 20px;
	color: #F36;
	float: right;
 }


/*---------------------------------------------------------
  				  category Voice Sample
---------------------------------------------------------*/
#cate_vs {
	background-color: #fafaf6;
	box-shadow: 0px 0px 10px #ccc;
	border: 1px solid #bbb;
	margin-top: 20px;
	font-size: 15px;
	font-weight: bold;
}

#cate_vs ul {
	margin-left: 120px;
}

#male {
	color: #698aab;
	border: 2px dashed #698aab;
	border-radius: 5px;
	box-shadow: 0 0 3px 3px #c1e4e9;
	text-shadow: 0 0 5px;
	background-color: #c1e4e9;
	background-image: url(https://kangei.main.jp/wp-content/themes/kangei/images/common/vs_male.png);
	background-repeat: no-repeat;
	background-position: 0px center;
	margin: 15px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
}

#female {
	color: #a25768;
	border: 2px dashed #b57986;
	border-radius: 5px;
	box-shadow: 0 0 3px 3px #f4b3c2;
	text-shadow: 0 0 5px;
	padding: 10px;
	margin: 15px;
	background-color: #f4b3c2;
	background-image: url(https://kangei.main.jp/wp-content/themes/kangei/images/common/vs_female.png);
	background-repeat: no-repeat;
	background-position: 0px center;
}
#male a  {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
	color: #FFFFFF;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
	display: block;
	background-color: #6991b1;
}
#male a:hover {
	color: #698aab;
	background-color: #f2f2f2;
}
#female a  {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
	color: #FFFFFF;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
	display: block;
	background-color: #b57f89;
}
#female a:hover  {
	color: #b57986;
	background-color: #f2f2f2;
}

#male li:last-child a, #female li:last-child a{
	border-bottom-style: none;
}

/*---------------------------------------------------------
  			   Voice Sample page item
---------------------------------------------------------*/
.item_vs {
	font-size: 2.2rem;
	font-weight: bold;
	width: 100%;
	padding: 1.0rem;
	text-align: center;
	margin-bottom: 10px;	
	margin-right: auto;
	margin-left: auto;
}

.item_vs a  {
	color: #FFFFFF;
	padding-top: 30px;
	padding-bottom: 30px;
	display: block;
	text-decoration: none;
	background-color: #87aa58;

}
.vs_list {
	font-weight: bold;
	margin-right: auto;
	margin-left: auto;
	width: 50%;
	line-height: 3.0rem;
	margin-bottom: 2.0rem;
}

.vs_list li{
	list-style-position: inside;
	text-align: left;
	list-style-type: disc;
}

.current_page_item a {
	pointer-events: none;
	font-size: 18px;
	color: #999;
	text-decoration: none;
	cursor: default;
	font-weight: bold;
}


/*---------------------------------------------------------
  	                     info
---------------------------------------------------------*/
#info {
	margin-top: 10px;
	padding-top: 10px;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

#info li  {
	text-align: center;
	padding-top: 15px;
}

/*---------------------------------------------------------
  	                    footer_navi
---------------------------------------------------------*/
#footer_navi {
	width: 100%;
	padding-top: 3.0rem;
	padding-bottom: 1.5rem;
	display: block;	
	text-align: center;
}
#footer_navi ul{
		display: inline-block;
}

#footer_navi li {
	text-align: left;

}
#footer_navi li:before {
	content: " ▶ ";
	margin-right: 5px;
	margin-left: 5px;
}


#footer_navi a {
	color: #444;
}

footer {
	color: #FFF;
	background-color: #333;
	text-align: center;
	padding-top: 2.0rem;
	padding-bottom: 2.0rem;
	line-height: 2.2rem;
}

footer img{
	width: 50%;
	margin-bottom: 1.0rem;
}
/*---------------------------------------------------------
  				          親ページ
---------------------------------------------------------*/
.item {
	width: 90%;
	margin-right: auto;
	background-color: #FFF;
	margin-bottom: 20px;
	border: 1px solid #CCC;
	text-align: center;
	padding: 10px;
	margin-left: auto;
}
.item dt img{
	height: auto;
	width: 100%;
}

.item dd {
	margin-top: 5px;
	font-weight: bold;
}
.item dd a , .member a{
	color: #0F7EA3;
	text-decoration: none;
}
.item dd a:hover ,  .member a:hover  {
	color: #739100;
	text-decoration: underline;
}
.item .comment{
	line-height: 1.6em;
	font-weight: normal;
	text-align: left;
	color: #999;
}

/*---------------------------------------------------------
  				          form
---------------------------------------------------------*/
#form {
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #666;
	border-left-color: #666;
	margin-left: auto;
	margin-top: 10px;
	width: 90%;
	margin-right: auto;
}/*inquiry*/


#form th {
	background-color: #e0e0e0;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #666;
	border-bottom-color: #666;
	text-align: left;
	padding: 0.5rem 2.0rem;
}/*inquiry*/

#form td {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #666;
	border-bottom-color: #666;
	background-color: #FFF;
	padding: 1.5rem 2.0rem;
}/*inquiry*/

input{
	height: 30px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
 } 
textarea{
	padding: 1.0rem;
	width: 100%;
}

/*必須項目　文字印*/
.required {
	font-size: 1.1rem;
	padding: 1rem;
	color: #fff;
	background-color: #ff7f7f;
	margin-left: 1.5rem;
	vertical-align: top;
}

 
/*---------------------------------------------------------*/

.btnwidth #formbtn{
	width: 80%;
	font-weight: bold;
	background-color: #3399CC;
	margin-top: 2.0rem;
	border-width: 0px;
	color: #FFF;
	height: 60px;
	font-size: 1.6rem;
}


.wpcf7-list-item {
	margin: 0 !important;

}

.wpcf7-list-item-label .spam {
	text-align: left;
	display: inline-block;
}

input::placeholder {
  opacity: 0.7;

}


/*---------------------------------------------------------
  				        entry-form
---------------------------------------------------------*/
#entry-form {
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #666;
	border-left-color: #666;
	margin-left: auto;
	margin-top: 10px;
	width: 90%;
	margin-right: auto;
}/*school-entry*/


#entry-form th {
	background-color: #e0e0e0;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #666;
	border-bottom-color: #666;
	text-align: left;
	padding: 0.5rem 2.0rem;
}/*school-entry*/

#entry-form td {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #666;
	border-bottom-color: #666;
	background-color: #FFF;
	padding: 1.5rem 2.0rem;
}/*school-entry*/

#entry-form input ,#entry-form select{
	height: 30px;
	padding-right: 10px;
	padding-left: 10px;
	width: 100%;
 }
  
#entry-form textarea{
	padding: 1.0rem;
	width: 100%;
}
 
#entry-form .input_medium{
	width: 50%;
 }/*school-entry*/ 

#entry-form .input_short{
	width: 23%;
 }/*school-entry*/ 
 



/*---------------------------------------------------------
  				          
---------------------------------------------------------*/

.t_stage {
	text-align: center;
	padding: 2%;
	border: 1px solid #bbb;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 2.0rem;
	margin-right: 2%;
	margin-bottom: 2.0rem;
	margin-left: 2%;
	background-color: #FFF;
}

.t_title {
	font-weight: bold;
	font-size: 2.0rem;
	padding: 1.0rem;
}
.t_title a {
	color: #0F7EA3;
	text-decoration: none;

}
.t_title a:hover   {
	text-decoration: underline;

}

.t_stage dt img{
	width: 96%;
	height: auto;
}

.t_stage  .t_comment{
	text-align: left;
	color: #999;
	padding-right: 2%;
	padding-left: 2%;
	padding-bottom: 2%;
	line-height: 1.8rem;
	font-size: 1.3rem;
}


.inq_tel {
	font-size: 9vw;
	padding-top: 2.0rem;
	padding-bottom: 3.0rem;
}/*inquiry*/

.member {
	float: left;
	margin-bottom: 3.0rem;
	width: 33%;
	text-align: center;
	font-weight: bold;

}

.member_vs {
	background-image: url(https://kangei.main.jp/wp-content/themes/kangei/images/common/voice.gif);
	background-repeat: no-repeat;
	background-position: 3.0rem -0.1rem;
	padding-left: 3.4rem;
}

.member_vs_none {
	height: 21px;
}


/*---------------------------------------------------------
  				      子ページ共通
---------------------------------------------------------*/
.top-img {
  width: 100%;
  position: relative;
  margin: 0;
}
.top-img img {
	width: 100%;
	height: 35vh;
	object-fit: cover;  
}

.top-img figcaption {
	font-size: 80%;
	color: #ffffff;
	position: absolute;
	top: 0;
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	line-height: 1.8;
	text-align: center;
}

.dark-filter {
  background-color: rgba(0, 0, 0, 0.45);
}


.history_meta{
	text-align: right;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999;
	margin-bottom: 20px;
}/*newstage,little_works,little*/

.outline_word {
	font-size: 18px;
	line-height: 1.6em;
	padding-bottom: 20px;
	font-weight: bold;
}/*newstage*/

.corich_pr {
	font-size: 12px;
	padding-top: 10px;
	padding-bottom: 30px;
	line-height: 1.5em;
}/*newstage*/
.news_list {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #999;
	padding-bottom: 20px;
	line-height: 1.8em;
}/*media_child*/

.news_list img {
	padding-right: .5rem;
}/*media_child*/

.news_list a  {
	text-decoration: none;
}
.news_list a:hover {
	text-decoration: underline;
}
.number {
	padding-top: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #666;
	padding-bottom: 10px;
}


/*---------------------------------------------------------
  　　カテゴリーページ (archive.php：投稿アーカイブ)
---------------------------------------------------------*/

.readmore {
	display: inline-block;
	zoom: 1;
	font-size: 14px;
	color: #fff !important;
	background-color: #FF6699;
	text-align: center;
	box-sizing: border-box;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 3px;
	padding-right: 15px;
	padding-bottom: 3px;
	padding-left: 15px;
    margin: 10px 0;
	width: 100%;
}
.readmore:after {
   content: '';
   display: block;
   clear: both;
}
.readmore:hover {
	color: #fff;
	background-color: #39C;
	text-decoration: none;
}

/*---------------------------------------------------------
  			トピックスページ (post：投稿シングル)
---------------------------------------------------------*/
.news_list dt {
	font-weight: bold;
	color: #F69;
	font-size: 2.6rem;
	line-height: 1.4;
	padding-top: 2.0rem;
	padding-bottom: 4.0rem;
}

.topics_page .history_meta {
	padding-bottom: 2.0rem;
    margin-bottom: 4.0rem;
}

.topics_page h2{
	background-color: transparent;
	background-image: none;
	box-shadow: none;
	color: #444;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.3;
	text-indent: 0;
	padding-top: 1.8rem;
	padding-bottom: 1.4rem;
	border-style: none;
	position: relative;
	height: auto;
}

.news_list h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


.news_list h3 {
	font-size: 2.2rem;
	color: #444;
	line-height: 1.5;
    padding: 0.3rem 1.4rem;
    border-left: 4px solid #000;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.news_list h4 {
	color: #444;
	line-height: 1.5;
	border-style: none;
	text-indent: 0;
	font-size: 2.0rem;
}

.news_list h5 {
	font-size: 1.8rem;
	margin-top: 1.6rem;
	margin-bottom: 1.6rem;
}
.news_list h6 {
	font-size: 1.6rem;
	margin-top: 1.6rem;
	margin-bottom: 1.6rem;
}
.news_list ul>li {
	list-style-type: disc;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	list-style-position: inside;
}

/*---------------------------------------------------------
  				          table
---------------------------------------------------------*/

.staff-cast {
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999;
	margin-bottom: 1.5rem;
	margin-right: auto;
	margin-left: auto;
	margin-top: 1.5rem;
	font-size: 1.3rem;
}

.staff-cast {
	overflow: auto;
	white-space: nowrap;
	display:block;
	width:auto;
}
.staff-cast tbody {
	width: 100%;
	display:table;
}




.staff-cast th  {
	padding: .5rem;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #999;
	border-left-color: #999;
	color: #FFF;
	background-color: #FF6699;
}
.staff-cast td  {
	padding: .5rem;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #999;
	border-left-color: #999;
	background-color: #FFF;
}
.conditions {
	margin-left: 30px;
	margin-top: 10px;
}

.bg_skyblue {
	background-color: #C5D9DE;
}
.staff-cast .bg_lightpink{
	background-color: #FEE4EC;
}

.respo-slide td {
    display: block;
}

.respo-table-block th, .respo-table-block td {
    display: block;
}



/*---------------------------------------------------------
  				       history   
---------------------------------------------------------*/


.timeline-content > h3{
	padding-top: 0.8rem;
	padding-bottom: 0;
	margin: 0;
	line-height: .5em;


}
.timeline-content > h3 a{
	font-size: 1.8rem;
	color: #099;
	text-decoration: none;
}
.timeline-content > h3 a:hover{
	color: #F66;
}


  .timeline > li {
	position: relative;
	line-height: .5rem;
  }
  .timeline-date {
	padding-left: 5.0rem;
	padding-top: .3rem;
	font-weight: bold;
  }
  .timeline-content > p{
	padding-top: 0.8rem;
	padding-bottom: 0;
	line-height: 2.0rem;
  }
  .timeline-content {
	width: 90%;
	border-left: 3px #e5e5d1 solid;
	margin-left: 1.9rem;
	padding-left: 5.0rem;
	padding-top: 0.3rem;
	padding-bottom: 2.8rem;

  }
  .timeline-content:before {
	content: '';
	width: 1.2rem;
	height: 1.2rem;
	position: absolute;
	left: 1.5rem;
	top: 0px;
	border-radius: 100%;
	background-color: #009999;
  }
  .timeline-content:after{
	content: "";
	width: 2em;
	position: absolute;
	top: .5rem;
	left: 1.5rem;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #099;
}


/*---------------------------------------------------------
  				          SNS
---------------------------------------------------------*/


/* jetpackのSNS表示用 */
.sd-content{
	margin-top: 30px;
}


/* はてブはアイコンフォントがないためテキストで代用 */
.fa-hatena:before {
font-family: Verdana;
font-weight: bold;
content: 'B!';
}
 
ul.sns {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-bottom: 10px;
}

ul.sns li{
	width: 12%;
	margin-right: 1%;
	list-style-type: none;
}

ul.sns li a {
	display: block;
	color: #fff;
	text-align: center;
}
.sns .fab {
	font-size: 1.8rem;
	padding: 8px;
}



.sns li a.twitter {background: #1da1f2;}
.sns li a.facebook {background: #3b5998;}
.sns li a.line {background: #00b900;}
.sns li a.pocket {background: #ee4056;}
.sns li a.hatena {background: #00a4de;}


/*---------------------------------------------------------
  				          LINK
---------------------------------------------------------*/
.link_name {
	padding-top: 10px;
}
.link_name a  {
	background-image: url(https://kangei.main.jp/wp-content/themes/kangei/images/common/yaji_green.png);
	background-repeat: no-repeat;
	text-decoration: none;
	padding-left: 25px;
	background-position: 0px -1px;
	color: #739100;
}

.link_name a:hover {
	text-decoration: underline;
	background-image: url(https://kangei.main.jp/wp-content/themes/kangei/images/common/yaji_pink.png);
	color: #FF6699;
}

.link_comment {
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
}


/*---------------------------------------------------------
  				         
---------------------------------------------------------*/
.impression {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	color: #666;
	padding: 15px;
}/*巡演作品感想*/


.sign {
	line-height: 1.8em;
	padding: 2.0rem;
}/*signature*/

.kakomi_box {
	border: 1px solid #999;
	background-color: #FFF;
	padding: 1.5rem;
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 20px;
}/*workshop*/

.kakomi_box ul li{
	list-style-type: disc;
	padding-top: 5px;
	padding-bottom: 5px;
	list-style-position: inside;
}
.little_work {
	font-size: 30px;
	color: #F69;
	line-height: 1.8em;
}/*little_index*/
.google-map {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.google-map iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}

/*---------------------------------------------------------
  				      Voice Sample
---------------------------------------------------------*/
#vs{
	border-top-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #CCC;
	border-right-width: 1px;
	border-right-color: #CCC;
	font-size: 1.3rem;
	background-color: #FFF;
}

#vs {
	overflow: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	display:block;
	width:auto;
}
#vs tbody {
	width: 100%;
	display:table;
}

#vs th {
	background-color: #F2F2F2;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	padding: .5rem;
}

#vs td {
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	text-align: center;
	padding: .5rem;
}

.vs_audio {
	display: inline-block;
	vertical-align: middle;
	padding-right: 5px;
	padding-left: 5px;
	position: relative;
}

#vs .class_vs{
	font-weight: bold;
	color: #399;
	clear: both;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #CCC;
	margin: .5rem;
}

#vs td a {
	color: #999;
}

#vs .name  {
	font-weight: bold;
	line-height: 1.2em;
	font-size: 16px;
}

#vs .name a {
	text-decoration: none;
	color: #739100;
}

#vs .sub_name {
	font-size: 1.0rem;
	font-weight: normal;
	color: #666;
}

#vs img {
	width: 50px;
	height: auto;
}
/*---------------------------------------------------------
  				  フローチャート
---------------------------------------------------------*/

.flowchart{
	margin-left: 2em;
	border-left-width: 20px;
	border-left-style: solid;
	border-left-color: #CCC;
	counter-reset: number;
}
.flowchart dl{
	margin-bottom: 2.5em;
}
.flowchart dt{
	position: relative;
	margin-left: 2em;
	font-size: 20px;
	font-weight: bold;
	color: #099;
	line-height: 1.6em;
	margin-bottom: .5em;
}
.flowchart dd{
	margin-left: 3em;
	margin-bottom: 1em;
}
.flowchart dt:before{
	counter-increment: number;
	content: counter(number);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: absolute;
	left: calc(-3.2em);
	color: #FFF;
	background-color: #099;
	text-indent: .45em;
}
.flowchart dt:after{
	content: "";
	width: 1.5em;
	position: absolute;
	top: .7em;
	left: -2em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}


/*---------------------------------------------------------
  				   FONT & padding/margin
---------------------------------------------------------*/
.f14 {
	font-size: 1.2rem;
}

.f16 {
	font-size: 1.5rem;
}

.f18 {
	font-size: 1.7rem;
}

.f20 {
	font-size: 1.8rem;
	line-height: 2.8rem;
}

.f26 {
	font-size: 2.1rem;
	line-height: 1.6em;
}


.f30 {
	font-size: 2.6rem;
}

.f40 {
	font-size: 3.6rem;
	line-height: 1.4em;
}

.f45 {
	font-size: 3.8rem;
	line-height: 1.4em;
}

.f50 {
	font-size: 4.2rem;
	line-height: 1.4em;
}

.green {
	color: #739100;
}

.pink {
	color: #FF6699;
}

.blue {
	color: #0F7EA3;
}

.red {
	color: #FF0033;
}
.marker {
    background-color:#ff9
}
.marker-red{
	background-color:#ffd0d1
}
.marker-blue{
background-color:#a8dafb
}

.marker-underline {
	background:linear-gradient(transparent 60%, #ff9 60%)
}
.marker-underline-red {
	background:linear-gradient(transparent 60%, #ffd0d1 60%)
}
.marker-underline-blue {
	background:linear-gradient(transparent 60%, #a8dafb 60%)
}
.style_kakomi {
	border: 2px solid;
	background-color: #FFF;
	padding: 1.5em;
	display: inline-block;
	margin-top: 20px;
	margin-bottom: 20px;
}

.bd_gray {
	border-color: #777;
}
.bd_yellow {
	border-color: #FF0;
}
.bd_red {
	border-color: #f03;
}
.bd_blue {
	border-color: #0F7EA3;
}
.bd_green {
	border-color: #739100;
}
.gray3 {
	color: #333;
}

.p_t5 {
	padding-top: 5px;
}


.p_t10 {
	padding-top: 10px;
}/*tour_index,recruit*/

.p_t15 {
	padding-top: 15px;
}
.p_t20 {
	padding-top: 20px;
}
.p_t30 {
	padding-top: 30px;
}/*inquiry*/

.p_b20 {
	padding-bottom: 1.8rem;
}
.p_b40 {
	padding-bottom: 40px;
}
.p_tb15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.p_tb20 {
	padding-top: 20px;
	padding-bottom: 20px;
}/*stage*/


.p_t30b15 {
	padding-top: 30px;
	padding-bottom: 15px;
}
.p_t15b30 {
	padding-top: 15px;
	padding-bottom: 30px;
}
.p_l20 {
	padding-left: 20px;
}/*media_child*/
.p_l30 {
	padding-left: 30px;
}
.p_l60 {
	padding-left: 60px;
}

.p_lr20 {
	padding-right: 20px;
	padding-left: 20px;
}
.m_tb30 {
	margin-top: 30px;
	margin-bottom: 30px;
}

.m_t0 {
	margin-top: 0px;
}/*little_works*/
.m_t20 {
	margin-top: 20px;
}/*index*/
.m_b20 {
	margin-bottom: 20px;
}
.m_b30l30 {
	margin-bottom: 30px;
	margin-left: 30px;
}
.center {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}
.bold {
	font-weight: bold;
}
.nowrap {
	white-space: nowrap;
}

.end {
	background-image: url(https://kangei.main.jp/wp-content/themes/kangei/images/stage/tour/end.gif);
	background-repeat: no-repeat;
}
.end_3mar {
	background-image: url(https://kangei.main.jp/wp-content/themes/kangei/images/stage/tour/end_3mar.gif);
	background-repeat: no-repeat;
}
.ad_ {
	color: #FFF;
	padding-top: 40px;
	padding-left: 25px;
}

.clear_both {
	clear: both;
}
<!------------------------------------------->
