.slider {
	position: relative;
}

.slider_list {
	position: relative;
	padding-top: 660px;
}

.slider_list_item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: opacity 1s;
}

.slider_list_item.-current {
	opacity: 1;
}

.slider_list_item.-item2 {
	background-position: center left;
}

.slider_list_item figcaption {
	position: absolute;
	font-size: 67px;
	color: #fff;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
}

.slider_list_item.-item1 figcaption {
	left: 60%;
}

.slider_pager {
	position: absolute;
	z-index: 5;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
}

.slider_pager_item {
	cursor: pointer;
	width: 56px;
	height: 20px;
	border-bottom: 3px solid #fff;
	margin-left: 10px;
	transition: border-bottom 1s;
}

.slider_pager_item:first-child {
	margin-left: 0;
}

.slider_pager_item.-current {
	border-bottom: 3px solid #085DAB;
}

.greeting {
	padding: 80px 0;
}

.greeting p {
	font-size: 20px;
	line-height: 2.5;
	text-align: center;
	margin-top: 40px;
}

.greeting p:first-child {
	margin-top: 0;
}

.link {
	padding: 90px 0;
}

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

.link_wrap a {
	width: 49.3%;
	color: #fff;
	font-size: 24px;
	padding: 66px 10px;
	text-align: center;
}

.link_wrap a span {
	position: relative;
	transition: scale 0.3s;
	transform-origin: center;
}

.link_wrap a span:before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 60px;
	opacity: 0.1;
	transition: top 0.3s, left 0.3s;
}

.link_wrap a.-about span:before {
	content: "About";
}

.link_wrap a.-company span:before {
	content: "Company";
}

.link_wrap a:hover span:before {
	top: 70%;
	left: 60%;
}




/* サービスプラン */
.plan {
	background: #00305C;
	padding: 120px 0 135px;
	overflow: hidden;
}

.plan_ttl {
	font-size: 40px;
	color: #fff;
	text-align: center;
}

.plan_ttl span {
	position: relative;
}

.plan_ttl span:before {
	position: absolute;
	content: "SERVICE PLAN";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 96px;
	white-space: nowrap;
	opacity: 0.1;
}

.plan_list {
	margin-top: 45px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.plan_list a {
	display: inline-block;
	width: 49%;
}

.plan_list a:nth-child(n+3) {
	margin-top: 50px;
}

.plan_list_thumb {
	overflow: hidden;
	position: relative;
	padding-top: 68.773%;
}

.plan_list_thumb span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 70% center;
	transition: transform 0.5s;
}

.plan_list_thumb:hover span {
	transform: scale(1.05);
}

.plan_list_thumb span:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	transition: background 0.5s;
}

.plan_list_thumb:hover span:before {
	background: transparent;
}

.plan_list_icn {
	margin-top: 40px;
	text-align: center;
}

.plan_list_ttl {
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-top: 25px;
}

.other {
	margin-top: 175px;
	padding-bottom: 90px;
	color: #fff;
}

.other_ttl {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px solid #DEDEDE;
}

.other_row {
	display: flex;
	flex-wrap: wrap;
	margin-top: 55px;
}

.other_col {
	width: 32%;
	margin-left: 2%;
	transition: opacity 0.3s;
}

.other_col:hover {
	opacity: 0.7;
}

.other_thumb {
}

.other_thumb img {
	max-width: 100%;
	height: auto;
}

.other_cat {
	display: inline-block;
    margin-top: 25px;
    font-size: 14px;
    color: #fff;
  	border: 1px solid #fff;
    padding: 5px 10px;
    text-align: center;
}

.other_cat:first-of-type {
  display: none;
}

.other_name {
  margin-top: 10px;
}



/* All SP & Tablet */
@media screen and (max-width:1400px) {
	.slider_list_item figcaption {
		font-size: 68px;
	}

	.slider_list_item.-item1 figcaption {
	    left: 52%;
	}
}

@media screen and (min-width:641px) {
	.other_col:nth-child(3n+1) {
		margin: 0;
	}

	.other_col:nth-child(n+4) {
		margin-top: 50px;
	}
}

/* All SP */
@media screen and (max-width:640px) {
	.slider_list {
		padding-top: 47.143%;
	}

	.slider_list_item figcaption {
		font-size: 24px;
	}

	.slider_list_item.-item1 figcaption {
		left: 52.5%;
	}

	.slider_pager {
		bottom: 10px;
	}

	.slider_pager_item {
		width: 30px;
	}
  
 	.greeting {
		padding: 50px 0;
	}

	.greeting p {
		font-size: 16px;
		line-height: 2;
		text-align: left;
		margin-top: 30px;
	}

	.link {
	    padding: 30px 0;
	}

	.link_wrap {
		display: block;
	}

	.link_wrap a {
		display: block;
		width: 100%;
		margin-top: 10px;
		font-size: 20px;
		padding: 40px 10px;
	}

	.link_wrap a:first-child {
		margin-top: 0;
	}

	.link_wrap a span:before {
		font-size: 50px;
	}

	/* サービスプラン */
	.plan {
		padding: 50px 0;
	}

	.plan_ttl {
		font-size: 24px;
	}

	.plan_ttl span:before {
		font-size: 45px;
	}

	.plan_list {
		margin: 30px auto;
		display: block;
		max-width: 554px;
	}

	.plan_list a {
		width: 100%;
		margin-top: 40px;
	}

	.plan_list a:first-child {
		margin-top: 0;
	}

	.plan_list_icn {
		margin-top: 25px;
	}

	.plan_list_ttl {
		margin-top: 16px;
		font-size: 18px;
	}
  
  .other {
		margin-top: 80px;
	}

	.other_row {
		margin-top: 20px;
	}

	.other_col {
		width: 49%;
	}

	.other_col:nth-child(2n+1) {
		margin-left: 0;
	}

	.other_col:nth-child(n+3) {
		margin-top: 50px;
	}

	.other_name {
		margin-top: 10px;
		text-align: left;
	}
}