@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* =========================================
   Base / Reset (Mobile-first)
   ========================================= */
*, *:before, *:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

body {
	background-color: #fff;
	width: 100%;
	min-width: 320px;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border: 0;
}

a {
	text-decoration: none;
	color: inherit;
	background-color: transparent;
}

a:active, a:hover {
	outline: 0;
}

ul, ol {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

button {
	border: none;
	outline: none;
	background: transparent;
}

sup {
	top: 0;
	vertical-align: super;
	font-size: 60%;
}

/* =========================================
   Utility
   ========================================= */
.pc-only {
	display: none !important;
}

.tab-only {
	display: none !important;
}

.sp-only {
	display: block !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.tab-only {
		display: block !important;
	}
}

@media (min-width: 768px) {
	.pc-only {
		display: block !important;
	}

	.sp-only {
		display: none !important;
	}

	br.sp-only {
		display: none !important;
	}
}

/* =========================================
   Layout
   ========================================= */
.l-main {
	font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	color: #3c3c3c;
	line-height: 1.6;
	font-size: 14px;
	width: 100%;
	margin: 95px auto 0;
	background-color: #F4F7F6;
	overflow-x: hidden;
}

@media print, screen and (min-width: 1025px) {
	.l-main {
		margin-top: 160px;
	}
}

.l-content {
	width: 100%;
	padding-inline: 16px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.l-content {
		max-width: 1046px;
		width: calc(100% - 40px);
		padding-inline: 0;
	}
}

/* =========================================
   Components — Buttons
   ========================================= */
.p-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	padding: 14px 20px;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	position: relative;
	width: 100%;
	max-width: 358px;
	margin: 0 auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.p-btn--red {
	background-color: #FF0000;
	color: #fff !important;
}

.p-btn--small-txt {
	font-size: 14px;
	margin-top: 5px;
}

@media (min-width: 768px) {
	.p-btn {
		display: inline-flex;
		padding: 14px 50px;
		width: 335px;
		box-shadow: none;
		font-size: 20px;
		max-width: 490px;
	}

	.p-btn--red {
		position: relative;
		z-index: 1;
		transition: color 0.3s ease-in-out;
		max-width: none;
	}

	.p-btn--red:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: inherit;
		background: linear-gradient(90deg, #fc9d05 0%, orangered 100%);
		z-index: -1;
		opacity: 0;
		transition: opacity 0.5s ease-in-out;
	}

	.p-btn--red:hover {
		opacity: 1;
	}

	.p-btn--red:hover:before {
		opacity: 1;
	}
}

.p-btn-wrap {
	margin: 48px 0;
	text-align: center;
}

@media (min-width: 768px) {
	.p-btn-wrap {
		margin: 40px 0;
	}

	.p-btn-wrap .p-btn--red {
		width: 490px;
	}
}

.p-btn-outline {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #ccc;
	border-radius: 30px;
	padding: 12px 20px;
	background: #fff;
	font-size: 13px;
	color: #3c3c3c;
	width: 100%;
	margin-top: 15px;
}

.p-btn-outline:after {
	content: '';
	position: absolute;
	right: 30px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #006443;
	border-right: 2px solid #006443;
	transform: rotate(45deg);
	margin-left: 16px;
	margin-top: 2px;
}

@media (min-width: 768px) {
	.p-btn-outline {
		padding: 10px 20px;
		font-size: 14px;
	}

	.p-btn-outline:after {
		right: 40px;
		border-top-color: #fff;
		border-right-color: #fff;
		margin-left: 20px;
	}
}

/* =========================================
   Components — Sections heading
   ========================================= */
.p-section__head {
	background-color: #E71C38;
	padding-block: 38px;
	text-align: center;
}

.p-section__head .p-section-ttl {
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.4;
}

.p-station__text {
	font-size: 16px;
	font-weight: bold;
}

@media (min-width: 768px) {
	.p-section__head {
		padding-block: 54px;
	}

	.p-section__head .p-section-ttl {
		font-size: 40px;
	}
}

.p-section-sub-head {
	text-align: center;
	padding-top: 50px;
	margin-bottom: 50px;
}

.p-section-sub-head h3 {
	font-size: 34px;
	margin-bottom: 34px;
	color: #006443;
	position: relative;
	display: block;
}

.p-section-sub-head h3:before {
	right: 100%;
	margin-right: 15px;
}

.p-section-sub-head h3:after {
	left: 100%;
	margin-left: 15px;
}

.p-section-sub-head .p-balloon {
	background: #fff;
	border: 2px solid #f4f4f4;
	filter: drop-shadow(0 4px 8px rgba(194, 232, 209, 0.4));
	padding: 34px 24px;
	border-radius: 100px;
	display: inline-block;
	position: relative;
	font-weight: bold;
	font-size: 18px;
	color: #3c3c3c;
	width: 100%;
	max-width: 360px;
}

.p-section-sub-head .p-balloon:after {
	content: '';
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 50px;
	background: #fff;
	clip-path: polygon(0 0, 50% 0, 50% 100%);
}

@media (min-width: 768px) {
	.p-section-sub-head {
		padding-top: 78px;
		margin-bottom: 0;
	}

	.p-section-sub-head h3 {
		font-size: 24px;
		margin-bottom: 15px;
		color: #666;
		font-weight: normal;
	}

	.p-section-sub-head .p-balloon {
		padding: 30px 40px;
		margin-bottom: 88px;
		border-radius: 50px;
		font-size: 24px;
		max-width: 846px;
		filter: drop-shadow(0 8px 16px rgba(194, 232, 209, 0.6));
		border: none;
	}

	.p-section-sub-head-narrow {
		padding-top: 72px;
	}
}

/* Balloon (heading on dark / colored bg) — common */
.p-balloon {
	background: #f4f4f4;
	display: inline-block;
	position: relative;
	font-weight: bold;
}

/* =========================================
   Components — Notes
   ========================================= */
.c-note-list {
	font-size: 12px;
	color: #3c3c3c;
	line-height: 1.5;
	text-align: left;
	margin-top: 15px;
}

.c-note-list > li {
	position: relative;
	padding-left: 1.5em;
}

.c-note-list > li:before {
	position: absolute;
	left: 0;
	top: 0;
	font-weight: normal;
}

.c-note-list > li.is-disc {
	padding-left: 1em;
}

.c-note-list > li.is-disc:before {
	content: '・';
}

.c-note-list > li.is-square {
	padding-left: 1.5em;
}

.c-note-list > li.is-square:before {
	content: '■';
	font-size: 10px;
	top: 2px;
}

.c-note-list > li.is-asterisk {
	padding-left: 1.2em;
}

.c-note-list > li.is-asterisk:before {
	content: '＊';
}

.c-note-list > li.is-asterisk--num {
	padding-left: 2.5em;
}

.c-note-list > li.is-asterisk--num:before {
	content: '＊' attr(data-num);
}

.c-note-list > li.is-kome:before {
	content: '※';
}

.c-note-list > li.is-kome {
	content: '※';
}

@media (min-width: 768px) {
	.c-note-list {
		font-size: 12px;
		color: #666;
		line-height: 1.6;
	}

	.c-note-list > li.is-square {
		padding-left: 2em;
	}

	.c-note-list > li.is-asterisk {
		padding-left: 2em;
	}

	.c-note-list > li.is-asterisk--num {
		padding-left: 3em;
	}
}

.p-mt-10 {
	margin-top: 10px;
}

.p-mt-20 {
	margin-top: 20px;
}

.p-mt-40 {
	margin-top: 40px;
}

.p-mt-60 {
	margin-top: 60px;
}

/* =========================================
   Sections
   ========================================= */
header {
	background-color: #fff;
}

/* KV */
.p-kv {
	background-color: #f4f7f6;
	width: 100%;
}

.p-kv .p-kv__inner {
	position: relative;
	text-align: center;
}

.p-kv .p-kv__img-wrap {
	width: 100%;
	margin: 0;
	line-height: 0;
}

.p-kv .p-kv__img {
	width: 100%;
	height: auto;
}

.p-kv .p-kv__btn {
	margin-block: 45px 50px;
	position: relative;
	z-index: 10;
}

@media (min-width: 768px) {
	.p-kv .p-kv__btn {
		margin-top: 0;
		padding-inline: 0;
		position: absolute;
		top: 42%;
		left: 50%;
		transform: translateX(-50%);
		z-index: 20;
	}

	.p-kv .p-kv__btn .p-btn {
		width: auto;
		max-width: none;
		white-space: nowrap;
	}

	.p-kv__img {
		width: 60%;
	}
}

/* Lead */
.p-lead {
	margin-top: 50px;
}

/* Intro */
.p-intro {
	padding: 44px 0 26px;
	background-color: #f4f7f6;
}

.p-intro .p-intro__ttl {
	color: #00aa43;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.3;
	margin-block: 42px 15px;
	margin-left: 16px;
}

.p-intro .p-intro__lead {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.8;
	margin-bottom: 30px;
	margin-top: 22px;
	margin-left: 16px;
}

.p-intro .p-intro__imgs {
	width: 100%;
	max-width: 1046px;
	margin-inline: auto;
}

.p-intro .p-intro__imgs > img,
.p-intro .p-intro__imgs picture {
	width: 100%;
	display: block;
}

.p-intro .p-intro__imgs picture img {
	width: 100%;
}

@media (min-width: 768px) {
	.p-intro {
		/* padding-block: 240px 60px; */
	}

	.p-intro .p-intro__ttl {
		font-size: 48px;
		font-weight: bold;
		line-height: 1.25;
		margin: 0;
		text-align-last: left;
	}

	.p-intro .p-intro__lead {
		font-size: 28px;
		margin-top: 22px;
		margin-left: 0;
		margin-bottom: 0;
		line-height: 1.75;
		text-align: left;
	}

	.p-intro .p-intro__imgs {
		margin-top: 34px;
	}

	.p-intro .p-intro__imgs > img,
	.p-intro .p-intro__imgs picture img {
		width: auto;
		max-width: 100%;
	}
}

/* About */
.p-about {
	padding-bottom: 78px;
	background-color: #f4f7f6;
	position: relative;
	overflow: hidden;
}

.p-about .p-about__whats {
	position: absolute;
	left: -10px;
	top: -18px;
}

.p-about .p-about__head-img {
	position: relative;
	z-index: 2;
	width: 402px;
	margin-left: -12px;
	margin-bottom: -57px;
}

.p-about .p-about__bz4x01 {
	position: relative;
	z-index: 1;
	margin-left: -44px;
	width: 402px;
	border-radius: 16px;
}

.p-about .p-about__bz4x01 img {
	border-radius: 16px;
}

.p-about .p-about__bz4x02 {
	margin-top: 16px;
	margin-right: -37px;
	width: 341px;
	border-radius: 16px;
	margin-left: auto;
}

.p-about .p-about__bz4x02 img {
	border-radius: 16px;
}

.p-about .p-about__content {
	padding-block: 30px 0;
	border-radius: 10px;
}

.p-about .p-about__ttl {
	font-size: 32px;
	color: #3c3c3c;
	margin-bottom: 20px;
	font-weight: 500;
}

.p-about .p-about__feature-item {
	margin-bottom: 42px;
}

.p-about .p-about__feature-item:last-child {
	margin-bottom: 0;
}

.p-about .p-about__sub-ttl {
	color: #00aa43;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 12px;
	line-height: 1.4;
}

.p-about .p-about__desc {
	font-size: 14px;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.p-about {
		padding: 214px 0 0;
	}

	.p-about .p-about__whats {
		position: absolute;
		top: 32px;
		left: 35%;
		transform: translateX(calc(-50% + 16px));
		width: 916px;
		max-width: 90%;
		height: auto;
		display: block;
		z-index: 20;
	}

	.p-about .p-about__whats img {
		width: 100%;
		height: auto;
	}

	.p-about .p-about__bz4x01 {
		position: absolute;
		top: 170px;
		left: 50%;
		transform: translateX(calc(-100% - 30px));
		width: 709px;
		height: 400px;
		margin: 0;
		border-radius: 0;
		z-index: 10;
	}

	.p-about .p-about__bz4x01 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 42px;
	}

	.p-about .p-about__bz4x02 {
		position: absolute;
		top: 605px;
		left: 50%;
		transform: translateX(calc(-100% - 30px));
		width: 384px;
		height: 225px;
		margin: 0;
		border-radius: 0;
		z-index: 10;
	}

	.p-about .p-about__bz4x02 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 42px;
	}

	.p-about .p-about__content {
		position: relative;
		z-index: 1;
	}

	.p-about .p-about__grid {
		background-color: #fff;
		width: 63.4vw;
		margin-left: auto;
		padding-left: 15.398vw;
		padding-right: 11.713vw;
		padding-bottom: 204px;
	}

	.p-about .p-about__txt-col {
		padding-top: 18px;
		max-width: 523px;
		position: relative;
	}

	.p-about .p-about__txt-col:after {
		position: absolute;
		top: -516px;
		left: -482px;
		display: block;
		width: 1918px;
		height: 656px;
		margin: auto;
		content: '';
		background: url('./images/bz4x260601/p_about_whats_bg.png') center no-repeat;
		background-size: 100% auto;
		z-index: 5;
		opacity: 0;
		transform: translateY(60px);
		transition: opacity 1.2s, transform 1.2s ease-out;
		pointer-events: none;
	}

	.p-about .p-about__txt-col.is-anim:after {
		opacity: 1;
		transform: translateY(0);
	}

	.p-about .p-about__ttl {
		font-size: 40px;
		margin-bottom: 40px;
	}

	.p-about .p-about__sub-ttl .p-about .p-about__feature-item {
		margin-bottom: 40px;
	}

	.p-about .p-about__sub-ttl {
		font-size: 24px;
		margin-bottom: 16px;
		margin-top: 64px;
	}

	.p-about .p-about__desc {
		font-size: 16px;
		font-weight: 500;
	}
}

/* Model & Price */
.p-model {
	padding-bottom: 50px;
	background-color: #f4f7f6;
}

.p-model .p-model__car-wrap {
	text-align: center;
}

.p-model .p-model__price {
	margin-block: 60px;
	width: 100%;
}

.p-model__price-img {
	text-align: center;
	margin-block: 42px 50px;
}

.p-model .p-model__class-name {
	font-size: 34px;
	color: #006443;
	text-align: center;
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	width: 100%;
}

.p-model .p-model__class-name:after {
	content: '';
	margin-left: 30px;
	flex-grow: 1;
	height: 2px;
	background-color: #a3d6b6;
}

.p-model .p-model__class-name--small {
	font-size: 27px;
}

.p-model .p-model__table-wrap {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 30px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.p-model .p-price-table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.p-model .p-price-table th,
.p-model .p-price-table td {
	padding: 15px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	border-right: 5px solid #f4f7f6;
	border-bottom: 5px solid #f4f7f6;
}

.p-model .p-price-table th:last-child,
.p-model .p-price-table td:last-child {
	border-right: none;
}

.p-model .p-price-table thead th {
	background-color: #00aa43;
	color: #fff;
	font-size: 14px;
	width: 27%;
	border-bottom: none;
}

.p-model .p-price-table thead th.no-bg {
	background-color: transparent;
	width: auto;
	border-top: none;
	border-left: none;
}

.p-model .p-price-table tbody tr:last-child th,
.p-model .p-price-table tbody tr:last-child td {
	border-bottom: none;
}

.p-model .p-price-table tbody th {
	background-color: #eee;
	font-size: 14px;
	width: 19%;
	border-right: none;
}

.p-model .p-price-table tbody td {
	background-color: #fff;
	font-size: 16px;
}

.p-model .p-model__note {
	text-align: right;
	font-size: 12px;
	margin-top: 5px;
}

.p-model .p-btn-wrap {
	margin: 40px 0;
	text-align: center;
	color: #fff;
}

.p-model .c-note-list {
	margin-top: 70px;
}

.p-model-btn {
	border: 1px solid #000;
	color: #000;
	font-weight: normal;
}

.p-model-btn::after {
	position: absolute;
	top: 50%;
	right: 7%;
	transform: translateY(-50%);
	content: "";
	background: url(./images/bz4x260601/p_model_arrow.png)no-repeat center/cover;
	display: block;
	width: 5px;
	height: 10px;
	padding: 7px 4px;
}

/* .p-kv .p-kv__btn::after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	background: url(/src/r-toyotashare/campaign/images/bz4x260601/p_model_arrow.png);
	display: block;
	width: 5px;
	height: 10px;
} */
@media (min-width: 768px) {
	.p-model {
		/* padding-bottom: 0px; */
	}

	.p-model .p-model__car-wrap {
		padding-top: 94px;
	}

	.p-model__car-wrap img {
		width: 80%;
	}

	.p-model .p-model__price {
		max-width: 840px;
		margin-inline: auto;
		margin-top: -24px;
	}

	.p-model .p-price-table th,
	.p-model .p-price-table td {
		font-size: 20px;
	}

	.p-model .p-price-table thead th {
		font-size: 16px;
	}

	.p-model .p-model__class-name {
		margin-bottom: 0px;
	}

	.p-model-btn {
		display: block;
		margin-inline: auto;
		width: 463px;
		font-weight: bold;
	}

	.p-model__price-img {
		margin-block: 54px 85px;
	}

	.p-model__price-img img {
		width: 40%;
	}

	.p-model-btn::after {
		padding: 10px 5px;
	}
}

.p-station {
	background-color: #fff;
}

.p-station__head {
	margin-bottom: 30px;
}

/* Station table */
.p-station__table-wrap {
	margin-top: 24px;
	width: 100%;
}

.p-station__table-wrap > .p-station__table {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
	font-size: 14px;
	border: 1px solid #e0e0e0;
}

.p-station__table thead th {
	background-color: #eaf4ec;
	font-weight: 600;
	text-align: center;
	padding: 14px 16px;
	border: 1px solid #e0e0e0;
	white-space: nowrap;
}

.p-station__th-name,
.p-station__name {
	width: 45%;
}

.p-station__th-addr,
.p-station__addr {
	width: 55%;
}

.p-station__table tbody td {
	padding: 16px;
	border: 1px solid #e0e0e0;
	vertical-align: middle;
	background-color: #fff;
}

.p-station__table tbody td.p-station__name {
	position: relative;
	padding-right: 60px;
}

.p-station__name > span {
	vertical-align: middle;
}

.p-station__map-btn {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.p-station__map-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #28894B;
	color: #fff !important;
	font-weight: 700;
	font-size: 16px;
	padding: 4px 3px 5px 5px;
	border-radius: 4px;
	letter-spacing: 0.05em;
	line-height: 1;
	text-decoration: none;
	flex-shrink: 0;
	transition: opacity 0.2s;
}

.p-station__map-btn:hover {
	opacity: 0.8;
}

/* Collapsed state on SP/PC: hide rows after the 5th by default */
.p-station__table-wrap:not(.is-open) tbody tr:nth-child(n+6) {
	display: none;
}

.p-station__more {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 0;
	padding: 16px 4px;
	margin-top: 4px;
	font-size: 14px;
	color: #3c3c3c;
	cursor: pointer;
	font-family: inherit;
}

.p-station__more-icon {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
	transform-origin: center;
	transform: rotate(45deg);
	transition: transform 0.2s;
}

.p-station__table-wrap.is-open .p-station__more-icon {
	transform: rotate(225deg) translate(-15%, -40%);
}

.p-station__table-wrap.is-open .p-station__more-text {
	font-size: 0;
	line-height: 1;
}

.p-station__table-wrap.is-open .p-station__more-text::before {
	content: '閉じる';
	font-size: 14px;
}

/* SP: horizontal scroll */
@media (max-width: 767px) {
	.p-station__table-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.p-station__table-wrap::-webkit-scrollbar {
		display: none;
	}

	.p-station__table {
		min-width: 640px;
	}

	.p-station__th-name,
	.p-station__name {
		min-width: 280px;
	}

	.p-station__th-addr,
	.p-station__addr {
		min-width: 320px;
	}

	.p-station__more {
		position: sticky;
		left: 0;
	}
}

/* PC: fit within content width */
@media (min-width: 768px) {
	.p-station {
		margin-top: 100px;
	}

	.p-station .l-content {
		max-width: 845px;
	}

	.p-station__head {
		margin-bottom: 53px;
	}

	.p-station__table-wrap {
		margin-top: 34px;
		max-width: 980px;
		margin-inline: auto;
	}

	.p-station__table thead th {
		padding: 16px 20px;
	}

	.p-station__table tbody td {
		padding: 18px 20px;
	}

	.p-station__more {
		margin-top: 20px;
	}

	.p-station picture {
		margin-top: 34px;
		display: block;
		width: 952px;
	}
}

/* Payment */
.p-payment {
	padding: 50px 0 0;
}

.p-payment .p-payment__ttl {
	font-size: 34px;
	font-weight: 500;
	color: #006443;
	text-align: center;
	margin-bottom: 32px;
	padding-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	width: 100%;
}

.p-payment .p-payment__flow {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.p-payment .p-payment__step {
	width: 100%;
	max-width: 176px;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 8px;
	border-radius: 10px;
	position: relative;
	text-align: center;
}

.p-payment .p-payment__circle {
	aspect-ratio: 1/1;
	width: 100%;
	background-color: #00aa43;
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding-bottom: 24px;
	font-weight: bold;
}

.p-payment .p-payment__circle span {
	font-size: 24px;
	font-weight: 600;
}

.p-payment .p-payment__circle small {
	font-size: 16px;
	font-weight: 600;
}

.p-payment .p-payment__desc {
	font-size: 16px;
	text-align: left;
	width: 100%;
	color: #006443;
	font-weight: bold;
	margin-top: 12px;
	line-height: 1.5;
}

.p-payment .p-payment__arrow {
	color: #9eb7bc;
	font-size: 48px;
}

.p-payment .p-payment__img {
	margin-top: 36px;
	text-align: center;
	margin-left: -16px;
	margin-right: -16px;
	width: calc(100% + 32px);
	position: relative;
}

@media (min-width: 768px) {
	.p-payment {
		padding: 60px 0 0;
		margin-inline: auto;
		max-width: 886px;
	}

	.p-payment .p-payment__ttl {
		font-weight: bold;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.p-payment .p-payment__ttl:after {
		content: '';
		flex-grow: 1;
		height: 2px;
		background-color: #a3d6b6;
	}

	.p-payment .p-payment__flow {
		flex-direction: row;
		justify-content: space-between;
		margin-inline: auto;
		max-width: 756px;
		margin-top: 66px;
		gap: 0;
	}

	.p-payment .p-payment__step {
		max-width: 176px;
	}

	.p-payment .p-payment__step:not(:last-child):after {
		content: '';
		position: absolute;
		right: -45%;
		top: 25%;
		border-top: 23px solid transparent;
		border-bottom: 23px solid transparent;
		border-left: 40px solid #ccc;
	}

	.p-payment .p-payment__circle {
		width: 176px;
		height: 176px;
		aspect-ratio: auto;
		padding-bottom: 0;
		margin: 0 auto 15px;
	}

	.p-payment .p-payment__circle span {
		margin-top: 47px;
	}

	.p-payment .p-payment__desc {
		color: #3c3c3c;
		font-weight: normal;
		margin-top: 0;
	}

	.p-payment .p-payment__arrow {
		display: none;
	}

	.p-payment__img {
		/* background: linear-gradient(to top, #F4F7F6 69px, transparent 50px); */
		background: linear-gradient(to top, #F4F7F6 122px, transparent 50px);
	}

	.p-payment .p-payment__img {
		margin: 0;
		width: 100%;
	}

	.p-payment .p-payment__img img {
		position: relative;
		z-index: 2;
	}

	.p-payment .p-payment__img:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		height: 58.57%;
		background: #f4f7f6;
		z-index: 1;
	}

	.p-station .p-payment__img picture {
		margin-inline: auto;
		margin-top: 100px;
	}
}

/* Range */
.p-range {
	background-color: #f6f8f6;
}

.p-range .p-range__box,
.p-range .p-range__features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.p-range .p-range__img-col {
	margin-top: 20px;
	width: 100%;
	margin-left: -16px;
	margin-right: -16px;
	width: calc(100% + 32px);
}

.p-range .p-range__img-col img {
	width: 100%;
	height: auto;
	display: block;
}

.p-range .p-range__img-col .p-range__notes {
	margin-inline: 12px;
}

.p-range .p-range__ttl,
.p-range .p-range__ttl--green {
	font-size: 24px;
	font-weight: bold;
	color: #00aa43;
	margin-bottom: 15px;
	line-height: 1.25;
}

.p-range .c-green {
	color: #00aa43;
}

.p-range .p-range__lead {
	font-size: 16px;
	color: #666;
	margin-top: 16px;
}

.p-range .p-range__desc {
	margin-top: 30px;
	font-size: 16px;
	line-height: 1.5;
	color: #3c3c3c;
}

.p-range .p-range__spec {
	margin-top: 17px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-range .p-range__grade-row {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 18px;
}

.p-range .p-range__grade-name {
	font-size: 24px;
	font-weight: bold;
	width: 40px;
	padding-top: 5px;
	line-height: 1;
}

.p-range .p-range__grade-data {
	flex: 1;
}

.p-range .p-range__wltc {
	font-size: 11px;
	color: #3c3c3c;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.p-range .p-range__wltc img {
	width: 68px;
	height: 18px;
	object-fit: contain;
	vertical-align: middle;
}

.p-range .p-range__spec-list {
	display: flex;
	flex-direction: column;
	row-gap: 11px;
}

.p-range .p-range__spec-list .spec-item {
	display: flex;
	align-items: baseline;
}

.p-range .p-range__spec-list .spec-item dt {
	width: 36px;
	font-size: 14px;
	color: #3c3c3c;
	font-weight: 500;
}

.p-range .p-range__spec-list .spec-item dd {
	font-size: 14px;
}

.p-range .p-range__spec-list .spec-item dd .num {
	font-size: 40px;
	font-weight: 500;
	line-height: 1;
	margin-right: 4px;
	letter-spacing: -0.02em;
}

.p-range .p-range__spec-list .spec-item dd .sub {
	font-size: 12px;
	margin-left: 5px;
}

.p-range .p-range__notes {
	margin-top: 30px;
	letter-spacing: -25;
}

@media (min-width: 768px) {
	.p-range .p-section-sub-head h3 {
		font-size: 34px;
		font-weight: bold;
		color: #006443;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
		margin-bottom: 67px;
		width: 100%;
	}

	.p-range .p-section-sub-head h3:before,
	.p-range .p-section-sub-head h3:after {
		content: '';
		flex-grow: 1;
		height: 2px;
		background-color: #00aa43;
		margin: 0;
	}

	.p-range .p-range__box,
	.p-range .p-range__features {
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 50px;
	}

	.p-range .p-range__img-col {
		width: 50%;
		flex-shrink: 0;
		margin: 0;
	}

	.p-range .p-range__img-col .p-range__notes {
		margin-inline: 0;
	}

	.p-range .p-range__info-col {
		width: calc(50% - 50px);
	}

	.p-range .p-range__ttl,
	.p-range .p-range__ttl--green {
		font-size: 24px;
		margin-bottom: 20px;
		line-height: 1.4;
	}

	.p-range .p-range__desc {
		font-size: 16px;
		line-height: 1.8;
		margin-top: 0;
	}

	.p-range .p-range__spec {
		margin-left: 10px;
	}

	.p-range .p-range__grade-name {
		font-size: 22px;
	}

	.p-range .p-range__notes {
		margin-left: 10px;
	}
}

/* Charge */
.p-charge {
	padding-bottom: 60px;
	background: #f6f8f6;
}

.p-charge .p-charge__box {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}

.p-charge .p-charge__img-col {
	margin-top: 20px;
	flex-shrink: 0;
	margin-left: -16px;
	margin-right: -16px;
	width: calc(100% + 32px);
}

.p-charge .p-charge__img-col img {
	width: 100%;
	height: auto;
	display: block;
}

.p-charge .p-charge__info-col {
	padding-top: 0;
}

.p-charge .p-charge__ttl--green {
	color: #00aa43;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.4;
}

.p-charge .p-charge__desc {
	font-size: 16px;
	line-height: 1.8;
}

.p-charge .p-charge__diff-area {
	max-width: 658px;
	margin-inline: auto;
}

.p-charge .p-charge__diff-main {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	color: #00aa43;
	margin-bottom: 25px;
}

.p-charge .p-charge__diff-main .text-green {
	color: #00aa43;
}

.p-charge .p-charge__diff-main .text-sub {
	font-size: 15px;
	color: #666;
	font-weight: 500;
	margin-left: 5px;
	margin-right: 5px;
}

.p-charge .p-charge__diff-note {
	font-size: 16px;
	color: #3c3c3c;
}

.p-charge .p-charge__spots {
	margin-top: 40px;
}

.p-charge .p-charge__spots-label {
	font-size: 20px;
	font-weight: 600;
}

.p-charge .p-charge__spots-list {
	margin-top: 16px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.p-charge .p-charge__spots-head {
	background-color: #3E3E3E;
	color: #fff;
	padding: 10px 18px;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
}

.p-charge .p-charge__spots-body {
	background-color: #ebefef;
	padding: 20px;
}

.p-charge .p-charge__spots-body ul {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1.5rem;
}

.p-charge .p-charge__spots-body ul li {
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 500;
	color: #555;
	line-height: 1.5;
}

.p-charge .p-charge__simple-table-wrap {
	width: 100%;
	margin-top: 16px;
}

.p-charge .p-charge__simple-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 2px 0;
	margin-left: -1px;
}

.p-charge .p-charge__simple-table th,
.p-charge .p-charge__simple-table td {
	width: 50%;
	vertical-align: top;
}

.p-charge .p-charge__simple-table th {
	background-color: #3E3E3E;
	color: #fff;
	padding: 18px;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
}

.p-charge .p-charge__simple-table td {
	background-color: #ebefef;
	padding: 30px;
	text-overflow: clip;
}

.p-charge .p-charge__simple-table td ul {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1rem;
}

.p-charge .p-charge__simple-table td ul li {
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 500;
	color: #555;
}

.p-charge .p-charge__time-section {
	margin-top: 55px;
}

.p-charge .p-charge__table-cap {
	font-size: 16px;
	font-weight: 600;
	margin-top: 20px;
}

.p-charge .p-charge__time-section .p-charge__complex-table-wrap {
	width: 100%;
	margin-top: 10px;
	overflow-x: auto;
}

.p-charge .p-charge__time-section .p-charge__complex-table {
	width: 100%;
	min-width: 650px;
	border-collapse: collapse;
	font-size: 14px;
}

.p-charge .p-charge__time-section .p-charge__complex-table tbody th,
.p-charge .p-charge__time-section .p-charge__complex-table tbody td {
	white-space: nowrap;
	min-width: 150px;
}

.p-charge .p-charge__time-section .p-charge__complex-table th,
.p-charge .p-charge__time-section .p-charge__complex-table td {
	border: 1px solid #fff;
	padding: 20px 10px;
	text-align: center;
	vertical-align: middle;
}

.p-charge .p-charge__time-section .p-charge__complex-table thead th {
	background-color: #3E3E3E;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.25;
	padding: 8px 10px;
}

.p-charge .p-charge__time-section .p-charge__complex-table thead th.no-bg {
	background-color: transparent;
	border: none;
}

.p-charge .p-charge__time-section .p-charge__complex-table thead th .th-sub-row {
	position: relative;
	display: flex;
	justify-content: space-around;
	margin-top: 5px;
	padding-top: 5px;
	font-size: 14px;
}

.p-charge .p-charge__time-section .p-charge__complex-table thead th .th-sub-row:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 25px;
	background: #fff;
}

.p-charge .p-charge__time-section .p-charge__complex-table thead th .th-sub-row span {
	flex: 1;
}

.p-charge .p-charge__time-section .p-charge__complex-table tbody .bg-dark-green {
	background-color: #000;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	width: 16%;
	min-width: 90px;
}

.p-charge .p-charge__time-section .p-charge__complex-table tbody .bg-gray-blue {
	background-color: #98a6a8;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	width: 21%;
}

.p-charge .p-charge__time-section .p-charge__complex-table tbody .bg-gray-blue .small {
	font-size: 16px;
	font-weight: 500;
}

.p-charge .p-charge__time-section .p-charge__complex-table tbody .bg-gray-blue strong {
	margin: 0 2px;
	vertical-align: -2px;
	font-weight: 500;
}

.p-charge .p-charge__time-section .p-charge__complex-table tbody td {
	background-color: #ebefef;
	color: #3c3c3c;
	font-size: 16px;
	width: 21%;
}

.p-charge .p-charge__time-section .p-charge__complex-table tbody td strong {
	font-size: 24px;
	margin: 0 2px;
	vertical-align: -2px;
	font-weight: 500;
}

.p-charge .p-charge__time-section .p-charge__complex-table .sup-white {
	color: #fff;
	font-size: 10px;
	vertical-align: super;
}

.p-charge .p-charge__time-section .p-charge__complex-table .sup-gray {
	color: #666;
	font-size: 10px;
	vertical-align: super;
	font-weight: 500;
}

.p-charge .p-charge__time-section .p-charge__note-txt {
	font-size: 16px;
	line-height: 1.5;
	margin-block: 25px 50px;
}

.p-charge .p-charge__time-section .p-charge__notes-list {
	color: #3c3c3c;
	line-height: 1.6;
	margin-top: 20px;
}

.p-charge .p-charge__howto {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.p-charge .p-charge__step {
	position: relative;
}

.p-charge .p-charge__step--arrow:before {
	content: '';
	position: absolute;
	left: 50%;
	top: -10%;
	border-left: 23px solid transparent;
	border-right: 23px solid transparent;
	border-top: 40px solid #ccc;
	transform: translateX(-50%);
}

.p-charge .p-charge__step-ttl {
	color: #006443;
	font-size: 24px;
	margin-block: 20px 10px;
	font-weight: bold;
	text-align: center;
}

.p-charge .p-charge__step-icon {
	margin-bottom: 20px;
}

.p-charge .p-charge__step-desc {
	color: #00aa43;
	font-size: 24px;
}

.p-charge .p-charge__step-txt {
	text-align: left;
	line-height: 1.5;
	font-size: 16px;
	margin-top: 14px;
}

@media (min-width: 768px) {
	.p-charge .p-section-sub-head h3 {
		font-size: 34px;
		font-weight: bold;
		color: #006443;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 30px;
		margin-bottom: 67px;
		width: 100%;
	}

	.p-charge .p-section-sub-head {
		padding-top: 96px;
	}

	.p-charge .p-section-sub-head h3:before,
	.p-charge .p-section-sub-head h3:after {
		content: '';
		flex-grow: 1;
		height: 2px;
		background-color: #00aa43;
		margin: 0;
	}

	.p-charge .p-charge__box {
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 50px;
		margin-bottom: 0;
	}

	.p-charge .p-charge__img-col {
		width: 50%;
		flex-shrink: 0;
		margin: 0;
	}

	.p-charge .p-charge__info-col {
		width: calc(50% - 50px);
		padding-top: 10px;
	}

	.p-charge .p-charge__desc {
		font-size: 14px;
	}

	.p-charge .p-charge__spots {
		margin-top: 70px;
	}

	.p-charge .p-charge__spots-label {
		font-size: 18px;
	}

	.p-charge .p-charge__time-section .p-charge__complex-table {
		font-size: 16px;
	}

	.p-charge .p-charge__time-section .p-charge__complex-table th,
	.p-charge .p-charge__time-section .p-charge__complex-table td {
		padding: 15px 10px;
	}

	.p-charge .p-charge__time-section .p-charge__complex-table thead th {
		padding: 10px;
	}

	.p-charge .p-charge__howto {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 100px;
	}

	.p-charge .p-charge__step--arrow:before {
		left: -65px;
		top: 36%;
		border-top: 23px solid transparent;
		border-bottom: 23px solid transparent;
		border-left: 40px solid #ccc;
		border-right: none;
		transform: none;
	}

	.p-charge .p-charge__step-ttl {
		margin-bottom: 17px;
		text-align: left;
	}

	.p-charge .p-charge__step-txt {
		margin-top: 28px;
	}

	.p-charge__simple-table-wrap .c-note-list {
		margin-top: 0;
	}

	.p-charge .p-charge__simple-table td {
		padding-bottom: 50px;
	}
}

/* Ports */
.p-ports {
	padding-block: 50px;
	background-color: #f4f7f6;
}

.p-ports .p-ports__ttl {
	text-align: center;
	font-size: 22px;
	color: #006443;
	margin-bottom: 20px;
	font-weight: bold;
}

.p-ports .p-ports__hero {
	text-align: center;
	background: #fff;
	margin-bottom: 30px;
}

.p-ports .p-ports__hero img {
	width: 100%;
	max-width: 846px;
}

.p-ports .p-ports__grid {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.p-ports .p-ports__item {
	display: flex;
	flex-direction: column;
}

.p-ports .p-ports__item-head {
	background: #9F9F9F;
	color: #fff;
	display: flex;
	font-weight: bold;
	align-items: stretch;
	line-height: 1.4;
}

.p-ports .p-ports__item-head .p-num {
	background: #3E3E3E;
	width: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	flex-shrink: 0;
}

.p-ports .p-ports__item-head .p-text {
	padding: 4px 16px;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.p-ports .p-ports__item-img {
	width: 100%;
}

.p-ports .p-ports__item-img img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.p-ports .p-ports__item-txt {
	font-size: 16px;
	margin-top: 20px;
	flex-grow: 1;
}

.p-ports .p-btn-outline {
	margin-top: 30px;
	margin-inline: auto;
	width: calc(100% - 20px);
	padding: 15px;
	background: #f4f9f6;
	border: 1px solid #006443;
	font-size: 16px;
	color: #006443;
	font-weight: bold;
	border-radius: 50px;
}

.p-ports .p-btn-outline:after {
	border-color: #006443;
}

@media (min-width: 768px) {
	.p-ports {
		padding-top: 110px;
		padding-bottom: 50px;
	}

	.p-ports .p-ports__ttl {
		font-size: 24px;
	}

	.p-ports .p-ports__hero {
		margin-top: 34px;
		margin-bottom: 0;
	}

	.p-ports .p-ports__grid {
		flex-direction: row;
		gap: 60px;
		max-width: 846px;
		margin-inline: auto;
		margin-top: 44px;
	}

	.p-ports .p-ports__item {
		flex: 1;
	}

	.p-ports .p-ports__item-head .p-num {
		width: 33px;
		font-size: 20px;
	}

	.p-ports .p-ports__item-head .p-text {
		padding: 5px 15px;
	}

	.p-ports .p-btn-outline {
		margin-top: 40px;
		width: 100%;
		transition: all 0.3s;
		max-width: 335px;
		margin-inline: 0;
	}

	.p-ports .p-btn-outline:hover {
		background-color: #cfe8e0;
		opacity: 1;
	}

	.p-ports .p-ports__hero img {
		max-width: 1366px;
	}
}

/* FAQ */
.p-faq {
	padding-bottom: 80px;
	background: #f9f9f9;
}

.p-faq .p-faq__box {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-faq .p-faq__img-col {
	margin-top: 20px;
	flex-shrink: 0;
	margin-left: -16px;
	margin-right: -16px;
	width: calc(100% + 32px);
}

.p-faq .p-faq__img-col img {
	width: 100%;
	height: auto;
	display: block;
}

.p-faq .p-faq__ttl--green {
	color: #00aa43;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.4;
}

.p-faq .p-faq__text {
	margin-top: 20px;
	font-size: 20px;
	font-weight: bold;
	color: #3c3c3c;
}

.p-faq .p-faq__desc {
	margin-top: 20px;
	font-size: 16px;
	color: #3c3c3c;
}

.p-faq .p-faq__notes-list {
	margin-top: 40px;
}

@media (min-width: 768px) {
	.p-faq {
		padding-bottom: 120px;
	}

	.p-faq .p-faq__box {
		flex-direction: row;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 50px;
	}

	.p-faq .p-faq__img-col {
		width: 50%;
		margin: 0;
	}

	.p-faq .p-faq__info-col {
		width: calc(50% - 50px);
	}
}

/* CTA */
.p-cta {
	background: linear-gradient(to top, #f4f7f6 20px, transparent 20px);
	padding-bottom: 40px;
	text-align: center;
	color: #fff;
	overflow: hidden;
}

.p-cta .p-cta__img-wrap {
	margin-top: 38px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.p-cta .p-btn-wrap {
	margin-top: 22px;
}

@media (min-width: 768px) {
	.p-cta {
		background: #FFF;
		padding-bottom: 30px;
	}

	.p-cta .p-cta__img-wrap {
		margin-top: 62px;
	}

	.p-cta__img-wrap img {
		width: 80%;
	}

	.p-cta .p-btn-wrap {
		margin-top: -27px;
	}
}

/* Banner */
.p-banner {
	text-align: center;
	padding-block: 60px 30px;
	background-color: #f4f7f6;
}

.p-banner .p-banner__ttl {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
}

.p-banner .p-banner__img {
	max-width: 1046px;
	margin-inline: auto;
}

@media (min-width: 768px) {
	.p-banner {
		padding-block: 38.2px 76px;
	}

	.p-banner .p-banner__ttl {
		font-size: 24px;
	}

	.p-banner .p-banner__img:hover {
		opacity: 0.7;
		transition: opacity 0.3s;
	}
}
