/* Seminar Block
-----------------------------------------------------*/
.seminarBlock {
	margin: 0 0 5rem 0;
}
.seminarBlock h2 {
	margin-bottom: 1.5rem;
	padding: .3rem 0 .6rem 4rem;
	background: url(/common/images/header-icon-seminar.png) no-repeat left top;
	border-bottom: 2px solid #1C5572;
	font-size: 1.6rem;
}
.seminarList {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding-left: 0;
	list-style: none;
}
.seminarList > li {
	max-width: 680px;
	width: calc((680px - 10px) / 2);
	margin-bottom: 0;
}
.seminarList > li :last-child {
	margin-bottom: 0;
}
.seminarList > li:nth-child(even) {
	margin-left: 10px;
}
.seminarList > li:nth-child(n + 3) {
	margin-top: 10px;
}
.seminarList a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	border: 1px solid #999999;
}
.seminarList a:hover,
.seminarList a:focus {
	border-color: #999999;
	text-decoration: none;
}
.seminarList h3 {
	min-height: 6rem;
	margin-bottom: 0;
	padding: .5rem 10rem .5rem 2rem;
	background-color: #FFFFFF;
	background-position: right center;
	background-repeat: no-repeat;
	color: #000000;
	font-size: 1.5rem;
}
.seminarList h3 span {
	display: block;
	margin-bottom: .5rem!important;
	color: #666666;
	font-size: 1.1rem;
	font-weight: normal;
}
.seminarList p {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	margin: auto 0 0 0;
	padding: .4rem 3.5rem .4rem 1rem;
	background-color: #FFFFFF;
	color: #000000;
	line-height: 1;
}
.seminarList p::before,
.seminarList p::after {
	content: '';
	display: inline-block;
	position: absolute;
}
.seminarList p::before {
	top: 50%;
	right: 1.6rem;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border: 3px solid #FB0300;
	border-top: none;
	border-right: none;
	transform: rotate(-135deg);
}
.seminarList p::after {
	top: 50%;
	right: 1.6rem;
	width: 16px;
	height: 3px;
	margin-top: -1.5px;
	border-top: 3px solid #FB0300;
	/* background-color:#FB0300; */
}
.seminarList a:hover p::before {
	animation: slideIn-arrow1 .3s cubic-bezier(0, 0, 0.58, 1.0) 1 forwards;
}
@keyframes slideIn-arrow1 {
	0% {
		transform: translateX(0) rotate(-135deg);
	}
	100% {
		transform: translateX(.8rem) rotate(-135deg);
	}
}
.seminarList a:hover p::after {
	animation: slideIn-arrow2 .3s cubic-bezier(0, 0, 0.58, 1.0) 1 forwards;
}
@keyframes slideIn-arrow2 {
	0% {
		transform: translateX(0) rotate(0deg);
	}
	100% {
		transform: translateX(.8rem) rotate(0deg);
	}
}
.seminarList p span:nth-child(1) {
	padding: .4rem .8rem;
	border: 1px solid #FF0000;
	color: #FF0000;
	font-size: 1rem;
}
.seminarList p span:nth-child(2) {
	font-size: 2.4rem;
	font-weight: bold;
}
.seminarList p span:last-child {
	position: relative;
	margin-left: auto;
	color: #FF0000;
	font-size: 1.2rem;
	opacity: 0;
}
.seminarList a:hover p span:last-child {
	animation: slideIn .3s cubic-bezier(0, 0, 0.58, 1.0) 1 forwards;
}
@keyframes slideIn {
	0% {
		opacity: 0;
		transform: translateX(0);
	}
	100% {
		transform: translateX(.8rem);
		opacity: 1;
	}
}
.seminarList p span + span {
	margin-left: .6rem;
}


/* Banner Unique Setting-----------------------------*/
/* Basic */
.seminarList .basic a,
.seminarList .basic a:hover,
.seminarList .basic a:focus {
	border-color: #2ABCE0;
}
.seminarList .basic h3 {
	background: rgb(0,159,198);
	background: url(/common/banner/bn-basic-seminar_bg.png) no-repeat 180px center, linear-gradient(180deg, rgba(29,184,222,1) 20%, rgba(108,204,227,1) 80%);
	background-size: 240px;
	font-size: 1.6rem;
}
.seminarList .basic h3 span {
	color: #FFFFFF;
}

/* Compliance */
.seminarList .compliance a,
.seminarList .compliance a:hover,
.seminarList .compliance a:focus {
	border-color: #045F25;
}
.seminarList .compliance h3 {
	display: flex;
	align-items: center;
	background-color: #045F25;
	background-image: url(/common/banner/bn-compliance-seminar_bg.png);
	background-position: right 24px;
	background-size: 140px;
	color: #FFFFFF;
}

/* Overseas */
.seminarList .overseas a,
.seminarList .overseas a:hover,
.seminarList .overseas a:focus {
	border-color: #325293;
}
.seminarList .overseas h3 {
	padding: .5rem 4rem .5rem 8rem;
	background-color: #325293;
	background-image: url(/common/banner/bn-overseas-seminar_bg.png);
	background-position: 20px 5px;
	background-size: 60px;
	color: #FFFFFF;
	line-height: 1.2;
	text-align: center;
}
.seminarList .overseas h3 span {
	color: #FFFFFF;
}