@charset "UTF-8";

/*
  Layout
---------------------------------------------- */
.l-container {
	width: 91.79%;
	max-width: 960px;
	margin-inline: auto;
}

.l-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.l-main {
	flex: 1 0 auto;
}

.l-sectionPrimary {
	padding-block: 4.5rem;
}

.l-sectionPrimary.--last {
	padding-bottom: 0;
}

.l-sectionSecondary {
	padding-top: 1.5rem;
}

.l-footer {
	flex-shrink: 0;
}

/* heading */
.l-headingPrimary {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 1.5rem;
	font-size: var(--font-size-2xl);
	line-height: 1.333;
}

.l-headingPrimary::before {
	position: absolute;
	top: 2px;
	left: 0;
	display: inline-block;
	width: 4px;
	height: 100%;
	content: "";
	background-color: var(--color-key);
	border-radius: 4px;
}

.l-headingSecondary {
	position: relative;
	padding-bottom: calc(0.5rem + 2px);
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.444;
}

.l-headingSecondary::after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	content: "";
	background-color: var(--color-key);
	border-radius: 4px;
}

@media screen and (min-width: 1200px) {
	.l-sectionPrimary {
		padding-block: 7.5rem;
	}

	.l-sectionPrimary.--first {
		margin-top: -2.5rem;
	}

	.l-sectionSecondary {
		padding-top: 2rem;
	}

	.l-headingPrimary {
		padding-left: 1.5rem;
		margin-bottom: 2rem;
		line-height: 1.4;
	}

	.l-headingSecondary {
		margin-bottom: 2rem;
		font-size: 1.5rem;
	}
}

/*
  Components
---------------------------------------------- */
/* header */
.c-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	padding-block: 0.5rem;
	padding-inline: 1rem 0.25rem;
	background-color: var(--color-white);
	box-shadow: var(--shadow-md);
}

.c-headerContainer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.c-headerTitle {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	row-gap: 0.25rem;
}

.c-headerLogo {
	display: block;
	width: 203px;
}

.c-headerLogo:hover {
	opacity: 0.5;
}

.c-headerLogo img {
	display: block;
}

.c-headerMainText {
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.417;
}

.c-headerButton {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	color: var(--color-key);
	appearance: none;
	background-color: transparent;
	border: none;
}

.c-headerButton__icon {
	width: 40px;
}

.c-headerButton__text {
	margin-top: -0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
}

.c-headerNavWrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	display: none;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: var(--color-bg-key);
	-webkit-overflow-scrolling: touch;
}

.c-headerNavWrapper.is-open {
	display: block;
}

.c-headerNavWrapper::before {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	display: inline-block;
	width: 100%;
	height: 5rem;
	content: "";
	background-color: var(--color-white);
	box-shadow: var(--shadow-md);
}

.c-headerNavWrapper::after {
	position: relative;
	z-index: -1;
	display: block;
	width: 100%;
	padding-top: 85.38%;
	margin-top: -3.25rem;
	content: "";
	background-image: url("/archive2025/assets/images/bg_header_sp.png");
	background-position: top center;
	background-size: cover;
}

.c-headerNav {
	padding-top: calc(5rem + 4rem);
	padding-bottom: 2rem;
}

.c-headerMenu {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	list-style: none;
}

.c-headerMenu__item a {
	font-size: 1.5rem;
	font-weight: var(--font-weight-bold);
	line-height: normal;
}

.c-headerInfo {
	display: none !important;
}

@media screen and (min-height: 780px) {
	.c-headerNavWrapper.is-open {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
}

@media screen and (min-width: 768px) {
	.c-headerNavWrapper::after {
		display: none;
	}

	.c-headerNavWrapper {
		background-image: url("/archive2025/assets/images/bg_header_tab.png");
		background-position: bottom right;
		background-size: cover;
	}
}

@media screen and (min-width: 1024px) {
	.c-header {
		padding-inline: 1rem;
	}

	.c-headerMenu__item a {
		position: relative;
	}

	.c-headerMenu__item a::before {
		position: absolute;
		bottom: -2px;
		left: 50%;
		display: inline-block;
		width: 0px;
		height: 2px;
		content: "";
		background-color: var(--color-key);
		border-radius: 2px;
		transition: var(--animation);
		translate: -50% 0;
	}

	.c-headerMenu__item a:hover::before {
		width: 100%;
	}
}

@media screen and (min-width: 1200px) {
	.c-header {
		padding-block: 1.5rem;
		padding-inline: 3.5rem 2.5rem;
	}

	.c-headerNavWrapper {
		position: static;
		display: flex;
		gap: 1.5rem;
		align-items: center;
		width: auto;
		height: auto;
		overflow: inherit;
		background-color: transparent;
		background-image: inherit;
	}

	.c-headerNavWrapper::before,
	.c-headerNavWrapper::after {
		display: none;
	}

	.c-headerNavWrapper .l-container {
		width: auto;
		max-width: inherit;
		margin: 0;
	}

	.c-headerNav {
		padding-block: 0;
	}

	.c-headerButton {
		display: none;
	}

	.c-headerMenu {
		flex-direction: row;
		gap: 1.5rem;
	}

	.c-headerMenu__item a {
		display: inline-flex;
		gap: 0.5rem;
		align-items: center;
		padding-block: 0.25rem;
		font-size: 0.875rem;
	}

	.c-headerMenu__item a::after {
		display: inline-block;
		width: 7px;
		height: 6px;
		content: "";
		background-image: url("/archive2025/assets/images/icon_arrow_bottom.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	.c-headerInfo {
		display: flex !important;
	}
}

@media screen and (min-width: 1360px) {
	.c-headerTitle {
		flex-direction: row;
		gap: 0.25rem;
		align-items: center;
	}
}

/* footer */
.c-footer {
	position: relative;
	padding-block: 2.5rem 5rem;
}

.c-footer::before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 100%;
	height: 315px;
	content: "";
	background-image: url("/archive2025/assets/images/bg_footer_sp.png");
	background-position: top center;
	background-size: cover;
}

.c-footerLogo {
	width: 203px;
	margin-inline: auto 0;
	margin-bottom: 6.75rem;
}

.c-footerCopy {
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	text-align: center;
}

@media screen and (min-width: 768px) {
	.c-footer::before {
		height: 364px;
		background-image: url("/archive2025/assets/images/bg_footer_tab.png");
	}
}

@media screen and (min-width: 1200px) {
	.c-footer {
		padding-block: 5rem;
	}

	.c-footer::before {
		height: 412px;
		background-image: url("/archive2025/assets/images/bg_footer.png");
	}

	.c-footerContents {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		width: 100%;
	}

	.c-footerLogo {
		margin-bottom: 0;
	}
}

/* button */
.c-button {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	padding-block: 0.625rem;
	padding-inline: 1.5rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.429;
	background-color: var(--color-white);
	border: 1px solid var(--color-key);
	border-radius: 54px;
}

.c-button svg {
	width: 1rem;
	height: 1rem;
}

@media screen and (min-width: 768px) {
	.c-button:hover {
		color: var(--color-white);
		background-color: var(--color-key);
	}
}

@media screen and (min-width: 1200px) {
	.c-button {
		padding-block: 1rem;
		padding-inline: 2rem;
		line-height: 1.438;
	}
}

.c-info {
	display: flex;
	gap: 0.25rem;
	align-items: center;
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.5;
}

.c-info em {
	font-style: normal;
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.c-info::before {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	content: "";
	background-image: url("/archive2025/assets/images/icon_info_round.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

@media screen and (min-width: 1200px) {
	.c-info {
		font-size: 0.875rem;
	}
}

/*
  Utility
---------------------------------------------- */
.u-bg-blue {
	background-color: var(--color-bg-key);
}

.u-text-base {
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
}

.u-text-red {
	color: #fd4755;
}

.u-visuallyHidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.u-mt-1 {
	margin-top: var(--spacing-1);
}

.u-mt-2 {
	margin-top: var(--spacing-2);
}

.u-mt-3 {
	margin-top: var(--spacing-3);
}

.u-mt-4 {
	margin-top: var(--spacing-4);
}

.u-mt-5 {
	margin-top: var(--spacing-5);
}

.u-mb-1 {
	margin-bottom: var(--spacing-1);
}

.u-mb-2 {
	margin-bottom: var(--spacing-2);
}

.u-mb-3 {
	margin-bottom: var(--spacing-3);
}

.u-mb-4 {
	margin-bottom: var(--spacing-4);
}

.u-mb-5 {
	margin-bottom: var(--spacing-5);
}

@media print, screen and (max-width: 767px) {
	.hide-sp {
		display: none !important;
	}
}

@media print, screen and (min-width: 768px) {
	.hide-pc {
		display: none !important;
	}
}
