/***********************
* Responsive Breakpoints
* 1025px +          PC
* 768px - 1024px    Tablet - PC
* 0px - 767px       SmartPhone
************************/

@font-face {
	font-family: "bodyFont";
	src: url("fonts/NotoSansJP.woff2") format("woff2");
	font-display: swap;
}
html {
	height: -webkit-fill-available;
}
body {
	font-family: "bodyFont", serif;
	min-height: 100vh;
	border: 6px solid #000;
}

/*********************
* common
***********************/
:root {
	--color-main: rgb(252, 209, 0);
	--color-sub: rgb(255, 46, 66);
	--color-sub2: rgb(0, 56, 146);
	--color-sub3: rgb(58, 191, 175);
	--distance: 50px;
	--distance-s: 25px;
	--distance-l: 100px;
	--distance-xl: 150px;
	--radius: 15px;
	--radius-s: 10px;
	--radius-l: 30px;
	--radius-xl: 50px;
	--fnt-xs: 10px;
	--fnt-s: 12px;
	--fnt-l: 36px;
	--fnt-xl: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	:root {
		--distance: 35px;
		--distance-s: 20px;
		--distance-l: 65px;
		--distance-xl: 95px;
		--radius: 12px;
		--radius-s: 8px;
		--radius-l: 25px;
		--radius-xl: 40px;
		--fnt-xs: 9px;
		--fnt-s: 11px;
		--fnt-l: 28px;
		--fnt-xl: 36px;
	}
}
@media screen and (max-width: 767px) {
	:root {
		--distance: 15px;
		--distance-s: 10px;
		--distance-l: 25px;
		--distance-xl: 50px;
		--radius: 10px;
		--radius-s: 5px;
		--radius-l: 20px;
		--radius-xl: 30px;
		--fnt-xs: 9px;
		--fnt-s: 11px;
		--fnt-l: 21px;
		--fnt-xl: 29px;
	}
}

/* svg - logo */
img[src*=".svg"] {
	width: 100%;
	height: auto;
}

#masthead .site-info a img {
	width: 100%;
	max-height: 60px;
}

/* Decoration  Other */
.b {
	font-weight: 900;
}
.color-main {
	color: rgb(252, 209, 0);
}
.color-sub {
	color: rgb(255, 46, 66);
}
.color-sub2 {
	color: rgb(0, 56, 146);
}
.color-sub3 {
	color: rgb(58, 191, 175);
}

/* youtube & Google Map */
.youtube,
.gmap {
	width: 100%;
	aspect-ratio: 3 / 1;
}
.youtube iframe,
.gmap iframe {
	width: 100%;
	height: 100%;
}

/* Common */
h2 {
	border: none !important;
}

/* Individual */
.kvSlider {
	padding: var(--distance);
	background: var(--color-main);
	border-top: 6px solid #000;
	border-bottom: 6px solid #000;
}

.sec-01,
.sec-02 {
	position: relative;
	max-width: 90%;
	margin: var(--distance-l) auto;
	padding: var(--distance-l) var(--distance-l) 0 var(--distance-l) !important;
	border: 2px solid #000;
	border-radius: var(--radius-xl);
	overflow: hidden;
	& h2 {
		max-width: 800px;
	}
	& h3 {
		width: fit-content;
		position: relative;
		color: var(--color-sub);
		text-align: center;
		font-weight: 900;
		&::before {
			position: absolute;
			left: -3rem;
			width: fit-content;
			display: inline;
			content: "＼＼";
		}
		&::after {
			position: absolute;
			right: -3rem;
			width: fit-content;
			display: inline;
			content: "／／";
		}
	}
	.wp-block-nishiki-blocks-pro-button {
		margin-top: var(--distance);
		padding: var(--distance);
		& a.btn {
			min-width: 420px;
			background-color: #fff !important;
			font-weight: 900;
			border: none !important;
			border-radius: 999px !important;
		}
	}
	&::before {
		z-index: -1;
		top: unset !important;
		bottom: 0 !important;
		height: 165px;
		width: 100%;
		opacity: 1;
	}
}

.sec-01::before {
	background: var(--color-sub2);
}
.sec-02::before {
	background: var(--color-sub3);
}

.sec-03 {
	padding: var(--distance-s) 0 var(--distance-l) !important;
	background: var(--color-main);
	border-top: 6px solid #000;
	border-bottom: 6px solid #000;
	.inner-container {
		width: 100%;
		max-width: unset !important;
		& h2 {
			font-weight: 900;
			font-size: var(--fnt-xl);
			& span {
				font-size: var(--fnt-l);
			}
		}
		.wp-block-nishiki-blocks-pro-slider2 {
			padding-top: var(--distance);
			border-top: 3px solid #000;
		}
	}
}
.sec-04 {
	padding: var(--distance-l) !important;
	.inner-container {
		width: 100%;
		max-width: unset !important;
		& .wp-block-columns {
			gap: 0;
			& .wp-block-column {
				padding: var(--distance);
				border-left: 3px solid #000;
				&:last-of-type {
					border-right: 3px solid #000;
				}
			}
		}
	}
	& h2 {
		font-weight: 900;
		font-size: var(--fnt-xl);
		& span {
			font-size: var(--fnt-l);
		}
	}
	& h3 {
		width: fit-content;
		margin: auto;
		&::before {
			margin-right: 0.5rem;
			display: inline;
			content: "[";
			color: #ccc;
		}
		&::after {
			margin-left: 0.5rem;
			display: inline;
			content: "]";
			color: #ccc;
		}
		& + p {
			font-weight: 900;
			color: var(--color-sub);
		}
	}
}

.sec-05 {
	padding: var(--distance-s) 0 var(--distance-l) !important;
	background: var(--color-main);
	border-top: 6px solid #000;
	& .inner-container {
		width: 100%;
		max-width: unset !important;
		& h2 {
			font-weight: 900;
			font-size: var(--fnt-xl);
			& span {
				font-size: var(--fnt-l);
			}
		}
		& .companyInfo {
			padding-top: var(--distance);
			border-top: 3px solid #000;
			max-width: unset;
			& .wp-block-columns {
				gap: 0;
				background: #fff;
				border: 1px solid #000;
				& figure {
					margin: 0;
					& img {
						width: 100%;
						height: auto;
					}
				}
				& dl {
					padding: var(--distance);
					display: flex;
					flex-wrap: wrap;
					& dt {
						width: 150px;
						padding: 1rem 0;
						border-bottom: 1px solid #000;
						font-weight: 900;
						&:last-of-type {
							border: none;
						}
					}
					& dd {
						width: calc(100% - 150px);
						padding: 1rem 0;
						margin: 0;
						border-bottom: 1px solid #000;
						&:last-of-type {
							border: none;
						}
					}
				}
			}
		}
	}
	& .gmap {
		margin-top: var(--distance);
		max-width: 1366px;
	}
}

/* Page */
.secTitle {
	background: var(--color-main);
	border-top: 6px solid #000;
	border-bottom: 6px solid #000;
	& p {
		padding-top: 1.5rem;
		padding-bottom: 1.4rem;
	}
	& img {
		display: block;
		width: auto;
		max-width: 800px;
		height: auto;
		margin: var(--distance) auto;
	}
}

/* new-car */
.reason {
	padding: var(--distance) 0 0 !important;
	border-bottom: solid 6px #000;
	text-align: center;
	font-weight: 900;
	& > .inner-container {
		max-width: unset !important;
	}
	& .reasonSec-01 {
		position: relative;
		margin-top: var(--distance-xl);
		padding: var(--distance-l) 0 !important;
		border-top: 28px solid #e6e6e6;
		background: #f7f7f7;
		&::before {
			position: absolute;
			top: -117px;
			left: 0;
			z-index: 1;
			display: block;
			content: "";
			width: 205px;
			height: 117px;
			background-image: url(https://ok-motors.jp/wp/wp-content/uploads/2025/05/emb-palm_tree.svg);
			background-size: contain;
			background-color: unset;
			background-repeat: no-repeat;
			opacity: 1;
		}
		&::after {
			position: absolute;
			top: -115px;
			right: 0;
			z-index: 1;
			display: block;
			content: "";
			width: 185px;
			height: 109px;
			background-image: url(https://ok-motors.jp/wp/wp-content/uploads/2025/05/emb-car_yellow.svg);
			background-size: contain;
			background-color: unset;
			background-repeat: no-repeat;
			opacity: 1;
		}
		& h3 {
			width: fit-content;
			padding: calc(var(--distance) / 2) var(--distance);
			background: var(--color-sub2);
			border-radius: var(--radius-xl);
			color: #fff;
			position: relative;
			z-index: 1;
		}
		& ul {
			width: 90%;
			margin-top: calc(var(--distance) * -1.45);
			margin-bottom: var(--distance-l);
			padding: var(--distance-l) var(--distance-l) var(--distance);
			background: #fff;
			border-radius: var(--radius-xl);
			text-align: left;
			& li {
				padding-left: 0.25rem;
				&::marker {
					content: url(https://ok-motors.jp/wp/wp-content/uploads/2025/05/emb-list.svg);
				}
			}
		}
		& span {
			background: linear-gradient(transparent 50%, var(--color-main) 50%);
			font-size: calc(var(--fnt-l) * 0.8);
		}
	}
}

.carList {
	& .inner-container {
		width: 100%;
		max-width: unset !important;
		& h2 {
			font-weight: 900;
			font-size: var(--fnt-xl);
		}
	}
	.carListItem {
		border-top: 3px solid #000;
		max-width: unset;
		padding: var(--distance-l);
	}
	.carListItems {
		max-width: 25%;
		border: 3px solid #000;
		font-weight: 900;
		position: relative;
		&.honda::before,
		&.mazda::before,
		&.suzuki::before,
		&.daihatsu::before {
			position: absolute;
			display: block;
			padding: 0.05rem 0.4rem 0.1rem 0.3rem;
			left: 0;
			top: 0;
			z-index: 2;
			background: #000;
			color: #fff;
			font-size: var(--fnt-s);
		}
		&.honda::before {
			content: "HONDA";
		}
		&.mazda::before {
			content: "MAZDA";
		}
		&.suzuki::before {
			content: "SUZUKI";
		}
		&.daihatsu::before {
			content: "DAIHATSU";
		}

		& img {
			display: block;
			max-width: 90%;
			margin: 5% auto;
		}
		& h3 {
			padding: 0.9rem 0.9rem 0.8rem;
			border-bottom: 1px solid #000;
		}
		& .carSpec {
			margin: 0 0 1rem;
			gap: 0.5rem;
			& > div {
				width: 37%;
				flex-basis: unset;
			}
			& div:first-of-type {
				width: 21%;
			}
			& div:last-of-type {
				width: 27%;
			}
			& dl {
				background: #000;
				color: #fff;
				text-align: center;
				& dt {
					margin: 0;
				}
				& dd {
					margin: 0;
					padding-bottom: 0.4rem;
					line-height: 1;
					font-size: calc(var(--fnt-l) * 0.8);
				}
				& span {
					padding-left: 0.3rem;
					font-size: var(--fnt-s);
				}
			}
		}
		& a {
			color: #000;
			transition: opacity 0.5s ease;
			&:hover {
				opacity: 0.7;
			}
		}
	}
}

/* 車個別ページ */
.secCarImg {
	padding: var(--distance-l) 0 !important;
	text-align: center;
	border-bottom: 3px solid #000;
}
.secCarSpec {
	position: relative;
	padding: 0 var(--distance);
	border-left: 3px solid #000;
	border-right: 3px solid #000;
	font-weight: 900;
	text-align: center;
	overflow: hidden;
	&::after {
		position: absolute;
		left: -11%;
		bottom: 20px;
		width: 1000px;
		height: 30px;
		display: block;
		content: "";
		background: url(https://ok-motors.jp/wp/wp-content/uploads/2025/05/icon-arrow-total.svg)
			no-repeat;
		background-size: contain;
	}
	& h1 {
		margin-bottom: 10px;
		font-size: var(--fnt-xl);
	}
	.secSpecBox {
		margin-bottom: var(--distance);
		padding: var(--distance) !important;
		border-top: 3px solid #000;
		border-bottom: 3px solid #000;
	}
	& .carSpec {
		margin: 0 0 1rem;
		gap: 0.5rem;
		& dl {
			background: #000;
			color: #fff;
			text-align: center;
			& dt {
				margin: 0;
			}
			& dd {
				margin: 0;
				padding-bottom: 0.4rem;
				line-height: 1;
				font-size: calc(var(--fnt-l) * 0.8);
			}
			& span {
				padding-left: 0.3rem;
				font-size: var(--fnt-s);
			}
		}
	}
	& h3 {
		width: fit-content;
		padding: calc(var(--distance) / 2) var(--distance-l);
		background: var(--color-sub2);
		border-radius: var(--radius-xl);
		color: #fff;
		position: relative;
		z-index: 1;
	}
	& h3 + ol {
		position: relative;
		width: 90%;
		margin-top: calc(var(--distance) * -1.45);
		margin-bottom: var(--distance-l);
		padding: var(--distance-l) var(--distance-l) var(--distance);
		border-radius: var(--radius);
		background: #e9f2ff;
		counter-reset: my-counter;
		list-style: none;
		overflow-y: visible;
		text-align: left;
		& li {
			position: relative;
			display: inline;
			margin-right: 1rem;
			padding-left: 1.5rem;
			&:before {
				position: absolute;
				top: 3px;
				left: 0;
				content: counter(my-counter);
				counter-increment: my-counter;
				box-sizing: border-box;
				display: flex;
				justify-content: center;
				align-items: center;
				height: 22px;
				width: 22px;
				font-size: 80%;
				line-height: 1;
				border: 1px solid #000;
				border-radius: 50%;
				letter-spacing: -0.07rem;
			}
		}
		&::after {
			position: absolute;
			right: 0;
			left: 0;
			bottom: -65px;
			margin: 0 auto;
			display: block;
			width: 84px;
			height: 84px;
			content: "";
			background: url(https://ok-motors.jp/wp/wp-content/uploads/2025/05/icon-arrow.svg);
		}
	}
	& h4 {
		margin: 0;
		padding: 0;
		font-size: var(--fnt-l);
		color: var(--color-sub2);
	}
	& h5 {
		margin: var(--distance-s) 0 0 !important;
		background: #f2f2f2;
		border-radius: 999px;
		font-size: var(--fnt-xl);
		& span {
			color: #ff2e42;
		}
	}
	& .payMonth {
		margin-top: 0;
		font-size: var(--fnt-l);
		& span {
			font-size: var(--fnt-l);
			&.b {
				padding: 0.5rem;
				font-size: calc(var(--fnt-xl) * 1.5);
				color: #ff2e42;
			}
		}
		&::after {
			display: inline;
			content: "（税込み）";
			color: #666;
			font-size: var(--fnt-s);
		}
	}
	& .total {
		display: flex;
		width: fit-content;
		margin-right: 0 !important;
		& dt {
			padding: 0.2rem;
			width: 3rem;
			background: var(--color-main);
			line-height: 1.3;
			letter-spacing: 0.1rem;
		}
		& dd {
			margin-left: 0.5rem;
			line-height: 1;
			& p {
				margin: 0;
				& span {
					font-size: var(--fnt-xl);
					color: #26a0dd;
				}
				&::after {
					display: inline;
					content: "（税込み）";
					font-size: var(--fnt-s);
					color: #666;
				}
			}
		}
	}

	& .nav_color_list {
		width: 100%;
		padding: 0;
		text-align: center;
		position: relative;
		bottom: 0;
	}
	& .nav_color_list li {
		width: 28px;
		height: 28px;
		display: inline-block;
		position: relative;
		border: 1px solid #ccc;
		border-radius: 4px;
		overflow: hidden;
	}

	& .nav_color_list li.c_premium_white {
		background-color: #ecf6fd;
	}
	& .nav_color_list li.c_platinum_white {
		background-color: #ffffff;
		box-sizing: border-box;
		border: 1px solid #ccc;
	}
	& .nav_color_list li.c_luna_silver {
		background-color: #d9d9d9;
	}
	& .nav_color_list li.c_meteoroid_gray {
		background-color: #706f70;
	}
	& .nav_color_list li.c_crystal_black {
		background-color: #000000;
	}
	& .nav_color_list li.c_twilight_black {
		background-color: #43354f;
	}
	& .nav_color_list li.c_premium_purple {
		background-color: #43354f;
	}
	& .nav_color_list li.c_midnight_blue {
		background-color: #043a5c;
	}
	& .nav_color_list li.c_taffeta_white {
		background-color: #ffffff;
		box-sizing: border-box;
		border: 1px solid #ccc;
	}
	& .nav_color_list li.c_premium_sunlight_white {
		background-color: #ecf6fd;
	}
	& .nav_color_list li.c_twilight_mist_black {
		background-color: #625f7a;
	}
	& .nav_color_list li.c_autumn_yellow {
		background-color: #dbbc54;
	}
	& .nav_color_list li.c_fjord_mist {
		background-color: #e9f8f7;
	}
	& .nav_color_list li.c_premium_ivory {
		background-color: #f3ecc0;
	}
	& .nav_color_list li.c_slate_gray {
		background-color: #909b9e;
	}
	& .nav_color_list li.c_crystal_red {
		background-color: #c8101f;
	}

	/* nbox */
	& .nav_color_list li.fashion._01 {
		background-color: #93bbc8;
	}
	& .nav_color_list li.fashion._02 {
		background-color: #d5ae64;
	}
	& .nav_color_list li.fashion._03 {
		background-color: #dac7ac;
	}
	& .nav_color_list li.fashion:before {
		content: "";
		display: block;
		position: absolute;
		top: 7px;
		left: 0;
		width: 100%;
		height: 7px;
		z-index: 1;
		background: #fff;
	}

	/* custom_coordinate */
	& .nav_color_list li.c_platinum_white {
		background-color: #ffffff;
	}
	& .nav_color_list li.c_premium_sunlight_white {
		background-color: #ecf6fd;
	}
	& .nav_color_list li.c_midnight_blue {
		background-color: #043a5c;
	}
	& .nav_color_list li.c_slate_gray {
		background-color: #909b9e;
	}
	& .nav_color_list li.c_crystal_red {
		background-color: #c8101f;
	}
	& .nav_color_list li.c_twilight_mist_black {
		background-color: #625f7a;
	}
	& .nav_color_list li.c_platinum_white_black {
		background-color: #ffffff;
	}
	& .nav_color_list li.c_premium_sunlight_white_black {
		background-color: #ecf6fd;
	}
	& .nav_color_list li.c_midnight_blue_black {
		background-color: #043a5c;
	}
	& .nav_color_list li.c_slate_gray_black {
		background-color: #909b9e;
	}
	& .nav_color_list li.c_crystal_red_black {
		background-color: #c8101f;
	}
	& .nav_color_list li.c_twilight_mist_black_black {
		background-color: #625f7a;
	}
	& .nav_color_list li.c_platinum_white_black:before,
	& .nav_color_list li.c_premium_sunlight_white_black:before,
	& .nav_color_list li.c_midnight_blue_black:before,
	& .nav_color_list li.c_slate_gray_black:before,
	& .nav_color_list li.c_crystal_red_black:before,
	& .nav_color_list li.c_twilight_mist_black_black:before {
		content: "";
		display: block;
		position: absolute;
		top: 0px;
		left: 0;
		width: 100%;
		height: 20px;
		z-index: 1;
		background: #16201d;
	}
	& .c_gray_silver {
		background: #000;
	}
	& .c_gray_silver::before {
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 14px;
		z-index: 1;
		background: #909b9e;
	}

	/* joy */
	& .nav_color_list li.c_platinum_white {
		background-color: #ffffff;
	}
	& .nav_color_list li.c_crystal_black {
		background-color: #000;
	}
	& .nav_color_list li.c_slategray_black {
		background-color: #909b9e;
	}
	& .nav_color_list li.c_fjord-mist_black {
		background-color: #e9f8f7;
	}
	& .nav_color_list li.c_autumn-yellow_black {
		background-color: #dbbc54;
	}
	& .nav_color_list li.c_botanical-green_black {
		background-color: #74806e;
	}
	& .nav_color_list li.c_desert-beige_black {
		background-color: #b39f7c;
	}
	& .nav_color_list li.c_fjordmist {
		background-color: #e0eaea;
	}
	& .nav_color_list li.c_frame_red {
		background-color: #e60012;
	}
	& .nav_color_list li.c_slategray_black:before,
	& .nav_color_list li.c_fjord-mist_black:before,
	& .nav_color_list li.c_autumn-yellow_black:before,
	& .nav_color_list li.c_botanical-green_black:before,
	& .nav_color_list li.c_desert-beige_black:before {
		content: "";
		display: block;
		position: absolute;
		top: 0px;
		left: 0;
		width: 100%;
		height: 13px;
		z-index: 1;
		background: #16201d;
	}
}

.page .page-header::after {
	background-color: unset;
}
.page-header {
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	background: var(--color-main);
	color: #000 !important;
}

.company {
	& .companyInfo {
		max-width: unset;
		& .wp-block-columns {
			gap: 0;
			background: #fff;
			border: 1px solid #000;
			& figure {
				margin: 0;
				& img {
					width: 100%;
					height: auto;
				}
			}
			& dl {
				padding: var(--distance);
				display: flex;
				flex-wrap: wrap;
				& dt {
					width: 150px;
					padding: 1rem 0;
					border-bottom: 1px solid #000;
					font-weight: 900;
					&:last-of-type {
						border: none;
					}
				}
				& dd {
					width: calc(100% - 150px);
					padding: 1rem 0;
					margin: 0;
					border-bottom: 1px solid #000;
					&:last-of-type {
						border: none;
					}
				}
			}
		}
	}
}

#footer {
	border-top: 6px solid #000;

	& .container {
		width: 100%;
		max-width: 100% !important;
		padding-bottom: 0;
	}
	.footer-widget {
		width: 70%;
		margin: auto;
		padding: var(--distance) 0;
		text-align: center;
		font-weight: 900;
		& #block-7 {
			position: relative;
			&::after {
				position: absolute;
				top: 0;
				right: -1rem;
				display: block;
				content: "";
				height: 100%;
				width: 3px;
				background: #000;
			}
		}
		& h2 {
			font-size: var(--fnt-l);
			margin-bottom: 0;
			color: #000;
		}
		& p {
			margin-top: 0;
			color: #000;
		}
		& ul {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 2rem;
			& li {
				width: fit-content;
				border: none;
			}
		}
		& .btn {
			min-width: 90%;
			background-color: #000 !important;
			color: #fff !important;
			border-radius: 10px !important;
			border-style: unset !important;
		}
	}

	.copyright {
		width: 100%;
		background: var(--color-main);
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		border-top: 6px solid #000;
		margin-bottom: 0;
		color: #000;
		font-weight: 900;
		& span {
			width: 100px;
			margin-top: var(--distance-s);
			&:first-of-type,
			&:last-of-type {
				width: 100%;
			}
		}
		& img {
			width: 105px;
			height: auto;
		}
		& a {
			color: #000 !important;
		}
	}
}

.page-child.new-car .nishiki-pro-breadcrumbs {
	padding: 0;
	& .container {
		padding: 2rem 1rem;
		border-left: 3px solid #000;
		border-right: 3px solid #000;
	}
}
/*********************
* PC+
1025px +
***********************/
@media only screen and (min-width: 1025px) {
}

/*********************
* Tablet - PC
769px - 1024px
***********************/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}

/*********************
* SmartPhone
0px - 768px
***********************/
@media only screen and (max-width: 767px) {
	.sec-01,
	.sec-02 {
		& h2 {
			margin-bottom: 0;
		}
		& h3 {
			margin-top: 0;
			font-size: var(--fnt-l);
			&::before {
				left: -1.2rem;
				bottom: 0.9rem;
			}
			&::after {
				right: -1.2rem;
				bottom: 0.9rem;
			}
		}
		.wp-block-nishiki-blocks-pro-button {
			margin-top: var(--distance);
			padding: var(--distance);
			& a.btn {
				min-width: 220px;
				background-color: #fff !important;
				font-weight: 900;
				border: none !important;
				border-radius: 999px !important;
			}
		}
		&::before {
			height: 85px;
		}
	}
	.sec-03 {
		& .inner-container {
			& h2 {
				padding: 0.5rem 1.1rem 0 !important;
			}
		}
	}
	.sec-04 {
		.inner-container {
			& .wp-block-columns {
				& .wp-block-column {
					padding: var(--distance-l) var(--distance);
					border-left: none;
					border-bottom: 3px solid #000;
					&:last-of-type {
						border: none;
					}
				}
			}
		}
	}
	.sec-05 {
		& .inner-container {
			& h2 {
				padding: 0.5rem 1.1rem 0 !important;
			}
			& .companyInfo {
				& .wp-block-columns {
					width: 90%;
					margin-top: var(--distance);
				}
			}
		}
		.gmap {
			width: 90%;
			aspect-ratio: 3 / 2;
		}
	}

	.secTitle {
		& img {
			max-width: 90%;
			height: auto;
			margin: var(--distance) auto;
		}
	}
	.reason {
		& h2 + p {
			width: 90%;
		}
		& .reasonSec-01 {
			&::before {
				top: -73px;
				width: calc(205px / 2);
				height: calc(117px / 2);
			}
			&::after {
				top: -73px;
				width: calc(185px / 2);
				height: calc(109px / 2);
			}
			& ul {
				width: 100%;
				margin-top: calc(var(--distance-xl) * -1);
				padding: var(--distance-xl) var(--distance-xl) var(--distance-l);
				background: #fff;
				border-radius: var(--radius-xl);
				text-align: left;
			}
		}
	}
	.carList {
		& h2 {
			padding: 0.5rem 1.1rem 0 !important;
		}
		& .carListItems {
			max-width: 100%;
		}
	}
	.secCarSpec {
		&::after {
			left: -90%;
			width: calc(1000px / 2);
			height: calc(30px / 2);
		}
		& h3 + ol {
			width: 100%;
			margin-top: calc(var(--distance-l) * -1.65);
			margin-bottom: calc(var(--distance-xl) * 1.5);
			padding: var(--distance-xl) var(--distance-l) var(--distance-xl);
			& li {
				display: block;
			}
		}
		& h5 {
			font-size: var(--fnt-l);
		}
		& .payMonth {
			font-size: medium;
			& span {
				font-size: calc(var(--fnt-l) * 0.8);
				&.b {
					padding: 0.5rem;
					font-size: calc(var(--fnt-xl) * 1);
					color: #ff2e42;
				}
			}
		}
		& .total {
			& dt {
				padding: 0.2rem;
				width: 2rem;
				font-size: var(--fnt-s);
			}
			& dd {
				display: flex;
				align-items: center;
				& p {
					font-size: var(--fnt-s);
					& span {
						font-size: var(--fnt-l);
					}
				}
			}
		}
	}

	#footer {
		& .footer-widget {
			& #block-7 {
				&::after {
					top: unset;
					right: unset;
					bottom: -1rem;
					height: 3px;
					width: 100%;
				}
			}
		}
	}
}
