	html,
	body {
		width: 100%;
		height: 100%;
		overflow: auto;
		margin: 0;
		padding: 0;

		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.page {
		overflow-x: hidden;
		overflow-y: auto;
		height: auto;
		-ms-overflow-style: none;
		/* Edge */
		scrollbar-width: none;
		/* Firefox */
	}

	.page::-webkit-scrollbar {
		display: none;
		/* Chrome,Safari */
	}


	.slide {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		color: white;
		background-size: cover;
		background-position: center;
	}

	section {
		width: 100%;
	}

	.top-section {
		position: relative;
		height: var(--top-section-height);
		overflow: hidden;

		.top-bg {
			position: absolute;
			width: 110vw;
			height: 110%;
			object-fit: cover;
			z-index: 0;
			max-width: none;
			border: none;
			top: -10%;
			left: -7%;
		}

		.top-section-inner {
			position: relative;
			padding: 166px 118px 134px 118px;
			z-index: 2;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 48px;

			.pankuzu-list {
				display: flex;
				width: 240px;
			}

			.pankuzu-unit {
				color: #fff;
				font-family: Noto Sans JP;
				font-weight: 400;
				font-style: Regular;
				font-size: 12px;
				line-height: 150%;
				letter-spacing: 0%;

				a {
					color: #fff;
					text-decoration: none;
				}
			}

			.pankuzu-separator {
				position: relative;
				width: 24px;
				height: 18px;

				img {
					margin: 0 auto;
					width: 10px;
					height: 16px;
					display: block;
				}
			}

			.top-title {
				display: flex;
				flex-direction: column;
				gap: 24px;

				.top-title-main {
					color: #fff;
					font-family: Satoshi;
					font-weight: 500;
					font-style: Medium;
					font-size: 80px;
					line-height: 100%;
					letter-spacing: 0;

				}

				.top-title-sub {
					color: #fff;
					font-family: Noto Sans JP;
					font-weight: 500;
					font-style: Medium;
					font-size: 18px;
					line-height: 100%;
					letter-spacing: 0;
				}
			}
		}

		.top-section-common {
			position: relative;
			padding: 114px 118px;
			z-index: 2;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			gap: 40px;

			.pankuzu-list {
				display: flex;
				width: 100%;
			}

			.pankuzu-unit {
				color: #fff;
				font-family: Noto Sans JP;
				font-weight: 400;
				font-style: Regular;
				font-size: 12px;
				line-height: 150%;
				letter-spacing: 0%;

				a {
					color: #fff;
					text-decoration: none;
				}
			}

			.pankuzu-separator {
				position: relative;
				width: 24px;
				height: 18px;

				img {
					margin: 0 auto;
					width: 10px;
					height: 16px;
					display: block;
				}
			}

			.top-title {
				display: flex;
				flex-direction: column;
				gap: 3px;

				.top-title-main {
					color: #fff;
					font-family: "Satoshi";
					font-weight: 400;
					font-size: 56px;
					line-height: 160%;
					letter-spacing: 0;
				}

				.top-title-sub {
					color: #fff;
					font-family: Noto Sans JP;
					font-weight: 400;
					font-size: 16px;
					line-height: 160%;
					letter-spacing: 0;
				}
			}
		}
	}

	.top-section-inner::after,
	.top-section-common::after {
		content: "";
		position: absolute;
		inset: 0;
		/*background: linear-gradient(270deg, rgba(0, 0, 0, .2) 0.02%, rgba(0, 0, 0, .41) 27.51%, rgba(0, 0, 0, .5) 50.66%, #000 94.1%);*/
		z-index: -1;
	}

	@media screen and (max-width: 768px) {
		.top-section {
			height: var(--top-section-height-sp);

			.top-bg {
				top: -5%;
				left: -3%;
			}

			.top-section-inner {
				padding: 72px 24px;
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				gap: 32px;

				.pankuzu-list {
					width: 180px;
				}

				.top-title {
					gap: 16px;

					.top-title-main {
						font-size: 48px;
					}

					.top-title-sub {
						font-size: 14px;
					}
				}
			}

			.top-section-common {
				padding: 72px 24px;
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				gap: 32px;

				.pankuzu-list {
					width: 100%;
				}

				.top-title {
					gap: 6px;

					.top-title-main {
						font-size: 32px;
						margin-bottom: 16px;
					}

					.top-title-sub {
						font-size: 12px;
					}
				}

			}
		}
	}



		* {
			box-sizing: border-box;
		}

		:root {
			--top-section-height: 345px;
			--top-section-height-sp: 240px;
		}


		.menu-section {
			padding-top: 0;
			padding-bottom: 0;
		}

		.menu-head {
			padding: 40px 0;
			display: flex;
			font-family: "Noto Sans JP";
			font-weight: 700;
			font-size: 16px;
			line-height: 160%;
			padding-left: 120px;
			column-gap: 2px;
		}

		.menu-head-item {
			position: relative;
			padding-right: 80px;
		}

		.menu-head-item:after {
			content: url('/common/asset/purchase/icon_button_link.svg');
			position: absolute;
			top: 50%;
			transform: translateY(-38%);
			padding-left: 8px;
			color: #151515;
		}

		.menu-head-item.active {
			width: auto;
			background: transparent;
		}

		.menu-head-item.active:after {
			content: url('/common/asset/purchase/icon_button_link_active.svg');
			color: #005EAD;
		}

		.menu-head-item a {
			color: #151515;
		}

		.menu-head-item.active a {
			color: #005EAD;
		}

		.content {
			max-width: 1056px;
			margin: 40px auto 0;
			padding-bottom: 22px;

			article {
				text-align: center;
				font-family: "Noto Sans JP";
				margin-bottom: 58px;

				p {
					font-weight: 700;
					font-size: 16px;
					line-height: 250%;
					padding-top: 0;
					letter-spacing: .04em;
					margin: 0;
				}

				p.caution {
					padding-top: 20px;
				}

				.img-area {
					padding-top: 22px;
				}

				.img-area.sp {
					display: none;
				}
			}
		}

		.menu-contact {
			width: 100%;
			height: auto;
			background-color: #F2F2F2;
			display: flex;
			flex-direction: column;
			align-items: center;
			padding-top: 48px;
			padding-bottom: 48px;

			h2 {
				font-family: Satoshi;
				font-weight: 500;
				font-size: 32px;
				line-height: 100%;
				color: #005EAD;
				border-bottom: none;
				padding: 0;
				height: auto;
				margin: 0;
			}

			.links {
				display: flex;
				flex-direction: row;
				justify-content: center;
				margin-top: 32px;

				.link-area.inactive {
					color: #409C9C;
				}

				a {
					position: relative;
					width: 480px;
					height: 140px;
					border-radius: 8px;
					padding: 32px;
					line-height: 160%;
					color: #005EAD;
					font-family: "Noto Sans JP";
					font-weight: 700;
					font-size: 24px;
					margin: 0 16px;
					background-color: #FFF;
				}

				a:after {
					position: absolute;
					content: "";
					right: 32px;
					bottom: 32px;
					background-image: url(/common/asset/purchase/icon_link.svg);
					background-size: cover;
					width: 34px;
					height: 21px;
				}

				a:hover,
				a:focus {
					text-decoration: none;
				}
			}
		}

		@media screen and (max-width: 768px) {
			.menu-section {
				.menu-head {
					padding: 24px;
					padding-left: 24px;
					flex-wrap: wrap;
					column-gap: 2px;
					row-gap: 16px;

					.menu-head-item {
						font-size: 14px;
						padding-right: 50px;
					}

					.menu-head-item:after {
						content: url('/common/asset/purchase/icon_button_link_sp.svg');
					}

					.menu-head-item.active:after {
						content: url('/common/asset/purchase/icon_button_link_sp_active.svg');
					}
				}

				.content {
					width: 390px;
					margin: 0 auto;
					padding: 40px 0 40px;
					display: flex;
					flex-direction: column;

					article {
						margin-top: 0;
						padding-left: 18px;
						padding-right: 18px;
						margin-bottom: 14px;


						p {
							font-size: 14px;
							line-height: 180%;
							word-break: keep-all;
						}

						p:nth-child(2) {
							margin-top: 30px;
						}
					}

					.img-area {
						display: none;
					}

					.img-area.sp {
						display: block;
						width: 100%;
						height: auto;
					}

				}

				.menu-contact {
					height: auto;
					padding: 32px 24px;

					h2 {
						font-size: 24px;
						margin: 0;
					}

					.links {
						flex-direction: column;
						gap: 16px;
						margin-top: 24px;

						a {
							width: 342px;
							font-size: 20px;
							height: auto;
							padding: 24.5px 32px;
							line-height: 160%;
							margin: 0 0;
						}

						a:after {
							right: 32px;
							bottom: 27px;
							width: 27px;
							height: 17px;
						}
					}
				}
			}
		}
