/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
* {
	box-sizing: border-box;
}

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: 100%;
	}
	*/
.page {
	overflow-x: hidden;
	overflow-y: 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%;
}

.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;
}

.menu-head-item {
	position: relative;
	padding-right: 80px;
}

.menu-head-item:after {
	content: url('/common/asset/purchase/icon_button_link.png');
	position: absolute;
	top: 50%;
	transform: translateY(-38%);
	padding-left: 8px;
}

.menu-head-item.active {
	width: auto;
	background: transparent;
}

.menu-head-item a {
	color: #151515;
}

.menu-head-item.active a {
	color: #005EAD;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.content {
	max-width: 100vw;
	margin: 40px auto 0;

	article {
		font-family: "Noto Sans JP";
		margin-bottom: 40px;

		p {
			text-align: center;
			font-weight: 700;
			font-size: 16px;
			line-height: 250%;
			letter-spacing: 1px;
		}
	}

	div.body {
		width: 100vw;
		background-color: #F3F8FC;
		counter-set: section;
		display: flex;
		flex-direction: column;
		gap: 40px;

		article {
			counter-increment: section;
			width: 1056px;
			margin: 0 auto;
			padding-top: 0;

			h2 {
				font-weight: 700;
				font-size: 24px;
				line-height: 140%;
				letter-spacing: 1px;
				color: #151515;
				margin-bottom: 48px;
				border-bottom: none;
				position: relative;
				padding-left: 55px;
			}

			h2:before {
				position: absolute;
				top: 0;
				left: 0;
				content: "0" counter(section) ". ";
				color: #005EAD;
				font-family: Satoshi;
				font-size: 32px;
			}

			.message {
				background-color: #FFF;
				border-radius: 8px;
				padding: 32px 64px;
				display: flex;
				flex-direction: column;
				align-items: start;
				justify-content: start;

				.section {
					font-family: "Noto Sans JP";
					--left-padding: 20px;
					width: 100%;

					h3 {
						font-size: 20px;
						line-height: 160%;
						font-weight: 500;
						letter-spacing: 0;
						position: relative;
						padding-left: var(--left-padding);
						margin: 0;
					}

					h3:before {
						content: "";
						position: absolute;
						top: 50%;
						left: 0;
						width: 4px;
						height: 32px;
						background-color: #005EAD;
						border-radius: 1px;
						transform: translateY(-50%);
					}

					.value {
						padding-left: var(--left-padding);
						font-size: 16px;
						line-height: 180%;
						font-weight: 400;
					}
				}
			}
		}

		article:first-child {
			padding-top: 77px;
		}

	}
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.menu-contact {
	width: 100%;
	height: 300px;
	background-color: #F2F2F2;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 30px;

	h2 {
		font-family: Satoshi;
		font-weight: 500;
		font-size: 32px;
		line-height: 100%;
		color: #005EAD;
		border-bottom: none;
		padding: 0;
		height: auto;
	}

	.links {
		display: flex;
		flex-direction: row;
		justify-content: center;
		margin-top: 35px;

		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: url('/common/asset/purchase/icon_link.svg');
			right: 32px;
		}

		a:hover,
		a:focus {
			text-decoration: none;
		}
	}
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
:root {
	--hero-h-d: 68vh;
	--hero-h-m: 60vh;
	--hero-pad-x: 32px;
	--hero-bottom: 96px;
	--hero-gap: 28px;
	/* 下段 左右の間隔 */
	--hero-maxw: 1200px;

	/* ← 調整用：タイトルと左カラムの幅 */
	--hero-title-max: 640px;
	/* タイトル専用の最大幅（独立） */
	--hero-left-w: 320px;
	/* 下段 左カラムの幅（Figmaに合わせ調整） */
}




.top-section {
	position: relative;
	height: 302px;
	overflow: hidden;
	/* はみ出し防止 */
}

.top-section .top-bg {
	position: absolute;
	width: 110vw;
	height: auto;
	object-fit: cover;
	z-index: 0;
	max-width: none;
	border: none;
	top: -10%;
	left: -7%;
}

/* グラデーションは上に重ねる */
.top-section::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
display:none;
}


.top-section-inner {
	position: relative;
	padding: 114px 118px 0;
	z-index: 2;
}


.top-title {
	color: #151515;

	font-family: Noto Sans JP;
	font-weight: 500;
	font-style: Medium;
	font-size: 40px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: 0%;
}


.top-title-sub {
	color: #151515;
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Medium;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 160%;
	letter-spacing: 0%;
}


.pankuzu-list {
	display: flex;
	margin-bottom: 24px;
}

.pankuzu-unit {
	color: #151515;
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 12px;
	leading-trim: NONE;
	line-height: 150%;
	letter-spacing: 0%;
}

.pankuzu-separator {
	position: relative;
	width: 24px;
	height: 18px;
}

.pankuzu-separator img {
	margin: 0 auto;
	width: 10px;
	height: 16px;
	display: block;
}

.pc_br {
	display: block;
	display: unset;
}

.sp_br {
	display: none;
}



/* 全幅ヒーロー */
.hero {
	position: absolute;
	width: 100%;
	height: 488px;
	background-image: url(/common/asset/service_hero.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

/* 動画は全面にフィット */
.hero-media {
	position: relative;
	z-index: 0;
	overflow: hidden;
	height: 100%;
}

.hero-video {
	top: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
}

/* 文字の可読性向上のためのオーバーレイ */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .35) 55%, rgba(0, 0, 0, .45) 100%);
	pointer-events: none;
}


.hero-over {
	position: relative;
	width: 100%;
	height: 488px;
	top: 0;
}

/* テキストを下辺に寄せる */
.hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	/* 下辺 */
	padding: 0 var(--hero-pad-x) var(--hero-bottom);
}

.hero-overlay.sp {
	display: none;
}

.hero-overlay.pc {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	/* 下辺 */
	padding: 0 var(--hero-pad-x) var(--hero-bottom);
}

.hero-inner {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;

	/* 2行 × 2列のグリッド。1行目はタイトルが2列分を占有 */
	display: grid;
	grid-template-columns: var(--hero-left-w) 1fr;
	grid-template-areas:
		"title title"
		"jpn   eng";
	column-gap: var(--hero-gap);
	row-gap: 10px;
	color: #fff;
}

/* 左ブロック */
/* 上段：タイトル（独立の最大幅・2列を跨ぐ） */
.hero-title {
	grid-area: title;
	margin: 0;
	max-width: var(--hero-title-max);
	/* ← これで下段とは独立した幅に */
	font-size: clamp(28px, 6vw, 44px);
	/*text-shadow: 0 2px 8px rgba(0,0,0,.35);*/

	color: #ffffff;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 46px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0.12em;

	border-bottom: none;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
@media screen and (min-width:1025px) {

	.empty-contents{
		padding-bottom: 20px!important;
	}

	.blend-title {
		/*bottom: 30%!important;*/
		top: 299px;
		left: 32px;
	}

	.blend-title--v2 {
		bottom: 20% !important;
	}

	.hero-title {
		margin-left: 24px;
		letter-spacing: 5px;
	}

	.hero-sub {
		margin-top: 15px !important;
		font-weight: normal;
		margin-left: 24px !important;
		letter-spacing: 2px;
		padding-left: 10px !important;
	}

	.hero-inner {
		grid-template-columns: 345px 1fr;
	}

	.copy-right {
		margin-top: 15px !important;
		font-weight: normal !important;
		letter-spacing: 1px;
	}

	.about-visual2 {
		margin-right: 0px;
		margin: 0 0 80px;
	}

	.svc-card {
		width: 570px !important;
		flex: 0 0 clamp(570px, 28vw, 380px) !important;
	}


	.strengths-visual {
		margin-left: 25px !important;
	}

	.strengths-visual img {
		width: 600px !important;
	}

	.strengths-section2 {
		height: 144vh !important;
	}


}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* 下段：左カラム（日本語） */
.hero-sub {
	grid-area: jpn;
	margin: 0;
	/*text-shadow: 0 1px 3px rgba(0,0,0,.3);*/

	color: #ffffff;
	font-family: Noto Sans JP;
	font-weight: normal;
	font-style: Medium;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 24px;
	letter-spacing: 0.12em;

	padding-right: 20px;
	border-right: 1px solid #fff;
}


/* 下段：右カラム（英語2行） */
.copy-right {
	grid-area: eng;
	margin: 0;
	padding: 0;
	list-style: none;
	/*text-shadow: 0 1px 3px rgba(0,0,0,.3);*/

	font-family: "Satoshi";
	font-weight: 500;
	font-style: Medium;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 24px;
	letter-spacing: 0.02em;
}

.copy-right LI {
	height: 24px;
	line-height: 24px;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* レスポンシブ */
@media (max-width: 1024px) {
	.empty-contents{
		padding: 0 32px!important;
		padding-bottom: 40px!important;
	}

	.information-section {
		margin-bottom: 40px;
	}
	.pc_br {
		display: none;
	}

	.sp_br {
		display: block;
		display: unset;
	}

	.top-section {
		height: 240px;
	}

	.top-section .top-bg {
		object-position: revert;
		width: 206%;
		height: auto;
		top: -80px;
		left: -70%;
	}


	.pankuzu-list {
		margin-bottom: 32px;
	}

	.top-section-inner {
		padding: 32px 24px 0px 24px;
	}

	.pankuzu-unit {
		color: #151515;
		font-family: Noto Sans JP;
		font-weight: 400;
		font-style: Regular;
		font-size: 12px;
		leading-trim: NONE;
		line-height: 150%;
		letter-spacing: 0%;
	}

	.top-title {
		color: #151515;
		font-family: Satoshi;
		font-weight: 500;
		font-style: Medium;
		font-size: 48px;
		leading-trim: NONE;
		line-height: 100%;
		letter-spacing: 0%;

		margin-bottom: 16px;
	}

	.top-title-sub {
		color: #151515;
		font-family: Noto Sans JP;
		font-weight: 500;
		font-style: Medium;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 100%;
		letter-spacing: 0%;
	}
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */


.hero {
	height: 100%;
	position: relative;
}

.hero::after {
	background: none;
}

.hero-video {
	height: 100%;
}

.hero-inner {
	width: auto;
	display: inline-block;
	margin-left: 0;
	margin-bottom: 40px;
}

.hero-title {
	font-family: Noto Sans JP;
	font-weight: 500;
	font-style: Bold;
	font-size: 40px;
	leading-trim: NONE;
	line-height: 120%;
	letter-spacing: 0.12em;

	max-width: 100%;
	font-size: 40px;
	padding-top: 15px;
	padding-bottom: 15px;
	line-height: 120%;
}

.hero-sub {
	display: inline-block;

	font-family: Noto Sans JP;
	font-weight: 500;
	font-style: Medium;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0.12em;


	padding-right: 0;
	border-right: none;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid white;
	width: auto;
}

.hero-overlay {
	padding-bottom: 40px;
	padding-top: 15px;
}

.hero-overlay.pc {
	display: none;
}

.hero-overlay.sp {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	/* 下辺 */
	padding: 0 var(--hero-pad-x) var(--hero-bottom);
	padding-bottom: 40px;
	padding-top: 15px;
}

.copy-right {
	font-family: Satoshi;
	font-weight: 500;
	font-style: Medium;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0.02em;


	margin-top: 12px;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
@media (prefers-reduced-motion: reduce) {
	.hero-video {
		animation: none;
	}

	.hero-video[autoplay] {
		/* 省エネ：自動再生を止めたい場合は下行のコメントを外す */
		/* display:none; */
	}

	.hero-inner {
		width: auto;
		display: inline-block;
		margin-left: 0;
	}

	.hero-sub {
		padding-right: 0;
		border-right: none;
		font-size: 14px;
	}

	.copy-right {
		align-self: start;
		width: 100%;
		border-right: none;
		font-size: 18px;
	}

	.copy-right {
		width: 100%;
	}
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.site-header {
	background: #005EAD !important;
}

.main {
	width: 100%;
	padding: 120px 0 40px;
	overflow: hidden;

	.carousel-container {
		padding-top: 50px;
		position: relative;
		width: 100%;
		/*height: calc(692px - 80px);*/
		padding-bottom: 80px;
		height: auto;

		input[type="radio"] {
			display: none;
		}

		.carousel-wrapper {
			display: flex;
			transition: transform 0.5s ease;
		}

		.carousel-item {
			min-width: 100%;
			box-sizing: border-box;
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			justify-content: center;
			align-items: center;

			img {
				height: 100%;
			}
		}

		.carousel-controls {
			position: absolute;
			bottom: 30px;
			right: 77px;
			transform: translateX(-50%);
			display: flex;
			gap: 10px;
		}

		.carousel-controls label {
			width: 8px;
			height: 8px;
			background: #D7D7D7;
			border-radius: 50%;
			cursor: pointer;
			transition: background 0.3s;
			margin-left: 14px;
		}

		.carousel-controls label:hover {
			background: #ccc;
		}

		#slide1:checked~.carousel-wrapper {
			transform: translateX(0);
		}

		#slide1:checked~.carousel-controls label[for="slide1"] {
			background: #005EAD;
		}

		#slide2:checked~.carousel-wrapper {
			transform: translateX(-100%);
		}

		#slide2:checked~.carousel-controls label[for="slide2"] {
			background: #005EAD;
		}

		#slide3:checked~.carousel-wrapper {
			transform: translateX(-200%);
		}

		#slide3:checked~.carousel-controls label[for="slide3"] {
			background: #005EAD;
		}
	}

	.products-section {
		width: 100vw;
		background-color: #F3F8FC;
		padding: 80px 120px;
		margin-top: 50px;

		.title-area {
			margin-bottom: 35px;
			color: #005EAD;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			flex-wrap: nowrap;
			padding: 0 44px;
			gap: 16px;

			.section-title {
				font-size: 56px;
				font-weight: 500;
				line-height: 100%;
				font-family: Satoshi;
				border-bottom: 0;
				padding: 0;
				height: auto;
				margin: 0;
			}

			.section-subtitle {
				font-size: 20px;
				font-weight: 700;
				line-height: 100%;
				letter-spacing: 2px;
				color: #005EAD;

			}
		}

		.content-area {
			padding: 0 44px;
			display: grid;
			row-gap: 40px;
			column-gap: 40px;
			grid-template-rows: 320px 240px;
			grid-template-columns: 1fr 1fr;

			.main-visual {
				grid-row: 1 / 2;
				grid-column: 1 / 3;
				position: relative;
				background-color: #FFFFFF;
				width: 100%;
				border-radius: 4px;

				.image-area {
					img {
						width: 606px;
						height: 320px;
						object-fit: cover;
						
						border-top-left-radius: 4px;
						border-top-right-radius: 0px;
						border-bottom-left-radius: 4px;
						border-bottom-right-radius: 0px;
					}
				}

				.text-area {
					position: absolute;
					top: 50%;
					left: 670px;
					color: #151515;
					transform: translateY(-50%);

					h3 {
						font-size: 24px;
						font-weight: 700;
						line-height: 140%;
					}
				}

				.button-area {
					position: absolute;
					top: 232px;
					right: 24px;
					width: 64px;
					height: 64px;

					.view-button {
						position: relative;
					}

					.view-button::before {
						position: absolute;
						content: url('/common/asset/products/button_view_all.svg');
						width: 64px;
						height: 64px;
						color: #151515;
					}
				}
			}

			.sub-visual {
				position: relative;
				background-color: #FFFFFF;
				width: 100%;
				display: flex;
				flex-direction: row;
				flex-wrap: nowrap;
				gap: 24px;
				border-radius: 4px;

				img {
					width: 234px;
					height: 242px;
					object-fit: cover;
					border-top-left-radius: 4px;
					border-top-right-radius: 0px;
					border-bottom-left-radius: 4px;
					border-bottom-right-radius: 0px;

				}

				.text-area {
					color: #151515;
					position: relative;
					width: 100%;

					h3 {
						font-size: 24px;
						font-weight: 700;
						line-height: 140%;
						letter-spacing: 0px;
						position: absolute;
						top: 50%;
						transform: translateY(-50%);
						margin: 0;
					}
				}

				.button-area {
					position: absolute;
					bottom: 14px;
					right: 17px;
					width: 34px;
					height: 20px;

					.view-button {
						position: relative;
					}

					.view-button::before {
						position: absolute;
						content: url('/common/asset/products/button_view_sub.svg');
						width: 34px;
						height: 20px;
						color: #151515;
					}
				}
			}
		}
	}

	.information-section {
		background-image: url('/common/asset/products/products_info_bg.jpg');
		background-repeat: no-repeat;
		background-position: center;
		position: relative;
		background-size: cover;

		.title-area {
			margin-bottom: 35px;
			color: #FFF;
			display: flex;
			flex-direction: column;
			align-items: center;
			flex-wrap: nowrap;
			padding: 80px 44px 0;
			gap: 16px;
			text-align: center;
			width: 100%;

			.section-title {
				font-size: 56px;
				font-weight: 500;
				line-height: 100%;
				font-family: Satoshi;
				border-bottom: 0;
				padding: 0;
				height: auto;
				margin: 0;
			}

			.section-subtitle {
				font-size: 20px;
				font-weight: 700;
				line-height: 100%;
				letter-spacing: 2px;
				color: #FFF;
				z-index: 1;
			}
		}

		.cards {
			display: flex;
			flex-wrap: wrap;
			gap: 32px;
			margin: 0 auto;
			width: 1200px;
			padding-top: 10px;
			padding-bottom: 80px;

			.card {
				flex: 1;
				background-color: #FFF;
				border-radius: 4px;
				height: 276px;
				width: 276px;
				position: relative;

				img {
					position: absolute;
					width: 104px;
					height: 104px;
					margin: 0;
					padding: 0;
					top: 32px;
					left: 50%;
					transform: translateX(-50%);
				}

				h3.card-title {
					position: absolute;
					left: 50%;
					top: 60%;
					transform: translate(-50%, -50%);
					font-family: "Noto Sans JP";
					font-weight: 700;
					text-align: center;
					font-size: 20px;
					line-height: 140%;
					letter-spacing: 0;
					vertical-align: middle;
					margin: 0;
					width: 100%;
					color: #151515;
				}

				.card-button {
					position: absolute;
					bottom: 24px;
					right: 0;
					transform: translateX(-100%);
					width: 34px;
					height: 20px;
				}

				.card-button::before {
					position: absolute;
					content: url(/common/asset/products/button_view_info.svg);
					width: 34px;
					height: 20px;
					color: #151515;
					transform: translate(50%, 50%);
				}
			}
		}
	}

	.information-section::before {
		content: "";
		position: absolute;
		inset: 0;
		pointer-events: none;
		background: linear-gradient(98.71deg, rgba(0, 0, 0, 0.7) 15.35%, rgba(2, 15, 42, 0.7) 100.63%);
	}
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */

@media screen and (max-width: 768px) {
	.information-section {
		margin-bottom: 40px;
	}

	.main {
		padding-bottom: 0px;

		.carousel-container {
			padding-top: 0;
			height: calc(312px - 50px);

			input[type="radio"] {
				display: none;
			}

			.carousel-wrapper {
				display: flex;
				transition: transform 0.5s ease;
			}

			.carousel-item {
				min-width: 100%;
				box-sizing: border-box;
				display: flex;
				flex-direction: row;
				flex-wrap: nowrap;
				justify-content: center;
				align-items: center;

				img {
					height: 100%;
				}
			}

			.carousel-controls {
				right: 44px;
				transform: translateX(50%);
			}

			.carousel-controls label {
				width: 8px;
				height: 8px;
				border-radius: 50%;
				cursor: pointer;
				transition: background 0.3s;
				margin-left: 0;
			}

			#slide1:checked~.carousel-wrapper {
				transform: translateX(0);
			}

			#slide2:checked~.carousel-wrapper {
				transform: translateX(-100%);
			}

			#slide3:checked~.carousel-wrapper {
				transform: translateX(-200%);
			}
		}

		.products-section {
			margin-top: 0;
			padding: 56px 24px;

			.title-area {
				margin-bottom: 10px;
				padding: 0;
				gap: 8px;

				.section-title {
					font-size: 40px;
				}

				.section-subtitle {
					font-size: 16px;
				}
			}

			.content-area {
				padding: 0;
				column-gap: 16px;
				grid-template-rows: 264px 222px;

				.main-visual {
					display: grid;
					grid-template-columns: 1fr 1fr;
					gap: 16px;

					.image-area {
						grid-row: 1 /2;
						grid-column: 1 / 3;

						img {
							width: 100%;
							height: 176px;
							border-top-left-radius: 4px;
							border-top-right-radius: 4px;
							border-bottom-left-radius: 0px;
							border-bottom-right-radius: 0px;
						}
					}

					.text-area {
						position: initial;
						transform: translateY(0px);

						h3 {
							font-size: 18px;
							padding: 0 14px;
						}
					}

					.button-area {
						position: absolute;
						width: 40px;
						height: 40px;
						top: 208px;
						right: 24px;

						.view-button {
							position: relative;
						}

						.view-button::before {
							position: absolute;
							content: url('/common/asset/products/button_view_all_sp.svg');
							width: 40px;
							height: 40px;
							color: #151515;
						}
					}
				}

				.sub-visual {
					gap: 16px;
					flex-direction: column;
					border-radius: 4px;

					img {
						width: 100%;
						height: 114px;
						border-top-left-radius: 4px;
						border-top-right-radius: 4px;
						border-bottom-left-radius: 0px;
						border-bottom-right-radius: 0px;
					}

					.text-area {
						color: #151515;
						position: relative;
						width: 100%;

						h3 {
							font-size: 16px;
							position: initial;
							transform: translateY(0%);
							margin: 0;
							padding: 0 8px;
						}
					}

					.button-area {
						.view-button {}

						.view-button::before {}
					}
				}
			}
		}

		.information-section {

			.title-area {
				margin-bottom: 28px;
				flex-direction: column;
				padding: 56px 24px 0;
				width: 100%;

				.section-title {
					font-size: 40px;
				}

				.section-subtitle {
					font-size: 18px;
				}
			}

			.cards {
				display: grid;
				grid-template-rows: 1fr 1fr;
				grid-template-columns: 168px 163px;
				gap: 16px;
				margin: 0 auto;
				width: 100vw;
				padding: 0px 24px 66px;
				justify-items: center;
				justify-content: center;

				.card {
					height: 168px;
					width: 163px;

					img {
						width: 56px;
						height: 56px;
						top: 16px;
					}

					h3.card-title {
						font-size: 16px;
					}

					.card-button {}

					.card-button::before {}
				}
			}
		}
	}
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
#contents {
	padding: 0 118px;
	background-color: #fff;
	background-image: none;
}

#main_window {
	margin: 0 auto;
	max-width: 1200px;
}

.h2block {
	display: none;
}


#btn_back_t {
	width: 260px;
	height: 56px;
	background-image: none;
	background-color: #005EAD;
	border-radius: 64px;
	color: #fff;
	text-shadow: none;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 4%;
	text-align: center;
	text-transform: capitalize;
	box-shadow: none;
	position: relative;
	margin: 0;
}
#btn_back_t::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: url(/common/asset/btn-bule_arrow.svg) no-repeat center / contain;
}

.error_text {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	color:#F14346;
	padding: 17px 0;
}


.line_title {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 32px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	color: #151515;
}

#sub_content_area_detail h3, #main_content_area h3 {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 32px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	color: #151515;
	border-bottom: none;
	text-indent: 0;
	margin-top: 50px;
    margin-bottom: 24px;
}



.table_type7 th, .table_type7 td {
	border: 1px solid #D7D7D7;
	background-image: none;
}




.table_type7 tr th{
	border: 1px solid #D7D7D7;
	background-color: #F5F5F5;
	background-image: none;
	color: #151515;

	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}

.table_type7 tr td{
	border: 1px solid #D7D7D7;
	background-color: #FFFFFF;
	background-image: none;
	color: #151515;
}


.table-total td.first {
	border: 1px solid #D7D7D7;
	background-color: #F5F5F5;
	background-color: #F3F8FC;
	background-image:none;
}
.table-total td.disp {
	border: 1px solid #D7D7D7;
	background-color: #F5F5F5;
	background-color: #F3F8FC;
	background-image:none;
}

.table-total td:first-child + td, .table-total td:first-child + td + td, .table-total td:first-child + td + td + td, .table-total td:first-child + td + td + td + td {
	border: 1px solid #D7D7D7;
	background-color: #F5F5F5;
	background-color: #F3F8FC;
	background-image:none;

	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

	color: #151515;
	text-align: center;
}


.table_type7 tr:first-child th, .table_type7 td:first-child {
	border-left: 1px solid #ccc;

	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

	color: #151515;
}


.order-confirm td:first-child + td {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

	color: #151515;

}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.cart_main .notes, .cart_main .notes2, .simple_main .notes, .simple_main .notes2 {
	text-align: left;
}

.shipping-pref label {
	margin-bottom: 24px;
}



#btn_next {
	width: 260px;
	height: 56px;
	background-image: none;
	background-color: #005EAD;
	border-radius: 64px;
	color: #fff;
	text-shadow: none;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 4%;
	text-align: center;
	text-transform: capitalize;
	box-shadow: none;
	position: relative;
	border: 1px solid #005EAD;
	margin: 0;
}
#btn_next:hover,
#btn_next:active,
#btn_next:focus {
	background-color: #005EAD;
	color: #FFF;
	box-shadow: none;
	margin: 0;
}

#btn_back {
	width: 260px;
	height: 56px;
	background-image: none;
	background-color: #FFF;
	border-radius: 64px;
	color: #005EAD;
	text-shadow: none;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 4%;
	text-align: center;
	text-transform: capitalize;
	box-shadow: none;
	position: relative;
	margin: 0;
	border: 1px solid #005EAD;
}
#btn_back:hover,
#btn_back:active,
#btn_back:focus {
	background-color: #FFF;
	color: #005EAD;
	box-shadow: none;
	margin: 0;
}

input[type="radio"] {
  width: 24px;
  height: 24px;
}

.td_none_total {
	border: none;
	background-color: #FFF;
}

.td_disp_total {
	border: 1px solid #D7D7D7;
}

.table_type7 tr.table-total td:first-child {
	border: none;
}

.cart_main label, .cart_main td, .cart_main th, .cart_main p, .simple_main label, .simple_main td, .simple_main th, .simple_main p {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 180%;
  letter-spacing: 0%;
}


.submit-btn-area {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 56px;
}

.submit-btn-area-row {
	width: 260px;
}


.cart_head {
	display: flex;
	width: 100%;
}
.error_text {
	width: 100%;
	padding-left: 24px;
	text-indent: -24px;
}
.error_text::before{
	content: "※";
	margin-right: 8px;
}


.cart_head_btn_area {
	width: 260px;
	margin-left: auto;
	margin-right: 0;
}


.pc-order-total {
	display: block;
}
.sp-order-total {
	display: none;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
@media (max-width: 1024px) {



	.top-section {
		margin-top: 150px;
		height: 147px;
	}


	.top-title {
		font-family: Noto Sans JP;
		font-weight: 500;
		font-style: Medium;
		font-size: 32px;
		leading-trim: NONE;
		line-height: 160%;
		letter-spacing: 0%;
		margin-bottom: 0;
	}


	#contents {
		padding: 0 24px 32px 24px;
	}

	#main_window {
		width:100%;
	}

	.cart_main {
		padding: 0;
		padding-top: 60px;
	}


	.cart_head {
		flex-wrap: wrap;
	}

	.cart_head_btn_area {
		margin: 0 auto;
	}

	#sub_content_area_detail h3, #main_content_area h3 {
		font-family: Noto Sans JP;
		font-weight: 700;
		font-style: Bold;
		font-size: 24px;
		leading-trim: NONE;
		line-height: 140%;
		letter-spacing: 4%;
	}


	.order-confirm {
		padding-bottom: 32px;
	}



	.cart-table {
		width: 1200px;
		max-width: auto;
	}

	.notes {
		font-family: Noto Sans JP;
		font-weight: 400;
		font-style: Regular;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 140%;
		letter-spacing: 0%;
		color: #F14346;
	}

	input[type="radio"] {
		width: 24px;
		height: 24px;
	}

	label {
		font-family: Noto Sans JP;
		font-weight: 400;
		font-style: Regular;
		font-size: 16px;
		leading-trim: NONE;
		line-height: 180%;
		letter-spacing: 0%;
	}

	.submit-btn-area {
		margin-top: 40px;
		flex-wrap: wrap;
	}

	.submit-btn-area-row {
		width: 100%;
	}

	.w200p {
		width:200px;
	}

	.cart-table {
		width: 1200px;
	}

	.pc-order-total {
		display: none !important;
	}
	.sp-order-total {
		display: block !important;
	}

}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
#main_window {
	width:100%;
}

.pc-order-total {
	display: contents;
}

.sp-order-total {
	display: none;
}


.cart-table {
	width: 100%;
	max-width: auto;
}

table {
	max-width: none;
}

.order-confirm td {
	text-align: center;
}
.order-confirm td:first-child + td {
	text-align: center;
}

.cart_num, 
.cart_code, 
.cart_date, 
.cart_price, 
.cart_inquiry, 
.cart_qty, 
.cart_sum, 
.cart_tax, 
.cart_all, 
.td_disp_total {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

	text-align: center;
}

.td_title_total {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}

.order-confirm td:first-child + td + td + td {
	text-align: center;
}

.td_disp_total, 
.td_title_total {
	#F3F8FC
}
.td_title_total {
	text-align: right;
}

.sp-order-total th {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

	border: 1px solid #D7D7D7;

	border-top-width: 1px !important;
	border-right-width: 1px !important;
	border-bottom-width: 1px !important;
	border-left-width: 1px !important;
	padding: 10px 0 10px 0;
}

.td_title_total {
	background-color: #F3F8FC;
	border: 1px solid #D7D7D7;
}

.th_total_head {
	background-color: #F5F5F5;
	border: 1px solid #D7D7D7;
}

.sp-order-total {
	margin-bottom: 24px;
}

.sp-order-total .td_title_total {
	text-align: center;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}



.notes {
	color: #F14346;
	margin-top: 24px;

	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

}

.notes .notes-text {
	width: 100%;
	padding-left: 24px;
	text-indent: -24px;

	margin-bottom: 8px;
}

.notes .notes-text::before {
	content: "※";
	margin-right: 8px;
}

label {
	display: flex;
	align-items: center;
}

.w98p {
	width:98px;
}
.w120p {
	width:120px;
}
.w200p {
	width:auto;
	max-width:200px;
}




.btn.btn-large {
	width: 260px;
	height: 56px;
	background-image: none;
	background-color: #FFF;
	border-radius: 64px;
	color: #005EAD;
	text-shadow: none;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 4%;
	text-align: center;
	text-transform: capitalize;
	box-shadow: none;
	position: relative;
	margin: 0;

	box-shadow: none !important;     /* 追加の線を無効化 */
	outline: none;                   /* 既定のフォーカス枠を消す（後で独自に付け直す） */
	-webkit-appearance: none;
	appearance: none;
	border-top-width: 1px !important;
	border-right-width: 1px !important;
	border-bottom-width: 1px !important;
	border-left-width: 1px !important;
}

.btn.btn_cart_delete {
	width: 76px;
	height: 28px;
	background-image: none;
	background-color: #005EAD;
	border-radius: 64px;
	color: #fff;
	text-shadow: none;
	text-align: center;
	text-transform: capitalize;
	box-shadow: none;
	position: relative;
	border: 1px solid #005EAD;
	margin: 0;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 14px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	padding: 0;

	box-shadow: none !important;     /* 追加の線を無効化 */
	outline: none;                   /* 既定のフォーカス枠を消す（後で独自に付け直す） */
	-webkit-appearance: none;
	appearance: none;
	border-top-width: 1px !important;
	border-right-width: 1px !important;
	border-bottom-width: 1px !important;
	border-left-width: 1px !important;
}

.table_type7 tr:first-child th, .table_type7 td:first-child {
	border-left: 1px solid #ccc;
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	color: #151515;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

	box-shadow: none !important;     /* 追加の線を無効化 */
	outline: none;                   /* 既定のフォーカス枠を消す（後で独自に付け直す） */
	-webkit-appearance: none;
	appearance: none;
	border-top-width: 1px !important;
	border-right-width: 1px !important;
	border-bottom-width: 1px !important;
	border-left-width: 1px !important;

	padding: 16px 0 16px 0;
}

}
.table_type7 th, .table_type7 td {
	text-align: center !important;
}
.table_type7 td:first-child {
	font-weight: 400;
	padding: 26px 8px;
}

.cart-back{
	border-color: #005EAD;
}
.empty-window{
	width: 100%;
}
.cart_error{
	padding-top: 0px;
	padding-bottom: 0px;
}

.sp-order-total {
	display: none;
}


.table_type_input1.shipping-address th,
.table_type_input1.shipping-address td {
	border: 1px solid #cccccc;
}
.table_type_input1.shipping-address th {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	padding: 24px;
	width: 320px;
	color: #151515;
}
.table_type_input1.shipping-address tr td {
	padding: 24px;
	color: #151515;
	background-color: #FFF;
	border: 1px solid #D7D7D7;
}


.table_type_input_form_customer th {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	padding: 24px;
	width: 320px;
	color: #151515;
}


.table_type_input_form_customer {
	width:100%;
}

.table_type_input_form_customer th {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	padding: 24px;
	width: 320px;

	color: #151515;
	background-color: #F5F5F5;
	border: 1px solid #D7D7D7;
}

.table_type_input_form_customer tr td {
	padding: 24px;
	padding-left: 24px;
	padding-right: 24px;

	color: #151515;
	background-color: #FFF;
	border: 1px solid #D7D7D7;
}
.table_type_input_form_customer td {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
	padding: 24px;
	padding-left: 24px;
	padding-right: 24px;

	color: #151515;
	background-color: #FFF;
	border: 1px solid #D7D7D7;
}

.table_type_input1 tr td span {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	color: #151515;
	
	width: 100%;
}

.name-all-area {
	display: flex;
	width: 100%;
	gap: 8px;
}
.name-area {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.name-area span{
	width: 100%;
}

.zip-area {
	display: flex;
	gap: 8px;
}

#order_zipcode_search {
	background-image: none;
	background-color: #9C9C9C;
	color: #fff;
	text-shadow: none;
	box-shadow: none;
	border-radius: 0;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	padding: 8px 16px;
	margin: 0;
}

#dest_list_select,
.table_type_input1 select,
#order_prefectures {
	border-color: 1px solid #aaa;
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	color: #151515;
	height: 45px;
	width: auto;
	margin: 0;
}

#dest_zipcode_search {
	padding: 8px 16px;
	border-radius: 0;
	border: none;
	background-image: none;
	background-color: #9C9C9C;
	color: #fff;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	text-shadow: none;
	box-shadow: none;
	margin: 0;
}

.customer-info td input[type="text"],
.customer-info td input[type="tel"],
.customer-info td input[type="email"] {
	border-color: 1px solid #aaa;

	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;

	color: #151515;
	height: 45px;
	width: 100%;
	margin: 0;
}

.user-info td label:first-child input[type="text"], 
.customer-info td label:first-child input[type="text"], 
.point-trade td label:first-child input[type="text"] {
	margin-right: 0;
}
.customer-info td.sep-name input[type="text"],
.customer-info td.sep-name input[type="tel"],
.customer-info td.sep-name input[type="email"] {
	width: 100%;
}

.ec_member_btn,
.ec_member_btn:hover,
.ec_member_btn:active,
.ec_member_btn:focus {
	width: 260px;
	height: 56px;
	background-image: none;
	background-color: #005EAD;
	border-radius: 64px;
	color: #fff;
	text-shadow: none;
	box-shadow: none;
	position: relative;
	border: 1px solid #005EAD;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	margin: 0;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: capitalize;
	padding: 0;
	top: 0;
}

.ec_btn_wrap {
	height: 0;
	text-align: right;
	top: 0;
	position: absolute;
	right: 0;
}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
@media (max-width: 1024px) {


	.customer-info tr th,
	.customer-info tr td{
		width:100%;
		display:block;
	}


	. sphauto {
		height: auto;
	}

	.spmb40p {
		margin-bottom: 40px;
	}

	.table_type_input_form_customer th {
		font-family: Noto Sans JP;
		font-weight: 700;
		font-style: Bold;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 140%;
		letter-spacing: 0%;
	}

	.table_type_input_form_customer th {
		padding: 16px;
	}

	.customer-info td > span {
		margin: 0;
		font-family: Noto Sans JP;
		font-weight: 400;
		font-style: Regular;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 180%;
		letter-spacing: 0%;
	}


	#order_zipcode_search {
		background-image: none;
		background-color: #9C9C9C;
		color: #fff;
		text-shadow: none;
		box-shadow: none;
		border-radius: 0;
		font-family: Noto Sans JP;
		font-weight: 700;
		font-style: Bold;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 180%;
		letter-spacing: 0%;
		padding: 8px 16px;
		margin: 0;
	}

	.table_type_input1 select,
	#order_prefectures {
		border-color: 1px solid #aaa;
		font-family: Noto Sans JP;
		font-weight: 400;
		font-style: Regular;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 180%;
		letter-spacing: 0%;
		color: #151515;
		height: 45px;
		width: 100%;
		margin: 0;
	}

	#dest_zipcode_search {
		padding: 8px 16px;
		border-radius: 0;
		border: none;
		background-image: none;
		background-color: #9C9C9C;
		color: #fff;
		font-family: Noto Sans JP;
		font-weight: 700;
		font-style: Bold;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 180%;
		letter-spacing: 0%;
		text-shadow: none;
		box-shadow: none;
		margin: 0;
	}

	.customer-info td input[type="text"],
	.customer-info td input[type="tel"],
	.customer-info td input[type="email"] {
		border-color: 1px solid #aaa;

		font-family: Noto Sans JP;
		font-weight: 400;
		font-style: Regular;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 180%;
		letter-spacing: 0%;

		color: #151515;
		height: 45px;
		width: 100%;
		margin: 0;
	}


	.table_type_input1 tr td span {
		font-family: Noto Sans JP;
		font-weight: 400;
		font-style: Regular;
		font-size: 14px;
		leading-trim: NONE;
		line-height: 180%;
		letter-spacing: 0%;
		color: #151515;
		width: 100%;
		margin: 0;
	}

	.name-all-area {
		flex-wrap: wrap;
	}


	.ec_btn_wrap {
		position: relative;
		height: auto;
		text-align: left;
	}

	.ec_member_btn {
		position: relative;
		top: auto;
		right: auto;
	}

}
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
/* LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */


.table_type_input1.payment-options {
	
}

.table_type_input1.payment-options th {
}

.table_type_input1.payment-options lavel.radio {
	margin:0;
	padding:0;
}

.table_type_input1.payment-options input[type="radio"] {
	margin-left: 0;
	margin-right: 0;
}

.radio input[type="radio"] {
	margin-left: 0;
	margin-right: 16px;
}

.radio {
	float: none;
	padding: 0;
	margin: 0;

	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

	
}

.radio input[type="radio"] {
	margin-right: 16px;
}

.type_inline th {
	color: #fff;
	background-color: #005EAD;

	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

}


.bw_bill_flg_area {
	display: flex;
}


.type_inline_bank tr th {
	color: #fff;
	background-color: #005EAD !important;

	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}
.type_inline_bank tr td {
	/*padding-left: 0.5em;
	padding-right: 0.5em;*/
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
}

.bw_bill_flg_area {
	display: flex;
	gap: 24px;
}

.bw_bill_flg {
	gap: 8px;
	display: flex;
	
}

.customer-info td label.radio {
	margin: 0;
}
.customer-info td label.radio INPUT {
	margin: 0;
}

.payment-table th {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}

.type_inline th {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}

.input[type="radio"] {
	margin: 0;
}

.payment-type-radio {
	margin: 0;
	gap: 16px;
	display: flex;

	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;

	align-items: flex-start;


}
.bw_bill_flg {
	margin: 0;
	gap: 8px;
	display: flex;
}


.bw_bill_flg_radio {
	gap: 8px;
	display: flex;

	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;

	margin: 0;
	width: auto;
	min-width: 64px;
}


.cc_card_type_radio_area {
	margin: 0;
	gap: 24px;
	display: flex;
}

.cc_card_type_radio_area {

}

.cc_card_type_radio {
	margin: 0;
	gap: 8px;
	display: flex;
}


.type_inline_card tr th {
	color: #fff;
	background-color: #005EAD !important;

	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}

.type_inline_card tr th.bgcg {
	color: #151515;
	background-color: #F5F5F5 !important;
	width: 150px;
	padding: 16px 24px 16px 24px;
}
.type_inline_card tr td {
	padding: 16px 24px 16px 24px;
}

#zeus_new_card_area,
#zeus_registerd_card_area, 
#zeus_new_card_are {
	margin: 0;
}

#zeus_new_card_area LABEL {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
}
#zeus_new_card_area INPUT {
	border: 1px solid #ccc;
	height: 45px;
	width: 100%;
}

.table_type_input1.payment-options tr th {
	width: 300px;
	background-color: #F5F5F5;
	padding: 24px;
}

.table_type_input1.payment-options tr td {
	font-family: Noto Sans JP;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 180%;
	letter-spacing: 0%;
	padding: 24px;
}

.modal-header {
	background-color: #D9EEFE;
	padding: 16px;
}

.modal-title {
	font-family: Noto Sans JP;
	font-weight: 700;
	font-style: Bold;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 140%;
	letter-spacing: 0%;
}

.modal-body .terms-block {
	background-color: #fff;
	border: none;
}

.modal-header .close {
}
.modal-header .close,
.modal-header .close:active,
.modal-header .close:hover,
.modal-header .close:focus {
  margin-top: 2px;
  width: 130px;
  height: 48px;
  border-radius: 64px;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 4%;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
  background-color: #005EAD;
  border: none;
  margin: 0;
  opacity: 1;
  text-shadow: none;
  box-shadow: none;
}


@media (max-width: 1024px) {
	.table_type_input1.payment-options tr th {
		width: 200px;
		font-size: 14px;
	}
	.table_type_input1.payment-options tr td {
		font-size: 14px;
	}
	.payment-table {
		width: 1038px;
	}

	.payment-type-radio {
		font-size: 14px;
	}
	.table_type_input1.payment-options tr td {
		font-size: 14px;
	}

	.table_type_input1.shipping-address th {
		width: 100%;
		font-size: 14px;
	}
}

.simplebar-placeholder {
	margin-top: 30px;
}