@charset "UTF-8";

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

レンダリングブロックCSS対策（優先読み込み）

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

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

MV css

---------------------------------- */
@media print, screen and (min-width: 960px){
	body{
		padding-top: 150px;
	}
}

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

h1

---------------------------------- */
h1{
	padding: 15px;
	font-weight: 700;
	font-size: 21px;
	text-align: center;
	position: relative;
	z-index: 3;
}
h1 span{
	font-size: 14px;
	font-weight: 400;
}
@media print, screen and (min-width: 960px){
	.h1Wrap{
		width: 960px;
		margin: 0 auto;	
	}
	h1{
		width: 400px;
		font-size: 26px;
		padding: 0;
		padding-top: 15px;
		text-align: left;
	}
	/* h1 br{
		display: none;
	} */
	 h1 span{
		font-size:16px;
	}
}
@media print, screen and (min-width: 1180px){
	.pageHeader h1 {
		padding-left: 60px;
	}
}
@media print, screen and (min-width: 1280px){
	.pageHeader h1 span{
		font-size: 21px;
	}
}

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

ページ内ナビ

---------------------------------- */
.pageHeader{
	border-top: 1px solid #DEDEDE;
}

.pageHeader .inner nav{
	display: none;
}
@media print, screen and (min-width: 960px){
	.pageHeader{
		position: fixed;
		top: 90px;
		left: 0;
		width: 100%;
		background: #fff;
		z-index: 9990;
		box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	}
	.pageHeader .inner{
		width: 100%;
		max-width: 1440px;
		margin: 0 auto;
		overflow: hidden;
	}
	.pageHeader .inner nav{
		display: block;
	}
	.pageHeader .inner nav ul{
		display: flex;
		justify-content: center;
	}
	.pageHeader .inner nav ul li a{
		font-size: 14px;
		color: #263D50;
		display: block;
		margin:0 10px;
		line-height: 60px;
	}
	.pageHeader .inner nav ul li a:hover{
		opacity: 0.5;
		transform: scale(1.05);
	}
}
@media print, screen and (min-width: 1080px){
	.pageHeader .inner nav ul li a{
		margin:0 20px;
	}
}
@media print, screen and (min-width: 1280px){
	.pageHeader .inner nav ul li a{
		font-size: 15px;
	}
}

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

	MV

---------------------------------- */
.secMv .mvInner{
	position: relative;
}
@media print, screen and (min-width: 960px){
	.secMv{
		position: relative;
		max-width:1440px;
		margin: 0px auto 0;
		z-index: 1;
	}
	.secMv .mvInner{
		width: 960px;
		margin: 0 auto;
	}
}

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

	最低価格保証

---------------------------------- */
.secMv .priceGuaranteeOuter{
	background: #263d50;
}
.secMv .priceGuarantee{
	padding: 16px 15px 15px;
	color: #fff;
	overflow: hidden;
}
.secMv .priceGuarantee .inner{
	float: left;
}
.secMv .priceGuarantee .inner p{
	font-weight: 700;
	text-align: center;
}
.secMv .priceGuarantee .inner .lead{
	background: #55AFB3;
	color: #fff;
	font-size: 11px;
	padding:5px 8px;
	letter-spacing: 1px;
	display: inline-block;
}
.secMv .priceGuarantee .inner .txt{
	font-size: 31px;
	letter-spacing: 2px;
}
.secMv .priceGuarantee .inner .txt span{
	display: none;
}

.secMv .priceGuarantee .priceGuaranteeDetailBtn{
	display: block;
	position: relative;
	text-align: center;
	float: right;
	border-radius: 6px;
	border: 1px solid #fff;
	font-weight: 700;
	color: #fff;
	font-size: 14px;
	width: 95px;
	height: 52px;
	padding-top: 15px;
	transition: all .4s;
}
.secMv .priceGuarantee .priceGuaranteeDetailBtn::after{
	position: absolute;
	content:"";
	bottom: 8px;
	right: 0;
	left: 0;
	margin: auto;
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform:rotate(135deg);
}

.priceGuaranteeDetail{
  display: none;
}
@media print, screen and (min-width: 960px){
.secMv .priceGuarantee{
		padding: 22px 0 18px;
		width: 960px;
		margin: 0 auto;
	}
	.secMv .priceGuarantee .inner{
		display: flex;
		align-items: center;
	}
	.secMv .priceGuarantee .inner .lead{
		position: relative;
		font-size: 22px;
		padding: 8px 12px;
	}
	.secMv .priceGuarantee .inner .lead::after{
		content:"";
		position: absolute;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 5px 5px 5px;
		border-color: transparent transparent #55AFB3 transparent;
		top: 0;
		bottom: 0;
		right: -5px;
		margin: auto;
		
	}
	.secMv .priceGuarantee .inner .txt{
		font-size: 32px;
		padding-top: 0;
		padding-left: 20px;
	}
	.secMv .priceGuarantee .inner .txt span{
		font-weight: normal;
		display: inline;
	}
	.secMv .priceGuarantee .priceGuaranteeDetailBtn{
		width: 125px;
    height: 37px;
    line-height: 37px;
		text-align-last: left;
		padding-left: 18px;
		margin-top: 6px;
		padding-top: 0;
		font-weight: normal;
	}
	.secMv .priceGuarantee .priceGuaranteeDetailBtn:hover{
		cursor: pointer;
		opacity: 0.6;
	}
	.secMv .priceGuarantee .priceGuaranteeDetailBtn::after{
		bottom: 0;
		top: 0;
    right: 10px;
    left: auto;
	}
}


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

プライス　＆　Car

---------------------------------- */
.secMv .mvPriceBox{
	text-align: center;
	padding-top: 17px;
}
.secMv .mvPriceBox .totalPrice{
	display: inline-block;
	width: 113px;
	height: 108px;
	border-radius: 7px;
	margin-right: 4px;
	text-align: center;
	overflow: hidden;
	border: 1px solid #55afb3;
}
.secMv .mvPriceBox .totalPrice .ttl{
	background: #55afb3;
	font-weight: 700;
	line-height: 28px;
	position: relative;
	color: #fff;
	font-size: 13px;
	letter-spacing: 1px;
}
.secMv .mvPriceBox .totalPrice .ttl::after{
	position: absolute;
	content: "";
	display: block;
	background: #55afb3;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	left: 0;
	right: 0;
	bottom: -3px;
	margin: auto;
}
.secMv .mvPriceBox .totalPrice .priceBlc{
	padding-top: 13px;
}
.secMv .mvPriceBox .totalPrice .priceBlc .price{
	font-size: 32px;
	font-weight: 700;
	vertical-align: bottom;
	letter-spacing: -1px;
}
.secMv .mvPriceBox .totalPrice .priceBlc .yen{
	font-size: 11px;
	font-weight: 900;
	position: relative;
	vertical-align: top;
	padding-top: 17px;
	display: inline-block;
}
.secMv .mvPriceBox .totalPrice .priceBlc .yen span{
	position: absolute;
	font-size: 9px;
	left: 0px;
	top: 3px;
	font-weight: 400;
}
.secMv .mvPriceBox .totalPrice .totalNum{
	font-size: 10px;
	padding-top: 4px;
}
.secMv .mvPriceBox .totalPrice .totalNum span{
	font-size: 11px;
}

.secMv .mvPriceBox .monthlyPrice{
	display: inline-block;
	vertical-align: top;
}
.secMv .mvPriceBox .monthlyPrice .label{
	display: inline-block;
	border-radius: 5px;
	font-weight: 900;
	height: 26px;
}
.secMv .mvPriceBox .monthlyPrice .label .txt{
	line-height: 26px;
	font-size: 10px;
	display: inline-block;
	vertical-align: top;
	padding-right: 5px;
}
.secMv .mvPriceBox .monthlyPrice .label .ftNum{
	color: #55AFB3;
	font-weight: 900;
	font-size: 26px;
}
.secMv .mvPriceBox .monthlyPrice .label .en{
	color: #55AFB3;
	font-weight: 900;
	font-size: 10px;
}
.secMv .mvPriceBox .monthlyPrice .atamakin{
	width: 94px;
	border: 1px solid #55afb3;
} 
.secMv .mvPriceBox .monthlyPrice .bonus{
	width: 110px;
	border: 1px solid #55afb3;
} 

.secMv .mvPriceBox .monthlyPrice .priceTxt{
	overflow: hidden;
	padding-top: 8px;
	padding-left: 4px;
}
.secMv .mvPriceBox .monthlyPrice .priceTxt .txt{
	float: left;
	font-weight: 900;
	color: #2B455C;
	margin-right: 10px;
	font-size: 20px;
}
.secMv .mvPriceBox .monthlyPrice .priceTxt .countBox{
	background: #55afb3;
	border-radius: 100px;
	height: 24px;
	width:106px;
	color: #fff;
	font-size: 12px;
	float: left;
	padding:2px 15px 0;
	position: relative;
}
.secMv .mvPriceBox .monthlyPrice .priceTxt .countBox .year{
	font-weight: 900;
	font-size: 19px;
	padding-right: 2px;
}
.secMv .mvPriceBox .monthlyPrice .priceTxt .countBox .count{
	font-weight: 900;
	font-size: 16px;
	padding-left:16px;
}
.secMv .mvPriceBox .monthlyPrice .priceTxt .countBox .splite{
	height: 1px;
	width: 15px;
	background: #fff;
	transform: rotate(-60deg);
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 42px;
	margin: auto;
}
.secMv .mvPriceBox .monthlyPrice .priceNum{
	color: #2B455C;
	font-size: 25px;
	font-weight: 700;
	position: relative;
}
.secMv .mvPriceBox .monthlyPrice .priceNum .ftNum{
	font-size: 59px;
	letter-spacing: -0.5px;
}
.secMv .mvPriceBox .monthlyPrice .priceNum .tax{
	font-size: 12px;
	position: absolute;
	top: 12px;
	right: 2px;
}
.secMv .mvPriceBox .monthlyPrice .priceNum .carCamp{
	display: block;
	font-size: 12px;
	margin-top: 3px;
}
.secMv .mvPriceBox .monthlyPrice .priceNum .carCamp .inner{
	color: #a6a7a7;
}
.secMv .mvPriceBox .oneTimePayment{
	text-align: center;
	background: #056cb5;
	border-radius: 6px;
	color: #fff;
	font-weight: bold;
	width: calc(100% - 40px);
	margin: 4px auto 0;
	padding: 10px 0 8px;
}
.secMv .mvPriceBox .oneTimePayment span{
	display: block;
	font-size: 10px;
	padding-top: 5px;
	letter-spacing: 0.5px;
	line-height: 1.4;
}

.secMv .mvCarImg{
	margin: 0 auto;
	width: calc(100% - 80px);
	position: relative;
}

.secMv .mvCarImg .attention{
	padding: 0 12px 0;
	margin-top: 10px;
	text-align: center;
	font-weight: 400;
	font-size: 12px;
	color: #000;
	line-height: 1.3;
}

.secMv .mvInner.cevOn .mvPriceBox .oneTimePayment{
	display: none;
}

.secMv .mvCarImg .noteLexus{
	font-size: 11px;
	font-weight: bold;
	text-shadow: none ;
	background-color: rgba(255,255,255,0.8);
	z-index: 3;
	color: #F24E61;
}
@media print, screen and (min-width: 768px){
	.secMv .mvCarImg{
		margin: 0 auto;
		width: 350px;
	}
	.secMv .mvCarImg .noteLexus{
		margin: 0;
		display: block;
		font-size: 12px;
		width: 435px;
		text-align: left;
	}
}
@media print, screen and (min-width: 960px){
	.secMv .mvPriceBox {
    text-align: right;
		padding-top: 0;
		padding-bottom: 90px;
		transform-origin: right top;
		transform: scale(1.4);
		overflow: hidden;
		/* margin-top: -30px; */
		margin-top: -45px;
	}
	.secMv .mvPriceBox .totalPrice{
		margin-right: 10px;
		width: 120px;
		height: 112px;
	}
	.secMv .mvPriceBox .monthlyPrice .atamakin,
	.secMv .mvPriceBox .monthlyPrice .bonus{
		text-align: center;
	}

	.secMv .mvPriceBox .oneTimePayment{
		border-radius: 7px;
		width: 345px;
		margin-right: 0;
	}
	.secMv .mvPriceBox .oneTimePayment span{
		transform: scale(0.8);
		font-size: 8px;
		line-height: 1.6;
	}

	.secMv .mvCarImg{
		position: absolute;
		top: 40px;
		left: 0px;
		width: 400px;
		text-align: center;
	}

	.secMv .mvCarImg .attention{
		padding: 0 ;
		margin: 0px;
		margin-top: -10px;
		text-align: left;
		display: block;
	}

	.secMv .mvCarImg .noteLexus{
		left: -50px;
		bottom:0px;
		top: 0;
		width: 466px;
		letter-spacing: 1px;
		background: none;
	}
}

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

	グレード・燃料・駆動

---------------------------------- */
.secMv .mvChoiceBox{
	padding: 10px;
}
.secMv .mvChoiceBox .specChoice {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.secMv .mvChoiceBox .specChoice h2{
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 10px;
}
.secMv .mvChoiceBox .specChoice input{
	display: none;
}
.secMv .mvChoiceBox .specChoice label{
	display: block;
	height: 100%;
	transition: all .4s;
	background: #fff;
	border-radius: 6px;
	box-shadow: 1px 1px 0 0 rgba(0,0,0,0.1);
}
.secMv .mvChoiceBox .specChoice label:hover{
	opacity: 0.5;
	cursor: pointer;
}
.secMv .mvChoiceBox .specChoice input:checked + label{
	border: 1px solid #55AFB3;
	color: #55AFB3;
	font-weight: 700;
}
.secMv .mvChoiceBox .specChoice input:disabled + label{
	background: #F2F2F2;
	box-shadow: none;
	border: 1px solid #c4c5c7;
	color: #9c9999;
}
.secMv .mvChoiceBox .specChoice input:disabled + label:hover{
	pointer-events: none;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox,
.secMv .mvChoiceBox .specChoice .mvFuelBox,
.secMv .mvChoiceBox .specChoice .mvDriveBox{
	border-radius: 6px;
	background: #F2F2F2;
	text-align: center;
	padding: 10px 15px;
	min-height: 60px;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox{
	width: 100%;
	margin-bottom: 2%;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox ul{
	display: flex;
	flex-wrap: wrap;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox ul.gredeCount_1{
	justify-content: center;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox ul.gredeCount_2{
	justify-content: space-between;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox ul.gredeCount_other{
	gap:2%;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li{
	margin-bottom: 3%;
	font-size: 12px;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox .gredeCount_1 li{
	width: 50%;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox .gredeCount_2 li{
	width: 49%;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox .gredeCount_other li{
	width: 32%;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li label{
	padding: 10px 6px;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li label img{
	width: 82px;
	display: block;
	margin: 0 auto 4px;
}
.secMv .mvChoiceBox .specChoice .mvFuelBox,
.secMv .mvChoiceBox .specChoice .mvDriveBox{
	width: 49%;
}
.secMv .mvChoiceBox .specChoice .mvFuelBox li,
.secMv .mvChoiceBox .specChoice .mvDriveBox li{
	margin-bottom: 5px;
	font-size: 14px;
}
.secMv .mvChoiceBox .specChoice .mvFuelBox li label{
	padding: 15px 0;
}
.secMv .mvChoiceBox .specChoice .mvDriveBox li{
	line-height: 45px;
}

@media print, screen and (min-width: 960px){
	.secMv .mvChoiceBox{
		padding: 0;
		/* padding-top: 146px; */
		padding-bottom: 0px;
		position: relative;
		z-index: 4;
	}
	.secMv .mvChoiceBox .specChoice .mvGradeBox{
		width: 420px;
		margin-bottom:0;
		padding-top: 15px;
		padding-bottom: 5px;
	}
	.secMv .mvChoiceBox .specChoice .mvFuelBox,
	.secMv .mvChoiceBox .specChoice .mvDriveBox{
		width: 255px;
		padding-top: 15px;
		padding-bottom: 0;
	}
	.secMv .mvChoiceBox .specChoice .mvFuelBox li,
	.secMv .mvChoiceBox .specChoice .mvDriveBox li{
		margin-bottom: 10px;
		border-radius: 6px;
		line-height: 60px;
	}
	.secMv .mvChoiceBox .specChoice .mvFuelBox li label{
		padding: 0;
	}
	.secMv .mvChoiceBox .specChoice .mvGradeBox li label img{
		width: 105px;
	}
}

/* ----------------------------------
個別グレード非表示対応
---------------------------------- */
.secMv .mvChoiceBox .specChoice .mvGradeBox li.gradehide_flg{
	position: relative;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li.gradehide_flg label{
	opacity: 0.4;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li.gradehide_flg .gradehideModal{
	position: absolute;
	top: -10px;
	left: -20px;
	z-index: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .4s;
	height: 0;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li.gradehide_flg .gradehideModal.open{
	opacity: 1;
	visibility: visible;
	top: -60px;
	z-index: 2;
	height: 50px;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li.gradehide_flg .gradehideModal label{
	width: 240px;
	padding: 10px 0;
	background: #F24E61;
	border-radius: 6px;
	text-align: center;
	font-weight: bold;
	color: #fff;
	opacity: 1;
	display: block;
	font-size: 14px;
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li.gradehide_flg .gradehideModal label::after{
	content:"";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 7px 7px 7px;
	border-color: transparent transparent #F24E61 transparent;
	bottom: -7px;
	left: 60px;
	margin: auto;
	transform:rotate(180deg);
}
.secMv .mvChoiceBox .specChoice .mvGradeBox li.gradehide_flg .gradehideModal label span{
	display: block;
	font-size: 12px;
	padding-bottom: 4px;
}


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

Ohter　Spec

---------------------------------- */
.secMv .otherSpec{
	padding: 10px;
	padding-bottom: 0;
	display: flex;
	flex-wrap: wrap;
}
.secMv .otherSpec .otherSpecBox{
	border-right: 1px solid #DEDEDE;
	width: calc(100% / 3);
	text-align: center;
	font-weight: 700;
	padding: 5px 0;
}
.secMv .otherSpec .otherSpecBox:nth-of-type(3){
	border: none;
}
.secMv .otherSpec .otherSpecBox dt{
	font-size: 12px;
	margin-bottom: 7px;
}
.secMv .otherSpec .otherSpecBox dd{
	font-size: 14px;
}
.secMv .otherSpec .color,
.secMv .otherSpec .optionDtl{
	width: 50%;
	border: 1px solid #60B8BC;
}
.secMv .otherSpec .color .txtPc,
.secMv .otherSpec .optionDtl .txtPc{
	display: none;
}
.secMv .otherSpec .color{
	border-radius: 4px 0 0 4px;
}
.secMv .otherSpec .optionDtl{
	border-left: none;
	border-radius: 0 4px 4px 0;
}
.secMv .otherSpec .color a,
.secMv .otherSpec .optionDtl a{
	text-align: center;
	color: #263D50;
	line-height: 46px;
	display: block;
}

@media print, screen and (min-width: 960px){
	.secMv .otherSpec{
		padding: 0;
		width: 53%;
		/* border: 1px solid #DEDEDE; */
		border-bottom:none;
	}
	.secMv .otherSpec .otherSpecBox{
		font-weight: normal;
		text-align: left;
		margin-bottom: 0;
		padding: 15px 0;
		width: auto;
		padding-right: 20px;
	}
	.secMv .otherSpec .otherSpecBox:not(:first-child){
		padding-left: 20px;
	}

	.secMv .otherSpec .otherSpecBox dt,
	.secMv .otherSpec .otherSpecBox dd{
		font-size: 16px;
		display: inline-block;
		margin-bottom: 0;
		vertical-align: bottom;
		line-height: 1;
	}
	.secMv .otherSpec .otherSpecBox dt{
		padding-top: 2px;
	}
	.secMv .otherSpec .otherSpecBox dd{
		padding-left: 10px;
	}
	.secMv .otherSpec .otherSpecBox dd.spec_cc span,
	.secMv .otherSpec .otherSpecBox dd.capacity span,
	.secMv .otherSpec .otherSpecBox dd .fuel_economy{
		font-size: 18px;
		vertical-align: bottom;
		line-height: 1;
	}
	.secMv .otherSpec .otherSpecBox dd.capacity span span{
		font-size: 16px;
	}
	.secMv .otherSpec .color,
	.secMv .otherSpec .optionDtl{
		width: 27%;
		border: none;
		border-left: 1px solid #DEDEDE;
		padding-left: 20px;
	}
	.secMv .otherSpec .color .txtSp,
	.secMv .otherSpec .optionDtl .txtSp{
		display: none;
	}
	.secMv .otherSpec .color .txtPc,
	.secMv .otherSpec .optionDtl .txtPc{
		display: block;
		font-size: 14px;
	}
	.secMv .otherSpec .color .txtPc a,
	.secMv .otherSpec .optionDtl .txtPc a{
		border-radius: 6px;
		border: 1px solid #60B8BC;
		display: inline-block;
		width: 76px;
		text-align: center;
		line-height: 28px;
		font-size: 14px;
		margin-left: 15px;
	}
	.secMv .otherSpec .color .txtPc a:hover,
	.secMv .otherSpec .optionDtl .txtPc a:hover{
		opacity: 0.4;
	}

	.secMv .otherSpec .color a,
	.secMv .otherSpec .optionDtl a{
		line-height: 40px;
	}
}

/* ----------------------------------
規定走行距離　モーダル
---------------------------------- */
.mileage_discription{
	display: none;
}

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

クレジット表記

---------------------------------- */
.secMv .creditBox{
	position: absolute;
	top: 213px;
	left: 23px;
}
.secMv .creditBox .mvLead{
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
 }
 .secMv .mvCreditImg{
	 margin-bottom: 8px;
	 padding: 7px 0;
 }
 .secMv .mvCreditImg .txt{
	 display: none;
 }
 .mvCreditImg .cardBrand{
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 flex-wrap: wrap;
	 gap: 3px;
	 width: 120px;
 }
 .mvCreditImg .cardBrand li{
	 width: 38px;
	 padding: 0 5px;
 }
 .secMv .creditBox .creditInnerNav .innerNav{
	display: none;
 }
 .secMv .mvInner.cevOn .mvCreditImg{
	display: none;
 }

@media print, screen and (min-width: 960px){
	.secMv .creditBox{
		left: 0;
		top: 30px;
	}
	.secMv .creditBox .creditBoxInner{
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 960px;
	}
	.secMv .creditBox .mvLead{
		font-size: 24px;
		font-weight: 900;
	 }
	 .innerNav{
		display: none;
	 }
	 .secMv .creditBox .creditInnerNav .innerNav{
		display: block;
	 }
	 .secMv .mvCreditImg{
		display: none;
	 }
}

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

CEV 情報

---------------------------------- */
.secMv .evSpec{
	padding: 15px 0px 0;
	display: flex;
	width: 100%;
}
.secMv .evSpec dl{
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	border-right: 1px solid #DEDEDE;
	width: calc(100% / 3);
}
.secMv .evSpec dl:last-child{
	border-right: none;
}
.secMv .evSpec dl dt{
	padding-bottom: 6px;
}
.secMv .evSpec dl dd span{
	font-size: 14px;
}
@media print, screen and (min-width: 960px){
	.secMv .evSpec{
		padding: 10px 0 0px;
	}
	.secMv .evSpec dl{
		font-size: 12px;
		font-weight: normal;
		display: flex;
		justify-content: center;
	}
	.secMv .evSpec dl dt{
		padding-right: 8px;
	}
}



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

	料金表 & カラー & オプション & 規定走行距離

---------------------------------- */
.secMv .secondBlcWrap{
padding: 0 20px;
}
.secMv .tglWrapper{
	border-top: 1px solid #DEDEDE;
}
.secMv .secondBlcWrap .secondBlcTtl{
	padding-top: 15px;
}
.secMv .secondBlcWrap h2{
	width: 100%;
	font-weight: 700;
	font-size: 16px;
	position: relative;
	margin-bottom: 20px;
	transition: all .4s;
}
.secMv .secondBlcWrap .tglBtn h2::after{
	position: absolute;
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border: 1px solid #60B8BC;
	border-radius: 100%;
	top: 1px;
	right: 0;
	margin: auto;
}
.secMv .secondBlcWrap .tglBtn h2:hover{
	cursor: pointer;
	opacity: 0.5;
}
.secMv .secondBlcWrap .tglBtn h2 span{
	position: relative;
	width: 100%;
	display: block;
}
.secMv .secondBlcWrap .tglBtn h2 span::after,
.secMv .secondBlcWrap .tglBtn h2 span::before{
	position: absolute;
	display: block;
	content: "";
	height: 1px;
	width: 8px;
	right: 4px;
	top: 9px;
	z-index: 2;
	background: #60B8BC;
	transition: all .4s;
}
.secMv .secondBlcWrap .tglBtn h2 span::after{
	transform: rotate(90deg);
}
.secMv .secondBlcWrap .tableOpen h2 span::after{
	transform: rotate(0deg);
}
.secMv .secondBlcWrap .tglContents{
	display: none;
}
@media print, screen and (min-width:960px){
	.secMv .secondBlcWrap{
		padding: 0;
	}
	.secMv .secondBlcWrap .tglBtn h2{
		width: 270px;
		border-radius: 100px;
		border: 1px solid #55AFB3;
		padding: 10px 15px;
	}
	.secMv .secondBlcWrap .tglBtn h2::after{
		top: 11px;
    right: 15px;
	}

	.secMv .secondBlcInner{
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-bottom: 20px;
	}
	.secMv .secondBlcInner .secondBlcInnerBox{
		width: 45%;
	}
	.secMv .secondBlcInner .secondBlcInnerBox .tglWrapper{
		border-top: none;
	} 
	.secMv .secondBlcInner .mileage_wrap{
		width: 50%;
		padding-left: 40px;
	}
	.secMv .secondBlcInner .selectOptionBox{
		border-bottom: none;
	}
}

/* ----------------------------------
	料金表
---------------------------------- */

#priceListBtn + .tglContents{
	display: block;
	max-height: 140px;
	overflow: hidden;
	transition: all .4s;
	position: relative;
}
#priceListBtn + .tglContents.tableOpen{
	max-height: 100%;
	overflow: auto;
}
#priceListBtn + .tglContents::before{
	position: absolute;
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(to top, white, rgba(255, 255, 255, 0.3));
}
#priceListBtn + .tglContents.tableOpen::before{
	background: none;
}
.secMv .priceListTable .tableWrap{
	transition: all .4s;
	overflow: auto; 
	white-space: nowrap;
	padding:0 20px 20px;
}
.secMv .priceListTable .tableOpen.tableWrap{
	opacity: 1;
}
/*スクロールバー*/
.secMv .priceListTable .tableWrap::-webkit-scrollbar{
	height: 5px;
 }
 .secMv .priceListTable .tableWrap::-webkit-scrollbar-track{
	background: #333;
 }
 .secMv .priceListTable .tableWrap::-webkit-scrollbar-thumb {
	background: #999;
 }
 .secMv .priceListTable .tableWrap table{
	text-align: left;
	table-layout: fixed;
	min-width: 980px;
	width: 100%;
 }
 .secMv .priceListTable .tableWrap table th,
 .secMv .priceListTable .tableWrap table td{
	padding: 15px;
	white-space: normal;
 }
 .secMv .priceListTable .tableWrap table th{
	border-bottom: 1px solid #2B455C;
 }
 .secMv .priceListTable .tableWrap table td{
	border-bottom: 1px solid #DEDEDE;
 }
 .secMv .priceListTable .tableWrap table .priceListTableGradeSP{
	width: 120px;
	min-width: 120px;
	white-space: normal; 
 }
 @media print, screen and (min-width:960px){
	
	.secMv .priceListTable .tableWrap{
		overflow: visible; /*スクロール解除*/
		white-space: normal; /*文字の折り返しを禁止解除*/
		padding: 0;
		padding-bottom: 30px;
		border-bottom: 1px solid #dedede;
	}
	.secMv .priceListTable .tableWrap table{
		width: 100%;
		min-width: 960px;
	 }
	.secMv .priceListTable .tableWrap table td:first-child{
		max-width: 260px;
	}
 }

 /* ----------------------------------
	カラー表
---------------------------------- */
.secMv .color{
	border-bottom: 1px solid #DEDEDE;
}


/* ----------------------------------
	オプション
---------------------------------- */
.selectOptionBox{
	border-bottom: 1px solid #DEDEDE;
	padding-bottom: 15px;
}
.selectOptionBox ul{
	padding: 0px 20px;
}
.selectOptionBox li{
	padding-left: 13px;
	position: relative;
	font-size: 14px;
	margin-bottom: 8px;
	line-height: 1.4;
}
.selectOptionBox li span{
	color: #f24e61;
	font-size: 12px;
}
.selectOptionBox li::after{
	content: "";
	display: block;
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background: #000;
	left: 0;
	top: 8px;
}
@media print, screen and (min-width: 960px){
	.selectOptionBox ul{
		padding: 0 10px;
	}
	.selectOptionBox li{
		padding-left: 15px;
		font-size: 16px;
	}
	.selectOptionBox li span{
		font-size: 14px;
	}
	.selectOptionBox li::after{
		width: 6px;
		height: 6px;
		top: 9px;
	}
}

/* ----------------------------------
 規定走行距離
---------------------------------- */
.secMv .mileage_wrap{
	padding-bottom: 20px;
}
.secMv .mileage_wrap .mileageTxt{
	font-size: 14px;
	line-height: 1.7;
}
.secMv .mileage_wrap .mileageTxt span{
	font-size: 12px;
	display: block;
}
.secMv .mileage_wrap .miligeBtn{
	text-align: center;
	color: #60B8BC;
	font-size: 14px;
	font-weight: bold;
	line-height: 45px;
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-image: url(/carlist/_assets/common_detail/v3/top/mv/img/ico-modal.svg);
	border: 1px solid #60B8BC;
	border-radius: 8px;
	margin-top: 10px;
}
.secMv .mileage_wrap .miligeBtn:hover{
	cursor: pointer;
}

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

終売車種　問い合わせ

---------------------------------- */
.fincarAddBox{
	width:100%;
	background: #F2F2F2;
	padding: 30px;
}
.fincarAddBox .fincarImg{
	text-align: center;
	display: none;
}
.fincarAddBox .fincarImg img{
	width: 250px;
}
.fincarAddBox .txtBox{
	margin-bottom: 20px;
}
.fincarAddBox .txtBox strong{
	display: block;
	font-weight: 700;
	line-height: 1.5;
}
.fincarAddBox .txtBox .notes{
	padding-top: 10px;
}
.fincarAddBox .txtBox .notes p{
	font-size: 12px;
	text-indent: -1em;
  padding-left: 1em;
	margin-bottom: 4px;
	line-height: 1.4;
}
.fincarAddBox .basicBtnException{
	padding: 0;
	border-radius: 8px;
}
.fincarAddBox .basicBtnException label{
	font-size: 16px;
	line-height: 60px;
	text-align: center;
}
.fincarAddBox.fincar_pt_3 .fincarImg{
	display: none;
}
@media print, screen and (min-width: 960px){
	.fincarAddBox{
		border-radius: 10px;
		position: relative;
    padding: 35px 50px 30px;
		padding-right: 30px;
		margin-top: 50px;
	}
	.fincarAddBox .fincarImg{
		display: block;
		position: absolute;
		top:20px;
		left: 70px;
	}
	.fincarAddBox .fincarImg img{
		width: 350px;
	}
	.fincarAddBox .txtBox{
		padding-top:180px;
		padding-bottom: 0px;
		margin-bottom: 0;
	}
	.fincarAddBox .txtBox strong{
		font-size: 18px;
		letter-spacing: 1px;
		line-height: 1.9;
	}
	.fincarAddBox .basicBtnException{
		width: 450px;
		position: absolute;
		right: 25px;
		top: 50px;
	}
	.fincarAddBox .basicBtnException label{
		line-height: 130px;
		font-size: 21px;
	}
	.fincarAddBox .basicBtnException label:hover{
		cursor: pointer;
	}

	.fincarAddBox.fincar_pt_3 {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-top: -50px;
	}
	.fincarAddBox.fincar_pt_3 .txtBox{
		padding-top: 0;
	}
	.fincarAddBox.fincar_pt_3 .txtBox strong{
		line-height: 1.7;
	}
	.fincarAddBox.fincar_pt_3  .basicBtnException{
		position: static;
	}
}


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

ハリアー注釈

---------------------------------- */
#harrierSMPnotes{
	display: none;
}
#harrierSMPnotes.SMP{
	display: block;
	font-size: 14px;
}

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

MV下コンテンツラッパー

------------------------------------------*/
.evNotes{
	display: none;
}
.evNotes.cevOn{
	display: block;
}
@media print, screen and (min-width: 768px){
	.mvUnderWrap{
		position: relative;
	}
	.evNotes{
		padding: 30px 20px;
	}
	.mvUnderWrap::after{
		content: "";
		display: block;
		clear: both;
	}
}
@media print, screen and (min-width: 960px){
	.mvUnderWrap .evNotes{
		width: 960px;
		margin: 0 auto;
		padding: 30px 0px;
	}
}


.secContentNav{
	display: none;
}


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

CEV補助金

---------------------------------- */
.mvInner.cevOn .cevNotes {
	padding: 0;
}
.mvInner.cevOn .cevNotes .cevInner{
	position: relative;
	margin: auto;
	width: 335px;
	height: 95px;
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url(./img/graph-cevprice.svg);
	background-size: contain;
	display: block;
}
.mvInner.cevOn .cevNotes p{
	position: absolute;
	color: #fff;
	font-weight: 700;
	text-align: center;
	font-size: 13px;
	line-height: 1.3;
}
.mvInner.cevOn .cevNotes .total{
	top: 30px;
	left: 18px;
}
.mvInner.cevOn .cevNotes .total .wrap{
	display: block;
	font-size: 11px;
}
.mvInner.cevOn .cevNotes .total .ftNum{
	font-size: 16px;
}
.mvInner.cevOn .cevNotes .subsidy{
	top: 9px;
	right: 10px;
}
.mvInner.cevOn .cevNotes .subsidy .wrap{
	font-size: 11px;
}
.mvInner.cevOn .cevNotes .subsidy .wrap .ftNum{
	font-size: 16px;
}
.mvInner.cevOn .cevNotes .cevTotal{
	bottom: 7px;
	right: 10px;
	font-size: 15px;
}
.mvInner.cevOn .cevNotes .cevTotal .wrap{
	display: block;
	font-size: 12px;
}
.mvInner.cevOn .cevNotes .cevTotal .wrap .ftNum{
	font-size: 18px;
}
.mvInner.cevOn .cevNotes div{
	font-size: 12px;
	width: 335px;
	margin: 4px auto 0;
}


@media print, screen and (min-width: 960px){
	.mvInner.cevOn .mvPriceBox{
		/* padding-bottom: 205px; */
	}
	.secMv .mvInner.cevOn .otherSpec{
		/* top: 340px;
		right: auto;
		left: -35px; */
	}
	.secMv .mvInner.cevOn .creditBox{
		top: 30px;
	}
	.mvInner.cevOn .cevNotes{
		width: 345px;
		/* height: 135px; */
		margin-left: auto;
		margin-right: 0;
	}
	.mvInner.cevOn .cevNotes .cevInner{
		width: 100%;
		height: 98px;
	}
	.mvInner.cevOn .cevNotes div{
		font-size: 10px;
	}
}


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

  EV車 MV下　注釈

-------------------------------- */
.evNotes{
	padding: 30px;
}
.evNotes dl.hojyokin{
	border: 1px solid #DEDEDE;
	border-radius: 6px;
	padding: 20px 30px;
}
.evNotes dl.hojyokin dt{
	text-align: center;
	margin-bottom: 12px;
	font-weight: 700;
	font-size: 14px;
}
.evNotes dl.hojyokin dd{
	font-size: 12px;
	line-height: 1.7;
}

.evNotes dl.textBox{
	margin-top: 20px;
	border: 1px solid #f24e61;
	border-radius: 6px;
	padding: 20px 30px 10px;
	color: #f24e61;
	font-size: 14px;
}
.evNotes dl.textBox dt{
	font-weight: bold;
	margin-bottom: 10px;
}
.evNotes dl.textBox dd{
	margin-bottom: 8px;
	padding-left: 10px;
	position: relative;
	line-height: 1.5;
}
.evNotes dl.textBox dd::after{
	position: absolute;
	display: block;
	content: "";
	background: #f24e61;
	border-radius: 100%;
	height: 5px;
	width: 5px;
	left: 0;
	top: 9px;
}

@media print, screen and (min-width: 960px){
	.evNotes{
		padding: 30px 0 0;
		width: 960px;
		margin: 0 auto;
	}
	.evNotes dl.hojyokin dd{
		text-align: center;
	}
	.evNotes dl.hojyokin{
		padding: 30px 0;
	}

	.evNotes dl.textBox{
		padding: 30px 60px 20px;
	}
	.evNotes dl.textBox dd{
		padding-left: 20px;
		letter-spacing: 0.5px;
	}
	.evNotes dl.textBox dd::after{
		height: 5px;
		width: 5px;
		left: 6px;
	}
}


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

フロンクス　納期注釈

---------------------------------- */
.fronxNotes{
	margin: 10px auto;
	width: calc(100% - 20px);
	border: 1px solid #60B8BC;
	padding: 30px 30px 22px;
}
/* .fronxNotes dl{
	margin-bottom: 20px;
} */
.fronxNotes dl dt{
	font-weight: 700;
	color: #60B8BC;
	font-size: 16px;
	margin-bottom: 10px;
	text-align: center;
}
.fronxNotes dl dd{
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 5px;
}
.fronxNotes .basicBtnException{
	border-radius: 8px;	
	font-size: 16px;
}
.fronxNotes .basicBtnException label{
	text-align: center;
	font-size: 16px;
	line-height: 40px;
}

@media print, screen and (min-width: 960px){
	.fronxNotes{
		margin: 0px auto 30px;
		width:100%;
		padding: 30px 50px 22px;
		display: flex;
		align-items: center;
	}
	.fronxNotes dl{
		width: calc((100% - 50px)*2);
	}
	.fronxNotes dl dt{
		font-size: 18px;
	}
	.fronxNotes dl dd{
		font-size: 14px;
		line-height: 1.8;
		margin: 5px 0 0;
	}
	.fronxNotes .basicBtnException{
		width: calc((100% - 50px)*2);
		margin-left: 50px;
		height: 130px;
	}
	.fronxNotes .basicBtnException label{
		text-align: center;
		font-size: 21px;
		line-height: 117px;
	}
}


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

社取得時注釈

---------------------------------- */
.carOriginalNotes{
	padding: 0 20px 20px;
}
.carOriginalNotes p{
	text-indent: -1em;
  padding-left: 1em;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 2px;
	color: #F24E61;
}
@media print, screen and (min-width: 960px){
	.carOriginalNotes{
		padding: 20px 30px;
		border: 1px solid #DEDEDE;
		margin: 20px 0;
	}
	.carOriginalNotes p{
		font-size: 16px;
		line-height: 1.5;
		margin-bottom: 2px;
		color: #263D50;
	}
}


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

先行予約テキスト

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

.preorder{
	padding: 15px 0 18px;
	margin: 10px auto 0px;
	width: 95%;
	border: 3px solid #F24E61;
	text-align: center;
}
.preorder p{
	font-weight: 700;
	font-size: 24px;
	color: #fff;
	text-shadow:
		-1.5px -1.5px 0 #F24E61,
		1.5px -1.5px 0 #F24E61,
		-1.5px  1.5px 0 #F24E61,
		1.5px  1.5px 0 #F24E61;
	letter-spacing: 4px;
	position: relative;
}
.preorder p::after{
	position: absolute;
	display: block;
	content: "最新モデル先行予約開始";
	top: 2px;
	left: 50%;
	margin-left: -153px;
	border: none;
	color: #F24E61;
	z-index: -1;
}
.preorder-alphard span{
	color: #F24E61;
	margin-bottom: 10px;
	display: block;
}
.preorder-alphard p::after{
	content: "先着順数量限定!";
	top: 1px;
	margin-left: -104px;
}

@media print, screen and (min-width: 960px){
	.preorder{
		width: 960px;
		padding: 20px 0 30px;
		margin: 20px auto 0px;
		border: 5px solid #F24E61;
	}
	.preorder p{
		font-size: 32px;
		letter-spacing: 8px;
		text-shadow:
		-2px -2px 0 #F24E61,
		2px -2px 0 #F24E61,
		-2px  2px 0 #F24E61,
		2px  2px 0 #F24E61;
	}
	.preorder p::after{
		top: 3px;
		margin-left: -219px;
	}
	.preorder-alphard p::after{
		top: 2px;
		margin-left: -148px;
	}
}

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

値引き特別対応

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

.secMv .mvPriceBox .monthlyPrice.autumnCam2025 .pricedownTxt{
	color: #F24E61;
	text-align: left;
	font-weight: 700;
	padding-top: 10px;
}
.secMv .mvPriceBox .monthlyPrice.autumnCam2025 .priceNum.priceDownOn{
	color: #F24E61;
}


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

	商談予約 2025.09.17追加

---------------------------------- */
.reservationHeadBox{
	background: #F5F1FB;
	padding: 20px;
}
.reservationHeadBox strong{
	display: block;
	font-weight: 700;
	color: #9B73D1;
	font-size: 21px;
	line-height: 1.3;
	padding-bottom: 5px;
}
.reservationHeadBox p{
	font-size: 12px;
	text-indent: -1rem;
	padding-left: 1rem;
	line-height: 1.3;
	padding-bottom: 3px;
}
@media print, screen and (min-width: 960px){
	.reservationHeadBox{
		text-align: center;
	}
	.reservationHeadBox strong{
		font-size: 24px;
		padding-bottom: 10px;
	}
	.reservationHeadBox p{
		font-size: 14px;
	}
}


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

ページ内固定申し込みボタン

---------------------------------- */
.pageAddBtnWrapper{
	margin-bottom: 20px;
}
.pageAddBtnWrapperSP{
	margin-top: 10px;
	margin-bottom: 10px;
}
.pageAddBtnWrapper .addBtnBlc .basicBtn{
	width: calc(100% - 40px);
	height: 80px;
	line-height: 1.5;
	margin: 0 auto;
	padding-top: 13px;
}
.pageAddBtnWrapper .addBtnBlc .basicBtn span{
	display: block;
	position: relative;
	letter-spacing: 2px;
}
.pageAddBtnWrapper .addBtnBlc .basicBtn span::before,
.pageAddBtnWrapper .addBtnBlc .basicBtn span::after{
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 16px;
	background: #fff;
	top: 2px;
}
.pageAddBtnWrapper .addBtnBlc .basicBtn span::before{
	left: 50%;
	margin-left: -115px;
	transform: skewX(34deg);
}
.pageAddBtnWrapper .addBtnBlc .basicBtn span::after{
	right: 50%;
	margin-right: -115px;
	transform: skewX(-34deg);
}
@media print, screen and (min-width: 960px){
	.pageAddBtnWrapper {
		width: 960px;
		margin: 0 auto 50px;
	}
	.pageAddBtnWrapperSP{
		display: none;
	}
	.pageAddBtnWrapper .addBtnBlc{
		display: block;
		width: 100%;
		height: 140px;
	}
	.pageAddBtnWrapper .addBtnBlc .basicBtn{
		width: 100%;
		height: 100%;
		padding-top: 30px;
		letter-spacing: 3px;
		border-radius: 10px;
	}
	.pageAddBtnWrapper .addBtnBlc .basicBtn span{
		font-size: 18px;
		padding: 0;
	}
	.pageAddBtnWrapper .addBtnBlc .basicBtn span::before,
	.pageAddBtnWrapper .addBtnBlc .basicBtn span::after{
		top: 6px;
		height: 20px;
	}
	.pageAddBtnWrapper .addBtnBlc .basicBtn span::before{
		margin-left: -145px;
		transform: skewX(40deg);
	}
	.pageAddBtnWrapper .addBtnBlc .basicBtn span::after{
		margin-right: -145px;
		transform: skewX(-40deg);
	}
}


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

	車種詳細：プリウス受付終了間近バナー

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

@media (max-width: 955px) {
  .prius202512{
    margin: 18px auto 0;
    width:95%;
  }
  .prius202512 img{ 
    vertical-align: top;
  }
}
@media (max-width: 767px) {
  .prius202512{ 
    margin: 18px auto 0;
    width:90%;
  }
  .prius202512 img{ 
    vertical-align: top;
  }
}
@media (min-width: 960px) {
  .prius202512 img{ 
    vertical-align: top;
    margin: 10px auto 0;
  }
}

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

	車種詳細：エアロフェスバナー

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

@media (max-width: 955px) {
  .bnr_aero_fes{
    margin: 14px auto 0;
    width:95%;
  }
  .bnr_aero_fes img{ 
    vertical-align: top;
  }
}
@media (max-width: 767px) {
  .bnr_aero_fes{ 
    margin: 18px auto 0;
    width:90%;
  }
  .bnr_aero_fes img{ 
    vertical-align: top;
  }
}
@media (min-width: 960px) {
  .bnr_aero_fes img{ 
    vertical-align: top;
    margin: 14px auto 0;
  }
}


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

エアロフェス2025

---------------------------------- */
.secMv .aerofes.mvPriceBox .totalPrice{
	border: 1px solid #f22323;
	height: 120px;	
}
.secMv .aerofes.mvPriceBox .totalPrice .ttl,
.secMv .aerofes.mvPriceBox .totalPrice .ttl::after,
.secMv .aerofes.mvPriceBox .monthlyPrice .aeroTxt{
	background: #f22323;
}
.secMv .aerofes.mvPriceBox .totalPrice .noteAerofes,
.secMv .aerofes.mvPriceBox .monthlyPrice .priceTxt .txt,
.secMv .aerofes.mvPriceBox .monthlyPrice .priceNum{
	color: #f22323;
}

.secMv .aerofes.mvPriceBox .totalPrice .noteAerofes{
	font-size: 10px;
	font-weight: 700;
	padding-top: 10px;
}

.secMv .aerofes.mvPriceBox .monthlyPrice .aeroTxt{
	font-weight: 900;
	color: #fff;
	text-align: center;
	padding: 8px 0;
	width: 207px;
	margin-left: 2px;
	margin-top: 5px;
}
@media print, screen and (min-width: 960px){
	.secMv .aerofes.mvPriceBox .monthlyPrice .aeroTxt{
		margin-left: 5px;
		margin-top: 8px;
	}
}

