@charset "UTF-8";

/* --------------------------------------- 

	MV

--------------------------------------- */
.secMv{
	height: 384px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../img/bg-sp.jpg);
	background-size: 600px auto;
}
.secMv .inner{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	font-style: italic;
}
.secMv .img{
	position: relative;
	z-index: 2;
	display: inline-block;
	vertical-align: top;
	line-height: 1;
	padding-left: 10px;
}
.secMv .img img{
	position: relative;
	z-index: 2;
	width: 60px;
	vertical-align: top;
	padding-top: 6px;
}
.secMv .img::after{
	position: absolute;
	content: "";
	display: block;
	background: #fff;
	width: 80px;
	height: 30px;
	top: 3px;
	left: 0px;
	margin: auto;
	transform: skewX(-6deg);
	z-index: 1;
}
.secMv .mvTxt{
	font-size: 32px;
	color: #fff;
	display: inline-block;
	padding-left: 20px;
	vertical-align: top;
	line-height: 1;
}
.secMv .mvTxt span{
	font-size: 25px;
}
.secMv .mvTtl{
	font-size: 58px;
	display: block;
	color: #fff;
	line-height: 1;
}
@media print, screen and (min-width: 960px){
	.secMv{
		width: 100%;
		max-width: 1280px;
		height: 600px;
		margin: 0 auto;
		background-image: url(../img/bg-pc.jpg);
		background-size: 1280px auto;
	}
	.secMv .inner{
		display: block;
		width: 960px;
		height: 100%;
		position: relative;
		margin: 0 auto;
	}
	.secMv .inner h1{
		position: absolute;
		right: 105px;
		bottom: 224px;
		transform: scale(1.7);
	}
}

/* --------------------------------------- 

	ページ内リンク

--------------------------------------- */
.headNav{
	padding: 0 30px;
	margin-top: -40px;
}
.headNav li{
	width: 290px;
	margin: 0 auto 6px;
}
.headNav li a{
	display: block;
	background-color: #fff;
	color: #DD0716;
	border: 2px solid #DD0716;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
	transition: all .4s;
	line-height: 1.2;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.headNav li a::after{
	position: absolute;
	content:"";
	bottom: 8px;
	right: 0px;
	left: 0;
	margin: auto;
	width: 9px;
	height: 9px;
	border-top: 2px solid #DD0716;
	border-right: 2px solid #DD0716;
	transform:rotate(135deg);
	transition: all .4s;
}
@media print, screen and (min-width: 960px){
	.headNav{
		display: flex;
		justify-content: space-between;
		width: 960px;
		margin: -50px auto 0;
		padding: 0;
	}
	.headNav li{
		width: 312px;
		margin: 0;
	}
	.headNav li a{
		font-size: 18px;
		height: 95px;
	}
	.headNav li a::after{
		bottom: 12px;
	}
	.headNav li a:hover{
		opacity: 0.5;
	}
	.headNav li a:hover::after{
		bottom: 8px;
	}
}

/* --------------------------------------- 

	カーリースとは

--------------------------------------- */
/* --------------------------------------- 
	カーリースの仕組み 
--------------------------------------- */
.inSecShikumi .inner .img{
	margin-bottom: 15px;
}
@media print, screen and (min-width: 960px){
	.inSecShikumi .inner{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	.inSecShikumi .inner .img{
		margin-bottom: 0;
		width: 308px;
	}
	.inSecShikumi .inner .txt{
		width: 500px;
	}
}

/* --------------------------------------- 
	カーリースのメリットとデメリット 
--------------------------------------- */
.inSecmerideme .blcWrap{
	padding-top: 20px;
}
.inSecmerideme .blcWrap .blc{
	margin-bottom: 30px;
}
.inSecmerideme .blcWrap .blc h4{
	width: 240px;
	border-radius: 7px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	line-height: 44px;
	position: relative;
	font-size: 18px;
	margin: 0 auto 30px;
}
.inSecmerideme .blcWrap .blc h4::after{
	position: absolute;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 14px 25px 14px;
	bottom: -15px;
	right:0;
	left: 0;
	margin: auto;
	transform:rotate(180deg);
}
.inSecmerideme .blcWrap .blc .tglBtn{
	text-align: center;
	height: 50px;
	position: relative;
	font-weight: 700;
	margin-bottom: 10px;
	transition: all .4s;
}
.inSecmerideme .blcWrap .blc .tglBtn::before,
.inSecmerideme .blcWrap .blc .tglBtn::after{
	position: absolute;
	font-size: 16px;
	font-weight: 700;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all .4s;
	line-height: 50px;
}
.inSecmerideme .blcWrap .blc .tglBtn::before{
	content: "詳しく見る";
	right: 0;
	left: 0;
}
.inSecmerideme .blcWrap .blc .tglBtn::after{
	content: "↓";
	right: 10px;
}
.inSecmerideme .blcWrap .blc .tglBtn.open::before{
	content: "閉じる";
}
.inSecmerideme .blcWrap .blc .tglBtn.open::after{
	content: "↑";
}
.inSecmerideme .blcWrap .blc .tglBtn:hover{
	cursor: pointer;
	opacity: 0.5;
}
.inSecmerideme .blcWrap .blc .innerWrap{
	padding: 30px;
	display: none;
}
.inSecmerideme .blcWrap .blc .innerWrap .innerBox{
	padding-bottom: 40px;
}
.inSecmerideme .blcWrap .blc .innerWrap .innerBox h5{
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	height: 52px;
	line-height: 1.4;
	padding-top: 5px;
	margin-bottom: 10px;
}
.inSecmerideme .blcWrap .blc .innerWrap .innerBox h5.singleLine{
	line-height: 52px;
	padding-top: 0;
}
@media print, screen and (min-width: 960px){
	.inSecmerideme .blcWrap{
		display: flex;
		justify-content: space-between;
		padding-top: 30px;
	}
	.inSecmerideme .blcWrap .blc{
		width: 410px;
	}
	.inSecmerideme .blcWrap .blc .tglBtn{
		display: none;
	}
	.inSecmerideme .blcWrap .blc .innerWrap{
		height: 2098px;
		display: block;
	}
	.inSecmerideme .blcWrap .blc .innerWrap .innerBox h5{
		font-size: 20px;
		height: 66px;
	}
	.inSecmerideme .blcWrap .blc .innerWrap .innerBox h5.singleLine{
		line-height: 66px;
	}
}

/* メリット */
.inSecmerideme .blcWrap .blc.blcMerit h4{
	background: #DD0716;
}
.inSecmerideme .blcWrap .blc.blcMerit h4::after{
	border-color: transparent transparent #DD0716 transparent;
}
.inSecmerideme .blcWrap .blc.blcMerit .tglBtn{
	color: #DD0716;
	border: 1px solid #DD0716;
}
.inSecmerideme .blcWrap .blc.blcMerit .innerWrap{
	border: 4px solid #FDE3E3;
}
.inSecmerideme .blcWrap .blc.blcMerit .innerWrap .innerBox h5{
	background: #FDE3E3;
}

/* デメリット */
.inSecmerideme .blcWrap .blc.blcdeMerit h4{
	background: #568BB8;
}
.inSecmerideme .blcWrap .blc.blcdeMerit h4::after{
	border-color: transparent transparent #568BB8 transparent;
}
.inSecmerideme .blcWrap .blc.blcdeMerit .tglBtn{
	color: #568BB8;
	border: 1px solid #568BB8;
}
.inSecmerideme .blcWrap .blc.blcdeMerit .innerWrap{
	border: 4px solid #E5EEF5;
}
.inSecmerideme .blcWrap .blc.blcdeMerit .innerWrap .innerBox h5{
	background: #E5EEF5;
}


/* --------------------------------------- 

	カーリースの特徴

--------------------------------------- */
.secFeatures{
	position: relative;
	overflow: hidden;
}
.secFeatures::after{
	position: absolute;
	content: "";
	display: block;
	z-index: -1;
	background: #F4F3EF;
	height: 100%;
	width: 100%;
	left: 0;
	top: 200px;
}
.secFeatures .w900{
	padding-top: 0;
}
body:not(#home) .carleaseContents .secFeatures h2.secTtl{
	margin-top: 0;
}
.secFeatures ul li{
	border: 2px solid #DD0716;
	background: #fff;
	text-align: center;
	margin-bottom: 10px;
	padding-top: 15px;
	transition: all .4s;
}
.secFeatures ul li:hover{
	cursor: pointer;
	opacity: 0.5;
}
.secFeatures ul li img{
	width: 90px;
	margin-bottom: 10px;
}
.secFeatures ul li .lead{
	font-size: 18px;
	font-weight: 700;
	color: #DD0716;
	margin-bottom: 20px;
}
.secFeatures ul li:nth-of-type(2) .lead{
	font-size: 16px;
}
.secFeatures ul li .mTxt{
	color: #fff;
	font-weight: 700;
	background-color: #DD0716;
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-image: url(/noridoki/common/img/icon/icon_modal_open-wh.svg);
	background-size: 15px;
	line-height: 40px;
}
/* モーダル内 */
.modalContents{
	width: 90vw;
	height: 90vh!important;
	overflow-y: scroll;
}
.modalContents.iziModal .iziModal-wrap{
	padding: 30px;
}
.modalContents h3{
	color: #DD0716;
	text-align: center;
	border-bottom: 1px solid #DD0716;
	font-weight: 700;
	line-height: 1.3;
	padding-bottom: 12px;
	font-size: 18px;
	margin: 20px 0 20px;
	letter-spacing: 1px;
}
.modalContents.iziModal .iziModal-wrap img{
	width: 90px;
	display: block;
	margin: 0 auto;
}
.modalContents.iziModal .iziModal-wrap .txt{
	line-height: 1.7;
	margin-bottom: 20px;
}
.modalContents.iziModal .iziModal-wrap .modalClose{
	text-align: center;
	background: #DD0716;
	color: #fff;
	font-weight: 700;
	line-height: 46px;
}
@media print, screen and (min-width: 960px){
	.secFeatures{
		padding-bottom: 30px;
	}
	.secFeatures::after{
		top: 220px;
	}
	.secFeatures h2 br{
		display: none;
	}	
	.secFeatures ul{
		display: flex;
		justify-content: space-between;
	}
	.secFeatures ul li{
		width:270px;
		padding-top: 25px;
	}
	.secFeatures ul li img{
		width: 110px;
	}
	.secFeatures ul li .lead{
		font-size: 25px;
	}
	.secFeatures ul li:nth-of-type(2) img{
		margin-bottom: 0;
	}
	.secFeatures ul li:nth-of-type(2) .lead{
		font-size: 16px;
		font-size: 21px;
		margin-bottom: 15px;
	}
	.secFeatures ul li:nth-of-type(2) .lead br{
		display: none;
	}
	.secFeatures ul li:nth-of-type(2) .lead span{
		display: block;
		font-size: 18px;
	}

	/* モーダル内 */
	.modalContents{
		height: 78vh!important;
	}
}


/* --------------------------------------- 

	サービスの紹介

--------------------------------------- */
.secService .w900{
	padding-top: 0;
}
.secService ol{
	margin: 0;
	padding: 0;
}
.secService ol li h4{
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 10px;
}
.secService ol li h4 br{
	display: none;
}
@media print, screen and (min-width: 960px){
	.secService ol li h4{
		text-align: center;
		font-size: 18px;
		margin-bottom: 30px;
	}
	.secService ol li h4 br{
		display: inline;
	}
	.secService ol li .innerWrap{
		display: flex;
		justify-content: space-between;
	}
	.secService ol li .innerWrap .box{
		width: 530px;
	}
	.secService ol li .innerWrap .bnr{
		width: 270px;
	}
	.secService ol li .innerWrap .bnr a{
		border: none;
		height: 270px;

	}
}
