@charset "utf-8";
/* -----------------------------------------------------------------------
use : /sevenmax/about/carlease/

style.css

----------------------------------------------------------------------- */

.catchcopy {
	font-size:1.86em;
	line-height:1.5;
	font-weight:700;
	text-align:center;
}
.boxR {
	margin-top:25px;
	background:#ffffff;
	border-radius:10px;
}
.boxR .inner {
	width:100%;
	padding:20px;
}
.boxR .headLineF {
	padding:20px;
	line-height:1.5;
	font-weight:700;
	text-align:center;
	border-bottom:1px solid #DEDEDE;
}

/*----------------------------------------------------------
	Display：560px →（ tablet ）
----------------------------------------------------------*/

@media print, screen and (min-width:560px) {

	.boxR {
		margin-top:30px;
	}
	.boxR .inner {
		padding:30px 40px;
	}
	
}

/*----------------------------------------------------------
	Display：← 768px（ sp + tablet ）
----------------------------------------------------------*/

@media print, screen and (max-width:768px) {

	.boxR .inner .imgBox{
		max-width:380px;
		margin:0 auto 20px;
		text-align:center;
	}
	.boxR .inner .imgBox img{
		width:90%;
	}
	.boxR .headLineF {
		font-size:2.0rem;
	}
}

/*----------------------------------------------------------
	Display：769px →（ pc ）
----------------------------------------------------------*/

@media print, screen and (min-width:769px) {

	.catchcopy {
		font-size:2em;
		line-height:1.5;
		font-weight:700;
		text-align:center;
	}
	.boxR {
		margin-top:40px;
	}
	.boxR .headLineF {
		font-size:2.6rem;
	}
	.boxR .inner {
		padding:40px 50px;
	}

	.boxR .inner.flexPc {
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
  		-webkit-box-orient: horizontal;
  		-webkit-box-direction: reverse;
  		-ms-flex-direction: row-reverse;
  		flex-direction: row-reverse;
		-webkit-flex-wrap: wrap;
		-ms-flex-pack: wrap;
		flex-wrap: wrap;
	}
	.boxR .inner .txtBox{
		width:52.5%;
	}
	.boxR .inner .imgBox{
		width:40%;
	}

}



/*-----------------------------------------------------------------

	figure

-----------------------------------------------------------------*/

.figure01 {
	max-width:830px;
	margin:20px auto 0;
}
.figure05 {
	max-width:670px;
	margin:20px auto 0;
}

/*----------------------------------------------------------
	Display：560px →（ tablet + pc ）
----------------------------------------------------------*/

@media print, screen and (min-width:560px) {

	.figure01,
	.figure05 {
		margin-top:30px;
	}	

}



/*-----------------------------------------------------------------

	graph2cBox

-----------------------------------------------------------------*/

.graph2cBox{
	width:100%;
	position:relative;
}

.graph2cBox figure{
	position:relative;
	background:#ffffff;
	border-radius:10px;
}
.graph2cBox figure:first-child::after{
	display: block;
	content: '';
	background-image:url(/sevenmax/common/img/icon/icon_arrow.svg);
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:100% auto;
	position:absolute;
	z-index:2;
	transition: all 0.5s ease;
}
.graph2cBox figure figcaption{
	margin:0 auto 5px;
	font-size:1.6rem;
	line-height:1.5em;
	font-weight:900;
	text-align:center;
}
.graph2cBox figure:last-child figcaption{
	color:#45BC90;
	border-color:#45BC90;
}

/*----------------------------------------------------------
	Display：← 559px（ sp ）
----------------------------------------------------------*/

@media print, screen and (max-width:559px) {

	.graph2cBox figure{
		width:100%;
		max-width:400px;
		margin:15px auto;
		padding:15px 15px 5px;
	}
	.graph2cBox figure:first-child{
		margin-top:30px;
	}
	.graph2cBox figure:first-child::after{
		width: 50px;
		height: 64px;
		margin: 0 auto;
		bottom:-55px;
		left:0;
		right:0;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

}

/*----------------------------------------------------------
	Display：560px →（ tablet + pc ）
----------------------------------------------------------*/

@media print, screen and (min-width:560px) {
	
	.graph2cBox figure{
		width:47.5%;
		margin:30px 0 0;
		padding:20px 25px 10px;
	}

	.graph2cBox figure:first-child::after{
		width: 50px;
		height: 64px;
		margin: auto 0;
		top:0;
		bottom:0;
		right:-50px;
	}

}

/*----------------------------------------------------------
	Display：768px →（ tablet + pc ）
----------------------------------------------------------*/

@media print, screen and (min-width:768px) {
	
	.graph2cBox figure{
		width:47.5%;
		margin:30px 0 0;
		padding:25px 30px 10px;
	}

	.graph2cBox figure:first-child::after{
		width: 70px;
		height: 90px;
		margin: auto 0;
		top:0;
		bottom:0;
		right:-70px;
	}

}



/*-----------------------------------------------------------------

	fukidashiTTL

-----------------------------------------------------------------*/

.fukidashiTTL {
	margin-bottom:25px;
	text-align:center;
}
.fukidashiTTL span {
	display:inline-block;
	padding:10px 1.5em;
	font-size:1.29em;
	line-height:1.5;
	font-weight:700;
	text-align:center;
	border:4px solid #FFD900;
	position:relative;
}
.fukidashiTTL span::before {
	display: block;
	content: '';
	margin: 0 auto;
	width: 0;
	height: 0;
	border-right:10px solid transparent;
	border-left:10px solid transparent;
	border-top:15px solid #ffffff;
	position:absolute;
	bottom: -13px;
	left:0;
	right:0;
	transition:all 0.5s ease;
	z-index:2;
}
.fukidashiTTL span::after {
	display: block;
	content: '';
	margin: 0 auto;
	width: 0;
	height: 0;
	border-right:11px solid transparent;
	border-left:11px solid transparent;
	border-top:16px solid #FFD900;
	position:absolute;
	bottom: -20px;
	left:0;
	right:0;
	transition:all 0.5s ease;
	z-index:1;
}
/*----------------------------------------------------------
	Display：560px →（ tablet + pc ）
----------------------------------------------------------*/

@media print, screen and (min-width:560px) {

	.fukidashiTTL {
		margin-bottom:35px;
	}

}


/*-----------------------------------------------------------------

	headLineSideLine

-----------------------------------------------------------------*/

.headLineSideLine {
	width:100%;
	margin:0 auto 25px;
	text-align:center;
	position:relative;
	transition:all 0.5s ease;
}
.headLineSideLine::after {
	display: block;
	content: '';
	width:100%;
	height: 1px;
	margin: auto;
	background:#45BC90;
	position:absolute;
	top: 0;
	bottom:0;
	left:0;
	transition:all 0.5s ease;
}
.headLineSideLine span {
	display:inline-block;
	padding:0 1em;
	font-size:3.2rem;
	line-height:1.3;
	font-weight:700;
	letter-spacing:0.1em;
	text-indent:0.1em;
	color:#45BC90;
	background:#ffffff;
	position:relative;
	z-index:2;
}
.headLineSideLine span span{
	padding:0!important;
}
	
/*----------------------------------------------------------
	Display：← 559px（ sp ）
----------------------------------------------------------*/

@media print, screen and (max-width:559px) {

	.headLineSideLine span {
		padding:0 0.5em;
		font-size:2.8rem;
	}
	.headLineSideLine span span{
		display:none;
	}
}



/*-----------------------------------------------------------------

	boxList

-----------------------------------------------------------------*/

.boxList{
	width:100%;
	margin:20px auto 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-pack: wrap;
	flex-wrap: wrap;
}
.boxList > li {
	width:100%;
	padding:15px 5%;
	border:1px solid #DEDEDE;
	border-radius:10px;
	box-sizing:border-box;
}
.boxList > li h4 {
	margin-bottom:5px;
	font-size:1.29em;
	font-weight:700;
	text-align:center;
}

/*----------------------------------------------------------
	Display：← 559px（ sp ）
----------------------------------------------------------*/

@media print, screen and (max-width:559px) {

	.boxList > li {
		margin-top:15px;
	}
	.boxList > li:first-child {
		margin-top:0;
	}
	
}

/*----------------------------------------------------------
	Display：560px →（ tablet + pc ）
----------------------------------------------------------*/

@media print, screen and (min-width:560px) {

	.boxList {
		margin-top:30px;
	}
	.boxList > li {
		padding:20px 5%;
	}
	.boxList.c2 {
		max-width:670px;
	}
	.boxList.c2 > li {
		width:48%;
	}
	.boxList.c3 {
		max-width:940px;
	}
	.boxList.c3 > li {
		width:31.33%;
	}	

}


/*-----------------------------------------------------------------

	resultBox

-----------------------------------------------------------------*/

.resultBox {
	width:100%;
	max-width:640px;
	margin:25px auto 0;
	padding:10px 10px 5px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-pack: wrap;
	flex-wrap: wrap;
	background:#F0FAF7;
	border-radius:10px;
	position:relative;
}
.resultBox::after {
	display: block;
	content: '';
	margin: 0 auto;
	width: 0;
	height: 0;
	border-right:8px solid transparent;
	border-left:8px solid transparent;
	border-bottom:12px solid #F0FAF7;
	position:absolute;
	top: -11px;
	left:0;
	right:0;
	transition:all 0.5s ease;
}
.resultBox p:nth-child(1) {
	width:42.5%;
}
.resultBox p:nth-child(2) {
	width:57.5%;
}

/*----------------------------------------------------------
	Display：560px →（ tablet + pc ）
----------------------------------------------------------*/

@media print, screen and (min-width:560px) {
	
	.resultBox {
		margin-top:30px;
		padding:20px 20px 10px;
	}

}

/*-----------------------------------------------------------------

	車種・カーリースプランへのリンク

-----------------------------------------------------------------*/
.carServiceLink{
	background-color: #E7F6F2;
	padding: 20px 0;
}
.carServiceLink .carServiceInner{
	width: 80%;
	margin: auto;
}
.carServiceLink .carServiceInner a{
	display: inline-block;
	margin-top: 10px;
}

@media print, screen and (min-width:768px) {	
	.carServiceLink .carServiceInner{
		display: flex;
		gap: 16px;
	}	
}

@media print, screen and (min-width:960px) {	
	.carServiceLink{
		padding: 30px 0;
	}
	.carServiceLink .carServiceInner{
		padding: 0 20px 0;
		width: 960px;
		gap: 30px;
	}
	.carServiceLink .carServiceInner a:hover{
		transition: all .4s;
		opacity: 0.6;
	}
}