@charset "utf-8";
/* CSS Document */
/* ----------------------------------------------
	mv
---------------------------------------------- */
.mv {
	height: 680px;
	background: url(../img/mv_bg.jpg) center /cover no-repeat;
	background-attachment: fixed;
	position: relative;
}
.title_circle {
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: rgba(255,255,255,.38);
	text-align: center;
	position: absolute;
	top: 174px;
	left: 50%;
	margin-left: -500px;
	z-index: 10;
	opacity: 0;
}
.mv.on .title_circle {
	top: 154px;
	opacity: 1;
	transition: 1s ease;
}
.title_circle::before {
	content: '';
	display: block;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255,255,255,.3);
	position: absolute;
	top: -20px;
	left: -20px;
	z-index: -1;
}
.title_circle h1 {
	margin-top: 105px;
	color: #36bec6;
	font-size: 3.25em;
	font-family:YuMincho, '游明朝体', serif;
	font-weight: 600;
	line-height: 1.2;
}
.title_circle h1 i {
	letter-spacing: .2em;
}
.title_circle h1 span {
	display: block;
	font-size: .27em;
	letter-spacing: .1em;
}
.title_circle p {
	margin-top: 20px;
	font-size: .875em;
	line-height: 2;
}
.biz_circle {
	width: 500px;
	height: 460px;
	position: absolute;
	top: 154px;
	right: 50%;
	margin-right: -500px;
}
.biz_circle::after {
	content: '';
	display: block;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	box-sizing: border-box;
	border: 4px solid rgba(255,255,255,.8);
	position: absolute;
	top: 24px;
	right: 0;
	left: 0;
	margin: auto;
	opacity: 0;
}
.mv.on .biz_circle::after {
	opacity: 1;
	transition: 1s ease;
}
.biz_circle li {
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255,255,255,.28);
	position: absolute;
	z-index: 10;
	opacity: 0;
	transform: scale(.8, .8);
}
.biz_circle li:nth-child(1) {
	top: -20px;
	left: -20px;
}
.biz_circle li:nth-child(2) {
	top: -20px;
	right: -20px;
}
.biz_circle li:nth-child(3) {
	bottom: -20px;
	right: 0;
	left: 0;
	margin: auto;
}
.mv.on .biz_circle li:nth-child(1) {
	opacity: 1;
	transform: scale(1, 1);
	transition: 1s ease 0.3s;
}
.mv.on .biz_circle li:nth-child(2) {
	opacity: 1;
	transform: scale(1, 1);
	transition: 1s ease 0.6s;
}
.mv.on .biz_circle li:nth-child(3) {
	opacity: 1;
	transform: scale(1, 1);
	transition: 1s ease 0.9s;
}
.biz_circle li a {
	display: block;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	z-index: 10;
}
.biz_circle li a img {
	opacity: 1;
	transition: 0.3s ease;
}
.biz_circle li a::before {
	content: '';
	display: block;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255,255,255,.4);
	position: absolute;
	top: -20px;
	left: -20px;
	transform: scale(.6, .6);
	z-index: -1;
	transition: transform 0.3s ease;
}
.biz_circle li a:hover::before {
	transform: scale(1, 1);
	transition: 0.3s ease;
}
.biz_circle li a:hover img {
	opacity: 0.6;
	transition: 0.3s ease;
}

/* ----------------------------------------------
	biz_list
---------------------------------------------- */
.biz_list {
	margin-bottom: 120px;
}
.biz_list h2 {
	padding-top: 75px;
	font-size: 2em;
	font-family:YuMincho, '游明朝体', serif;
	text-align: center;
	position: relative;
	letter-spacing: .2em;
	font-weight: 400;
}
.biz_list h2::before {
	content: '';
	display: block;
	width: 1px;
	height: 56px;
	background: #9de2e9;
	position: absolute;
	left: 50%;
	top: 0;
	right: 0;
}
.biz_list h2 span {
	display: block;
	margin-top: 10px;
	color: #bebebe;
	font-size: .5em;
	letter-spacing: .07em;
}
.biz_list > ul {
	margin-top: 80px;
}
.biz_list > ul > li {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.biz_list > ul > li:nth-child(2n) {
	flex-direction: row-reverse;
}
.biz_list > ul > li + li {
	margin-top: 120px;
}
.biz_list .img {
	width: 0;
	height: 340px;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,.12);
	transform: translate(-80px, -40px);
	position: relative;
	z-index: 10;
	overflow: hidden;
}
.biz_list > ul > li:nth-child(2n) .img {
	transform: translate(80px, -40px);
}
.biz_list .img::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.biz_list > ul > li:nth-child(1) .img::after {
	background: #317fc7;
}
.biz_list > ul > li:nth-child(2) .img::after {
	background: #a8c91a;
}
.biz_list > ul > li:nth-child(3) .img::after {
	background: #fdb211;
}
.biz_list li.on .img {
	width: 640px;
	transition: 0.3s ease;
}
.biz_list li.on .img::after {
	left: 100%;
	transition: 0.3s ease 0.3s;
}
.biz_list li:nth-child(2n).on .img::after {
	left: -100%;
	transition: 0.3s ease 0.3s;
}
.biz_list .img img {
	transform: scale(1, 1);
	transition: 1s ease;
}
.biz_list .img.hov img {
	transform: scale(1.07, 1.07);
	transition: 1s ease;
}
.biz_list .txt {
	box-sizing: border-box;
	width: 390px;
	height: 360px;
	padding: 60px 0 60px;
	position: absolute;
	right: 0;
}
.biz_list > ul > li:nth-child(2n) .txt {
	right: auto;
	left: 0;
}
.biz_list .txt::before {
	content: '';
	display: block;
	width: 170px;
	height: 100%;
	position: absolute;
	left: -170px;
	top: 0;
}
.biz_list > ul > li:nth-child(2n) .txt::before {
	left: auto;
	right: -170px;
}
.biz_list .txt::after {
	content: '';
	display: block;
	width: 500px;
	height: 100%;
	position: absolute;
	right: -500px;
	top: 0;
}
.biz_list > ul > li:nth-child(2n) .txt::after {
	right: auto;
	left: -500px;
}
.biz_list > ul > li:nth-child(1) .txt,
.biz_list > ul > li:nth-child(1) .txt::before,
.biz_list > ul > li:nth-child(1) .txt::after {
	background: rgba(60,153,240,.05);
}
.biz_list > ul > li:nth-child(2) .txt,
.biz_list > ul > li:nth-child(2) .txt::before,
.biz_list > ul > li:nth-child(2) .txt::after {
	background: rgba(168,201,26,.05);
}
.biz_list > ul > li:nth-child(3) .txt,
.biz_list > ul > li:nth-child(3) .txt::before,
.biz_list > ul > li:nth-child(3) .txt::after {
	background: rgba(253,184,17,.05);
}
.biz_list > ul > li:nth-child(1) h3 {
	color: #317fc7;
	border-color: #317fc7;
}
.biz_list > ul > li:nth-child(2) h3 {
	color: #a8c91a;
	border-color:  #a8c91a;
}
.biz_list > ul > li:nth-child(2) h3 span {
	font-size: .7272em;
}
.biz_list > ul > li:nth-child(3) h3 {
	color: #fdb211;
	border-color: #fdb211;
}
.biz_list .txt h3 {
	margin-bottom: 26px;
}
.biz_list .txt p {
	line-height: 1.6;
}
.biz_list .txt ul {
	list-style: disc;
	padding-left: 20px;
	line-height: 1.7;
}
.biz_list .txt li + li {
	margin-top: 12px;
}
.biz_list a.btn {
	width: 250px;
	position: absolute;
	bottom: 60px;
	left: 0;
}
.biz_list > ul > li:nth-child(1) a.btn {
	background: #317fc7;
}
.biz_list > ul > li:nth-child(2) a.btn {
	background: #a8c91a;
}
.biz_list > ul > li:nth-child(3) a.btn {
	background: #fdb211;
}

/* ----------------------------------------------
	news
---------------------------------------------- */
.news {
	padding: 60px 0 64px;
	background: rgba(119,119,119,.05);
}
.news .inner {
	display: flex;
	justify-content: space-between;
}
.news a.btn {
	margin-top: 30px;
	width: 140px;
	background: #fff;
	border: 1px solid #dcdcdc;
	color: #222;
	box-shadow: none;
	transition: box-shadow 0.3s ease;
}
.news a.btn:hover {
	box-shadow: 0 5px 10px rgba(0,0,0,.12);
	transition: 0.3s ease;
}
.news a.btn span::before {
	border-color: transparent transparent transparent #333;
}
.news_list {
	width: 750px;
}
.news_list dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news_list dt {
	margin-top: 20px;
	font-size: .875em;
	line-height: 1.5;
	color: #31aeb6;
}
.news_list dd {
	width: 646px;
	margin-top: 20px;
	line-height: 1.5;
}
.news_list dt:nth-of-type(1),
.news_list dd:nth-of-type(1) {
	margin-top: 0;
}
.news_list dd a:hover {
	text-decoration: underline;
	transition: 0.3s ease;
}

@media print {
	.biz_list li .img {
		width: 640px;
	}
	.biz_list li .img::after {
		display: none;
	}
}