@charset "utf-8";
/* --------------------------------------------------
	ステージ共通
-------------------------------------------------- */
.l_substage_img {
  width: auto;
  background-color: white; /*サブページ背景*/
  background-image: url('../image/common/bgi-stage.png');
  background-repeat: no-repeat;
  background-position: top right;
  overflow: hidden;
  background-size: cover;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l_substage_img h1 {
  font-size: 2.5em;
	font-weight: normal;
}
.l_substage_img img {
  display: block;
}
@media (max-width : 768px) {
  .l_substage_img {
    background-position: center center;
	  height: auto;
  }
  .l_substage_img h1 {
	  color: #fff;
    margin: 0;
    margin-top: 50px;
	  padding-bottom: 40px;
    width: 100%;
	font-size: 1.3em;
	  text-align: center;
  }
  .l_substage_img img {
    height: 100px;
    margin-left: -60px;
  }
}
/*日本語版のみ*/
.o_tag_japan{
	font-size: .75em;
	white-space: pre;
	background: #868FA7;
	color: #fff;
	padding: 0 .5em;
	font-weight: normal!important;
}
/*お知らせ*/
/*info*/
.s_info_area {
  margin: 0 auto;
}
.s_info_area ul {
  height: 700px;
  overflow-y: auto;
  overflow-x: hidden;
}
.s_info_area ul li {
  border-bottom: 1px solid #DCDCDC;
  padding: 1em;
  width: 98%;
  margin: 0 auto;
	font-size: .9em;
	transition: .4s;
}
.s_info_area ul li span:first-child{
	padding: 0 .5em 0 0;
}
.s_info_area ul li span {
  font-size: .8em;
	padding: 0 .5em;
}
.s_info_area ul li:hover {
  background: #F1F1F1;
}
.s_info_area ul li span.green{
	background: #8BDF8F;
	border-radius: 100px;
}
@media (max-width: 960px) {
  .s_info_area {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}