@charset "utf-8";

.info_txt a:link{
	color: blue;
}

.info_txt a:visited{
	color: #551A8B;
}

.contentTtl {
	padding: 5%;
	background: #515151;
}

.tab_nav{
	padding: 0 0 20px;
}

.tab_nav ul {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ddd;
  padding: 0 4px;

}

.tab_nav ul li{
	padding: 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: block;
}

.tab_content_list li{
	display: flex;
	padding-bottom: 20px;
	margin-bottom: 20px;
	width: 100%;
	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,.intro{
	line-height: 1.5;
}


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

.actor{
	color: #9B9B9B;
}

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

.fin_intro {
  background: #fff;
  padding: 5%;
  width: 85%;
  margin: 0 auto 10px;
  line-height: 1.2;
}

.intro_title{
	padding: 0 0 10px 20px;
	margin-bottom: 10px;
	font-size: 18px;
	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: 5px;
}

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

.pageList li strong {
  padding: 12px;
  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: 10px;
  background-color: #f9f9f9;
}

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