@charset "utf-8";

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

	変数

---------------------------------- */
:root{
	--main-color : #54AFB3;
	--secondary-color : #263E50;
	--border-color : #DEDEDE;
	--brown-color : #84642A;
	--cleam-color : #FFFBED;
	--red-color : #D52338;
}

body{
	color: var(--secondary-color);
	overflow-x: hidden;
}

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

	FONT

---------------------------------- */
.ft-poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}
.ft-poppins-nrml {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ft-rubik {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

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

	査定ボタン

---------------------------------- */
.entryBtn{
	display: block;
	text-decoration: none;
	border-radius: 200px;
	background: var(--main-color);
	color: #fff;
	font-weight: 700;
	text-align: center;
	position: relative;
	box-shadow: 0 5px 0 #479296;
	width: 304px;
	line-height: 80px;
	margin: 0 auto;
	font-size: 20px;
	letter-spacing: 1px;
}
.entryBtn::after{
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto;
}
@media print, screen and (min-width: 960px){
	.entryBtn{
		box-shadow: 0 10px 0 #479296;
		width: 652px;
		line-height: 126px;
		font-size: 32px;
	}
	.entryBtn:hover{
		opacity: 0.4;
	}
	.entryBtn::after{
		width: 18px;
		height: 18px;
		border-top: 4px solid #fff;
		border-right: 4px solid #fff;
		right: 60px;
	}
}

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

	MV

---------------------------------- */
.secMv{
	border-radius: 0 0 20px 20px;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-image: url(../img/mv_bg-sp.webp);
	background-size: cover;
	height: 280px;
	display: flex;
	align-items: end;
	max-width: 1460px;
	margin: 0 auto;
}
.secMv .txtBox{
	padding: 0 30px 50px;
	position: relative;
}
.secMv .txtBox .subTxt,
.secMv .txtBox .strongTxt{
	font-weight: 700;
  -webkit-text-stroke: 6px #fff; /* 縁 */
  paint-order: stroke fill;         /* 対応ブラウザではstrokeが下に回る */
	/* 角のギザつき軽減 */
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
}
.secMv .txtBox .subTxt{
	font-size: 16px;
	margin-bottom: 4px;
}
.secMv .txtBox .strongTxt{
	font-size: 34px;
	line-height: 1.2;
}
.secMv .txtBox .strongTxt a{
	text-decoration: none;
	color: #fff;
	font-size: 12px;
	display: inline-block;
	padding: 10px;
	padding-right: 30px;
	position: absolute;
	z-index: 3;
	text-shadow:none;
	bottom: 50px;
  left: 155px;
	-webkit-text-stroke:0;
}
.secMv .txtBox .strongTxt a::before,
.secMv .txtBox .strongTxt a::after{
	display: block;
	content: "";
	position: absolute;
}
.secMv .txtBox .strongTxt a::before{
	width: 6px;
	height: 6px;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
}
.secMv .txtBox .strongTxt a::after{
	background: var(--main-color);
	transform: skewX(-8deg);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

@media print, screen and (min-width: 768px){
	.secMv{
		background-image: url(../img/mv_bg-pc.webp);
		height: 280px;
	}
}
@media print, screen and (min-width: 960px){
	.secMv{
		border-radius: 0 0 50px 50px;
		height: 704px;
	}
	.secMv .txtBox{
		padding: 0 110px 80px;
	}
	.secMv .txtBox .subTxt,
	.secMv .txtBox .strongTxt{
		font-weight: 900;
		-webkit-text-stroke: 9px #fff;
	}
	.secMv .txtBox .subTxt{
		font-size: 42px;
		margin-bottom: 15px;
	}
	.secMv .txtBox .strongTxt{
		font-size: 90px;
		line-height: 1.2;
	}
	.secMv .txtBox .strongTxt a{
		font-size: 34px;
		padding: 8px 20px 10px;
		padding-right: 55px;
		bottom: 90px;
    left: 455px;
	}
	.secMv .txtBox .strongTxt a::before{
		width: 10px;
		height: 10px;
		border-top: 3px solid #fff;
		border-right: 3px solid #fff;
		right: 25px;
	}
	.secMv .txtBox .strongTxt a::after{
		transform: skewX(-20deg);
	}
}


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

	Page Title

---------------------------------- */
.secPageTtl{
	padding: 30px 20px;
}
.secPageTtl h1{
	text-align: center;
	font-weight: 900;
	font-size: 24px;
	margin-bottom: 20px;
}
.secPageTtl p{
	line-height: 1.5;
}
@media print, screen and (min-width: 768px){
	.secPageTtl{
		padding: 60px 0px;
	}
	.secPageTtl h1{
		font-size: 36px;
	}
	.secPageTtl p{
		text-align: center;
		font-size: 20px;
	}
}


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

	6つの特徴

---------------------------------- */
.secPoint{
	background-repeat: no-repeat;
	background-position: center bottom;
	background-image: url(../img/tokucyo_bg-sp.webp);
	background-size: cover;
	padding-bottom: 40px;
}
.secPoint .ttl{
	color: #fff;
	text-align: center;
	background: var(--main-color);
	position: relative;
	padding: 20px 0;
	font-weight: 900;
	letter-spacing: 1px;
}
.secPoint .ttl::after{
	position: absolute;
	content: "";
	display: block;
	width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--main-color);
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.secPoint .ttl h2{
	font-size: 33px;
	padding-top: 3px;
}
.secPoint .ttl h2 span{
	font-size: 42px;
}

.secPoint ol{
	padding: 20px;
}
.secPoint ol li{
	margin-bottom: 10px;
	border-radius: 20px;
	box-shadow:0 20px 20px rgba(0,0,0,0.1) ;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
	padding: 15px 15px 20px;
	padding-left: 25px;
	position: relative;
}
.secPoint ol li .img{
	color: #C7BAAF;
	font-size: 18px;
	width: 41px;
	height: 64px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-align: center;
	padding-top: 10px;
}
.secPoint ol li .txt{
	font-weight: 900;
	font-size: 14px;
}
.secPoint ol li .txt strong{
	font-size: 22px;
	color: var(--main-color);
	display: block;
	padding-top: 8px;
}
.secPoint ol li .txt span{
	display: block;
	font-size: 10px;
	position: absolute;
	bottom: 10px;
	left: 25px;
	font-weight: normal;
}

.secPoint ol li:nth-of-type(1) .img{
	background-image: url(../img/ico-calculator-sp.webp);
}
.secPoint ol li:nth-of-type(2) .img{
	background-image: url(../img/ico-zero-sp.webp);
}
.secPoint ol li:nth-of-type(3) .img{
	background-image: url(../img/ico-clock-sp.webp);
}
.secPoint ol li:nth-of-type(4) .img{
	background-image: url(../img/ico-car-sp.webp);
}
.secPoint ol li:nth-of-type(5) .img{
	background-image: url(../img/ico-bell-sp.webp);
}
.secPoint ol li:nth-of-type(6) .img{
	background-image: url(../img/ico-online-sp.webp);
}

@media print, screen and (min-width: 768px){
	.secPoint .ttl{
		padding: 60px 0 40px;
	}
	.secPoint .ttl::after{
		border-left: 25px solid transparent;
		border-right: 25px solid transparent;
		border-top: 25px solid var(--main-color);
		bottom: -25px;
	}
	.secPoint .ttl p{
		font-size: 36px;
	}
	.secPoint .ttl h2{
		font-size: 72px;
		padding-top: 7px;
	}
	.secPoint .ttl h2 span{
		font-size: 92px;
	}
}
@media print, screen and (min-width: 960px){
	.secPoint{
		background-image: url(../img/tokucyo_bg-pc.webp);
		padding-bottom: 100px;
	}

	.secPoint ol{
		padding:60px 20px;
		max-width: 1480px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.secPoint ol li{
		width: 32%;
		display: block;
		padding: 70px 0px 60px;
		padding-left: 0px;
		text-align: center;
		margin-bottom: 30px;
	}
	.secPoint ol li .img{
		font-size: 30px;
		width: 146px;
		height: 146px;
		padding-top: 15px;
		margin: 0 auto 50px;
	}
	.secPoint ol li .txt{
		font-size: 18px;
	}
	.secPoint ol li .txt strong{
		font-size: 25px;
		padding-top: 15px;
	}
	.secPoint ol li .txt span{
		font-size: 12px;
		bottom: 20px;
		left: 0;
		right: 0;
		margin: auto;
	}

	.secPoint ol li:nth-of-type(1) .img{
		background-image: url(../img/ico-calculator-pc.webp);
	}
	.secPoint ol li:nth-of-type(2) .img{
		background-image: url(../img/ico-zero-pc.webp);
	}
	.secPoint ol li:nth-of-type(3) .img{
		background-image: url(../img/ico-clock-pc.webp);
	}
	.secPoint ol li:nth-of-type(4) .img{
		background-image: url(../img/ico-car-pc.webp);
	}
	.secPoint ol li:nth-of-type(5) .img{
		background-image: url(../img/ico-bell-pc.webp);
	}
	.secPoint ol li:nth-of-type(6) .img{
		background-image: url(../img/ico-online-pc.webp);
	}
}
@media print, screen and (min-width: 1320px){
	.secPoint ol li .txt{
		font-size: 24px;
	}
	.secPoint ol li .txt strong{
		font-size: 36px;
		padding-top: 15px;
	}
}

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

	CASE

---------------------------------- */
/* ----------------------------------
	CASE - head部分
---------------------------------- */
.secCase{
	background-repeat: no-repeat;
	background-position: center top;
	background-image: url(../img/case_bg-sp.webp);
	background-size: contain;
	/* background-size: cover; */
	padding: 40px 20px;
}
.secCase .head .baseCar{
	background: #fff;
	border-radius: 42px;
	padding: 20px;
	position: relative;
	width: 292px;
	margin: 0 auto;
}
.secCase .head .baseCar::after{
	content: "";
	display: block;
	position: absolute;
	width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  bottom: -7px;
	right: 100px;
	transform: rotate(140deg);
}
.secCase .head .baseCar .exampleTxt{
	color: var(--main-color);
	text-align: center;
	font-weight: 700;
	line-height: 1.3;
}
.secCase .head .baseCar .carBox{
	display: flex;
	justify-content: center;
	align-items: center;
}
.secCase .head .baseCar .carBox .img{
	width: 120px;
}
.secCase .head .baseCar .carBox .priceBox{
	font-weight: 700;
}
.secCase .head .baseCar .carBox .priceBox .txt{
	font-size: 14px;
}
.secCase .head .baseCar .carBox .priceBox .priceRound span{
	font-size: 28px;
}
.secCase .head .baseCar .carBox .priceBox .priceTotal{
	font-size: 12px;
}
.secCase .head .baseCar .carBox .priceBox .priceTotal span{
	font-size: 17px;
}

.secCase .head h2{
	margin-top: 20px;
	position: relative;
	z-index: 3;
	text-align: center;
}

@media print, screen and (min-width: 768px){
	.secCase .head{
		width: 330px;
		margin: 0 auto;
	}
}
@media print, screen and (min-width: 960px){
	.secCase{
		background-image: url(../img/case_bg-pc.webp);
		padding: 130px 20px;
		background-size: 1682px auto;
	}
	.secCase .head{
		width: 100%;
		margin: 0;
		display: flex;
		justify-content: center;
	}
	.secCase .head .baseCar{
		width: 475px;
		margin: 0;
		margin-right: 55px;
	}
	.secCase .head .baseCar::after{
		border-left: 20px solid transparent;
		border-right: 20px solid transparent;
		border-top: 15px solid #fff;
		bottom: auto;
		top: 55%;
		right: -25px;
		transform: rotate(50deg);
	}
	.secCase .head .baseCar .exampleTxt{
		font-size: 24px;
	}
	.secCase .head .baseCar .exampleTxt br{
		display: none;
	}
	.secCase .head .baseCar .carBox{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.secCase .head .baseCar .carBox .img{
		width: 202px;
	}
	.secCase .head .baseCar .carBox .priceBox .txt{
		font-size: 18px;
		margin-bottom: 5px;
	}
	.secCase .head .baseCar .carBox .priceBox .priceRound{
		font-size: 18px;
	}
	.secCase .head .baseCar .carBox .priceBox .priceRound span{
		font-size: 40px;
	}
	.secCase .head .baseCar .carBox .priceBox .priceTotal span{
		font-size: 20px;
	}
	
	.secCase .head h2{
		margin-top: 7px;
	}
}

/* ----------------------------------
	CASE - list部分
---------------------------------- */
.secCase ol{
	padding: 50px 0px 0;
}
.secCase ol li{
	background: #fff;
	border-radius: 20px;
	padding: 23px 30px 30px;
	position: relative;
	box-shadow: 0 20px 20px rgba(0,0,0,0.1);
	margin-bottom: 50px;
}
.secCase ol li .num{
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	width: 170px;
	line-height: 46px;
	top: -23px;
	color: #fff;
	text-align: center;
	z-index: 3;
	letter-spacing: 10px;
	font-size: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.secCase ol li .num::after{
	content: "";
	display: block;
	position: absolute;
	background: var(--secondary-color);
	height: 100%;
	width: 100%;
	transform: skewX(-20deg);
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: -1;
}
.secCase ol li .num span{
	font-size: 16px;
	padding-right: 5px;
}
.secCase ol li table{
	margin: 20px 0;
	width: 100%;
}
.secCase ol li table th{
	text-align: left;
	padding-bottom: 8px;
	width: 75px;
}
.secCase ol li table td{
	padding-left: 10px;
	padding-bottom: 8px;
}
.secCase ol li .bottomBox{
	text-align: center;
}


.secCase ol li .bottomBox dl.tradeinPrice{
	font-weight: 700;
}
.secCase ol li .bottomBox dl dt.backLineTtl{
	position: relative;
	z-index: 3;
	margin-bottom: 10px;
}
.secCase ol li .bottomBox dl dt.backLineTtl span{
	display: block;
	font-size: 14px;
	width: 100px;
	line-height: 24px;
	font-weight: 700;
	border: 1px solid var(--border-color);
	background: #fff;
	margin: 0 auto;
}
.secCase ol li .bottomBox dl dt.backLineTtl::after{
	position: absolute;
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background: var(--border-color);
	z-index: -1;
}
.secCase ol li .bottomBox dl.down dt.backLineTtl span{
	color: var(--red-color);
	width: 170px;
	border: 1px solid var(--red-color);
}
.secCase ol li .bottomBox dl.down dt.backLineTtl::after{
	background: var(--red-color);
}

.secCase ol li .bottomBox dl.tradeinPrice dd.caseCarPrice {
	font-size: 12px;
}
.secCase ol li .bottomBox dl.tradeinPrice dd.caseCarPrice span{
	font-size: 28px;
}

.secCase ol li .bottomBox .baseCarName{
	color: var(--main-color);
	font-weight: 900;
	text-align: center;
	padding: 20px 0;
}


.secCase ol li .bottomBox .down dd figure{
	position: relative;
	width: 100%;
	margin: 20px auto;
}
.secCase ol li .bottomBox .down dd figure .fukidashi{
	position: absolute;
	top: -5px;
	right: 0;
	width: 150px;
}
.secCase ol li .bottomBox .down dd figure .fukidashi p{
	position: absolute;
	top: 8px;
	right: 0;
	left: 0;
	margin: auto;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}
.secCase ol li .bottomBox .down dd figure .fukidashi p .price{
	font-size: 12px;
}
.secCase ol li .bottomBox .down dd figure .fukidashi p .price span{
	font-size: 18px;
}
.secCase ol li .bottomBox .down dd figure .innerBox{
	display: flex;
	align-items: end;
	border-bottom: 1px solid var(--main-color);
}
.secCase ol li .bottomBox .down dd figure .innerBox img{
	vertical-align: top;
	width: 100%;
}
.secCase ol li .bottomBox .down dd figure .innerBox .leftBox,
.secCase ol li .bottomBox .down dd figure .innerBox .rightBox{
	position: relative;
	width: 35.82%; 
}
.secCase ol li .bottomBox .down dd figure .innerBox .middleBox{
	width: 28.36%;
}
.secCase ol li .bottomBox .down dd figure .innerBox .leftBox div,
.secCase ol li .bottomBox .down dd figure .innerBox .rightBox div{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 6px;
	color: #fff;
}
.secCase ol li .bottomBox .down dd figure .innerBox .leftBox div .txt{
	font-size: 11px;
	padding-bottom: 5px;
}
.secCase ol li .bottomBox .down dd figure .innerBox .leftBox div .price{
	font-size: 11px;
}
.secCase ol li .bottomBox .down dd figure .innerBox .leftBox div .price span{
	font-size: 16px;
}
.secCase ol li .bottomBox .down dd figure .innerBox .rightBox div .price{
	font-size: 11px;
}
.secCase ol li .bottomBox .down dd figure .innerBox .rightBox div .price span{
	font-size: 16px;
}

.secCase ol li .bottomBox .down dd .priceBox{
	display: flex;
	justify-content: space-between;
}
.secCase ol li .bottomBox .down dd .priceBox .innerBOx .price{
	color: #fff;
	font-weight: 900;
	-webkit-text-stroke: 8px var(--red-color); /* 縁 */
  paint-order: stroke fill;         /* 対応ブラウザではstrokeが下に回る */
	/* 角のギザつき軽減 */
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	font-size: 21px;
	padding-right: 4px;
}
.secCase ol li .bottomBox .down dd .priceBox .innerBOx .price .ft-rubik{
	font-size: 46px;
	-webkit-text-stroke: 14px var(--red-color); /* 縁 */
}
.secCase ol li .bottomBox .down dd .priceBox .innerBOx .price .yen{
	position: relative;
}
.secCase ol li .bottomBox .down dd .priceBox .innerBOx .price .yen .tax{
	position: absolute;
	font-size: 10px;
	font-weight: normal;
	color: var(--secondary-color);
	-webkit-text-stroke:0;
	left: 2px;
	top: -10px;
}

.secCase ol li .bottomBox .totalPay{
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
}
.secCase ol li .bottomBox .totalPay .txt{
	display: inline-block;
	font-size: 14px;
}
.secCase ol li .bottomBox .totalPay .price{
	font-weight: 700;
	font-size: 12px;
	padding-top: 5px;
}
.secCase ol li .bottomBox .totalPay .price span{
	font-size: 21px;
	letter-spacing: 0;
}
.secCase ol li .bottomBox .totalPay .largeTxt{
	font-weight: 900;
	font-size: 28px;
	padding-left: 5px;
	letter-spacing: 0;
}

.secCase .notesList{
	padding: 0px 0 30px;
	display: flex;
	justify-content: end;
	max-width: 1460px;
	margin: 0 auto;
}
.secCase .notesList li{
	font-size: 12px;
	line-height: 1.9;
}

/* Case 1 */
.secCase ol li.case1 .bottomBox .down dd figure .innerBox .rightBox img{
	padding-bottom: 10px;
}
.secCase ol li.case1 .bottomBox .down dd .priceBox{
	align-items: center;
	justify-content: center;
}
.secCase ol li.case1 .bottomBox .down dd .priceBox .txt{
	font-weight: 900;
	font-size: 28px;
}
.secCase ol li.case1 .bottomBox .plus{
	color: var(--red-color);
	font-weight: 900;
	text-align: center;
	display: inline-block;
	margin: 0 auto;
	background: #FFF5F6;
	font-size: 21px;
	padding: 20px 30px;
	border-radius: 10px;
	margin-top: 20px;
	border: 1px solid #F8B1B1;
	line-height: 1.2;
}
.secCase ol li.case1 .bottomBox .plus span{
	font-size: 42px;
}

/* Case 2  Case 3 */
.secCase ol li.caseNormal .bottomBox .down dd .priceBox .monthry{
	position: relative;
	width: 60px;
}
.secCase ol li.caseNormal .bottomBox .down dd .priceBox .monthry span{
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	bottom: 7px;
	font-weight: 700;
	font-size: 14px;
}
.secCase ol li.caseNormal .bottomBox .down dd .priceBox .innerBOx{
	text-align: right;
	padding-top: 5px;
}
.secCase ol li.caseNormal .bottomBox .down dd .priceBox .innerBOx .lead{
	font-size: 14px;
	margin-bottom: 10px;
}
.secCase ol li.caseNormal .bottomBox .down dd .priceBox .innerBOx .lead span{
	font-weight: 700;
	font-size: 16px;
}
.secCase ol li.caseNormal .bottomBox .down dd .priceBox .innerBOx .lead span span{
	font-size: 24px;
}
.secCase ol li.caseNormal .bottomBox .down dd .priceBox .innerBOx .lead img{
	margin-left: 8px;
	width: 8.5px;
}
.secCase ol li.caseNormal .bottomBox button{
	border: 1px solid var(--main-color);
	border-radius: 10px;
	color: var(--main-color);
	font-weight: 700;
	width: 100%;
	line-height: 50px;
	background: #fff;
	position: relative;
	text-align: left;
	padding-left: 20px;
	letter-spacing: 1px;
	margin-top: 20px;
	transition: all .4s;
}
.secCase ol li.caseNormal .bottomBox button:hover{
	cursor: pointer;
	opacity: 0.4;
}
.secCase ol li.caseNormal .bottomBox button::after {
	position: absolute;
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	transform: rotate(135deg);
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
}
.secCase ol li.caseNormal .bottomBox button.open::after{
	transform: rotate(-45deg);
}
.secCase ol li.caseNormal .atamakinBox{
	padding-top: 20px;
	display: none;
}
.secCase ol li.caseNormal .atamakinBox .lead{
	text-align: left;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0px;
}
.secCase ol li.caseNormal .atamakinBox dl{
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding-top: 40px;
	margin-top: 40px;
}
.secCase ol li.caseNormal .atamakinBox dl dt{
	border-radius: 100px;
	border: 1px solid var(--secondary-color);
	font-weight: 700;
	padding: 8px 0;
	margin: -62px auto 0;
	background: #fff;
	width: 90%;
	text-align: center;

}
.secCase ol li.caseNormal .atamakinBox dl dt span{
	font-size: 28px;
}
.secCase ol li.caseNormal .atamakinBox dl dd{
	padding: 0 20px;
}
.secCase ol li.caseNormal .atamakinBox dl dd table{
	width: 100%;
}
.secCase ol li.caseNormal .atamakinBox dl dd table th{
	font-size: 14px;
	padding: 10px 0;
	vertical-align: middle;
}
.secCase ol li.caseNormal .atamakinBox dl dd table td{
	font-size: 14px;
	font-weight: 700;
	text-align: right;
	vertical-align: middle;
	padding: 10px 0;
}
.secCase ol li.caseNormal .atamakinBox dl dd table tr:not(:last-child) th,
.secCase ol li.caseNormal .atamakinBox dl dd table tr:not(:last-child) td{
	border-bottom: 1px solid var(--border-color);
}
.secCase ol li.caseNormal .atamakinBox dl dd table td span{
	font-size: 24px;
	font-weight: 700;
}
.secCase ol li.caseNormal .atamakinBox dl dd table td strong{
	color: var(--red-color);
}

@media print, screen and (min-width: 768px){
	.secCase ol{
		width: 400px;
		margin: 0 auto;
	}

}
@media print, screen and (min-width: 960px){
	.secCase ol{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 10px;
		width: 100%;
		max-width: 1460px;
		gap: 0px;
		padding: 100px 0 0px;
	}
	.secCase ol li{
		padding: 31px 0 40px;
		width: 31.5%;
		margin-bottom: 30px;
		min-height: 1055px;
	}
	.secCase ol li .num{
		width: 233px;
    line-height: 64px;
		top: -33px;
		font-size: 46px;
		letter-spacing: 11px;
	}
	.secCase ol li .num span{
		font-size: 18px;
		padding-right: 8px;
	}
	.secCase ol li .img,
	.secCase ol li table,
	.secCase ol li .bottomBox{
		max-width: 340px;
		margin: 0 auto;
	}
	.secCase ol li table{
		margin: 20px auto;
	}
	.secCase ol li table th,
	.secCase ol li table td{
		padding-bottom: 12px;
	}

	.secCase ol li .bottomBox dl dt.backLineTtl{
		margin-bottom: 20px;
	}
	.secCase ol li .bottomBox dl dt.backLineTtl span{
		font-size: 20px;
		width: 140px;
		line-height: 32px;
	}
	.secCase ol li .bottomBox dl.down dt.backLineTtl span{
		width: 240px;
	}

	.secCase ol li .bottomBox dl.tradeinPrice dd.caseCarPrice{
		font-size: 18px;
	}
	.secCase ol li .bottomBox dl.tradeinPrice dd.caseCarPrice span{
		font-size: 40px;
	}
	.secCase ol li .bottomBox .baseCarName{
		font-size: 21px;
	}

	.secCase ol li .bottomBox .down dd figure .innerBox .leftBox div .txt,
	.secCase ol li .bottomBox .down dd figure .innerBox .leftBox div .price{
		font-size: clamp(11px,1.1vw,16px);
	}
	.secCase ol li .bottomBox .down dd figure .innerBox .leftBox div .price span{
		font-size: clamp(16px,1.8vw,23px);
	}
	.secCase ol li .bottomBox .down dd figure .innerBox .rightBox div .price{
		font-size: clamp(11px,1.1vw,16px);
	}
	.secCase ol li .bottomBox .down dd figure .innerBox .rightBox div .price span{
		font-size: clamp(16px,1.8vw,23px);
	}

	.secCase ol li.case1 .bottomBox .down dd .priceBox .txt{
		font-size: 38px;
	}
	.secCase ol li.caseNormal .bottomBox .down dd .priceBox .monthry{
		width: clamp(60px,5.5vw,70px);
	}
	.secCase ol li.caseNormal .bottomBox .down dd .priceBox .monthry span{
		bottom: 9px;
	}
	.secCase ol li .bottomBox .down dd .priceBox .innerBOx .price .ft-rubik{
		font-size: clamp(40px,5vw,61px);
	}
	.secCase ol li.caseNormal .bottomBox .down dd .priceBox .innerBOx .lead img{
		width: 11px;
	}
	.secCase ol li .bottomBox .totalPay .largeTxt{
		font-size: clamp(28px,3.3vw,38px);
	}

	/* Case 1 */
	.secCase ol li.case1 .bottomBox .down dd figure .innerBox .rightBox img{
		width: 56px;
	}
	.secCase ol li.case1 .bottomBox .plus{
		font-size: 26px;
	}
	.secCase ol li.case1 .bottomBox .plus span{
		font-size: 58px;
	}

	/* Case 2  Case 3 */
	.secCase ol li.caseNormal .bottomBox button{
		font-size: 17px;
		font-size: clamp(14px,1.5vw,17px);
	}
	.secCase ol li.caseNormal .atamakinBox .lead{
		font-size: 16px;
	}
	.secCase ol li.caseNormal .atamakinBox dl dt span{
		font-size: 36px;
	}
	.secCase ol li.caseNormal .atamakinBox dl dd table td span{
		font-size: 26px;
	}
}














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

	サポート

---------------------------------- */
/* ----------------------------------
	サポート - 導入部分
---------------------------------- */
.secSupport{
	background-repeat: no-repeat;
	background-position: center bottom;
	background-image: url(../img/support_bg-sp.webp);
	background-size: cover;
	position: relative;
	padding: 50px 20px 150px;
}
.secSupport .heading .badge{
	text-align: center;
	color: #fff;
	border-radius: 200px;
	padding: 10px 20px;
	font-weight: 900;
	position: relative;
	background: #10619D;
	line-height: 1.5;
}
.secSupport .heading .badge::after{
	position: absolute;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #10619D;
	position: absolute;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%);
}
.secSupport .heading h2{
	color: #10619D;
	font-weight: 900;
	text-align: center;
	font-size: 32px;
	letter-spacing: 2px;
	padding-top: 15px;
	padding-bottom: 20px;
}
.secSupport .heading .txt{
	line-height: 1.5;
}
.secSupport .heading .txt br{
	display: none;
}
@media print, screen and (min-width: 768px){
	.secSupport .heading .badge{
		line-height: 1;
		font-size: 28px;
	}
	.secSupport .heading .badge br{
		display: none;
	}
	.secSupport .heading .badge::after{
		border-left: 17px solid transparent;
		border-right: 17px solid transparent;
		border-top: 17px solid #10619D;
		bottom: -17px;
	}
	.secSupport .heading h2{
		font-size: 76px;
		letter-spacing: 2px;
		padding-top: 15px;
		padding-bottom: 20px;
	}
	.secSupport .heading .txt{
		line-height: 1.5;
		font-size: 20px;
	}
	.secSupport .heading .txt br{
		display: inline;
	}
}
@media print, screen and (min-width: 960px){
	.secSupport{
		text-align: center;
		background-image: url(../img/support_bg-pc.webp);
		padding: 100px 20px 250px;
	}
	.secSupport .heading .badge{
		display: inline-block;
		font-size: 33px;
		padding: 18px 50px;
		letter-spacing: 1px;
	}
	.secSupport .heading h2{
		letter-spacing: 3px;
		padding-top: 30px;
		padding-bottom: 40px;
	}
	.secSupport .heading .txt{
		line-height: 1.8;
	}
}
/* ----------------------------------
	サポート - リスト部分
---------------------------------- */
.secSupport ul {
	padding: 30px 0 0px;
}
.secSupport ul li{
	margin-bottom: 40px;
}
.secSupport ul li header p{
	background: #fff;
	border-radius: 200px;
	box-shadow: 0 20px 20px rgba(0,0,0,0.1);
	position: relative;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	padding: 20px 0;
	margin-bottom: 20px;
}
.secSupport ul li header p::after{
	position: absolute;
	content: "";
	display: block;
	width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
	box-shadow: 0 20px 20px rgba(0,0,0,0.1);
}
.secSupport ul li header p strong{
	display: block;
	color: var(--main-color);
	font-size: 22px;
	padding-bottom: 5px;
}
.secSupport ul li .cardBody{
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 20px 20px rgba(0,0,0,0.1);
	padding: 30px;
	position: relative;
	z-index: 2;
}
.secSupport ul li .cardBody h3{
	text-align: center;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.3;
}
.secSupport ul li .cardBody p{
	line-height: 1.5;
}
@media print, screen and (min-width: 960px){
	.secSupport ul {
		display: flex;
		justify-content: space-between;
		max-width: 1460px;
		margin: 0 auto;
		padding: 60px 0 10px;
	}
	.secSupport ul li{
		width: 32%;
	}
	.secSupport ul li header p{
		margin-bottom: 30px;
		font-size: clamp(14px, 1.5vw, 21px);
		margin-bottom: 40px;
	}
	.secSupport ul li header p::after{
		border-left: 12px solid transparent;
		border-right: 12px solid transparent;
		border-top: 14px solid #fff;
		bottom: -14px;
	}
	.secSupport ul li header p strong{
		font-size: clamp(16px, 2vw, 32px);
		padding-bottom: 12px;
	}
	.secSupport ul li .cardBody{
		min-height: clamp(412px, 412px + 1vw, 492px);
		padding: 50px clamp(30px, 3.5vw, 60px) 30px;
	}
	.secSupport ul li .cardBody h3{
		font-size: clamp(18px, 2vw, 32px);
		line-height: 1.4;
	}
	.secSupport ul li .cardBody p{
		text-align: left;
		font-size: clamp(16px, 1.5vw, 21px);
		line-height: 1.8;
	}
}
@media print, screen and (min-width: 1170px){
	.secSupport ul li .cardBody{
		min-height: clamp(448px, 448px + 3vw, 492px);
	}
}

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

	オンライン完結

---------------------------------- */
/* ----------------------------------
	オンライン完結 - 導入部分
---------------------------------- */
.secOnline {
	position: relative;
	z-index: 2;
}
.secOnline .ttlBox{
	text-align: center;
	background:var(--cleam-color);
	margin-top: -40px;
	position: relative;
	overflow-x: clip;
}
.secOnline .ttlBox::after{
	content:"";
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  width: 120%;
  height: 200px;
  background:var(--cleam-color);
  border-radius: 100%;
	z-index: -1;
}
.secOnline .ttlBox .ribbon{
	font-weight: 900;
	font-size: 19px;
	position: relative;
	letter-spacing: 2px;
	margin-bottom: 15px;
}
.secOnline .ttlBox .ribbon::before,
.secOnline .ttlBox .ribbon::after{
	position: absolute;
	content: "";
	display: block;
	background: var(--secondary-color);
	height: 100%;
	width: 3px;
	top: 0;
}
.secOnline .ttlBox .ribbon::before{
	left: 50%;
	margin-left: -60px;
	transform: rotate(-25deg);
}
.secOnline .ttlBox .ribbon::after{
	right: 50%;
	margin-right: -60px;
	transform: rotate(25deg);
}
.secOnline .ttlBox h2{
	font-weight: 900;
	font-size: 26px;
	line-height: 1.4;
	margin: 0;
}
.secOnline .ttlBox h2 span{
  display: inline;
  padding: 0 .8em .17em; /* 帯を少しはみ出させる */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  /* 帯の高さ・位置 */
  --hl-h: .40em;     /* 帯の太さ */
  --hl-y: .18em;     /* 下からの持ち上げ量（小さいほど下寄り） */
  --cut: .9em;       /* 斜めカットの幅 */
  background:
    /* 左端（斜めカット） */
    linear-gradient(130deg, transparent 50%, #FFE500 0)
      left calc(100% - var(--hl-y)) / var(--cut) var(--hl-h) no-repeat,
    /* 右端（斜めカット） */
    linear-gradient(300deg, transparent 50%, #FFE500 0)
      right calc(100% - var(--hl-y)) / var(--cut) var(--hl-h) no-repeat,
    /* 中央の帯本体（左右のカット分を引いた幅） */
    linear-gradient(#FFE500 0 0)
      center calc(100% - var(--hl-y)) / calc(100% - (var(--cut) * 2)) var(--hl-h) no-repeat;
}
.secOnline .ttlBox img{
	width: 100px;
	margin: 20px 0;
}
.secOnline .ttlBox .txt{
	color:var(--brown-color);
	font-weight: 700;
}
@media print, screen and (min-width: 768px){
	.secOnline .ttlBox img{
		position: absolute;
		right: 50%;
		margin-right: -270px;
		top: 0px;
	}
	.secOnline .ttlBox .txt{
		padding-top: 10px;
	}
}
@media print, screen and (min-width: 960px){
	.secOnline .ttlBox::after {
		top: -120px;
		width: 130%;
		height: 640px;
}
	.secOnline .ttlBox .ribbon{
		font-size: 56px;
		letter-spacing: 3px;
		margin-bottom: 20px;
	}
	.secOnline .ttlBox .ribbon::before,
	.secOnline .ttlBox .ribbon::after{
		width: 5px;
		top: 8px;
	}
	.secOnline .ttlBox .ribbon::before{
		margin-left: -160px;
	}
	.secOnline .ttlBox .ribbon::after{
		margin-right: -160px;
	}
	.secOnline .ttlBox h2{
		font-size: 76px;
	}
	.secOnline .ttlBox .txt{
		padding-top: 50px;
		font-size: 36px;
	}
	.secOnline .ttlBox img{
		margin-right: -720px;
		top: 150px;
		width: 216px;
	}
}
/* ----------------------------------
	オンライン完結 - 導入部分
---------------------------------- */	
.secOnline .introWrap{
	background: var(--cleam-color);
}
.secOnline .intro{
	padding: 30px 20px;
}
.secOnline .intro li{
	background: #fff;
	box-shadow: 0 20px 20px rgba(0,0,0,0.1);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 20px;
}
.secOnline .intro li .txtBox h3{
	line-height: 1.3;
	color: var(--brown-color);
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
	font-size: clamp(19px, 5vw, 22px);
}
.secOnline .intro li .txtBox h3 span{
	position: absolute;
	font-size: 10px;
	top: -10px;
	right: 50%;
	margin-right: -30px;
}
.secOnline .intro li .txtBox .txt{
	line-height: 1.6;
}
.secOnline .intro li .txtBox .notes{
	font-size: 12px;
	padding: 20px 0;
	line-height: 1.5;
	letter-spacing: 0;
}
.secOnline .intro li .txtBox a{
	display: block;
	text-decoration: none;
	border: 1px solid var(--main-color);
	border-radius: 10px;
	font-weight: 700;
	color: var(--main-color);
	background: url(../img/ico-tab.svg) no-repeat right 15px center;
	background-size: 15px;
	padding:15px 20px;
	line-height: 1.3;
	margin-top: 20px;
}
.secOnline .intro li .txtBox a span{
	display: none;
}
@media print, screen and (min-width: 768px){
	.secOnline .intro {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.secOnline .intro li{
		width: 48%;
		margin-bottom: 30px;
	}
	.secOnline .intro li.liFull{
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.secOnline .intro li.liFull .txtBox{
		width: 50%;
	}
	.secOnline .intro li.liFull picture{
		width: 48%;
		display: block;
	}
}
@media print, screen and (min-width: 960px){
	.secOnline .intro {
		max-width: 1500px;
		margin: 0 auto;
	}
	.secOnline .intro li{
		padding:70px clamp(30px, 5vw, 90px) 40px;
	}
	.secOnline .intro li .txtBox h3{
		font-size: clamp(28px,2.5vw,40px);
	}
	.secOnline .intro li .txtBox h3 span{
		margin-right: 0px;
	}
	.secOnline .intro li .txtBox .txt{
		font-size: 20px;
	}

	.secOnline .intro li .txtBox a{
		font-size: clamp(16px,1.5vw,24px);
		padding: 30px clamp(20px,2.1vw,30px);
		background-size: 20px;
		background-position: right 30px center;
	}
	.secOnline .intro li .txtBox a:hover{
		opacity: 0.4;	
	}
	.secOnline .intro li .txtBox a span{
		display: inline;
	}
	.secOnline .intro li .txtBox a br{
		display: none;
	}

	.secOnline .intro li.liFull{
		padding-right: 0;
	}
	.secOnline .intro li.liFull .txtBox {
		width: 49%;
		padding-top: 20px;
	}
	.secOnline .intro li .txtBox .notes{
		padding-top: 80px;
		padding-bottom: 0;
	}
}

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

	FLOW

---------------------------------- */
.secFlow{
	background: var(--cleam-color);
}
.secFlow h3{
	text-align: center;
	font-weight: 900;
	font-size: 30px;
	padding: 30px 0;
}
.secFlow .tablist{
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}
.secFlow .tablist button{
	color: var(--brown-color);
	font-weight: 700;
	width: 48%;
	border-radius: 10px 10px 0 0;
	border: 3px solid #C7BAAF;
	border-bottom: none;
	background: #FAF6F2;
	text-align: center;
	font-size: 24px;
	line-height: 1.2;
	padding: 13px 0 10px;
	transition: all .4s;
}
.secFlow .tablist button:hover{
	opacity: 0.5;
	cursor: pointer;
}
.secFlow .tablist button.is-active{
	background: #Fff;
	position: relative;
	pointer-events: none;
}
.secFlow .tablist button.is-active::after{
	content: "";
	display: block;
	position: absolute;
	background: #fff;
	height: 6px;
	width: 100%;
	bottom: -3px;
	left: 0px;
	z-index: 3;
}

.secFlow .panelsWrap{
	border: 3px solid #C7BAAF;
	border-radius: 20px;
	background: #fff;
}
.secFlow .panelsWrap h4{
	position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.secFlow .panelsWrap .panel {
  display: none;
}
.secFlow .panelsWrap .panel.is-active {
  display: block;
}
.secFlow .panelsWrap .panel .lead{
	padding:40px 50px;
	line-height: 1.5;
}
.secFlow .panelsWrap .panel .stepsWrap{
	padding: 0 20px;
}
.secFlow .panelsWrap .panel .stepsWrap li{
	border-radius: 10px;
	border: 1px solid #EFE7E1;
	padding: 50px 40px 25px;
	position: relative;
	margin-bottom: 20px;
}
.secFlow .panelsWrap .panel .stepsWrap li:not(:last-child)::after{
	content: "";
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 13px solid #C7BAAF;
	bottom: -13px;
}
.secFlow .panelsWrap .panel .stepsWrap li h5{
	font-weight: 900;
	font-size: 24px;
}
.secFlow .panelsWrap .panel .stepsWrap li h5 .badge{
	display: block;
	position: absolute;
	width: 107px;
	line-height: 31px;
	text-align: center;
	color: #fff;
	background: #C7BAAF;
	border-radius: 100px;
	top: 10px;
	left: -15px;
	font-size: 18px;
}
.secFlow .panelsWrap .panel .stepsWrap li h5 .badge span{
	font-size: 22px;
}
.secFlow .panelsWrap .panel .stepsWrap li .text{
	line-height: 1.5;
	padding-top: 10px;
}
.secFlow .panelsWrap .panel .stepsWrap li .text span{
	font-size: 12px;
	display: block;
}
.secFlow .btnWrap{
	padding: 40px 0;
	background: var(--cleam-color);
}
@media print, screen and (min-width: 960px){
	.secFlow h3{
		font-size: 56px;
		padding: 50px 0;
	}
	.secFlow .tablist{
		padding: 0 80px;
		max-width: 1460px;
		margin: 0 auto;
	}
	.secFlow .tablist button{
		width: 49%;
		font-size: 42px;
		padding: 60px 0 45px;
		border-radius: 20px 20px 0 0;
	}
	.secFlow .tablist button br{
		display: none;
	}
	.secFlow .panelsWrap{
		max-width: 1460px;
		margin: 0 auto;
	}
	.secFlow .panelsWrap .panel .lead{
		padding: 60px 0px;
		font-size: 20px;
		line-height: 1.8;
		text-align: center;
	}

	.secFlow .panelsWrap .panel .stepsWrap {
    padding: 0 90px;
	}
	.secFlow .panelsWrap .panel .stepsWrap li{
		display: flex;
		padding: 30px 40px 30px;
	}
	.secFlow .panelsWrap .panel .stepsWrap li:not(:last-child)::after{
		display: none;
	}
	.secFlow .panelsWrap .panel .stepsWrap li h5{
		display: flex;
		align-items: center;
		font-size: 32px;
		width: 583px;
		position: relative;
	}
	
	.secFlow .panelsWrap .panel .stepsWrap li h5 .badge{
		position: relative;
		font-size: 24px;
		width: 193px;
		line-height: 59px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 20px;
		top: 0;
		left: 0px;
	}
	.secFlow .panelsWrap .panel .stepsWrap li:not(:last-child) h5 .badge::after{
		content: "";
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		width: 0;
		height: 0;
		border-left: 12px solid transparent;
		border-right: 12px solid transparent;
		border-top: 13px solid #C7BAAF;
		bottom: -20px;
	}
	
	.secFlow .panelsWrap .panel .stepsWrap li h5 .badge span{
		font-size: 52px;
		padding-left: 20px;
	}
	.secFlow .panelsWrap .panel .stepsWrap li .text{
		font-size: 18px;
		width: calc(100% - 583px);
	}

	.secFlow .btnWrap{
		padding: 80px 0;
	}
}


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

	FAQ

---------------------------------- */
.secQa{
	padding: 40px 20px;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-image: url(../img/faq_bg-sp.webp);
	background-size: 100% auto;
	margin-bottom: 50px;
}
.secQa .head{
	position: relative;
}
.secQa .head h2{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	font-weight: 900;
	color: #fff;
	text-shadow: 3px 3px 10px rgba(0,0,0,0.2);
	font-size: 24px;
	text-align: center;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
}
.secQa .head img{
	vertical-align: top;
}
.secQa .head h2 span span{
	display: block;
	font-size: 32px;
}

.secQa .blcList{
	padding: 20px 0;
}
.secQa .blcList li{
	margin-bottom: 5px;
}
.secQa .blcList li a{
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 20px;
	text-decoration: none;
	color: var(--brown-color);
	font-weight: 700;
	display: block;
	position: relative;
	background: #fff;
}
.secQa .blcList li a:hover{
	opacity: 0.4;
}
.secQa .blcList li a::after {
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--brown-color);
	border-right: 2px solid var(--brown-color);
	transform: rotate(135deg);
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
}

.secQa .faqBlc{
	padding-bottom: 10px;
}
.secQa .faqBlc h3{
	text-align: center;
	color: var(--brown-color);
	font-weight: 700;
	font-size: 21px;
	padding: 40px 0 20px;
	border-top: 1px solid var(--border-color);
}
.secQa .faqBlc .listItem{
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	padding: 15px;
	margin-bottom: 20px;
}
.secQa .faqBlc .listItem .ico{
	width: 32px;
	height: 32px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}
.secQa .faqBlc .listItem .icoQ{
	background: var(--secondary-color);
	color: #fff;
}
.secQa .faqBlc .listItem .icoA{
	background: #EFE7E1;
}
.secQa .faqBlc .listItem dt{
	border-bottom: 1px solid var(--brown-color);
	padding-bottom: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
}
.secQa .faqBlc .listItem dt .qus,
.secQa .faqBlc .listItem dd .ans{
	width: calc(100% - 32px);
	padding-left: 10px;
	line-height: 1.2;
}
.secQa .faqBlc .listItem dd{
	padding-top: 15px;
	display: flex;
}
.secQa .faqBlc .listItem dd .ans{
	line-height: 1.4;
}

.secQa .faqBlc .sldBtn{
	width: 300px;
	margin: 30px auto 30px;
	position: relative;
	transition: all .4s;
}
.secQa .faqBlc .sldBtn:hover{
	opacity: 0.4;
}
.secQa .faqBlc .sldBtn button:hover{
	cursor: pointer;
}
.secQa .faqBlc .sldBtn::before,
.secQa .faqBlc .sldBtn::after{
	content: "";
	display: block;
	position: absolute;
	background: var(--brown-color);
	height: 1px;
	width: 20px;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.secQa .faqBlc .sldBtn::after{
	transform: all .4s;
	transform: rotate(90deg);
}
.secQa .faqBlc .sldBtn.open::after{
	transform: rotate(0deg);
}
.secQa .faqBlc .sldBtn button{
	display: block;
	text-align: center;
	line-height: 50px;
	border: 1px solid var(--brown-color);
	background: #fff;
	color: var(--brown-color);
	width: 100%;
	height: 100%;
	font-size: 21px;
}
.secQa .faqBlc .hdnBox{
	display: none;
}
@media print, screen and (min-width: 768px){
	.secQa .head,
	.secQa .blcList,
	.secQa .faqBlc{
		max-width: 1280px;
		margin: 0 auto;
	}
}
@media print, screen and (min-width: 960px){
	.secQa{
		padding: 80px 20px;
    background-image: url(../img/faq_bg-pc.webp);
	}
	.secQa .head h2{
		font-size: 56px;
		text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
	}
	.secQa .head h2 br{
		display: none;
	}
	.secQa .head h2 span span{
		font-size: 36px;
	}

	.secQa .blcList{
		padding: 50px 0;
		display: flex;
		flex-wrap: wrap;
		gap: 0.5%;
	}
	.secQa .blcList li{
		width: 24.5%;
	}
	.secQa .blcList li a{
		font-size: 14px;
		height: 100%;
		display: flex;
		align-items: center;
		line-height: 1.3;
	}

	.secQa .faqBlc{
		padding-bottom: 20px;
		padding-top: 90px;
		margin-top: -90px;
	}
	.secQa .faqBlc h3{
		font-size: 32px;
		padding-top: 60px;
		padding-bottom: 40px;
	}

	.secQa .faqBlc .listItem{
		padding: 50px;
		margin-bottom: 40px;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
	}
	.secQa .faqBlc .listItem .ico{
		width: 46px;
		height: 46px;
		font-size: 24px;
	}
	.secQa .faqBlc .listItem dt .qus, 
	.secQa .faqBlc .listItem dd .ans {
    width: calc(100% - 46px);
    padding-left: 15px;
    line-height: 1.8;
	}
	.secQa .faqBlc .listItem dt .qus{
		font-size: 24px;
	}
	.secQa .faqBlc .listItem dd .ans{
		font-size: 20px;
	}
	.secQa .faqBlc .listItem dt{
		padding-bottom: 30px;
	}
	.secQa .faqBlc .listItem dd{
		padding-top: 30px;
	}

	.secQa .faqBlc .sldBtn{
		width: 500px;
		margin: 50px auto 30px;
	}
	.secQa .faqBlc .sldBtn button{
		line-height: 70px;
		font-size: 28px;
	}
}

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

	固定ボタン

---------------------------------- */
.ftFixBtn li.itemNorikae{
	width: calc((100% - 74px));
}
.ftFixBtn li.itemNorikae a{
	background: var(--main-color);
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	padding-top: 30px;
}
@media print, screen and (min-width: 960px){
	.ftFixBtn ul{
		justify-content: center;
	}
	.ftFixBtn li.itemNorikae{
		width: 500px;
	}
	.ftFixBtn li.itemNorikae a{
		padding-top: 5px;
	}
}
