	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 {
			padding: 80px 120px 100px;

			display: flex;
			justify-content: center;

			.images {
				width: 562px;
				position: relative;
				flex: 0 0 562px;

				img {
					position: absolute;
					border-radius: 8px;
				}

				img:first-child {
					width: 398px;
					height: 327px;
					top: 0;
					left: 0;
				}

				img:last-child {
					top: 359px;
					left: 104px;
					width: 377px;
					height: 244px;

				}
			}

			.messages {
				/*width: calc(100% - 562px);*/
				width: 100%;
				max-width: 645px;
				counter-reset: message;
				display: flex;
				flex-direction: column;

				article {
					padding-top: 21px;
					padding-left: 37px;
					position: relative;
					margin-top: 48px;
					margin-bottom: 10px;

					font-family: "Noto Sans JP";
					color: #151515;

					h3.title {
						font-weight: 700;
						font-size: 24px;
						line-height: 140%;
						margin: 0;
						margin-bottom: 16px;
						letter-spacing: 1px;


						font-family: Noto Sans JP;
						font-weight: 700;
						font-style: Bold;
						font-size: 24px;
						leading-trim: NONE;
						line-height: 140%;
						letter-spacing: 4%;

						color: #151515;

					}

					div.msg {
						font-weight: 400;
						font-size: 16px;
						line-height: 180%;
						width: 100%;
						max-width: 645px;
					}
				}

				article:before {
					counter-increment: message;
					content: "0" counter(message) "";
					position: absolute;
					top: 0;
					left: 1px;
					font-family: Satoshi;
					font-weight: 700;
					font-style: italic;
					font-size: 16px;
					line-height: 100%;
					color: #005EAD;

					counter-increment: message;
					content: "0" counter(message) "";
					position: absolute;
					top: 0;
					left: 1px;
					font-family: Satoshi;
					font-weight: 700;
					font-style: italic;
					font-size: 16px;
					line-height: 100%;
					color: #005EAD;
					font-family: Satoshi;
					font-weight: 700;
					font-style: Bold;
					font-size: 16px;
					leading-trim: NONE;
					line-height: 100%;
					letter-spacing: 0%;


				}
			}
		}

		.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: 0;
					flex-direction: column-reverse;
					padding-bottom: 24px;

					.messages {
						width: 100%;
						padding: 28px 24px;

						article {
							margin-top: 16px;
							padding-left: 18px;

							h3.title {
								font-size: 18px;

								br {
									display: none;
								}
							}

							div.msg {
								font-size: 14px;
								width: 100%;

								br {
									display: none;
								}
							}

							&::before {
								font-size: 14px;
							}
						}
					}

					.images {
						width: 100%;
						margin: 0 auto;
						padding: 0 24px 56px;
						height: 465px;

						img:first-child {
							width: 282px;
							height: 232px;
							border-radius: 5.68px;
							left: 24px;
						}

						img:last-child {
							width: 266px;
							height: 172px;
							border-radius: 5.68px;
							top: 256px;
							left: 76px;
						}
					}
				}

				.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;
						}
					}
				}
			}
		}
