﻿@charset "utf-8";


.is_pc{
	display:block;
}
.is_sp{
	display:none;
}
#slogan{
    max-width: 100%;
    min-width: 1000px;
	margin: 0 auto;
	position: relative;
	box-sizing: content-box;
}
#slogan .content{
	width:100%;
	text-align:center;
	position: relative;
    margin: 0 auto;
}
#slogan .content h2{
	position: relative;
}
#slogan .content h2 img{
	width: 100%;
}
#box-list{
    max-width: 100%;
    min-width: 1000px;
	margin: 0 auto;
	position: relative;
	box-sizing: content-box;
	background: url(../img/top/slogan_bg.jpg) no-repeat top center;
	background-size: 100%;
}
#box-list .list-description{
    width: 980px;
	margin: 0 auto;
	padding: 60px 0 0 0;
}
#box-list .list-description ul{
	width: 100%;
	list-style: none;
	display: flex;
	border-bottom: solid 8px #0082cd;
	background-color: #fff;
	position: relative;
}
#box-list .list-description ul::after{
	display: block;
	content: "";
	height: 100%;
	width: 1px;
	background-color: #daf0fb;
	position: absolute;
	right: -1px;
	bottom: -8px;
}
#box-list .list-description ul li{
	width: 25%;
	text-align: center;
	padding: 22px 0 20px 0;
	position: relative;
}
#box-list .list-description ul li::before{
	display: block;
	content: "";
	height: 76%;
	width: 1px;
	background-color: #259ce5;
	position: absolute;
	left: 0;
	top: 12%;
}
#box-list .list-description ul li:nth-child(1):before{
	display: none;
}
#box-list .list-description ul li h3{
	font-size: 23px;
	font-weight: 600;
	color: #1c90d3;
}
#box-list .list-description ul li p{
	font-size: 20px;
	font-weight: 400;
	margin: 14px 0 0 0;
}
#box-list .list-item{
    width: 980px;
	margin: 0 auto;
	padding: 80px 0 80px 0;
}
#box-list .list-item ul{
	width: 100%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
#box-list .list-item ul li{
	width: 47%;
	text-align: center;
	padding: 0;
	position: relative;
	margin: 40px 0 0 0;
}
#box-list .list-item ul li:nth-of-type(2n){
	margin-left: 6%;
}
#box-list .list-item ul li:nth-of-type(1),#box-list .list-item ul li:nth-of-type(2){
	margin-top: 0;
}
#box-list .list-item ul li a{
	display: block;
	position: relative;
	border: solid 5px #fff;
    border-radius: 16px;
    overflow: hidden;
	box-shadow: 0px 5px 26px 0px rgba(0, 0, 0, 0.25);
	transition: box-shadow 0.2s;
}
#box-list .list-item ul li a:hover{
	box-shadow: 0px 5px 26px 0px rgba(22, 79, 110, 0.50);
}
#box-list .list-item ul li a > span{
	display: block;
	width: 100%;
	text-align: center;
	padding: 0 50px 14px 50px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 20;
}
#box-list .list-item ul li a > span::after{
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    border-right: solid 6px #fff;
    border-top: solid 6px #fff;
    position: absolute;
    bottom: 24px;
    right: 23px;
    transform: rotate(45deg);
    transform-origin: center center;
    z-index: 20;
}
#box-list .list-item ul li a > span h3{
	font-size: 34px;
	font-weight: 600;
	color: #fff;
	line-height: 1.1em;
}
#box-list .list-item ul li a > span h3 span{
	display: block;
	font-size: 21px;
	font-weight: 400;
	color: #fff;
}
#box-list .list-item ul li a img{
	width: 100%;
	position: relative;
	z-index: 1;
}
#box-list .list-item ul li a img.on{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 10;
	transition: opacity 0.2s;
}
#box-list .list-item ul li a:hover img.on{
	opacity: 1;
}

@media screen and (max-width: 767px){
	/* SP版 */
	.is_pc{
		display:none!important;
	}
	.is_sp{
		display:block!important;
	}
	#slogan{
        width: 100%;
        min-width:inherit;
        position: relative;
        height: inherit;
        border-bottom: none;
    }
    #slogan .content{
        width: 100%;
        text-align:center;
        position: relative;
        margin: 0 auto;
    }
	#slogan .content h2{
		position: relative;
	}
	#slogan .content h2 img{
		width: 100%;
	}
	#box-list{
        width: 100%;
        min-width:inherit;
        position: relative;
		background: none;
	}
	#box-list .list-description{
		width: 100%;
		margin: 0 auto;
		padding: 40px 9% 0 9%;
	}
	#box-list .list-description ul{
		width: 100%;
		list-style: none;
		display: block;
		border-bottom: solid 8px #0082cd;
		background-color: #fff;
		position: relative;
	}
	#box-list .list-description ul::after{
		display: none;
	}
	#box-list .list-description ul li{
		width: 100%;
		text-align: center;
		padding: 30px 0 28px 0;
		position: relative;
	}
	#box-list .list-description ul li::before{
		display: block;
		content: "";
		height: 1px;
		width: 14%;
		background-color: #259ce5;
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
	}
	#box-list .list-description ul li:nth-child(1):before{
		display: none;
	}
	#box-list .list-description ul li h3{
		font-size: 21px;
		font-weight: 600;
		color: #1c90d3;
	}
	#box-list .list-description ul li p{
		font-size: 18px;
		font-weight: 400;
		margin: 14px 0 0 0;
	}
	#box-list .list-item{
		width: 100%;
		margin: 0 auto;
		padding: 60px 9% 80px 9%;
	}
	#box-list .list-item ul{
		width: 100%;
		list-style: none;
		display: block;
		position: relative;
	}
	#box-list .list-item ul li{
		display: block;
		width: 100%;
		text-align: center;
		padding: 0;
		position: relative;
		margin: 40px 0 0 0;
	}
	#box-list .list-item ul li:nth-of-type(2n){
		margin-left: 0;
	}
	#box-list .list-item ul li:nth-of-type(1){
		margin-top: 0;
	}
	#box-list .list-item ul li:nth-of-type(2){
		margin-top: 40px;
	}
	#box-list .list-item ul li a{
		display: block;
		position: relative;
		border: solid 5px #fff;
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0px 5px 26px 0px rgba(0, 0, 0, 0.25);
		transition: box-shadow 0.2s;
	}
	#box-list .list-item ul li a:hover{
		box-shadow: 0px 5px 26px 0px rgba(22, 79, 110, 0.50);
	}
	#box-list .list-item ul li a > span{
		display: block;
		width: 100%;
		text-align: center;
		padding: 0 50px 14px 50px;
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: 20;
	}
	#box-list .list-item ul li a > span::after{
		display: block;
		content: "";
		width: 12px;
		height: 12px;
		border-right: solid 4px #fff;
		border-top: solid 4px #fff;
		position: absolute;
		bottom: 22px;
		right: 23px;
		transform: rotate(45deg);
		transform-origin: center center;
		z-index: 20;
	}
	#box-list .list-item ul li a > span h3{
		font-size: 23px;
		font-weight: 600;
		color: #fff;
		line-height: 1.1em;
	}
	#box-list .list-item ul li a > span h3 span{
		display: block;
		font-size: 15px;
		font-weight: 400;
		color: #fff;
	}
	#box-list .list-item ul li a img{
		width: 100%;
		position: relative;
		z-index: 1;
	}
	#box-list .list-item ul li a img.on{
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: 10;
		transition: opacity 0.2s;
	}
	#box-list .list-item ul li a:hover img.on{
		opacity: 1;
	}
}
