@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
	box-sizing: border-box; /* 1 */
	background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
	text-decoration: inherit; /* 1 */
	vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
	cursor: default; /* 1 */
	line-height: 1.5; /* 2 */
	overflow-wrap: break-word; /* 3 */
	-moz-tab-size: 4; /* 4 */
	-o-tab-size: 4;
	tab-size: 4; /* 4 */
	-webkit-tap-highlight-color: transparent; /* 5 */
	-webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
	margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
	color: inherit; /* 1 */
	height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
	list-style-type: none;
	padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
	content: '​';
	float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
	overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
	font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
	vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
	border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
	fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
	border-collapse: collapse; /* 1 */
	border-color: inherit; /* 2 */
	text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
	margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type='button' i], [type='reset' i], [type='submit' i]) {
	-webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
	border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
	vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
	margin: 0; /* 1 */
	resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type='search' i]) {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
	background-color: white;
	border: solid;
	color: black;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	margin: auto;
	padding: 1em;
	position: absolute;
	right: 0;
	width: -moz-fit-content;
	width: fit-content;
}

:where(dialog:not([open])) {
	display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
	display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy='true' i]) {
	cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
	cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled='true' i], [disabled]) {
	cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden='false' i][hidden]) {
	display: initial;
}

:where([aria-hidden='false' i][hidden]:not(:focus)) {
	clip: rect(0, 0, 0, 0);
	position: absolute;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
	height: auto;
	max-width: 100%;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
	background-color: transparent; /* 1 */
	border: 1px solid WindowFrame; /* 1 */
	color: inherit; /* 1 */
	font: inherit; /* 2 */
	letter-spacing: inherit; /* 2 */
	padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
	border-radius: 0;
	padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
	background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type='color' i], [type='range' i]) {
	border-width: 0;
	padding: 0;
}

@keyframes visionScroll {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-100%, 0, 0);
	}
}
* {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

th {
	font-weight: inherit;
}

address {
	font-style: inherit;
}

fieldset {
	border: 0;
	min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

h1 {
	margin: 0;
}

cite,
dfn,
em,
i,
var {
	font-style: inherit;
}

small {
	font-size: inherit;
}

a {
	color: currentColor;
	text-decoration: none;
}

button,
input,
select,
textarea {
	border: 0;
	padding: 0;
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed;
}

button {
	touch-action: manipulation;
}
button:not(:disabled, [aria-disabled='true']) {
	cursor: pointer;
}

[hidden][hidden] {
	display: none !important;
}

.u-d-none {
	display: none !important;
}

.u-d-inline {
	display: inline !important;
}

.u-d-inline-block {
	display: inline-block !important;
}

.u-d-block {
	display: block !important;
}

.u-d-grid {
	display: grid !important;
}

.u-d-table {
	display: table !important;
}

.u-d-table-row {
	display: table-row !important;
}

.u-d-table-cell {
	display: table-cell !important;
}

.u-d-flex {
	display: flex !important;
}

.u-d-inline-flex {
	display: inline-flex !important;
}

@media (min-width: 48em) {
	.u-d-md-none {
		display: none !important;
	}
	.u-d-md-inline {
		display: inline !important;
	}
	.u-d-md-inline-block {
		display: inline-block !important;
	}
	.u-d-md-block {
		display: block !important;
	}
	.u-d-md-grid {
		display: grid !important;
	}
	.u-d-md-table {
		display: table !important;
	}
	.u-d-md-table-row {
		display: table-row !important;
	}
	.u-d-md-table-cell {
		display: table-cell !important;
	}
	.u-d-md-flex {
		display: flex !important;
	}
	.u-d-md-inline-flex {
		display: inline-flex !important;
	}
}
.u-visually-hidden-focusable:not(:focus, :focus-within) {
	display: block !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	visibility: visible !important;
	opacity: 0% !important;
	margin: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	width: 4px !important;
	height: 4px !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

.u-visually-hidden {
	display: block !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	visibility: visible !important;
	opacity: 0% !important;
	margin: 0 !important;
	border: 0 !important;
	padding: 0 !important;
	width: 4px !important;
	height: 4px !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

.c-bottom {
	position: relative;
	padding-top: 21.3333333333%;
	padding-bottom: calc(40px + 26.6666666667%);
	margin-bottom: -26.6666666667%;
}
@media (min-width: 48em) {
	.c-bottom {
		padding-top: 11.2433862434%;
		padding-bottom: calc(60px + 19.8412698413%);
		margin-bottom: -19.8412698413%;
	}
}
.c-bottom::before {
	position: absolute;
	inset: 0;
	content: '';
	background-color: #000;
	z-index: -1;
	transform: skewY(-8deg);
}

.c-bottom__logo-wrapper {
	width: calc(100% - 30px);
	margin-inline: auto;
}
@media (min-width: 48em) {
	.c-bottom__logo-wrapper {
		width: calc(100% - 60px);
		max-width: 1080px;
	}
}
* + .c-bottom__logo-wrapper {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #4d4d4d;
}
@media (min-width: 48em) {
	* + .c-bottom__logo-wrapper {
		padding-top: 90px;
		margin-top: 40px;
	}
}

.c-bottom__logo {
	width: 224px;
	margin-inline: auto;
}
@media (min-width: 48em) {
	.c-bottom__logo {
		width: 750px;
		max-width: 100%;
	}
}

.c-content {
	--honda-red: #cc0000;
	--text-base: #35363b;
	font-family: 'HondaGlobalFontJP-Regular', sans-serif;
	font-weight: normal;
	position: relative;
	line-break: strict;
}
.c-content img,
.c-content svg {
	display: block;
	width: 100%;
	height: auto;
}

.c-dialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9000;
	display: flex;
	flex-direction: column;
	padding: 60px 0;
	overflow: auto;
	transition: opacity 0.4s;
}
@media (min-width: 48em) {
	.c-dialog {
		padding: 80px 0;
	}
}

.c-dialog[aria-hidden='true'] {
	display: flex;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition:
		visibility 0s 0.4s,
		opacity 0.4s;
}

.c-dialog__backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.9);
}

.c-dialog__document {
	position: relative;
	flex-shrink: 0;
	margin: auto;
}

.c-dialog__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 45px;
	color: #fff;
	aspect-ratio: 1;
	transform: rotate(45deg);
}
@media (min-width: 48em) {
	.c-dialog__close {
		top: 20px;
		right: 20px;
		width: 60px;
		transition: color 0.3s ease;
	}
	.c-dialog__close:hover {
		color: var(--honda-red);
	}
}
.c-dialog__close::before,
.c-dialog__close::after {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 2px;
	margin: auto;
	content: '';
	background-color: currentColor;
}
.c-dialog__close::after {
	transform: rotate(-90deg);
}

.c-disclosure-details {
	overflow: hidden;
}

.c-disclosure-details[aria-hidden='true'] {
	visibility: hidden;
	height: 0;
	transition: visibility 0.3s;
}

.c-heritage-header {
	position: sticky;
	top: 0;
	display: flex;
	height: 58px;
	margin-bottom: -58px;
	z-index: 8888;
	transition: background-color 0.3s ease;
}
@media (min-width: 48em) {
	.c-heritage-header {
		height: 62px;
		padding-inline: 40px;
		margin-bottom: -80px;
	}
}
.c-heritage-header.is-sticky {
	background-color: #000;
}
.c-heritage-header.is-sticky .c-heritage-header__inner {
	border-bottom: 0;
}
.c-heritage-header.is-fill {
	background-color: #000;
}
.c-heritage-header.is-fill .c-heritage-header__inner {
	border-bottom: 0;
}
.c-heritage-header:has(.c-heritage-header__menu-btn[aria-expanded='true']) {
	background-color: #000;
}

.c-heritage-header__inner {
	display: flex;
	align-items: center;
	width: 100%;
	padding-inline: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 48em) {
	.c-heritage-header__inner {
		padding-inline: 0;
	}
}

.c-heritage-header__logo {
	flex-shrink: 0;
	width: clamp(160px, 78.2608695652%, 270px);
}
@media (min-width: 48em) {
	.c-heritage-header__logo {
		width: clamp(360px, 29.0502793296%, 416px);
		transition: opacity 0.3s ease;
	}
	.c-heritage-header__logo:hover {
		opacity: 0.7;
	}
}

.c-heritage-header__menu-btn {
	position: relative;
	width: 17px;
	aspect-ratio: 1;
	margin-right: 0;
	margin-left: auto;
}
@media (min-width: 48em) {
	.c-heritage-header__menu-btn {
		display: none;
	}
}
.c-heritage-header__menu-btn::before,
.c-heritage-header__menu-btn::after {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 1px;
	margin: auto;
	content: '';
	background-color: #fff;
}
.c-heritage-header__menu-btn::after {
	transform: rotate(-90deg);
	transition: transform 0.4s ease;
}
.c-heritage-header__menu-btn[aria-expanded='true']::after {
	transform: rotate(0);
}

.c-heritage-header__menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
}
@media (min-width: 48em) {
	.c-heritage-header__menu {
		display: none;
	}
}

.c-heritage-header__menu-inner {
	width: 100%;
	height: calc(100svh - 58px);
	padding: 7px 20px 20px;
	background-color: #fff;
	overflow: auto;
}

@media (min-width: 48em) {
	.c-heritage-header__list {
		display: flex;
		flex-wrap: wrap;
		gap: 14px 60px;
	}
}

.c-heritage-header__item {
	font-size: 14px;
	line-height: 1.5;
	border-bottom: 1px solid #c8c9cc;
}
.c-heritage-header__item:first-child {
	font-size: 16px;
}
.c-heritage-header__item:first-child .c-heritage-header__link {
	font-family: 'HondaGlobalFontJP-Regular', sans-serif;
	font-weight: normal;
	padding-left: 0;
}

.c-heritage-header__link {
	font-family: 'HondaGlobalFontJP-Light', sans-serif;
	font-weight: normal;
	display: grid;
	grid-template-columns: 1fr 7px;
	align-items: center;
	gap: 8px;
	min-height: 60px;
	padding-block: 7px;
	padding-left: 10px;
}

.c-heritage-header__menu-close {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 52px;
	margin-top: 42px;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	border: 1px solid #000;
}

.c-heritage-header__menu-close-icon {
	position: relative;
	width: 15px;
	aspect-ratio: 1;
	transform: rotate(45deg);
}
.c-heritage-header__menu-close-icon::before,
.c-heritage-header__menu-close-icon::after {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 1px;
	margin: auto;
	content: '';
	background-color: #000;
}
.c-heritage-header__menu-close-icon::after {
	transform: rotate(-90deg);
}

.c-heritage-header__list-md {
	display: none;
}
@media (min-width: 48em) {
	.c-heritage-header__list-md {
		display: flex;
		gap: min(36px, 2.380952381vw);
		height: 100%;
		margin-right: 0;
		margin-left: auto;
		color: #fff;
	}
}

@media (min-width: 48em) {
	.c-heritage-header__item-md {
		position: relative;
		display: grid;
		place-items: center;
	}
	.c-heritage-header__item-md::after {
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
		height: 3px;
		margin-inline: auto;
		opacity: 0;
		content: '';
		background-color: var(--honda-red);
		transition: opacity 0.3s ease;
	}
	.c-heritage-header__item-md:has(:hover, .is-current)::after {
		opacity: 1;
	}
}

@media (min-width: 48em) {
	.c-heritage-header__link-md {
		display: block;
		font-size: 16px;
		line-height: 1.5;
		padding: 7px;
		transition: opacity 0.3s ease;
	}
	.c-heritage-header__link-md:hover {
		opacity: 0.7;
	}
}

.c-heritage-footer {
	position: relative;
	padding-bottom: 25px;
}
@media (min-width: 48em) {
	.c-heritage-footer {
		padding-bottom: 40px;
	}
}

.c-heritage-footer__bg {
	position: absolute;
	top: 12vw;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: -1;
	overflow: hidden;
	clip-path: polygon(0% 14.1333333333vw, 100% 0%, 100% 100%, 0% 100%);
}
@media (min-width: 48em) {
	.c-heritage-footer__bg {
		top: -1.9841269841vw;
		left: 50%;
		transform: translateX(-50%);
		clip-path: polygon(0% 14.0211640212vw, 100% 0%, 100% 100%, 0% 100%);
	}
	.c-heritage-footer__bg img {
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
}

.c-heritage-footer__bg-gradation {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 97.6vw);
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 48px);
}
@media (min-width: 48em) {
	.c-heritage-footer__bg-gradation {
		height: 268px;
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 142px);
	}
}

.c-heritage-footer__message {
	position: relative;
	overflow: hidden;
}

.c-heritage-footer__message-line-01 {
	width: 34.9333333333%;
}
@media (min-width: 48em) {
	.c-heritage-footer__message-line-01 {
		width: 23.0158730159%;
	}
}

.c-heritage-footer__message-line-02 {
	width: 86.4vw;
	margin-top: -21.8666666667vw;
}
@media (min-width: 48em) {
	.c-heritage-footer__message-line-02 {
		width: 43.7830687831%;
		margin-top: -8.9947089947%;
	}
}

.c-heritage-footer__panel {
	position: relative;
	width: calc(100% - 30px);
	padding: 7px 15px 0;
	margin-inline: auto;
	margin-top: 74.6666666667vw;
	background-color: #fff;
}
@media (min-width: 48em) {
	.c-heritage-footer__panel {
		width: calc(100% - 60px);
		max-width: 1432px;
		padding: 18px 40px;
		margin-top: 47.2883597884vw;
	}
}

@media (min-width: 48em) {
	.c-heritage-footer__list {
		display: flex;
		flex-wrap: wrap;
		gap: 12px 60px;
	}
}

.c-heritage-footer__item {
	font-size: 14px;
	line-height: 1.5;
}
@media (min-width: 48em) {
	.c-heritage-footer__item {
		display: flex;
		font-size: 16px;
	}
}
.c-heritage-footer__item:first-child {
	font-size: 16px;
}
@media (min-width: 48em) {
	.c-heritage-footer__item:first-child {
		width: 100%;
		padding-bottom: 10px;
		font-size: 18px;
		border-bottom: 1px solid #c8c9cc;
	}
}
.c-heritage-footer__item:first-child .c-heritage-footer__link {
	font-family: 'HondaGlobalFontJP-Regular', sans-serif;
	font-weight: normal;
	padding-left: 0;
}
.c-heritage-footer__item + .c-heritage-footer__item {
	border-top: 1px solid #c8c9cc;
}
@media (min-width: 48em) {
	.c-heritage-footer__item + .c-heritage-footer__item {
		border-top: 0;
	}
}

.c-heritage-footer__link {
	font-family: 'HondaGlobalFontJP-Light', sans-serif;
	font-weight: normal;
	display: grid;
	grid-template-columns: 1fr 7px;
	align-items: center;
	gap: 8px;
	min-height: 60px;
	padding-block: 7px;
	padding-left: 10px;
}
@media (min-width: 48em) {
	.c-heritage-footer__link {
		min-height: auto;
		padding: 0;
		transition: opacity 0.3s ease;
	}
	.c-heritage-footer__link:hover {
		opacity: 0.7;
	}
}

.c-my-honda__inner {
	width: calc(100% - 60px);
	margin-inline: auto;
	background-color: #fff;
}
@media (min-width: 48em) {
	.c-my-honda__inner {
		max-width: 1080px;
	}
}

.c-my-honda__panel {
	padding: 19px 13px 25px;
	border: 3px solid #f2f2f2;
}
@media (min-width: 48em) {
	.c-my-honda__panel {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 25px 3.4259259259% 25px 2.2222222222%;
	}
}

.c-my-honda__title {
	width: 119px;
	margin-inline: auto;
}
@media (min-width: 48em) {
	.c-my-honda__title {
		flex-shrink: 0;
		width: 131px;
		margin-inline: 0;
	}
}

.c-my-honda__content {
	margin-top: 8px;
}
@media (min-width: 48em) {
	.c-my-honda__content {
		margin-top: 0;
	}
}

.c-my-honda__lead {
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
	letter-spacing: -0.03em;
}
@media (min-width: 48em) {
	.c-my-honda__lead {
		font-size: 20px;
		line-height: 1.6;
		text-align: left;
		letter-spacing: 0;
	}
}

.c-my-honda__text {
	font-family: 'HondaGlobalFontJP-Light', sans-serif;
	font-weight: normal;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-base);
	text-align: center;
}
@media (min-width: 48em) {
	.c-my-honda__text {
		margin-top: 10px;
		font-size: 16px;
		text-align: left;
	}
}

.c-my-honda__link {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 8px;
	width: calc(100% - 42px + 26px);
	padding: 13px 19px;
	margin-inline: auto;
	margin-top: 24px;
	font-size: 16px;
	line-height: 1.5;
	border: 1px solid #35363b;
}
@media (min-width: 48em) {
	.c-my-honda__link {
		flex-shrink: 0;
		width: 228px;
		padding: 13px 19px;
		margin-top: 0;
		margin-right: 0;
		margin-left: auto;
		transition:
			color 0.3s ease,
			background-color 0.3s ease;
	}
	.c-my-honda__link:hover {
		color: #fff;
		background-color: #35363b;
	}
}
.c-my-honda__link::before {
	content: '';
}
.c-my-honda__link svg {
	width: 7px;
	justify-self: end;
}

.c-section-heading {
	position: relative;
	padding-bottom: 13px;
	font-size: 29px;
	line-height: 1.4;
	letter-spacing: -0.02em;
	text-align: center;
}
@media (min-width: 48em) {
	.c-section-heading {
		padding-bottom: 14px;
		font-size: 38px;
		line-height: 1.3157894737;
	}
}
.c-section-heading::before {
	position: absolute;
	inset: auto 0 0;
	width: 58px;
	height: 3px;
	margin-inline: auto;
	content: '';
	background-color: var(--honda-red);
}
.c-section-heading .slash {
	font-size: 20px;
}
@media (min-width: 48em) {
	.c-section-heading .slash {
		font-size: 26px;
	}
}
