@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* mv */
.mv {
	width: 100%;
	height: auto;
	margin-top: 100px;
}

.mv__img {
	display: block;
	width: 100%;
	height: auto;
}

.mv__img.sp {
	display: none;
}



/* feature */
.feature {
	padding: 100px 0 150px 0;
	background-color: #F7F7F7;
}

.feature__txt {
	text-align: center;
	margin-bottom: 70px;
}

.feature__box {
	width: 100%;
	background-color: #FFF;
	border: 1px solid #E6E6E6;
	padding: 50px 7.3%;
	margin-bottom: 80px;
	border-radius: 7px;
}

.feature__item {
	padding: 15px 50px;
	width: 100%;
	border-bottom: 1px solid #E6E6E6;
}

.feature__h3 {
	font-size: 30px;
	font-weight: 500;
	display: inline-block;
	width: 400px;
}

.feature__h3::before {
	display: inline-block;
	content: "";
	width: 100px;
	height: 100px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 20px;
	vertical-align: -35px;
}

.feature__item:nth-of-type(1) .feature__h3::before {
	background-image: url("/img/index/icon_feature_01.png");
}

.feature__item:nth-of-type(2) .feature__h3::before {
	background-image: url("/img/index/icon_feature_02.png");
}

.feature__item:nth-of-type(3) .feature__h3::before {
	background-image: url("/img/index/icon_feature_03.png");
}

.featureItem__txt {
	display: inline-block;
}

.feature__attention {
	text-align: center;
	font-size: 50px;
	font-weight: 500;
}

.feature__attention span {
	color: #036EB7;
	position: relative;
}

.feature__attention span::after {
	display: inline-block;
	content: "";
	width: 400px;
	height: 12px;
	background-image: url("/img/index/underline_feature.png");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -20px;
	left: -5px;
	right: 0;
	margin: auto;
}



/* howto */
.howto {
	background-color: #EAF3F8;
	padding: 100px 0;
	text-align: right;
}

.howto__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.howto__item {
	width: 32%;
	border: 1px solid #E6E6E6;
	border-radius: 7px;
	background-color: #FFF;
	padding: 30px 50px 50px 50px;
	text-align: center;
	position: relative;
	border-radius: 7px;
}

.howto__item::before {
	display: inline-block;
	content: "";
	width: 100%;
	height: 15px;
	background-color: #036EB7;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 7px 7px 0 0;
}

.howto__number {
	display: block;
	font-size: 70px;
	font-family: futura;
	font-style: italic;
	color: #036EB7;
}

.howto__h3 {
	font-weight: 500;
	margin-bottom: 40px;
}

.howto__img {
	display: block;
	width: 100%;
	height: auto;
}

.howto__link {
	display: inline-block;
	margin-top: 30px;
	color: #036EB7;
	text-decoration: underline;
	transition: .2s;
}

.howto__link:hover {
	opacity: 0.7;
}



/* localNav */
.localNav__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 100px 0;
}

.localNav__item {
	display: block;
	width: 47.5%;
}

.localNav__thumbnail {
	position: relative;
}

.localNav__thumbnail::after {
	display: inline-block;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, .2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	border-radius: 7px;
	opacity: 0;
	transition: .2s;
}

.localNav__item:hover .localNav__thumbnail::after {
	opacity: 1;
}

.localNav__img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 25px;
}

.localNav__h2 {
	font-weight: 500;
}






/******************************************************

タブレットの設定 1000px~1369pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1369px){

/* feature */
.feature__txt {
	text-align: center;
	margin-bottom: 70px;
}

.feature__box {
	padding: 50px 5%;
}

.feature__item {
	padding: 15px 20px;
}

.feature__h3 {
	font-size: 28px;
	font-weight: 500;
	display: inline-block;
	width: 330px;
}

.feature__h3::before {
	width: 70px;
	height: 70px;
	margin-right: 15px;
	vertical-align: -25px;
}
	
.featureItem__txt {
	font-size: 16px;
}
	
.feature__attention {
	font-size: 40px;
}

.feature__attention span::after {
	display: inline-block;
	content: "";
	width: 320px;
	height: 10px;
}

	
	
	
	
}



/******************************************************

タブレットの設定 768px~999pxの場合に適用 

*******************************************************/

@media screen and (max-width: 999px){

/* feature */
.feature__attention {
	font-size: 32px;
}

.feature__attention span::after {
	width: 255px;
	height: 8px;
	bottom: -15px;
}
	
	
	
/* howto */
.howto__item {
	padding: 20px 20px 30px 20px;
}

.howto__item::before {
	display: inline-block;
	content: "";
	width: 100%;
	height: 15px;
	background-color: #036EB7;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 7px 7px 0 0;
}

.howto__number {
	font-size: 50px;
}

.howto__h3 {
	margin-bottom: 30px;
}


	
	
}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* mv */
.mv {
	margin-top: 60px;
}

.mv__img.pc {
	display: none;
}

.mv__img.sp {
	display: block;
}
	
	
	
/* localNav__sp */
.localNav__sp {
	padding: 30px 0;
}
	
.localNav__sp-box {
	display: flex;
	justify-content: space-between;
}
	
.localNav__sp-item {
	width: 48%;
	height: 100px;
	background-size: cover!important;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
	
.localNav__sp-item:nth-of-type(1) {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/img_localNav_background.jpg");
}
	
.localNav__sp-item:nth-of-type(2) {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/img_localNav_scrapbook.jpg");
}
	
.localNav__sp-h2 {
	font-size: 18px;
	color: #FFF;
	font-weight: 500;
	text-align: center;
}
	
.localNav__sp-h2 span {
	display: block;
	font-size: 14px;
	font-family: futura;
	font-weight: normal;
}
	
	
	
/* slideShow */
.slideShow {
	background-color: #ecf3f7;
	padding: 40px 0 60px 0;
}
	
.slideShow__txt {
	margin-top: 40px;
	text-align: right;
}
	
.slideShow__link {
	font-weight: 500;
	text-decoration: underline;
	position: relative;
}
	
.slideShow__link::before {
	content: "※";
	position: absolute;
	left: -13px;
}
	

	
/* feature */
.feature {
	padding: 50px 0;
	background-color: #FFF;
}

.feature__txt {
	text-align: left;
	margin: 0 30px;
}

.feature__box {
	padding: 10px 30px 35px 30px;
	margin-bottom: 50px;
	background-color: #F7F7F7;
	border: none;
}

.feature__item {
	padding: 15px 0;
	width: 100%;
	border-bottom: 1px solid #CCC;
}
	
.feature__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.feature__h3 {
	font-size: 16px;
	width: auto;
}

.feature__h3::before {
	width: 45px;
	height: 45px;
	margin-right: 15px;
	vertical-align: -15px;
}

.featureItem__txt {
	display: block;
	font-size: 12px;
	margin-top: 15px;
}

.feature__attention {
	font-size: 20px;
}

.feature__attention span::after {
	width: 165px;
	height: 6px;
	bottom: -12px;
}


	
	
}