@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : layout.css
Description : レイアウト用CSS
===================================================================== */


/* ==========================================================
	共通
========================================================== */

/*メインビジュアル背景*/
.mv {
	background-color: #c91520;
	/*	画像はこちら↓ */
	/*	background: url(../images/bg.png) repeat center;*/
}

/*アクセントカラー（背景色）*/
.nav,
.ttl_h2:before,
.slick-arrow,
.slick-active button::before,
.popup_close {
	background-color: #e3027c;
}

/*アクセントカラー（文字色）*/
.ttl_h3,
.wrapper .txt_link,
.wrapper b.highlight,
.cast_name1 {
	color: #e3027c;
}

.popup_close {
	border-color: #e3027c;
}


/* ==========================================================
	header
========================================================== */

/*メニューの幅(SP) 
　※calc(### / 750 * 100%)の###部分を変更してください*/
.nav ul {
	width: calc(1200 / 750 * 100%);
}

/*メニューの文字色*/
.nav a {
	color: #fff;
}

/*メニューの文字色：ホバー*/
/*テキストリンクの文字色：ホバー*/
.nav a:hover,
.txt_link:hover {
	color: #000;
}

/*メニューの下線：ホバー*/
.nav a:hover:after {
	background-color: #000;
}


/* ==========================================================
	コンテンツ
========================================================== */

/*コンテンツ外側の背景*/
#main {
	background-color: #e3e3e3;
    /*	画像はこちら↓ */
    /*	background: url(../images/bg.png) repeat center;*/
}

/*コンテンツ背景*/
.contents {
	background-color: #fff;
}

/*スライダーの矢印ボタン：ホバー*/
/*ポップアップのクローズボタン：ホバー*/
.slick-arrow:hover,
.popup_close:hover {
	background-color: #000;
}

/*ポップアップのクローズボタン：ホバー*/
.popup_close:hover {
	border-color: #000;
}
#main{
	text-align: center;
	background-color: #fff;
}
.heading {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5rem;
	margin-bottom: 1em;
	font-weight: bolder;
  }
  
  .heading::before,
  .heading::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #c91520;
  }
  
  .heading::before {
	margin-right: 30px;
  }
  
  .heading::after {
	margin-left: 30px;
  }

.game_list{
	display: flex;
	justify-content: space-between;
	margin: 0 auto 6rem;
}

.teams{
	width: 50%;
	box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 30%);

}
.teams img{
	max-width: 100%;
	height: auto;
	}
.vs{
	align-self: center;
	padding: 0 1em;
	flex-shrink: 2;
}
.team_name{
	background-color: #333;
	color: #fff;
	padding: 2% 2%;
	font-size: 2rem;
}
#cast{
	text-align: left;
}
.oatime{
	border: 2px solid #c91520;
	color: #c91520;
	font-size: 3rem;
    font-weight: 700;
	padding: 5% 2%;
	text-align: center;
	box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 30%);

}
.oatime {
	position: relative;
  }
  
  .oatime::before,
  .oatime::after {
	content: '';
	position: absolute;
	width: 0px;
	height: 0px;
  }
  
  .oatime::before {
	top: 0;
	right: 0;
	border-top: 20px solid #c91520;
	border-right: 20px solid #c91520;
	border-bottom: 20px solid rgba(0 0 0 / 0);
	border-left: 20px solid rgba(0 0 0 / 0);
  }
  
  .oatime::after {
	bottom: 0;
	left: 0;
	border-top: 20px solid rgba(0 0 0 / 0);
	border-right: 20px solid rgba(0 0 0 / 0);
	border-bottom: 20px solid #c91520;
	border-left: 20px solid #c91520;
  }
.place{
    margin: 0 auto 4rem;
    background: #333;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 1em;
	border-top: #c91520 2px solid;
	border-bottom: #c91520 2px solid;
	box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 30%);


}
.small{
font-size: 2rem;
color: #000;
}

.staff_list1 dd, .staff_list2 dd {
    color: #000;
}
.staff_list1 li, .staff_list2 li {
    margin-bottom: 1.5em;
}
h3 {
    display: inline-block;
    padding: 0.2% 2%;
    font-size: 2rem;
	font-weight: bold;
    color: #fff;
    line-height: 1.3;
    border-bottom: solid 3px #000;
    background-color: #c91520;
	margin-bottom: 0.3em;
  }

@media screen and (min-width: 767px) {
	.game_list{
		width:100%;
		margin: 0 auto 6rem;
	}
	.teams{
		width: 50%;
	}

}