@charset "utf-8";

.tab_nav{
}

.tab_nav ul {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
  border-bottom: 1px solid #ddd;

}

.tab_nav ul li{
	padding: 0 10px;
	text-align: center;
}

.tab_nav ul li.active{
	color: #ff7124;
	font-weight: bold;
	/*border-bottom: 1px solid #ff7124;*/
	padding-bottom: 5px;
	position: relative;
}	
.tab_nav ul li.active::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #ff7124;
	bottom: -1px;
	left: 0;
}



.tab_content{
	display: none;
	background: #fff;
	padding: 20px;
	margin-bottom: 40px;
}


.tab_content.active{
	display: block;
}

.tab_content_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.tab_content_list li{
	display: flex;
	padding-bottom: 20px;
	margin-bottom: 20px;
	width: calc((100% - 20px) / 2);
	gap:10px;
	border-bottom: 1px solid #ddd;
}

.tab_content_list li img{
	max-width: 90px!important;
}

.tab_content_list li a{
	text-decoration: underline;
}

.info_txt a{
	margin-bottom: 10px;
	display: block;
}


.actor{
	color: #9B9B9B;
}

.price{
	color: #ff0000;
	font-weight: bold;
}

.fin_intro{
	background: #fff;
	padding: 20px;
}

.intro_title{
	padding: 0 0 10px 20px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	position: relative;
	border-bottom: 2px solid #FF7124;
}

.intro_title::before{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #FF7124;
	left: 0;
	top: 10px;
}

.pageList{
	display: flex;
	justify-content: center;
	gap:10px;
}

.pageList li strong {
  padding: 6px 10px;
  display: inline-block;
  font-weight: bold;
  color: #ff8a00;
}


.pageList li a {
  display: inline-block;
  text-align: center;
  border: 1px solid #c0c0c0;
  color: #333333;
  text-decoration: none;
  padding: 6px 12px;
  background-color: #f9f9f9;
}

.pageList li a:hover{
	background: #ff8a00;
	color: #fff;
	opacity: 1;
}	