@charset "UTF-8";

/*講座案内
------------------------------------*/

.content_visual {
	background-image:url("../images/course/bg_hd_course.png");
}
section {
	padding: 50px 0;
}
section .content_wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 50px;
	
}

section .content_wrap .content {
	display:flex;
	justify-content:center;
}
section .content_wrap .content > div {
	width: 551px;
	height:280px;
}
section .content_wrap .content .left_con {
	background-image:url("../images/index/bg_department01.png");
	background-repeat:no-repeat;
	border-radius: 20px 0 0 20px;
	background-size:cover;
	background-position:center center;
}
section .content_wrap .content .right_con {
	background-image:url("../images/index/bg_department02.png");
	background-repeat:no-repeat;
	border-radius: 0px 20px 20px 0px;
	background-size:cover;
	background-position:center center;
}
section .content_wrap .bg_department {
	height:280px;
	position:relative;
	overflow: hidden;
}
section .content_wrap .left_con .bg_department::before {
	position:absolute;
	top: 0;
	left: 0;
	z-index: 0;
	content: "";
	width: 100%;
	height: 280px;
	border-radius: 20px 0 0 20px;
	background: #D1D622;
	background: linear-gradient(90deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition: 0.5s;
}
section .content_wrap .right_con .bg_department::before {
	position:absolute;
	top: 0;
	left: 0;
	z-index: 0;
	content: "";
	width: 100%;
	height: 280px;
	border-radius: 0px 20px 20px 0px;
	background: linear-gradient(270deg,rgba(209, 214, 34, 1) 0%, rgba(22, 146, 67, 1) 100%);
	opacity:0.5;
	transition: 0.5s;
}
section .content_wrap .left_con .bg_department:hover::before {
	opacity:1;
}
section .content_wrap .right_con .bg_department:hover::before {
	opacity:1;
}
section .content_wrap .bg_department a {
	font-family:"BIZ+UDGothic";
	position:relative;
	display:block;
	color: #fff;
	height:280px;
	z-index:1;
}
section .content_wrap .bg_department a h4 {
	font-size:20px;
	padding-top:3rem;
	padding-left:2rem
}
section .content_wrap .bg_department .flex {
	display:flex;
	justify-content:flex-end;
}
section .content_wrap .bg_department a p.viewmore {
	position:relative;
	margin-top: 130px;
	margin-right:80px;
}

section .content_wrap .bg_department a p.viewmore::before {
	position:absolute;
	top: 50%;
	transform:translatey(-50%);
	left: 112px;
	content:"";
	width: 25px;
    height: 25px;
	border: 1px solid #fff;
	border-radius:50%;
	background: transparent;
	transition:0.5s;
}

section .content_wrap .bg_department:hover a p.viewmore::before {
	background: #fff;
}
section .content_wrap .bg_department a p.viewmore::after {
	position:absolute;
	top: 50%;
	left: 120px;
	content:"";
	width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translatey(-50%) rotate(45deg);
	transition:0.5s;
}
section .content_wrap .bg_department:hover a p.viewmore::after {
	border-top: 2px solid  #179243;
    border-right: 2px solid  #179243;
}


@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1024px) {
	
}
@media screen and (max-width: 960px) {
	
}
@media screen and (max-width: 768px) {
	section .content_wrap .content{
		flex-flow:column;
		justify-content: center;
		align-items: center;
	}
	section .content_wrap .content .left_con,section .content_wrap .content .right_con {
		border-radius: 20px;
		width: 100%;
	}
	section .content_wrap .content .left_con {
		margin-bottom: 2rem;
	}
	section .content_wrap .left_con .bg_department::before,section .content_wrap .right_con .bg_department::before{
		border-radius: 20px;
	}
}
@media screen and (max-width: 560px) {
	section .content_wrap {
		padding: 1rem;
	}
}
@media screen and (max-width: 428px) {
	
}
@media screen and (max-width: 375px) {
	
}