@charset "UTF-8";

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

モーダル内変数定義

---------------------------------- */
.sellingModal{
	--main-color: #263E50;
	--accent-color: #0068B6;
	--light-gray: #F2F2F2;
	--light-blue: #F0F7FC;
	--bright-blue: #91D0FF;
}


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

モーダル内容

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

/* ----------------------------------
	モーダル基本スタイル
---------------------------------- */
.sellingModal{
	position: fixed;
	inset: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s ease, visibility .4s ease;
	max-height: 100vh;
}
.sellingModal.isOpen{
	opacity: 1;
	visibility: visible;
}
.sellingModalOverlay{
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.7);
	opacity: 0;
	transition: opacity .4s ease;
}
.sellingModal.isOpen .sellingModalOverlay{
	opacity: 1;
}
.sellingModalInner{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, calc(-50% + 20px));
	width: calc(100% - 20px);
	max-width: 960px;
	max-height: 90vh;
	background: #fff;
	border-radius: 16px;
	padding: 0 0 30px;
	box-sizing: border-box;
	opacity: 0;
	transition: all .4s ease;
	overflow: hidden;
	overflow-y: scroll;
}
.sellingModal.isOpen .sellingModalInner{
	transform: translate(-50%, -50%);
	opacity: 1;
}

.sellingModalClose{
	position: absolute;
	right: 5px;
	top: 3vh;
	width: 36px;
	height: 36px;
	border:1px solid #dedede;
	background: var(--main-color);
	border-radius: 100%;
	cursor: pointer;
	z-index: 3;
}
.sellingModalClose::before,
.sellingModalClose::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 22px;
	height: 2px;
	background: #fff;
}
.sellingModalClose:before{
	transform: translate(-50%, -50%) rotate(45deg);
}
.sellingModalClose::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}

.sellingModalClose.sellingModalCloseBottom{
	position: static;
	width: 150px;
	margin: 20px auto 0;
	background: var(--main-color);
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	line-height: 46px;
	height: 46px;
	border-radius: 10px;
	display: block;
	padding: 0;
}
.sellingModalClose.sellingModalCloseBottom::before,
.sellingModalClose.sellingModalCloseBottom::after{
	display: none;
}

.sellingModalContent .txt{
	line-height: 1.6;
}

.sellingModalHighlights{
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--accent-color);
	position: relative;
	margin: 30px 0 20px;
	padding: 30px 25px 20px 30px;
}
.sellingModalHighlights .icoBox{
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	top: -16px;
	text-align: center;
	padding-left: 20px;
}
.sellingModalHighlights .icoBox img{
	width: 50px;
	position: absolute;
	left: 50%;
	top: -10px;
	margin-left: -125px;
}
.sellingModalHighlights .icoBox p{
	color: #fff;
	background: var(--accent-color);
	border-radius: 100px;
	line-height: 31px;
	font-weight: 700;
	width: 215px;
	margin: 0 auto;
	letter-spacing: 1px;
}
.sellingModalHighlights .txt{
	color: var(--accent-color);
}

.sellingModalBox{
	background: var(--light-blue);
	padding:40px 20px 20px;
	margin-top: 50px;
	position: relative;
}
.sellingModalBox .sellingModalBoxLabel{
	position: absolute;
	right: 0;
	left: 0;
	top: -20px;
	text-align: center;
	height: 40px;
}
.sellingModalBox .sellingModalBoxLabel span{
	line-height: 40px;
	padding: 0 20px;
	font-weight: 900;
	font-size: 18px;
	letter-spacing: 1px;
	background: var(--main-color);
	color: #fff;
	display: inline-block;
}
.sellingModalBoxHead{
	margin-bottom: 40px;
}
.sellingModalBoxHeadTtl{
	font-weight: 700;
	font-size: 25px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.sellingModalCardWrap .sellingModalCardItem{
	margin-bottom: 25px;
}
.sellingModalCardWrap .sellingModalCardItem .itemHead{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.sellingModalCardWrap .sellingModalCardItem .itemHead img{
	width: 110px;	
}
.sellingModalCardWrap .sellingModalCardItem .itemHead .itemHeadTtl{
	font-weight: 900;
	font-size: 21px;
	padding-left: 20px;
	line-height: 1.3;
}
@media print, screen and (min-width: 768px){
	.sellingModalCardWrap .sellingModalCardItem{
		position: relative;
		min-height: 174px;
		padding: 10px 0;
		padding-left: 300px;
	}
	.sellingModalCardWrap .sellingModalCardItem .itemHead{
		display: block;
	}
	.sellingModalCardWrap .sellingModalCardItem .itemHead img{
		width: 275px;
		position: absolute;	
		left: 0;
		top: 0;
	}
	.sellingModalCardWrap .sellingModalCardItem .itemHead .itemHeadTtl{
		padding-left: 0;
		font-size: 26px;
	}
}
@media print, screen and (min-width: 960px){
	.sellingModalInner{
		max-width: 1020px;
		padding: 30px;
	}
	.sellingModalClose{
		right: 4vw;
	}

	.sellingModalHighlights{
		padding: 22px 40px 22px 190px;
		min-height: 120px;
		margin-bottom: 30px;
	}
	.sellingModalHighlights .icoBox{
		padding-left: 0;
		right: auto;
		left: 0;
	}
	.sellingModalHighlights .icoBox img{
		position: static;
		width: 96px;
		margin: 0 auto;
	}
	.sellingModalHighlights .icoBox p{
		width: 155px;
		border-radius: 0 100px 100px 0;
		margin-top: -10px;
		position: relative;
		z-index: 2;
	}

	.sellingModalBox{
		padding:80px 60px 50px;
		margin-top: 100px;
		border-radius: 20px;
	}
	.sellingModalBox .sellingModalBoxLabel{
		top: -28px;
		height: 56px;
	}
	.sellingModalBox .sellingModalBoxLabel span{
		line-height: 56px;
		padding: 0 25px;
		font-size: 26px;
	}
	.sellingModalBoxHead{
		padding: 0 30px;
	}
	.sellingModalBoxHeadTtl{
		font-weight: 900;
		font-size: 36px;
		text-align: center;
	}
}


/* ----------------------------------
モーダルコンテンツ内容（MV & ヘッド部分）
---------------------------------- */
.sellingModalContent{
	color: var(--main-color);
}
.sellingModalContent h2{
	text-align: center;
	font-weight: 900;
	font-size: 24px;
	padding: 20px 0;
}
.sellingModalHead{
	background: var(--light-gray);
	padding: 20px;
}
.sellingModalHead h3{
	font-weight: 900;
	font-size: 20px;
	line-height: 1.4;
}
.sellingModalHead .intro{
	padding: 20px 0;
}

.sellingModalHead .innerLink li{
	margin-bottom: 10px;
}
.sellingModalHead .innerLink li a{
	display: block;
	line-height: 52px;
	background: #fff;
	color: var(--main-color);
	border: 1px solid var(--main-color);
	border-radius: 5px;
	padding-left: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	position: relative;
}
.sellingModalHead .innerLink li a:hover{
	opacity: 0.5;
	transform: scale(1.02);
}
.sellingModalHead .innerLink li a::after{
	content: "";
	position: absolute;
	display: block;
	width: 9px;
	height: 9px;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	border-right: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
	transform: rotate(45deg);
}
@media print, screen and (min-width: 768px){
	.sellingModalHead .innerLink {
		display: flex;
		justify-content: space-between;
	}
	.sellingModalHead .innerLink li{
		width: 32%;
	}
}
@media print, screen and (min-width: 960px){
	.sellingModalContent h2{
		font-size: 36px;
		padding: 20px 0 40px;
	}
	.sellingModalHead{
		border-radius: 0 0 20px 20px;
		padding: 60px 60px 30px;
	}
	.sellingModalHead h3{
		font-size: 26px;
	}

}

/* ----------------------------------
モーダルコンテンツ内容（豊富な装備部分）
---------------------------------- */
.sellingModalEquipmentGallery{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sellingModalEquipmentGallery li{
	width: 48%;
	margin-bottom: 10px;
}
.sellingModalEquipmentGallery li figcaption{
	font-size: 14px;
	padding: 5px;
	line-height: 1.3;
}
@media print, screen and (min-width: 768px){
	.sellingModalEquipmentGallery li{
		width: 32%;
	}
}
@media print, screen and (min-width: 960px){
	.sellingModalEquipmentGallery li{
		margin-bottom: 15px;
	}
	.sellingModalEquipmentGallery li figcaption{
		text-align: center;
		padding: 10px 0;
	}
}


/* ----------------------------------
モーダルコンテンツ内容（走行性能部分）
---------------------------------- */
.sellingModalPerformance{
	background-image: url(/carlist/eclipse-cross_phev/assets/img/selling_point/performance-bg.webp);
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #1A1A1A;
	background-size: 960px auto;
}
.sellingModalPerformance .sellingModalBoxHead strong{
	text-align: center;
	font-size: 40px;
	color: var(--bright-blue);
	display: block;
	padding-bottom: 10px;
	font-weight: 900;
}
.sellingModalPerformance .sellingModalBoxHeadTtl{
	color: var(--bright-blue);
	text-align: center;
	font-size: 20px;
}
.sellingModalPerformance .sellingModalBoxHead .txt{
	color: #fff;
}
.sellingModalPerformance .sellingModalCardWrap .sellingModalCardItem .itemHead .itemHeadTtl{
	color: var(--bright-blue);
}
.sellingModalPerformance .sellingModalCardWrap .sellingModalCardItem .txt{
	color: #fff;
}
@media print, screen and (min-width: 960px){
	.sellingModalPerformance .sellingModalBoxHeadTtl{
		font-size: 36px;
	}
}
