@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;600;700&display=swap");
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
	color: #1a1a2e;
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
a:hover {
	opacity: 0.75;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
	width: 100%;
}

input,
textarea,
select,
button {
	font-family: inherit;
	font-size: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	background: none;
}

button {
	cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.4;
}

.l-wrap {
	overflow-x: hidden;
	position: relative;
}

.l-main {
	padding-top: 80px;
}
@media screen and (max-width: 768px) {
	.l-main {
		padding-top: 60px;
	}
}

.l-inner {
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
}
@media screen and (max-width: 768px) {
	.l-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.l-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
@media screen and (max-width: 768px) {
	.l-grid-2 {
		grid-template-columns: 1fr;
	}
}

.l-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media screen and (max-width: 1024px) {
	.l-grid-3 {
		grid-template-columns: 1fr;
	}
}

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

@media screen and (max-width: 768px) {
	.u-sp-hidden {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.u-pc-only {
		display: none;
	}
}

.u-sp-only {
	display: none;
}
@media screen and (max-width: 768px) {
	.u-sp-only {
		display: inline;
	}
}

.l-main-content {
	position: relative;
	background: transparent;
}

.p-page-header {
	padding: 24px 40px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-page-header {
		padding: 16px 16px;
	}
}
.p-page-header__en {
	display: block;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 0.72rem;
	font-weight: 400;
	letter-spacing: 0.28em;
	color: #c9a84c;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.p-page-header__title, .p-shop-header__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.12em;
	line-height: 1.4;
}
.p-page-header__title::after, .p-shop-header__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(#c9a84c), to(#f0d080));
	background: -webkit-linear-gradient(left, #c9a84c, #f0d080);
	background: linear-gradient(90deg, #c9a84c, #f0d080);
	margin: 10px auto 0;
}
.p-page-header__sub {
	margin-top: 8px;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.l-page-section {
	padding-top: 0;
	padding-bottom: 0;
	background: rgba(13, 27, 42, 0.04);
}

.l-page-body {
	background: #ffffff;
	padding: 64px 40px;
	border-radius: 2px;
	min-height: calc(100vh - 230px);
}
@media screen and (max-width: 768px) {
	.l-page-body {
		padding: 24px 16px;
		min-height: calc(100vh - 196px);
	}
}

.l-inner--narrow {
	max-width: 900px;
}

.l-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 999;
	background: #ffffff;
	border-bottom: 1px solid #dde3ea;
	-webkit-transition: -webkit-box-shadow 0.3s ease;
	transition: -webkit-box-shadow 0.3s ease;
	transition: box-shadow 0.3s ease;
	transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.l-header.is-scrolled {
	-webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
	.l-header {
		height: 60px;
	}
}
.l-header > .l-inner {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 24px;
}

.l-header__logo {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.l-header__logo a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
.l-header__logo a:hover {
	opacity: 0.8;
}
.l-header__logo img {
	height: 38px;
	width: auto;
}
@media screen and (max-width: 768px) {
	.l-header__logo img {
		height: 28px;
	}
}
.l-header__logo .logo-text {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #0d1b2a;
	letter-spacing: 0.05em;
	white-space: nowrap;
}
.l-header__logo .logo-text span {
	color: #c9a84c;
}

.l-header__nav {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
@media screen and (max-width: 1024px) {
	.l-header__nav {
		display: none;
	}
}

.l-header__nav-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.l-header__nav-item {
	position: relative;
}
.l-header__nav-item > a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 80px;
	padding: 0 16px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1a1a2e;
	letter-spacing: 0.04em;
	opacity: 1;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.l-header__nav-item > a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: #c9a84c;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: width 0.3s ease;
	transition: width 0.3s ease;
}
.l-header__nav-item > a:hover {
	color: #0d1b2a;
	opacity: 1;
}
.l-header__nav-item > a:hover::after {
	width: 80%;
}
.l-header__nav-item.is-active > a {
	color: #0d1b2a;
	font-weight: 600;
}
.l-header__nav-item.is-active > a::after {
	width: 80%;
}

.l-header__member {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.member-info {
	text-align: right;
	line-height: 1.3;
}
@media screen and (max-width: 768px) {
	.member-info {
		display: none;
	}
}
.member-info .member-id {
	display: block;
	font-size: 0.7rem;
	color: #7a8a9a;
	letter-spacing: 0.04em;
}
.member-info .member-name {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #0d1b2a;
}

.member-mailbox {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: #0d1b2a;
	cursor: pointer;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.member-mailbox:hover {
	color: #c9a84c;
}
.member-mailbox svg {
	width: 20px;
	height: 20px;
}
.member-mailbox .badge {
	position: absolute;
	top: 0;
	right: -2px;
	min-width: 16px;
	height: 16px;
	padding: 0 3px;
	background: #c9a84c;
	color: #0d1b2a;
	font-size: 0.6rem;
	font-weight: 700;
	border-radius: 8px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.l-header__hamburger {
	display: none;
}
@media screen and (max-width: 1024px) {
	.l-header__hamburger {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 24px;
		height: 18px;
		cursor: pointer;
		background: none;
		border: none;
		padding: 0;
		z-index: 1000;
	}
	.l-header__hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background: #0d1b2a;
		border-radius: 2px;
		-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
		transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
		transition: transform 0.3s ease, opacity 0.3s ease;
		transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
		-webkit-transform-origin: center;
		transform-origin: center;
	}
	.l-header__hamburger.is-open span:nth-child(1) {
		-webkit-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
	}
	.l-header__hamburger.is-open span:nth-child(2) {
		opacity: 0;
	}
	.l-header__hamburger.is-open span:nth-child(3) {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
	}
}

.l-drawer {
	display: none;
}
@media screen and (max-width: 1024px) {
	.l-drawer {
		display: block;
		position: fixed;
		top: 60px;
		right: 0;
		width: 280px;
		height: calc(100vh - 60px);
		background: #0d1b2a;
		z-index: 100;
		overflow-y: auto;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}
	.l-drawer.is-open {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.l-drawer__inner {
	padding: 24px;
}

.l-drawer__member {
	padding: 16px;
	margin-bottom: 24px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 4px;
}
.l-drawer__member .member-id {
	font-size: 0.7rem;
	color: #c9a84c;
	letter-spacing: 0.04em;
}
.l-drawer__member .member-name {
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	margin-top: 2px;
}

.l-drawer__nav-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0;
}
.l-drawer__nav-list li a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 14px 8px;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	-webkit-transition: color 0.2s ease, padding-left 0.2s ease;
	transition: color 0.2s ease, padding-left 0.2s ease;
}
.l-drawer__nav-list li a:hover {
	color: #c9a84c;
	padding-left: 16px;
	opacity: 1;
}

.l-drawer-overlay {
	display: none;
}
@media screen and (max-width: 1024px) {
	.l-drawer-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 99;
		opacity: 0;
		pointer-events: none;
		-webkit-transition: opacity 0.35s ease;
		transition: opacity 0.35s ease;
	}
	.l-drawer-overlay.is-open {
		opacity: 1;
		pointer-events: auto;
	}
}

.l-footer {
	background: #0d1b2a;
	color: rgba(255, 255, 255, 0.75);
}
.l-footer::before {
	content: "";
	display: block;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#c9a84c), to(transparent));
	background: -webkit-linear-gradient(left, transparent, #c9a84c, transparent);
	background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.l-footer__disclaimer {
	padding: 40px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.l-footer__disclaimer > .l-inner .disclaimer__title {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #c9a84c;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}
.l-footer__disclaimer > .l-inner .disclaimer__title::before {
	content: "【";
}
.l-footer__disclaimer > .l-inner .disclaimer__title::after {
	content: "】";
}
.l-footer__disclaimer > .l-inner .disclaimer__text {
	font-size: 0.75rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.55);
}
.l-footer__disclaimer > .l-inner .disclaimer__text em {
	font-style: normal;
	color: rgba(255, 255, 255, 0.8);
}

.l-footer__main {
	padding: 64px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.l-footer__main > .l-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
@media screen and (max-width: 1024px) {
	.l-footer__main > .l-inner {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
}
@media screen and (max-width: 768px) {
	.l-footer__main > .l-inner {
		grid-template-columns: 1fr;
	}
}

.footer-logo {
	grid-column: 1/-1;
	margin-bottom: 4px;
}
.footer-logo a {
	display: inline-block;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
.footer-logo a:hover {
	opacity: 0.75;
}
.footer-logo img {
	height: 40px;
	width: auto;
}

.footer-nav__col .footer-nav__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 0.8rem;
	font-weight: 600;
	color: #c9a84c;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}
.footer-nav__col ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
}
.footer-nav__col ul li a {
	display: block;
	padding: 6px 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.65);
	-webkit-transition: color 0.2s ease, padding-left 0.2s ease;
	transition: color 0.2s ease, padding-left 0.2s ease;
	opacity: 1;
}
.footer-nav__col ul li a:hover {
	color: #c9a84c;
	padding-left: 6px;
	opacity: 1;
}

.l-footer__copy {
	padding: 24px 16px;
}
.l-footer__copy > .l-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 8px;
}
@media screen and (max-width: 768px) {
	.l-footer__copy > .l-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}
.l-footer__copy .copy-info {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.4);
	line-height: 1.7;
}
.l-footer__copy .copy-text {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.4);
}

[class^=c-btn] {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 36px;
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	border-radius: 2px;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	-webkit-transition: background 0.3s ease, color 0.25s ease, border-color 0.25s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.15s ease;
	transition: background 0.3s ease, color 0.25s ease, border-color 0.25s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.15s ease;
	transition: background 0.3s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease, transform 0.15s ease;
	transition: background 0.3s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.3s ease, transform 0.15s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.15s ease;
}
[class^=c-btn]:active {
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}
[class^=c-btn].is-sm {
	padding: 9px 22px;
	font-size: 0.8rem;
}
[class^=c-btn].is-lg {
	padding: 18px 52px;
	font-size: 1.05rem;
}
[class^=c-btn].is-full {
	width: 100%;
}
[class^=c-btn] .btn-arrow {
	display: inline-block;
	-webkit-transition: -webkit-transform 0.25s ease;
	transition: -webkit-transform 0.25s ease;
	transition: transform 0.25s ease;
	transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
[class^=c-btn]:hover .btn-arrow {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
}

.c-btn-gold {
	background: -webkit-linear-gradient(315deg, #9a7a30 0%, #c9a84c 40%, #f0d080 60%, #c9a84c 100%);
	background: linear-gradient(135deg, #9a7a30 0%, #c9a84c 40%, #f0d080 60%, #c9a84c 100%);
	background-size: 200% auto;
	color: #0d1b2a;
	border-color: transparent;
	-webkit-box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.c-btn-gold:hover {
	background-position: right center;
	-webkit-box-shadow: 0 6px 30px rgba(201, 168, 76, 0.55);
	box-shadow: 0 6px 30px rgba(201, 168, 76, 0.55);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	opacity: 1;
}
.c-btn-gold:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
	box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
}

.c-btn-navy {
	background: #0d1b2a;
	color: #ffffff;
	border-color: #0d1b2a;
}
.c-btn-navy:hover {
	background: #1a3a5c;
	border-color: #1a3a5c;
	-webkit-box-shadow: 0 4px 16px rgba(13, 27, 42, 0.35);
	box-shadow: 0 4px 16px rgba(13, 27, 42, 0.35);
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	opacity: 1;
}

.c-btn-outline {
	background: transparent;
	color: #0d1b2a;
	border-color: #0d1b2a;
}
.c-btn-outline:hover {
	background: #0d1b2a;
	color: #ffffff;
	opacity: 1;
}

.c-btn-ghost {
	background: transparent;
	color: #c9a84c;
	border-color: rgba(201, 168, 76, 0.35);
}
.c-btn-ghost:hover {
	background: #c9a84c;
	color: #0d1b2a;
	border-color: #c9a84c;
	-webkit-box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
	opacity: 1;
}

.c-btn-text {
	background: transparent;
	color: #0d1b2a;
	border-color: transparent;
	padding-left: 0;
	padding-right: 0;
	font-size: 0.85rem;
	position: relative;
}
.c-btn-text::after {
	content: "";
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #c9a84c;
	-webkit-transform: scaleX(0.4);
	transform: scaleX(0.4);
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-btn-text:hover {
	color: #c9a84c;
	opacity: 1;
}
.c-btn-text:hover::after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

@media screen and (max-width: 768px) {
	[class^=c-btn] {
		width: 95%;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
		white-space: nowrap;
		font-size: clamp(0.72rem, 3.6vw, 0.9rem);
		padding: 13px 16px;
	}
	[class^=c-btn].is-lg {
		font-size: clamp(0.75rem, 3.8vw, 1.05rem);
		padding: 15px 16px;
	}
	[class^=c-btn].is-sm {
		font-size: clamp(0.68rem, 3.2vw, 0.8rem);
		padding: 9px 14px;
	}
	[class^=c-btn].c-btn-text {
		width: auto;
		margin-left: 0;
		margin-right: 0;
	}
}
.c-pagination {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 8px;
	margin-top: 64px;
}

.c-pagination__item a,
.c-pagination__item span {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1a1a2e;
	border: 1px solid #dde3ea;
	border-radius: 2px;
	-webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	opacity: 1;
}
.c-pagination__item a:hover,
.c-pagination__item span:hover {
	border-color: #0d1b2a;
	color: #0d1b2a;
	opacity: 1;
}
.c-pagination__item.is-current span {
	background: #0d1b2a;
	color: #ffffff;
	border-color: #0d1b2a;
}

.c-form-group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

.c-form-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #0d1b2a;
	letter-spacing: 0.03em;
}
.c-form-label .required {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	background: #d94f4f;
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: 2px;
	vertical-align: middle;
}
.c-form-label .optional {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	background: #f5f7fa;
	color: #7a8a9a;
	font-size: 0.65rem;
	border-radius: 2px;
	vertical-align: middle;
}

.c-form-current {
	font-size: 0.875rem;
	color: #7a8a9a;
}
.c-form-current span {
	font-weight: 500;
	color: #1a1a2e;
}

.c-input, .c-password-input input,
.c-select,
.c-textarea {
	width: 100%;
	padding: 12px 16px;
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-radius: 2px;
	font-size: 1rem;
	color: #1a1a2e;
	-webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
	transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.c-input::-webkit-input-placeholder, .c-password-input input::-webkit-input-placeholder, .c-select::-webkit-input-placeholder, .c-textarea::-webkit-input-placeholder {
	color: #7a8a9a;
	opacity: 0.7;
}
.c-input::-moz-placeholder, .c-password-input input::-moz-placeholder, .c-select::-moz-placeholder, .c-textarea::-moz-placeholder {
	color: #7a8a9a;
	opacity: 0.7;
}
.c-input:-ms-input-placeholder, .c-password-input input:-ms-input-placeholder, .c-select:-ms-input-placeholder, .c-textarea:-ms-input-placeholder {
	color: #7a8a9a;
	opacity: 0.7;
}
.c-input::-ms-input-placeholder, .c-password-input input::-ms-input-placeholder, .c-select::-ms-input-placeholder, .c-textarea::-ms-input-placeholder {
	color: #7a8a9a;
	opacity: 0.7;
}
.c-input::placeholder, .c-password-input input::placeholder,
.c-select::placeholder,
.c-textarea::placeholder {
	color: #7a8a9a;
	opacity: 0.7;
}
.c-input:focus, .c-password-input input:focus,
.c-select:focus,
.c-textarea:focus {
	border-color: #c9a84c;
	-webkit-box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
	outline: none;
}
.c-input.is-error, .c-password-input input.is-error,
.c-select.is-error,
.c-textarea.is-error {
	border-color: #e94c55;
	-webkit-box-shadow: 0 0 0 3px rgba(233, 76, 85, 0.12);
	box-shadow: 0 0 0 3px rgba(233, 76, 85, 0.12);
}
.c-input:-moz-read-only, .c-password-input input:-moz-read-only, .c-select:-moz-read-only, .c-textarea:-moz-read-only {
	background: #f5f7fa;
	color: #7a8a9a;
	cursor: default;
}
.c-input:read-only, .c-password-input input:read-only,
.c-select:read-only,
.c-textarea:read-only {
	background: #f5f7fa;
	color: #7a8a9a;
	cursor: default;
}

.c-select-wrap {
	position: relative;
}
.c-select-wrap .c-select {
	padding-right: 40px;
	cursor: pointer;
}
.c-select-wrap::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-right: 2px solid #0d1b2a;
	border-bottom: 2px solid #0d1b2a;
	rotate: 45deg;
	pointer-events: none;
}

.c-textarea {
	min-height: 160px;
	resize: vertical;
	line-height: 1.7;
}

.c-password-input {
	position: relative;
}
.c-password-input input {
	padding-right: 48px;
	letter-spacing: 0.3em;
	font-size: 1.2rem;
	text-align: center;
}
.c-password-input .toggle-visible {
	position: absolute;
	right: 14px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #7a8a9a;
	cursor: pointer;
	padding: 4px;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.c-password-input .toggle-visible:hover {
	color: #0d1b2a;
}

.c-form-error {
	font-size: 0.8rem;
	color: #e94c55;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
	margin-top: 4px;
}
.c-form-error::before {
	content: "⚠";
	font-size: 0.75rem;
}

.c-form-submit {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 40px;
}
.c-form-submit .c-btn-gold {
	min-width: 280px;
}
@media screen and (max-width: 768px) {
	.c-form-submit .c-btn-gold {
		width: 100%;
	}
}

.c-form-card {
	background: #ffffff;
	border-radius: 4px;
	border-top: 3px solid #c9a84c;
	-webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	padding: 64px;
}
@media screen and (max-width: 768px) {
	.c-form-card {
		padding: 24px;
	}
}

.c-checkbox,
.c-radio {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 0.9rem;
	color: #1a1a2e;
}
.c-checkbox input[type=checkbox],
.c-checkbox input[type=radio],
.c-radio input[type=checkbox],
.c-radio input[type=radio] {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	border: 2px solid #dde3ea;
	border-radius: 2px;
	background: #ffffff;
	cursor: pointer;
	-webkit-transition: border-color 0.2s ease, background 0.2s ease;
	transition: border-color 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
}
.c-checkbox input[type=checkbox]:checked,
.c-checkbox input[type=radio]:checked,
.c-radio input[type=checkbox]:checked,
.c-radio input[type=radio]:checked {
	background: #0d1b2a;
	border-color: #0d1b2a;
}
.c-checkbox input[type=checkbox]:checked::after,
.c-checkbox input[type=radio]:checked::after,
.c-radio input[type=checkbox]:checked::after,
.c-radio input[type=radio]:checked::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 10px;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.c-checkbox input[type=radio],
.c-radio input[type=radio] {
	border-radius: 50%;
}
.c-checkbox input[type=radio]:checked::after,
.c-radio input[type=radio]:checked::after {
	content: "";
	position: absolute;
	left: 3px;
	top: 3px;
	width: 8px;
	height: 8px;
	background: #ffffff;
	border-radius: 50%;
	border: none;
	-webkit-transform: none;
	transform: none;
}

.bg-particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
	overflow: hidden;
}
.bg-particles svg {
	width: 100%;
	height: 100%;
}
.bg-particles .particle {
	fill: rgba(255, 255, 255, 0.8);
	opacity: 0;
	-webkit-animation: particle-float 8s ease-in-out infinite;
	animation: particle-float 8s ease-in-out infinite;
}
.bg-particles .particle:nth-child(1) {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-duration: 6.3s;
	animation-duration: 6.3s;
}
.bg-particles .particle:nth-child(2) {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	-webkit-animation-duration: 6.6s;
	animation-duration: 6.6s;
}
.bg-particles .particle:nth-child(3) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
	-webkit-animation-duration: 6.9s;
	animation-duration: 6.9s;
}
.bg-particles .particle:nth-child(4) {
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
	-webkit-animation-duration: 7.2s;
	animation-duration: 7.2s;
}
.bg-particles .particle:nth-child(5) {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-duration: 7.5s;
	animation-duration: 7.5s;
}
.bg-particles .particle:nth-child(6) {
	-webkit-animation-delay: 2.4s;
	animation-delay: 2.4s;
	-webkit-animation-duration: 7.8s;
	animation-duration: 7.8s;
}
.bg-particles .particle:nth-child(7) {
	-webkit-animation-delay: 2.8s;
	animation-delay: 2.8s;
	-webkit-animation-duration: 8.1s;
	animation-duration: 8.1s;
}
.bg-particles .particle:nth-child(8) {
	-webkit-animation-delay: 3.2s;
	animation-delay: 3.2s;
	-webkit-animation-duration: 8.4s;
	animation-duration: 8.4s;
}
.bg-particles .particle:nth-child(9) {
	-webkit-animation-delay: 3.6s;
	animation-delay: 3.6s;
	-webkit-animation-duration: 8.7s;
	animation-duration: 8.7s;
}
.bg-particles .particle:nth-child(10) {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
}
.bg-particles .particle:nth-child(11) {
	-webkit-animation-delay: 4.4s;
	animation-delay: 4.4s;
	-webkit-animation-duration: 9.3s;
	animation-duration: 9.3s;
}
.bg-particles .particle:nth-child(12) {
	-webkit-animation-delay: 4.8s;
	animation-delay: 4.8s;
	-webkit-animation-duration: 9.6s;
	animation-duration: 9.6s;
}
.bg-particles .particle:nth-child(13) {
	-webkit-animation-delay: 5.2s;
	animation-delay: 5.2s;
	-webkit-animation-duration: 9.9s;
	animation-duration: 9.9s;
}
.bg-particles .particle:nth-child(14) {
	-webkit-animation-delay: 5.6s;
	animation-delay: 5.6s;
	-webkit-animation-duration: 10.2s;
	animation-duration: 10.2s;
}
.bg-particles .particle:nth-child(15) {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
	-webkit-animation-duration: 10.5s;
	animation-duration: 10.5s;
}
.bg-particles .particle:nth-child(16) {
	-webkit-animation-delay: 6.4s;
	animation-delay: 6.4s;
	-webkit-animation-duration: 10.8s;
	animation-duration: 10.8s;
}
.bg-particles .particle:nth-child(17) {
	-webkit-animation-delay: 6.8s;
	animation-delay: 6.8s;
	-webkit-animation-duration: 11.1s;
	animation-duration: 11.1s;
}
.bg-particles .particle:nth-child(18) {
	-webkit-animation-delay: 7.2s;
	animation-delay: 7.2s;
	-webkit-animation-duration: 11.4s;
	animation-duration: 11.4s;
}
.bg-particles .particle:nth-child(19) {
	-webkit-animation-delay: 7.6s;
	animation-delay: 7.6s;
	-webkit-animation-duration: 11.7s;
	animation-duration: 11.7s;
}
.bg-particles .particle:nth-child(20) {
	-webkit-animation-delay: 8s;
	animation-delay: 8s;
	-webkit-animation-duration: 12s;
	animation-duration: 12s;
}
.bg-particles .particle-line {
	stroke: #c9a84c;
	stroke-width: 0.5;
	opacity: 0;
	-webkit-animation: particle-line-fade 6s ease-in-out infinite;
	animation: particle-line-fade 6s ease-in-out infinite;
}
.bg-particles .particle-line:nth-child(1) {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.bg-particles .particle-line:nth-child(2) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.bg-particles .particle-line:nth-child(3) {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
.bg-particles .particle-line:nth-child(4) {
	-webkit-animation-delay: 2.4s;
	animation-delay: 2.4s;
}
.bg-particles .particle-line:nth-child(5) {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}
.bg-particles .particle-line:nth-child(6) {
	-webkit-animation-delay: 3.6s;
	animation-delay: 3.6s;
}
.bg-particles .particle-line:nth-child(7) {
	-webkit-animation-delay: 4.2s;
	animation-delay: 4.2s;
}
.bg-particles .particle-line:nth-child(8) {
	-webkit-animation-delay: 4.8s;
	animation-delay: 4.8s;
}
.bg-particles .particle-line:nth-child(9) {
	-webkit-animation-delay: 5.4s;
	animation-delay: 5.4s;
}
.bg-particles .particle-line:nth-child(10) {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}

@-webkit-keyframes particle-float {
	0% {
		opacity: 0;
		-webkit-transform: translateY(0) scale(0.5);
		transform: translateY(0) scale(0.5);
	}
	20% {
		opacity: 0.4;
	}
	80% {
		opacity: 0.15;
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-80px) scale(1.2);
		transform: translateY(-80px) scale(1.2);
	}
}

@keyframes particle-float {
	0% {
		opacity: 0;
		-webkit-transform: translateY(0) scale(0.5);
		transform: translateY(0) scale(0.5);
	}
	20% {
		opacity: 0.4;
	}
	80% {
		opacity: 0.15;
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-80px) scale(1.2);
		transform: translateY(-80px) scale(1.2);
	}
}
@-webkit-keyframes particle-line-fade {
	0%, 100% {
		opacity: 0;
	}
	50% {
		opacity: 0.12;
	}
}
@keyframes particle-line-fade {
	0%, 100% {
		opacity: 0;
	}
	50% {
		opacity: 0.12;
	}
}
.bg-fixed-navy {
	position: relative;
	background: -webkit-radial-gradient(30% 50%, ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 65%), -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
	background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 65%), linear-gradient(135deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
	background-attachment: fixed;
	color: #ffffff;
}

.js-fade {
	opacity: 0;
	-webkit-transform: translateY(24px);
	transform: translateY(24px);
	-webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
	transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.js-fade.is-visible {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.js-fade-left {
	opacity: 0;
	-webkit-transform: translateX(-24px);
	transform: translateX(-24px);
	-webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
	transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.js-fade-left.is-visible {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.js-fade-right {
	opacity: 0;
	-webkit-transform: translateX(24px);
	transform: translateX(24px);
	-webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
	transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.js-fade-right.is-visible {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.js-fade[style*="--delay"],
.js-fade-left[style*="--delay"],
.js-fade-right[style*="--delay"] {
	-webkit-transition-delay: var(--delay, 0s);
	transition-delay: var(--delay, 0s);
}

.hover-lift {
	-webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
	transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.hover-lift:hover {
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
	-webkit-box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.hover-gold-glow {
	-webkit-transition: -webkit-box-shadow 0.3s ease;
	transition: -webkit-box-shadow 0.3s ease;
	transition: box-shadow 0.3s ease;
	transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.hover-gold-glow:hover {
	-webkit-box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35), 0 4px 20px rgba(201, 168, 76, 0.15);
	box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35), 0 4px 20px rgba(201, 168, 76, 0.15);
}

.hover-zoom {
	overflow: hidden;
}
.hover-zoom img {
	-webkit-transition: -webkit-transform 0.5s ease;
	transition: -webkit-transform 0.5s ease;
	transition: transform 0.5s ease;
	transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.hover-zoom:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.page-loader {
	position: fixed;
	inset: 0;
	background: #0d1b2a;
	z-index: 1100;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	-webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.is-loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.page-loader .loader-logo {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.2rem;
	color: #ffffff;
	letter-spacing: 0.15em;
}
.page-loader .loader-logo span {
	color: #c9a84c;
}
.page-loader .loader-logo img {
	height: 28px;
	width: auto;
}
.page-loader .loader-spinner {
	width: 40px;
	height: 40px;
	border: 2px solid rgba(201, 168, 76, 0.2);
	border-top-color: #c9a84c;
	border-radius: 50%;
	-webkit-animation: spin 0.8s linear infinite;
	animation: spin 0.8s linear infinite;
}

@-webkit-keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.text-shine {
	background: -webkit-gradient(linear, left top, right top, from(#c9a84c), color-stop(40%, #f0d080), color-stop(60%, #c9a84c), to(#f0d080));
	background: -webkit-linear-gradient(left, #c9a84c 0%, #f0d080 40%, #c9a84c 60%, #f0d080 100%);
	background: linear-gradient(90deg, #c9a84c 0%, #f0d080 40%, #c9a84c 60%, #f0d080 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-animation: text-shine 3s linear infinite;
	animation: text-shine 3s linear infinite;
}

@-webkit-keyframes text-shine {
	0% {
		background-position: 0% center;
	}
	100% {
		background-position: 200% center;
	}
}

@keyframes text-shine {
	0% {
		background-position: 0% center;
	}
	100% {
		background-position: 200% center;
	}
}
.count-up {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-variant-numeric: tabular-nums;
}

.swiper {
	--swiper-theme-color: #c9a84c;
	--swiper-pagination-color: #c9a84c;
}
.swiper .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.4);
	opacity: 1;
	-webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
	transition: background 0.2s ease, -webkit-transform 0.2s ease;
	transition: background 0.2s ease, transform 0.2s ease;
	transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.swiper .swiper-pagination-bullet-active {
	background: #c9a84c !important;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.4) !important;
	opacity: 1 !important;
}
.swiper-pagination-bullet-active {
	background: #c9a84c !important;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
	width: 44px;
	height: 44px;
	background: rgba(13, 27, 42, 0.7);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 2px;
	color: #c9a84c;
	-webkit-transition: background 0.2s ease;
	transition: background 0.2s ease;
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
	font-size: 14px;
	font-weight: 700;
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
	background: rgba(201, 168, 76, 0.2);
}

.p-hero {
	overflow: hidden;
}
.p-hero .swiper {
	overflow: visible;
}
.p-hero__slide {
	width: 1184px;
}
@media (max-width: 1184px) and (min-width: 769px) {
	.p-hero__slide {
		width: 90vw;
	}
}
@media screen and (max-width: 768px) {
	.p-hero__slide {
		width: 100%;
	}
}
.p-hero__img {
	display: block;
	width: 100%;
	height: auto;
}
.p-hero .swiper-button-prev,
.p-hero .swiper-button-next {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media (max-width: 768px) {
	.p-hero .swiper-button-prev,
	.p-hero .swiper-button-next {
		display: none;
	}
}
.p-hero .swiper-button-prev {
	left: calc(50% - 592px - 24px);
}
@media (max-width: 1184px) and (min-width: 769px) {
	.p-hero .swiper-button-prev {
		left: calc(50% - 45vw - 24px);
	}
}
.p-hero .swiper-button-next {
	right: calc(50% - 592px - 24px);
}
@media (max-width: 1184px) and (min-width: 769px) {
	.p-hero .swiper-button-next {
		right: calc(50% - 45vw - 24px);
	}
}

.p-hero__thumbs {
	display: none;
}
@media (min-width: 769px) {
	.p-hero__thumbs {
		display: block;
		background: #0d1b2a;
		padding: 10px 0;
	}
}
.p-hero__thumbs .swiper {
	max-width: 1184px;
	margin: 0 auto;
	padding: 0;
}
@media (max-width: 1184px) and (min-width: 769px) {
	.p-hero__thumbs .swiper {
		max-width: 90vw;
	}
}

.p-hero__thumb-slide {
	cursor: pointer;
	opacity: 0.45;
	border: 2px solid transparent;
	border-radius: 2px;
	-webkit-transition: opacity 0.3s ease, border-color 0.3s ease;
	transition: opacity 0.3s ease, border-color 0.3s ease;
	overflow: hidden;
}
.p-hero__thumb-slide img {
	display: block;
	width: 100%;
	height: auto;
}
.p-hero__thumb-slide.swiper-slide-thumb-active {
	opacity: 1;
	border-color: #c9a84c;
}
.p-hero__thumb-slide:hover {
	opacity: 0.75;
}
.p-hero__thumb-slide.swiper-slide-thumb-active:hover {
	opacity: 1;
}

.p-split {
	padding: 96px 0;
}
@media screen and (max-width: 768px) {
	.p-split {
		padding: 64px 0;
	}
}
.p-split__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (max-width: 1024px) {
	.p-split__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.p-split__grid .p-split__img {
		-webkit-box-ordinal-group: 1;
		-webkit-order: 0;
		-ms-flex-order: 0;
		order: 0;
	}
	.p-split__grid .p-split__body {
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		-ms-flex-order: 1;
		order: 1;
	}
}
.p-split__band {
	max-width: 1300px;
	margin-left: 0;
	margin-right: auto;
	padding: 96px 0;
}
@media screen and (max-width: 768px) {
	.p-split__band {
		padding: 64px 0;
	}
}
.p-split__band--navy {
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.93) 0%, rgba(26, 58, 92, 0.9) 50%, rgba(13, 27, 42, 0.93) 100%), url("../img/top/bk01.jpg") center center/cover no-repeat;
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.93) 0%, rgba(26, 58, 92, 0.9) 50%, rgba(13, 27, 42, 0.93) 100%), url("../img/top/bk01.jpg") center center/cover no-repeat;
}
.p-split__band--navy-img {
	background: -webkit-linear-gradient(315deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.75) 100%), url("../img/top/bk03.jpg") center center/cover no-repeat;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.75) 100%), url("../img/top/bk03.jpg") center center/cover no-repeat;
}
.p-split__band--gray {
	background: #f5f7fa;
}
.p-split > .l-inner {
	max-width: 1300px;
	margin-left: auto;
	margin-right: 0;
	padding-top: 96px;
	padding-bottom: 96px;
	background: rgba(13, 27, 42, 0.15);
}
@media screen and (max-width: 768px) {
	.p-split > .l-inner {
		padding-top: 64px;
		padding-bottom: 64px;
		margin-right: 0;
	}
}
.p-split--white > .l-inner {
	background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 242, 245, 0.85) 50%, rgba(255, 255, 255, 0.88) 100%), url("../img/top/bk02.jpg") center center/cover no-repeat;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 242, 245, 0.85) 50%, rgba(255, 255, 255, 0.88) 100%), url("../img/top/bk02.jpg") center center/cover no-repeat;
}
.p-split--white-04 > .l-inner {
	background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 242, 245, 0.85) 50%, rgba(255, 255, 255, 0.88) 100%), url("../img/top/bk04.jpg") center center/cover no-repeat;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 242, 245, 0.85) 50%, rgba(255, 255, 255, 0.88) 100%), url("../img/top/bk04.jpg") center center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
	.p-split__img--sp-top {
		-webkit-box-ordinal-group: 0;
		-webkit-order: -1;
		-ms-flex-order: -1;
		order: -1;
	}
}
.p-split__img {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	min-height: 320px;
	border-top: 4px solid rgba(201, 168, 76, 0.75);
}
.p-split__img img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.p-split__img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(13, 27, 42, 0.38);
	pointer-events: none;
}
.p-split__img:not(:has(img)) {
	background-color: #f5e6a3;
}
@media screen and (max-width: 1024px) {
	.p-split__img {
		min-height: 200px;
	}
}
.p-split--first {
	padding-top: 0;
}
.p-split--rev .p-split__grid .p-split__img {
	-webkit-box-ordinal-group: 1;
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
}
.p-split--rev .p-split__grid .p-split__body {
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
}
.p-split__en {
	display: block;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.25em;
	color: #c9a84c;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.p-split__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 16px;
	color: #0d1b2a;
}
.p-split__band--navy .p-split__title, .p-split__band--navy-img .p-split__title {
	color: #ffffff;
}
.p-split__text {
	font-size: 0.95rem;
	line-height: 1.9;
	margin-bottom: 40px;
	color: #4a5568;
}
.p-split__band--navy .p-split__text, .p-split__band--navy-img .p-split__text {
	color: rgba(255, 255, 255, 0.85);
}

.p-track {
	padding: 96px 0;
}
@media screen and (max-width: 768px) {
	.p-track {
		padding: 64px 0;
	}
}
.p-track__head {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.p-track__head {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 24px;
	}
}
.p-track__head-text .p-split__title {
	margin-bottom: 8px;
}
.p-track__head-text .p-split__text {
	margin-bottom: 0;
}
.p-track__more-btn {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	white-space: nowrap;
}
.p-track__swiper-wrap {
	overflow: hidden;
	width: 100%;
}
.p-track .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
.p-track .swiper-slide:hover img {
	opacity: 0.7;
}
.p-track__dots {
	position: static !important;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
}
.p-track__dots .swiper-pagination-bullet {
	background: #dde3ea;
	opacity: 1;
}
.p-track__dots .swiper-pagination-bullet-active {
	background: #c9a84c;
}

.p-notice__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 8px 0;
}
.p-notice .js-hero-pagination {
	position: static;
	width: auto;
}

.p-mail-alert {
	background: transparent;
	padding: 96px 0;
}
.p-mail-alert__link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 8px;
	color: #1a1a2e;
	font-size: clamp(1.1rem, 2.2vw, 1.5rem);
	background: #ffffff;
	border: 2px solid #e94c55;
	border-radius: 6px;
	padding: 20px 40px;
	-webkit-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}
.p-mail-alert__link:hover {
	opacity: 0.75;
}
@media screen and (max-width: 768px) {
	.p-mail-alert__link {
		font-size: clamp(0.9rem, 4vw, 1.1rem);
		padding: 14px 16px;
		gap: 4px;
	}
}
.p-mail-alert__icon {
	color: #e94c55;
	font-weight: 700;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.p-mail-alert__label {
	background: #e94c55;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 2px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.p-mail-alert__em {
	color: #e94c55;
	font-weight: 700;
}
.p-mail-alert__arrow {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	color: #e94c55;
}

.p-lp-section-title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
	font-weight: 700;
	color: #0d1b2a;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 48px;
}
.p-lp-section-title::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #c9a84c;
	margin: 16px auto 0;
}
.p-lp-section-title span {
	display: block;
	font-size: clamp(0.78rem, 1.2vw, 0.88rem);
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-weight: 400;
	color: #4a5568;
	margin-top: 12px;
}
@media screen and (max-width: 768px) {
	.p-lp-section-title span {
		font-size: 0.75rem;
	}
}
.p-lp-section-title em {
	color: #c9a84c;
	font-style: normal;
}
.p-lp-section-title__red {
	color: #d94f4f !important;
	font-style: normal;
}
.p-lp-section-title__small {
	font-size: 0.78em;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-weight: 700;
}
.p-lp-section-title--light {
	color: #ffffff;
}
.p-lp-section-title--light::after {
	background: #c9a84c;
}
.p-lp-section-title--light span {
	color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 768px) {
	.p-lp-section-title--light {
		font-size: clamp(0.9rem, 4vw, 1.1rem);
	}
}

.js-fade {
	opacity: 0;
	-webkit-transform: translateY(24px);
	transform: translateY(24px);
	-webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
	transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.js-fade.is-visible {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.js-fade-step {
	opacity: 0;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
	-webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.js-fade-step.is-visible {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

@-webkit-keyframes lp-blink {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

@keyframes lp-blink {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}
.js-blink {
	-webkit-animation: lp-blink 2.5s ease-in-out infinite;
	animation: lp-blink 2.5s ease-in-out infinite;
}

.p-lp-fv {
	background: url("../../lp/img/image3.jpeg") center bottom/cover no-repeat;
	padding: 80px 0 64px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.p-lp-fv::before {
	content: "";
	position: absolute;
	inset: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(13, 27, 42, 0.94)), color-stop(20%, rgba(13, 27, 42, 0.94)), color-stop(55%, rgba(13, 27, 42, 0.8)), color-stop(70%, rgba(13, 27, 42, 0.98)), to(rgba(13, 27, 42, 0.98)));
	background: -webkit-linear-gradient(top, rgba(13, 27, 42, 0.94) 0%, rgba(13, 27, 42, 0.94) 20%, rgba(13, 27, 42, 0.8) 55%, rgba(13, 27, 42, 0.98) 70%, rgba(13, 27, 42, 0.98) 100%);
	background: linear-gradient(to bottom, rgba(13, 27, 42, 0.94) 0%, rgba(13, 27, 42, 0.94) 20%, rgba(13, 27, 42, 0.8) 55%, rgba(13, 27, 42, 0.98) 70%, rgba(13, 27, 42, 0.98) 100%);
	z-index: 0;
	pointer-events: none;
}
.p-lp-fv > * {
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.p-lp-fv {
		padding: 48px 0 40px;
	}
}

.p-lp-fv__label {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #c9a84c;
	border: 1px solid #c9a84c;
	padding: 4px 20px;
	margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
	.p-lp-fv__label {
		font-size: 0.75rem;
	}
}

.p-lp-fv__catch {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.8rem, 3.5vw, 3rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.4;
	margin-bottom: 28px;
}
.p-lp-fv__catch em {
	color: #c9a84c;
	font-style: normal;
	font-size: 1.15em;
}
@media screen and (max-width: 768px) {
	.p-lp-fv__catch {
		font-size: clamp(1.6rem, 7vw, 2rem);
	}
}

.p-lp-fv__lead {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 2;
	margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
	.p-lp-fv__lead {
		font-size: 0.78rem;
		line-height: 1.9;
	}
}

.p-lp-fv__note {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 40px;
}

.p-lp-fv__product-img-link {
	display: block;
	margin-bottom: 24px;
}
.p-lp-fv__product-img-link:hover {
	opacity: 0.7;
}

.p-lp-fv__product-img {
	width: 100%;
	max-width: 760px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.p-lp-fv__product {
	display: inline-block;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.08);
	padding: 20px 48px;
	margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
	.p-lp-fv__product {
		padding: 16px 24px;
		margin-bottom: 36px;
	}
}

.p-lp-fv__product-name {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}

.p-lp-fv__spec {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 24px;
	list-style: none;
	padding: 0;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.p-lp-fv__spec li {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.05em;
}
.p-lp-fv__spec li strong {
	display: block;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.1rem;
	color: #ffffff;
	margin-top: 2px;
}
@media screen and (max-width: 768px) {
	.p-lp-fv__spec {
		gap: 16px;
	}
}

.p-lp-fv__merits {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 16px;
	list-style: none;
	padding: 0;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 960px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.p-lp-fv__merits {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 12px;
	}
}

.p-lp-fv__merit {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	min-width: 240px;
	max-width: 300px;
	background: rgba(13, 27, 42, 0.55);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-top: 2px solid #c9a84c;
	padding: 24px 20px;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.p-lp-fv__merit {
		max-width: 100%;
		min-width: auto;
		padding: 14px 6px;
	}
}

.p-lp-fv__merit-num {
	display: block;
	font-size: 0.72rem;
	color: #c9a84c;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}
.p-lp-fv__merit-num em {
	font-style: normal;
	font-size: 1.3em;
	margin-left: 2px;
}

.p-lp-fv__merit-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.5;
	margin-bottom: 6px;
}

.p-lp-fv__merit-text {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
}

.p-lp-alert {
	background: #d94f4f;
	padding: 20px 0;
	text-align: center;
}
.p-lp-alert--inline {
	margin: 32px 0;
	padding: 28px 0;
}

.p-lp-alert__sorry {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	font-weight: 700;
	color: #ffe066;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__sorry {
		font-size: 1rem;
	}
}

.p-lp-alert__text {
	font-size: clamp(0.82rem, 1.3vw, 0.92rem);
	color: rgba(255, 255, 255, 0.9);
	line-height: 2;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__text {
		font-size: 0.82rem;
		text-align: left;
	}
}

.p-lp-alert__head {
	font-size: 0.85rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__head {
		font-size: 0.78rem;
	}
}

.p-lp-alert__body {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.9;
}
.p-lp-alert__body strong {
	color: #ffffff;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__body {
		font-size: 0.78rem;
	}
}

.p-lp-ai {
	position: relative;
	padding: 96px 0;
	overflow: hidden;
}
.p-lp-ai::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#0d1b2a));
	background: -webkit-linear-gradient(top, transparent 0%, #0d1b2a 100%);
	background: linear-gradient(to bottom, transparent 0%, #0d1b2a 100%);
	z-index: 1;
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	.p-lp-ai {
		padding: 64px 0;
	}
}

.p-lp-ai__bg-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.p-lp-ai__bg-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.p-lp-ai__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.82) 100%);
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.82) 100%);
	z-index: 1;
}

.p-lp-ai__inner {
	position: relative;
	z-index: 2;
}

.p-lp-ai__text {
	max-width: 800px;
	margin: 0 auto 48px;
	text-align: left;
}
.p-lp-ai__text p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 2;
	margin-bottom: 16px;
}
.p-lp-ai__text p:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
	.p-lp-ai__text p {
		font-size: 0.83rem;
	}
}

.p-lp-ai__list {
	max-width: 640px;
	margin: 0 auto;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.07);
	padding: 28px 36px;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.p-lp-ai__list {
		padding: 20px 20px;
	}
}

.p-lp-ai__list-title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1rem;
	font-weight: 700;
	color: #c9a84c;
	margin-bottom: 16px;
	text-align: center;
}

.p-lp-ai__list-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 24px;
	list-style: none;
	padding: 0;
}
.p-lp-ai__list-items li {
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.85);
	padding-left: 14px;
	position: relative;
}
.p-lp-ai__list-items li::before {
	content: "・";
	position: absolute;
	left: 0;
	color: #c9a84c;
}
@media screen and (max-width: 768px) {
	.p-lp-ai__list-items {
		grid-template-columns: repeat(2, 1fr);
	}
}

.p-lp-institution {
	background: #0d1b2a;
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
	.p-lp-institution {
		padding: 56px 0;
	}
}

.p-lp-institution .p-lp-section-title {
	color: #ffffff;
}
.p-lp-institution .p-lp-section-title span {
	color: rgba(255, 255, 255, 0.65);
}

.p-lp-institution__lead {
	max-width: 760px;
	margin: 0 auto 48px;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 2;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-lp-institution__lead {
		font-size: 0.83rem;
		text-align: left;
	}
}

.p-lp-institution__steps {
	max-width: 640px;
	margin: 0 auto 40px;
	list-style: none;
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.p-lp-institution__step {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-left: 3px solid #c9a84c;
	padding: 20px 24px;
}
.p-lp-institution__step p {
	font-size: 0.95rem;
	color: #ffffff;
	line-height: 1.6;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	.p-lp-institution__step {
		padding: 16px 16px;
		gap: 14px;
	}
	.p-lp-institution__step p {
		font-size: 0.88rem;
	}
}

.p-lp-institution__step-num {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 700;
	font-style: italic;
	color: #c9a84c;
	white-space: nowrap;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	line-height: 1;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 16px rgba(201, 168, 76, 0.45);
	min-width: 64px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-lp-institution__step-num {
		font-size: clamp(2.5rem, 10vw, 3.5rem);
		min-width: 52px;
	}
}

.p-lp-network {
	max-width: 760px;
	margin: 48px auto 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 32px;
}
@media screen and (max-width: 768px) {
	.p-lp-network {
		margin-top: 36px;
		gap: 24px;
	}
}

.p-lp-network__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	border: 1px solid rgba(201, 168, 76, 0.25);
	background: rgba(201, 168, 76, 0.25);
}
@media screen and (max-width: 768px) {
	.p-lp-network__grid {
		grid-template-columns: 1fr;
	}
}

.p-lp-network__col {
	background: rgba(255, 255, 255, 0.04);
	padding: 28px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}
@media screen and (max-width: 768px) {
	.p-lp-network__col {
		padding: 20px;
	}
}

.p-lp-network__col-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #c9a84c;
	text-transform: uppercase;
}

.p-lp-network__col-text {
	font-size: 0.85rem;
	line-height: 2;
	color: rgba(255, 255, 255, 0.82);
}

.p-lp-network__catch {
	border-left: 3px solid #c9a84c;
	padding: 20px 28px;
	background: rgba(201, 168, 76, 0.06);
}
@media screen and (max-width: 768px) {
	.p-lp-network__catch {
		padding: 16px 20px;
	}
}

.p-lp-network__catch-sub {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: rgba(201, 168, 76, 0.75);
	margin-bottom: 8px;
}

.p-lp-network__catch-main {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.6;
}
.p-lp-network__catch-main em {
	color: #c9a84c;
	font-style: normal;
}
@media screen and (max-width: 768px) {
	.p-lp-network__catch-main {
		font-size: 1rem;
	}
}

.p-lp-network__body p {
	font-size: 0.85rem;
	line-height: 2.1;
	color: rgba(255, 255, 255, 0.82);
}
.p-lp-network__body p strong {
	color: #c9a84c;
}

.p-lp-network__close {
	border: 1px solid rgba(201, 168, 76, 0.4);
	padding: 28px 32px;
	text-align: center;
}
.p-lp-network__close::before {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #c9a84c;
	margin: 0 auto 20px;
}
.p-lp-network__close p {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.9rem, 1.4vw, 1.05rem);
	line-height: 2;
	color: rgba(255, 255, 255, 0.9);
}
.p-lp-network__close p em {
	color: #c9a84c;
	font-style: normal;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-lp-network__close {
		padding: 20px;
	}
	.p-lp-network__close p {
		font-size: 0.78rem;
	}
}

.p-lp-institution__summary {
	max-width: 640px;
	margin: 0 auto;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.9;
	text-align: center;
}
.p-lp-institution__summary strong {
	color: #c9a84c;
}
@media screen and (max-width: 768px) {
	.p-lp-institution__summary {
		font-size: 0.78rem;
	}
}

.p-lp-ai-detail__top-catch {
	text-align: center;
	padding: 28px 32px;
	border: 1px solid #dde3ea;
	border-top: 3px solid #c9a84c;
	background: #f5f7fa;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__top-catch {
		padding: 20px;
	}
}

.p-lp-ai-detail__top-catch-lead {
	font-size: 0.88rem;
	color: #4a5568;
	line-height: 2;
	margin-bottom: 12px;
}
.p-lp-ai-detail__top-catch-lead em {
	color: #c9a84c;
	font-style: normal;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__top-catch-lead {
		font-size: 0.83rem;
	}
}

.p-lp-ai-detail__top-catch-main {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.3rem, 2.2vw, 1.8rem);
	font-weight: 700;
	color: #0d1b2a;
	line-height: 1.5;
	text-decoration: underline;
	-webkit-text-decoration-color: #c9a84c;
	text-decoration-color: #c9a84c;
	text-underline-offset: 5px;
}
.p-lp-ai-detail__top-catch-main em {
	color: #d94f4f;
	font-style: normal;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__top-catch-main {
		font-size: 1.2rem;
	}
}

.p-lp-ai-detail__top-catch-sub {
	font-size: clamp(0.82rem, 1.3vw, 0.95rem);
	font-weight: 600;
	text-decoration: none;
	display: inline;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__top-catch-sub {
		font-size: 0.78rem;
	}
}

.p-lp-ai-detail__spec {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__spec {
		gap: 8px;
	}
}

.p-lp-ai-detail__spec-item {
	background: #0d1b2a;
	border: 1px solid rgba(201, 168, 76, 0.35);
	padding: 20px 24px;
	text-align: center;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	min-width: 160px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__spec-item {
		min-width: 28%;
		padding: 16px 12px;
	}
}

.p-lp-ai-detail__spec-num {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	font-weight: 700;
	color: #c9a84c;
	line-height: 1.2;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__spec-num {
		font-size: 1.3rem;
	}
}

.p-lp-ai-detail__spec-label {
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.08em;
	line-height: 1.5;
}

.p-lp-ai-detail__box {
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.12);
	padding: 24px 32px;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__box {
		padding: 20px;
	}
}

.p-lp-ai-detail__box-title {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #c9a84c;
	margin-bottom: 16px;
	text-align: center;
}

.p-lp-ai-detail__body {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}
.p-lp-ai-detail__body p {
	font-size: 0.85rem;
	color: #1a1a2e;
	line-height: 2.1;
}
.p-lp-ai-detail__body p strong {
	color: #d94f4f;
	font-weight: 700;
}

.p-lp-ai-detail__footer {
	background: #0d1b2a;
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-left: 4px solid #c9a84c;
	padding: 24px 28px;
}
.p-lp-ai-detail__footer p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 2.1;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__footer {
		padding: 20px;
	}
}

.p-lp-ai-detail {
	background: #ffffff;
	padding: 80px 0;
}
.p-lp-ai-detail .l-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.p-lp-ai-detail .p-lp-ai-detail__top-catch,
.p-lp-ai-detail .p-lp-ai-detail__spec,
.p-lp-ai-detail .p-lp-ai-detail__box,
.p-lp-ai-detail .p-lp-ai-detail__body,
.p-lp-ai-detail .p-lp-ai-detail__footer {
	max-width: 760px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail {
		padding: 56px 0;
	}
}

.p-lp-ai-detail .p-lp-section-title em {
	color: #d94f4f;
}

.p-lp-ai-detail__lead {
	max-width: 760px;
	margin: 0 auto 32px;
	font-size: 0.9rem;
	color: #1a1a2e;
	line-height: 2;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__lead {
		font-size: 0.85rem;
		text-align: left;
	}
}

.p-lp-ai-detail__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	list-style: none;
	padding: 0;
}
.p-lp-ai-detail__list li {
	font-size: 0.85rem;
	color: #1a3a5c;
	padding: 10px 20px;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.12);
	font-weight: 600;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-lp-ai-detail__list {
		grid-template-columns: 1fr 1fr;
	}
}

.p-lp-ai-detail__text {
	max-width: 760px;
	margin: 0 auto;
	font-size: 0.85rem;
	color: #1a1a2e;
	line-height: 2;
	text-align: left;
}
.p-lp-ai-detail__text strong {
	color: #d94f4f;
	font-weight: 700;
}

.p-lp-advisor {
	background: #f5f7fa;
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
	.p-lp-advisor {
		padding: 56px 0;
	}
}

.p-lp-advisor__block,
.p-lp-priority__block {
	max-width: 760px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

.p-lp-advisor--dark {
	background: url("../../lp/img/image2.jpeg") center bottom/cover no-repeat;
	position: relative;
	overflow: hidden;
}
.p-lp-advisor--dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 0;
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	.p-lp-advisor--dark::before {
		background: rgba(255, 255, 255, 0.93);
	}
}
.p-lp-advisor--dark > * {
	position: relative;
	z-index: 1;
}

.p-lp-advisor__title {
	background: #0d1b2a;
	padding: 24px 32px;
	position: relative;
	text-align: center;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1rem, 1.8vw, 1.3rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.6;
	margin-bottom: 12px;
}
.p-lp-advisor__title::before, .p-lp-advisor__title::after {
	content: "";
	display: block;
	width: calc(100% - 48px);
	height: 1px;
	background: #ffffff;
	position: absolute;
	left: 24px;
}
.p-lp-advisor__title::before {
	top: 10px;
}
.p-lp-advisor__title::after {
	bottom: 10px;
}
@media screen and (max-width: 768px) {
	.p-lp-advisor__title {
		font-size: 1rem;
		padding: 20px 24px;
	}
	.p-lp-advisor__title::before, .p-lp-advisor__title::after {
		width: calc(100% - 32px);
		left: 16px;
	}
}

.p-lp-advisor__body {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 14px;
}
.p-lp-advisor__body p {
	font-size: 0.85rem;
	color: #1a1a2e;
	line-height: 2.1;
}

.p-lp-advisor__em {
	color: #c9a84c;
	font-style: normal;
	font-weight: 700;
}

.p-lp-advisor__support-card {
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-left: 4px solid #c9a84c;
	padding: 20px 24px;
}
.p-lp-advisor__support-card p {
	font-size: 0.85rem;
	color: #1a1a2e;
	line-height: 2.1;
}
.p-lp-advisor__support-card em {
	color: #c9a84c;
	font-style: normal;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-lp-advisor__support-card {
		padding: 16px 18px;
	}
}

.p-lp-advisor__divider {
	max-width: 760px;
	margin: 8px auto;
	border: none;
	border-top: 1px solid #dde3ea;
}

.p-lp-advisor__promise-card {
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-left: 4px solid #c9a84c;
	padding: 20px 24px;
}
.p-lp-advisor__promise-card p {
	font-size: 0.85rem;
	color: #1a1a2e;
	line-height: 2.1;
}
.p-lp-advisor__promise-card em {
	color: #c9a84c;
	font-style: normal;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-lp-advisor__promise-card {
		padding: 16px 18px;
	}
}

.p-lp-merits {
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
	.p-lp-merits {
		padding: 56px 0;
	}
}

.p-lp-merits__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	list-style: none;
	padding: 0;
	max-width: 960px;
	margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
	.p-lp-merits__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 768px) {
	.p-lp-merits__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

.p-lp-merits__item {
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-top: 3px solid #c9a84c;
	padding: 28px 20px;
	text-align: center;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	position: relative;
}
@media screen and (max-width: 768px) {
	.p-lp-merits__item {
		padding: 35px 5px 26px;
	}
}

.p-lp-merits__badge {
	position: absolute;
	top: 0;
	left: 0;
	background: #c9a84c;
	color: #ffffff;
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 4px 10px;
	letter-spacing: 0.05em;
}

.p-lp-merits__num {
	display: none;
}

.p-lp-merits__text {
	font-size: 0.82rem;
	color: #1a1a2e;
	line-height: 1.7;
}
.p-lp-merits__text em {
	display: block;
	font-style: normal;
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #d94f4f;
	margin-top: 4px;
}
@media screen and (max-width: 768px) {
	.p-lp-merits__text {
		font-size: 0.72rem;
	}
}

.p-lp-merits__img-placeholder {
	width: 100%;
	aspect-ratio: 240/160;
	background: #f5f7fa;
	border: 1px dashed #dde3ea;
}

.p-lp-merits__img {
	width: 100%;
	aspect-ratio: 240/160;
	-o-object-fit: contain;
	object-fit: contain;
	margin-bottom: 16px;
}

.p-lp-voices {
	background: #0d1b2a;
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
	.p-lp-voices {
		padding: 56px 0;
	}
}

.swiper-slide {
	height: auto;
}

.p-lp-voice {
	height: 100%;
	max-width: 760px;
	margin: 0 auto 28px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-top: 2px solid #c9a84c;
	padding: 28px 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 18px;
}
.p-lp-voice:last-of-type {
	margin-bottom: 0;
}
@media screen and (max-width: 768px) {
	.p-lp-voice {
		padding: 20px;
		gap: 14px;
	}
}

.p-lp-voice__result {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.p-lp-voice__start {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
}
.p-lp-voice__start strong {
	display: block;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.1rem;
	color: #ffffff;
	margin-top: 2px;
}

.p-lp-voice__arrow {
	font-size: 1.2rem;
	color: #c9a84c;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.p-lp-voice__profit {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
}
.p-lp-voice__profit em {
	display: block;
	font-style: normal;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: #d94f4f;
	line-height: 1.2;
}

.p-lp-voice__media--pc {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 14px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
@media screen and (max-width: 768px) {
	.p-lp-voice__media--pc {
		display: none;
	}
}

.p-lp-voice__media--sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.p-lp-voice__media--sp {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

.p-lp-voice__evidence {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	background: rgba(255, 255, 255, 0.08);
	border: 1px dashed rgba(201, 168, 76, 0.3);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.35);
	min-height: 160px;
}
.p-lp-voice__evidence img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media screen and (max-width: 768px) {
	.p-lp-voice__evidence {
		display: none;
	}
}

.p-lp-voice__evidence--sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.p-lp-voice__evidence--sp {
		display: block;
		width: 100%;
	}
	.p-lp-voice__evidence--sp img {
		width: 100%;
		height: auto;
		display: block;
	}
}

.p-lp-voice__person {
	width: 220px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.p-lp-voice__photo {
	width: 220px;
	height: 280px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px dashed rgba(201, 168, 76, 0.3);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.35);
	overflow: hidden;
}
.p-lp-voice__photo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center top;
	object-position: center top;
}

.p-lp-voice__name {
	font-size: 0.72rem;
	color: #c9a84c;
	text-align: center;
	line-height: 1.8;
}

.p-lp-voice__person--sp {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 100%;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
}
.p-lp-voice__person--sp .p-lp-voice__photo {
	width: 72px;
	height: 88px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.p-lp-voice__name--sp {
	font-size: 0.95rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.7;
}

.js-voices-pagination {
	text-align: center;
	padding: 20px 0 0;
}
.js-voices-pagination .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.4);
	opacity: 1;
	width: 8px;
	height: 8px;
	margin: 0 5px;
}
.js-voices-pagination .swiper-pagination-bullet-active {
	background: #c9a84c;
}

.js-voices-prev,
.js-voices-next {
	color: #c9a84c;
}
.js-voices-prev::after,
.js-voices-next::after {
	font-size: 1.2rem;
}
.js-voices-prev.swiper-button-disabled,
.js-voices-next.swiper-button-disabled {
	opacity: 0.3;
}

.p-lp-voices__swiper-wrap {
	overflow: hidden;
	padding: 0 0 32px;
	max-width: 1300px;
	margin: 0 auto;
	position: relative;
}

.js-voices-swiper {
	overflow: visible;
}

.p-lp-alert__sorry-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 24px;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__sorry-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
	}
}

.p-lp-alert__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
}

.p-lp-alert__icon-wrap {
	width: 80px;
	height: 80px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.p-lp-alert__icon-wrap img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__icon-wrap {
		width: 64px;
		height: 64px;
	}
}

.p-lp-alert__icon-col {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.p-lp-alert__icon-svg {
	width: 72px;
	height: 72px;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__icon-svg {
		width: 56px;
		height: 56px;
	}
}

.p-lp-alert__icon-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(255, 224, 102, 0.9);
	white-space: nowrap;
	letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__icon-label {
		white-space: normal;
		text-align: center;
	}
}

.p-lp-alert__body {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.p-lp-alert__head {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 8px;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.04em;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
	.p-lp-alert__head {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		font-size: 0.88rem;
	}
}

.p-lp-alert__triangle {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.p-lp-alert__triangle svg {
	width: 22px;
	height: 20px;
}

.p-lp-alert__main {
	font-size: clamp(0.82rem, 1.3vw, 0.92rem);
	color: rgba(255, 255, 255, 0.9);
	line-height: 2;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__main {
		font-size: 0.82rem;
	}
}

.p-lp-alert__emphasis {
	display: block;
	padding: 10px 16px;
	background: rgba(0, 0, 0, 0.2);
	border-left: 3px solid #ffe066;
	font-size: clamp(0.85rem, 1.3vw, 0.95rem);
	font-weight: 700;
	color: #ffe066;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
	.p-lp-alert__emphasis {
		border-left: none;
		border-top: 2px solid #ffe066;
		text-align: center;
	}
}

.p-lp-voice__comment p {
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 2.1;
}
@media screen and (max-width: 768px) {
	.p-lp-voice__comment p {
		line-height: 1.6;
	}
}

.p-lp-voices__footer {
	max-width: 760px;
	margin: 40px auto 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	text-align: center;
}

.p-lp-voices__footer-min {
	background: rgba(201, 168, 76, 0.1);
	border: 1px solid rgba(201, 168, 76, 0.35);
	padding: 16px 24px;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1rem;
	font-weight: 700;
	color: #c9a84c;
}

.p-lp-voices__footer-sub {
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 2;
}
@media screen and (max-width: 768px) {
	.p-lp-voices__footer-sub {
		text-align: left;
	}
}

.p-lp-voices__footer-cta {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
	border: 1px solid rgba(201, 168, 76, 0.5);
	padding: 20px 28px;
	line-height: 1.9;
}
.p-lp-voices__footer-cta em {
	color: #c9a84c;
	font-style: normal;
}
@media screen and (max-width: 768px) {
	.p-lp-voices__footer-cta {
		padding: 20px 3px;
		font-size: 0.88rem;
	}
}

.p-lp-steps {
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
	.p-lp-steps {
		padding: 56px 0;
	}
}

.p-lp-steps__row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 0;
	max-width: 640px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.p-lp-steps__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 0;
	}
}

.p-lp-steps__card {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-top: 3px solid #c9a84c;
	padding: 24px 20px;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	text-align: center;
	position: relative;
}
.p-lp-steps__card--last {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 300px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.p-lp-steps__card--last {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.p-lp-steps__card {
		width: 100%;
	}
}

.p-lp-steps__badge {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
	background: #0d1b2a;
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	padding: 5px 18px;
	border: 1px solid rgba(201, 168, 76, 0.4);
}
.p-lp-steps__badge em {
	font-style: normal;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1rem;
	color: #c9a84c;
}

.p-lp-steps__img-wrap {
	width: 100%;
	aspect-ratio: 240/160;
	background: #f5f7fa;
	border: 1px dashed rgba(201, 168, 76, 0.35);
}

.p-lp-steps__img {
	width: 100%;
	aspect-ratio: 240/160;
	-o-object-fit: contain;
	object-fit: contain;
}

.p-lp-steps__arrow-h {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 8px;
	padding-bottom: 60px;
}
.p-lp-steps__arrow-h svg {
	display: block;
}
@media screen and (max-width: 768px) {
	.p-lp-steps__arrow-h {
		padding: 4px 0;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}

.p-lp-steps__arrow-v {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 8px 0;
}
.p-lp-steps__arrow-v svg {
	display: block;
}

.p-lp-steps__lead {
	max-width: 760px;
	margin: 0 auto 48px;
	font-size: 0.88rem;
	color: #1a1a2e;
	line-height: 2;
	text-align: center;
}
.p-lp-steps__lead strong {
	color: #d94f4f;
}
@media screen and (max-width: 768px) {
	.p-lp-steps__lead {
		text-align: left;
		font-size: 0.83rem;
	}
}

.p-lp-steps__flow {
	max-width: 480px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0;
}

.p-lp-steps__item {
	width: 100%;
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-left: 4px solid #c9a84c;
	padding: 24px 28px;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.p-lp-steps__num {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}
.p-lp-steps__num em {
	font-style: normal;
	font-size: 1.4em;
	margin-left: 2px;
}

.p-lp-steps__text {
	font-size: 0.88rem;
	color: #0d1b2a;
	font-weight: 600;
	line-height: 1.7;
}
.p-lp-steps__text em {
	color: #d94f4f;
	font-style: normal;
	font-weight: 700;
}
.p-lp-steps__text small {
	font-size: 0.78rem;
	font-weight: 400;
	color: #7a8a9a;
}

.p-lp-steps__arrow {
	font-size: 1.4rem;
	color: #c9a84c;
	padding: 4px 0;
}

.p-lp-cta {
	background: url("../../lp/img/image3.jpeg") center bottom/cover no-repeat;
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.p-lp-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(13, 27, 42, 0.94);
	z-index: 0;
	pointer-events: none;
}
.p-lp-cta > * {
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.p-lp-cta {
		padding: 56px 0;
	}
}

.p-lp-cta__label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #c9a84c;
	border: 1px solid #c9a84c;
	display: inline-block;
	padding: 4px 20px;
	margin-bottom: 20px;
}

.p-lp-cta__catch {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 2.5vw, 2.2rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.4;
	margin-bottom: 40px;
}
.p-lp-cta__catch em {
	color: #c9a84c;
	font-style: normal;
	font-size: 1.15em;
}
@media screen and (max-width: 768px) {
	.p-lp-cta__catch {
		font-size: clamp(1.6rem, 7vw, 2rem);
	}
}

.p-lp-cta__lead {
	font-size: clamp(0.82rem, 1.4vw, 0.95rem);
	color: rgba(255, 255, 255, 0.85);
	line-height: 2.2;
	text-align: center;
	margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
	.p-lp-cta__lead {
		font-size: 0.82rem;
	}
}

.p-lp-cta__note-sm {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
	margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
	.p-lp-cta__note-sm {
		font-size: 0.68rem;
	}
}

.p-lp-cta__divider {
	width: 48px;
	height: 1px;
	background: rgba(201, 168, 76, 0.4);
	margin: 32px auto;
}

.p-lp-cta__product-detail {
	display: inline-block;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.07);
	padding: 20px 32px;
	margin-bottom: 32px;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.p-lp-cta__product-detail {
		padding: 16px 20px;
	}
}

.p-lp-cta__product {
	display: inline-block;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.07);
	padding: 24px 48px;
	margin-bottom: 40px;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.p-lp-cta__product {
		padding: 16px 20px;
		width: 100%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}

.p-lp-cta__product-name {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	font-weight: 700;
	color: #c9a84c;
	margin-bottom: 16px;
	text-align: center;
}

.p-lp-cta__spec {
	list-style: none;
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}
.p-lp-cta__spec li {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
}
.p-lp-cta__spec li strong {
	color: #ffffff;
}
@media screen and (max-width: 768px) {
	.p-lp-cta__spec li {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 2px;
		font-size: 0.72rem;
		color: rgba(255, 255, 255, 0.5);
	}
	.p-lp-cta__spec li strong {
		display: block;
		font-size: 0.92rem;
		color: #ffffff;
		font-weight: 700;
		padding-left: 0;
	}
}

.p-lp-cta__btn-wrap {
	margin: 32px 0;
}

.p-lp-cta__btn {
	display: inline-block;
	background: #d94f4f;
	color: #ffffff;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.95rem, 1.5vw, 1.15rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 20px 56px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	-webkit-box-shadow: 0 4px 20px rgba(217, 79, 79, 0.45);
	box-shadow: 0 4px 20px rgba(217, 79, 79, 0.45);
	-webkit-transition: background 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.2s ease;
	transition: background 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.2s ease;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.2s ease;
}
.p-lp-cta__btn:hover {
	background: rgb(209.7551401869, 45.4448598131, 45.4448598131);
	-webkit-box-shadow: 0 6px 28px rgba(217, 79, 79, 0.6);
	box-shadow: 0 6px 28px rgba(217, 79, 79, 0.6);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}
.p-lp-cta__btn:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
@media screen and (max-width: 768px) {
	.p-lp-cta__btn {
		padding: 18px 28px;
		font-size: 0.95rem;
		width: 100%;
		text-align: center;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}

.p-lp-cta__note {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.8;
	margin-top: 8px;
}

.p-lp2-section-title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 48px;
}
.p-lp2-section-title::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #c9a84c;
	margin: 16px auto 0;
}
.p-lp2-section-title em {
	color: #c9a84c;
	font-style: normal;
}
@media screen and (max-width: 768px) {
	.p-lp2-section-title {
		font-size: clamp(1.1rem, 4.5vw, 1.4rem);
		margin-bottom: 32px;
	}
}

.p-lp2-fv {
	position: relative;
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.82) 0%, rgba(13, 27, 42, 0.65) 50%, rgba(13, 27, 42, 0.8) 100%), url("https://sample.baby/lp/img/lp02_bk.png") center center/cover no-repeat;
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.82) 0%, rgba(13, 27, 42, 0.65) 50%, rgba(13, 27, 42, 0.8) 100%), url("https://sample.baby/lp/img/lp02_bk.png") center center/cover no-repeat;
	padding: 64px 0 56px;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv {
		padding: 40px 0 40px;
	}
}

.p-lp2-fv__bg,
.p-lp2-fv__bg-grad,
.p-lp2-fv__bg-glow {
	display: none;
}

.p-lp2-fv__inner {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
	text-align: center;
}

.p-lp2-fv__notice {
	background: rgba(255, 255, 255, 0.1);
	border-top: 2px solid #c8f135;
	padding: 16px 28px;
	max-width: 520px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv__notice {
		padding: 14px 20px;
	}
}

.p-lp2-fv__notice-heading {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.1em;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.p-lp2-fv__notice-text {
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.9;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.p-lp2-fv__notice-must {
	display: block;
}
.p-lp2-fv__notice-must::before {
	content: "●●";
	display: block;
	font-size: 0.55rem;
	color: #ffffff;
	letter-spacing: 0.5em;
	text-align: center;
	margin-bottom: 4px;
}

.p-lp2-fv__addressee {
	max-width: 520px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.p-lp2-fv__addressee-table {
	margin: 0 auto;
	border-collapse: collapse;
	background: #ffffff;
}
.p-lp2-fv__addressee-table th, .p-lp2-fv__addressee-table td {
	padding: 10px 20px;
	font-size: 0.9rem;
	line-height: 1.6;
	border: 1px solid #dde3ea;
	text-align: left;
}
.p-lp2-fv__addressee-table th {
	background: #f5f7fa;
	color: #4a5568;
	font-weight: 600;
	white-space: nowrap;
	width: 120px;
}
.p-lp2-fv__addressee-table td {
	color: #0d1b2a;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1rem;
	font-weight: 700;
	min-width: 200px;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv__addressee-table {
		width: 100%;
	}
	.p-lp2-fv__addressee-table th, .p-lp2-fv__addressee-table td {
		padding: 10px 14px;
		font-size: 0.85rem;
	}
	.p-lp2-fv__addressee-table th {
		width: 100px;
	}
}

.p-lp2-fv__addressee-header {
	background: #c8f135;
	padding: 14px 24px;
	text-align: center;
}
.p-lp2-fv__addressee-header p {
	font-size: 0.9rem;
	font-weight: 700;
	color: #0d1b2a;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv__addressee-header {
		padding: 12px 16px;
	}
	.p-lp2-fv__addressee-header p {
		font-size: 0.83rem;
	}
}

.p-lp2-fv__addressee-body {
	background: rgba(255, 255, 255, 0.1);
	padding: 20px 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
	text-align: left;
}

.p-lp2-fv__addressee-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 16px;
}

.p-lp2-fv__addressee-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
	letter-spacing: 0.08em;
	white-space: nowrap;
	min-width: 80px;
}

.p-lp2-fv__addressee-val {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.05em;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.p-lp2-fv__addressee-note {
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-top: none;
	padding: 8px 20px;
	font-size: 0.75rem;
	color: #7a8a9a;
	text-align: center;
}
.p-lp2-fv__addressee-note a {
	color: #2a5a8c;
	text-decoration: underline;
}

.p-lp2-secret {
	background: #ffffff;
	padding: 32px 0;
	text-align: center;
	border-bottom: 1px solid #dde3ea;
}

.p-lp2-secret__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}

.p-lp2-secret__label {
	display: inline-block;
	background: #0d1b2a;
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	padding: 6px 28px;
}

.p-lp2-secret__body {
	font-size: 0.88rem;
	color: #1a1a2e;
	line-height: 2;
}
.p-lp2-secret__body strong {
	color: #0d1b2a;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-lp2-secret__body {
		font-size: 0.83rem;
		text-align: left;
	}
}

.p-lp2-fv__secret-badge {
	max-width: 620px;
	width: 100%;
	border: 1px solid rgba(201, 168, 76, 0.4);
	background: rgba(13, 27, 42, 0.6);
	padding: 24px 36px;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv__secret-badge {
		padding: 20px 20px;
	}
}

.p-lp2-fv__secret-label {
	display: inline-block;
	background: #c9a84c;
	color: #0d1b2a;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	padding: 3px 16px;
	margin-bottom: 14px;
}

.p-lp2-fv__secret-body {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.9;
}
.p-lp2-fv__secret-body strong {
	color: #c9a84c;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv__secret-body {
		font-size: 0.83rem;
	}
}

.p-lp2-advisor {
	background: #ffffff;
	padding: 72px 0 64px;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor {
		padding: 48px 0 40px;
	}
}

.p-lp2-advisor__header {
	margin-bottom: 48px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__header {
		margin-bottom: 36px;
	}
}

.p-lp2-advisor__header-label {
	display: inline-block;
	background: #9bc43a;
	color: #0d1b2a;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 8px 32px;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__header-label {
		font-size: 0.78rem;
		padding: 7px 20px;
	}
}

.p-lp2-advisor__header-body {
	max-width: 760px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #dde3ea;
	padding: 20px 28px;
	font-size: 0.88rem;
	color: #1a1a2e;
	line-height: 1.9;
	text-align: left;
}
.p-lp2-advisor__header-body strong {
	color: #0d1b2a;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__header-body {
		font-size: 0.83rem;
		padding: 16px 16px;
	}
}

.p-lp2-advisor__card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 48px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	max-width: 860px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-top: 3px solid #c9a84c;
	padding: 40px;
	-webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1024px) {
	.p-lp2-advisor__card {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 28px;
		padding: 28px 24px;
	}
}

.p-lp2-advisor__photo-wrap {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.p-lp2-advisor__photo {
	width: 160px;
	height: 200px;
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.08) 0%, rgba(201, 168, 76, 0.1) 100%);
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.08) 0%, rgba(201, 168, 76, 0.1) 100%);
	border: 1px solid rgba(201, 168, 76, 0.35);
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.p-lp2-advisor__photo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center top;
	object-position: center top;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__photo {
		width: 130px;
		height: 160px;
	}
}

.p-lp2-advisor__photo-placeholder {
	width: 80px;
	height: 100px;
	opacity: 0.7;
}

.p-lp2-advisor__photo-badge {
	background: #c9a84c;
	color: #0d1b2a;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 4px 14px;
	white-space: nowrap;
}

.p-lp2-advisor__profile {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.p-lp2-advisor__name-block {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #dde3ea;
}

.p-lp2-advisor__name-kana {
	font-size: 0.72rem;
	color: #7a8a9a;
	letter-spacing: 0.12em;
	margin-bottom: 4px;
}

.p-lp2-advisor__name {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	color: #0d1b2a;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}

.p-lp2-advisor__title-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: #c9a84c;
	background: rgba(201, 168, 76, 0.12);
	border: 1px solid rgba(201, 168, 76, 0.35);
	padding: 3px 14px;
	letter-spacing: 0.08em;
}

.p-lp2-advisor__career {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}
.p-lp2-advisor__career li {
	font-size: 0.83rem;
	color: #1a1a2e;
	line-height: 1.7;
	padding-left: 18px;
	position: relative;
}
.p-lp2-advisor__career li::before {
	content: "▸";
	position: absolute;
	left: 0;
	color: #c9a84c;
	font-size: 0.75rem;
	top: 2px;
}
.p-lp2-advisor__career li strong {
	color: #0d1b2a;
	font-weight: 700;
}

.p-lp2-advisor__appeal {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 0.88rem;
	color: #1a3a5c;
	line-height: 1.9;
	padding: 14px 20px;
	background: #f5f7fa;
	border-left: 3px solid #c9a84c;
	font-style: italic;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__appeal {
		font-size: 0.83rem;
	}
}

.p-lp2-greeting {
	background: #0d1b2a;
	padding: 64px 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-greeting {
		padding: 48px 0;
	}
}

.p-lp2-greeting__inner {
	max-width: 760px;
	margin: 0 auto;
}

.p-lp2-greeting__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.2em;
	margin-bottom: 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.3);
	text-align: center;
}

.p-lp2-greeting__body p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 2.1;
	margin-bottom: 16px;
}
.p-lp2-greeting__body p:last-child {
	margin-bottom: 0;
}
.p-lp2-greeting__body p strong {
	color: #c9a84c;
}
@media screen and (max-width: 768px) {
	.p-lp2-greeting__body p {
		font-size: 0.83rem;
	}
}

.p-lp2-privilege {
	background: -webkit-gradient(linear, left top, right top, from(rgba(13, 27, 42, 0.98)), color-stop(50%, rgba(25, 50, 80, 0.95)), to(rgba(13, 27, 42, 0.98)));
	background: -webkit-linear-gradient(left, rgba(13, 27, 42, 0.98) 0%, rgba(25, 50, 80, 0.95) 50%, rgba(13, 27, 42, 0.98) 100%);
	background: linear-gradient(90deg, rgba(13, 27, 42, 0.98) 0%, rgba(25, 50, 80, 0.95) 50%, rgba(13, 27, 42, 0.98) 100%);
	border-top: 1px solid rgba(201, 168, 76, 0.35);
	border-bottom: 1px solid rgba(201, 168, 76, 0.35);
	padding: 40px 0;
}

.p-lp2-privilege__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 32px;
}
@media screen and (max-width: 768px) {
	.p-lp2-privilege__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

.p-lp2-privilege__icon {
	width: 72px;
	height: 72px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	opacity: 0.9;
}

.p-lp2-privilege__text {
	max-width: 480px;
}

.p-lp2-privilege__label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: rgba(201, 168, 76, 0.7);
	margin-bottom: 6px;
}

.p-lp2-privilege__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.12em;
	margin-bottom: 10px;
}

.p-lp2-privilege__desc {
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.9;
}

.p-lp2-graph {
	background: #0d1b2a;
}

.p-lp2-graph__wrap {
	max-width: 560px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(201, 168, 76, 0.35);
	padding: 32px 40px 40px;
}
@media screen and (max-width: 768px) {
	.p-lp2-graph__wrap {
		padding: 24px 20px 32px;
	}
}

.p-lp2-graph__label-top {
	font-size: 0.75rem;
	font-weight: 700;
	color: #c9a84c;
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.p-lp2-graph__chart {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 40px;
	height: 240px;
}
@media screen and (max-width: 768px) {
	.p-lp2-graph__chart {
		gap: 24px;
		height: 200px;
	}
}

.p-lp2-graph__bar-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	height: 100%;
	gap: 8px;
}

.p-lp2-graph__bar {
	width: 80px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 8px;
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
	-webkit-animation: lp2BarRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation: lp2BarRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	opacity: 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-graph__bar {
		width: 64px;
	}
}
.p-lp2-graph__bar--normal {
	height: 22%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(100, 130, 160, 0.6)), to(rgba(60, 90, 120, 0.4)));
	background: -webkit-linear-gradient(top, rgba(100, 130, 160, 0.6) 0%, rgba(60, 90, 120, 0.4) 100%);
	background: linear-gradient(180deg, rgba(100, 130, 160, 0.6) 0%, rgba(60, 90, 120, 0.4) 100%);
	border: 1px solid rgba(100, 130, 160, 0.5);
}
.p-lp2-graph__bar--vip {
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(#c9a84c), to(rgba(150, 110, 40, 0.9)));
	background: -webkit-linear-gradient(top, #c9a84c 0%, rgba(150, 110, 40, 0.9) 100%);
	background: linear-gradient(180deg, #c9a84c 0%, rgba(150, 110, 40, 0.9) 100%);
	border: 1px solid #c9a84c;
	-webkit-box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
	box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

@-webkit-keyframes lp2BarRise {
	from {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		opacity: 0;
	}
	to {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
		opacity: 1;
	}
}

@keyframes lp2BarRise {
	from {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		opacity: 0;
	}
	to {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
		opacity: 1;
	}
}
.p-lp2-graph__bar-val {
	font-size: 0.72rem;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
}
.p-lp2-graph__bar-val em {
	display: block;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.3rem;
	font-weight: 700;
	font-style: normal;
	color: #ffffff;
	line-height: 1.2;
}

.p-lp2-graph__bar-label {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	margin-top: 4px;
}

.p-lp2-graph__bar-sub {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
	line-height: 1.7;
}
.p-lp2-graph__bar-sub strong {
	display: block;
	color: #c9a84c;
	font-size: 0.82rem;
	font-weight: 700;
	margin-top: 2px;
}

.p-lp2-benefits {
	background: #0d1b2a;
}

.p-lp2-benefits__intro {
	text-align: center;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: -32px;
	margin-bottom: 40px;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
	.p-lp2-benefits__intro {
		margin-top: -20px;
		font-size: 0.8rem;
	}
}

.p-lp2-benefits__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	list-style: none;
	padding: 0;
	max-width: 760px;
	margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
	.p-lp2-benefits__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

.p-lp2-benefits__item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-top: 2px solid #c9a84c;
	padding: 24px 16px 20px;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-webkit-transition: background 0.25s ease, border-color 0.25s ease;
	transition: background 0.25s ease, border-color 0.25s ease;
}
.p-lp2-benefits__item:hover {
	background: rgba(201, 168, 76, 0.06);
	border-color: rgba(201, 168, 76, 0.5);
}

.p-lp2-benefits__item-icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(201, 168, 76, 0.1);
	border-radius: 50%;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.p-lp2-benefits__item-icon svg {
	width: 22px;
	height: 22px;
}

.p-lp2-benefits__item-text {
	font-size: 0.8rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.6;
}

.p-lp2-benefits__footer {
	text-align: center;
	padding: 28px;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.06);
	max-width: 560px;
	margin: 0 auto;
}

.p-lp2-benefits__footer-text {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	color: rgba(255, 255, 255, 0.9);
	line-height: 2;
}
.p-lp2-benefits__footer-text strong {
	color: #c9a84c;
}

.p-lp2-cta {
	background: #ffffff;
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-cta {
		padding: 56px 0;
	}
}

.p-lp2-cta__inner {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	background: #0d1b2a;
	border: 1px solid rgba(201, 168, 76, 0.35);
	padding: 48px 40px;
	-webkit-box-shadow: 0 8px 40px rgba(13, 27, 42, 0.25);
	box-shadow: 0 8px 40px rgba(13, 27, 42, 0.25);
}
@media screen and (max-width: 768px) {
	.p-lp2-cta__inner {
		padding: 36px 24px;
	}
}

.p-lp2-cta__icon {
	font-size: 2.4rem;
	color: #c9a84c;
	margin-bottom: 20px;
	opacity: 0.85;
}

.p-lp2-cta__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.7;
	margin-bottom: 20px;
}
.p-lp2-cta__title::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #c9a84c;
	margin: 16px auto 0;
}

.p-lp2-cta__body {
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 2;
	margin-bottom: 32px;
}

.p-lp2-cta__btn {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	background: #c9a84c;
	color: #0d1b2a;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 18px 48px;
	text-decoration: none;
	-webkit-transition: background 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.2s ease;
	transition: background 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.2s ease;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.2s ease;
	-webkit-box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
	box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.p-lp2-cta__btn:hover {
	background: #f0d080;
	-webkit-box-shadow: 0 6px 28px rgba(201, 168, 76, 0.6);
	box-shadow: 0 6px 28px rgba(201, 168, 76, 0.6);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	opacity: 1;
}
.p-lp2-cta__btn:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
@media screen and (max-width: 768px) {
	.p-lp2-cta__btn {
		padding: 16px 32px;
		font-size: 0.95rem;
		width: 100%;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.p-lp2-cta__btn-arrow {
	font-size: 1.2rem;
	line-height: 1;
}

.p-lp2-cta__note {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.9;
	margin-top: 20px;
}

.p-lp2-section-title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 48px;
}
.p-lp2-section-title::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #c9a84c;
	margin: 16px auto 0;
}
.p-lp2-section-title em {
	color: #c9a84c;
	font-style: normal;
}
@media screen and (max-width: 768px) {
	.p-lp2-section-title {
		font-size: clamp(1.1rem, 4.5vw, 1.4rem);
		margin-bottom: 32px;
	}
}

.lp2-particles-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.3;
}

.p-lp2-fv {
	position: relative;
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.82) 0%, rgba(13, 27, 42, 0.65) 50%, rgba(13, 27, 42, 0.8) 100%), url("https://sample.baby/lp/img/lp02_bk.png") center center/cover no-repeat;
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.82) 0%, rgba(13, 27, 42, 0.65) 50%, rgba(13, 27, 42, 0.8) 100%), url("https://sample.baby/lp/img/lp02_bk.png") center center/cover no-repeat;
	padding: 144px 0 56px;
	overflow: hidden;
	margin-top: -80px;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv {
		padding: 100px 0 40px;
		margin-top: -60px;
	}
}

.p-lp2-fv__bg,
.p-lp2-fv__bg-grad,
.p-lp2-fv__bg-glow {
	display: none;
}

.p-lp2-fv__inner {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
	text-align: center;
}

.p-lp2-fv__notice {
	background: rgba(180, 40, 40, 0.45);
	border-top: 2px solid #c9a84c;
	padding: 24px 28px 20px;
	max-width: 520px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv__notice {
		padding: 20px;
	}
}

.p-lp2-fv__notice-emblem {
	display: block;
	width: 48px;
	height: auto;
	margin: 0 auto 10px;
}
.p-lp2-fv__notice-emblem path, .p-lp2-fv__notice-emblem .cls-1, .p-lp2-fv__notice-emblem .cls-2, .p-lp2-fv__notice-emblem .cls-3 {
	stroke: #c9a84c !important;
	fill: none !important;
}
.p-lp2-fv__notice-emblem .cls-3 {
	fill: rgba(201, 168, 76, 0.15) !important;
}

.p-lp2-fv__notice-heading {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.1rem, 2.5vw, 2rem);
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.1em;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.p-lp2-fv__notice-text {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.9;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.p-lp2-fv__notice-must {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	display: inline-block;
	position: relative;
	color: #ffffff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
	padding-top: 1.2em;
}
.p-lp2-fv__notice-must::before {
	content: "●●";
	position: absolute;
	top: 1em;
	left: 0.7em;
	font-size: 0.5rem;
	color: #ffffff;
	letter-spacing: 0.8em;
}

.p-lp2-fv__addressee {
	max-width: 520px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.p-lp2-fv__addressee-header {
	background: #c8f135;
	padding: 14px 24px;
	text-align: center;
}
.p-lp2-fv__addressee-header p {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	font-weight: 700;
	color: #0d1b2a;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
	.p-lp2-fv__addressee-header {
		padding: 12px 16px;
	}
	.p-lp2-fv__addressee-header p {
		font-size: 0.78rem;
	}
}

.p-lp2-fv__addressee-body {
	background: rgba(255, 255, 255, 0.1);
	padding: 20px 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	text-align: center;
}

.p-lp2-fv__addressee-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
}

.p-lp2-fv__addressee-label {
	font-size: 0.72rem;
	color: #c9a84c;
	font-weight: 600;
	letter-spacing: 0.12em;
}
.p-lp2-fv__addressee-label::before {
	content: "- ";
}
.p-lp2-fv__addressee-label::after {
	content: " -";
}

.p-lp2-fv__addressee-val {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.05em;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.p-lp2-fv__addressee-note {
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-top: none;
	padding: 8px 20px;
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 0.75rem;
	color: #7a8a9a;
	text-align: center;
}
.p-lp2-fv__addressee-note a {
	color: #2a5a8c;
	text-decoration: underline;
}

.p-lp2-secret {
	position: relative;
	z-index: 1;
	background: #0d1b2a;
	padding: 72px 0;
	text-align: center;
	overflow: hidden;
}
.p-lp2-secret::before, .p-lp2-secret::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	-webkit-filter: blur(80px);
	filter: blur(80px);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	pointer-events: none;
}
.p-lp2-secret::before {
	left: -100px;
	background: rgba(201, 168, 76, 0.12);
}
.p-lp2-secret::after {
	right: -100px;
	background: rgba(201, 168, 76, 0.08);
}
@media screen and (max-width: 768px) {
	.p-lp2-secret {
		padding: 52px 0;
	}
}

.p-lp2-secret__inner {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 28px;
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px;
}

.p-lp2-secret__deco {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: 400px;
}
.p-lp2-secret__deco::before, .p-lp2-secret__deco::after {
	content: "";
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 1px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#c9a84c), to(transparent));
	background: -webkit-linear-gradient(left, transparent, #c9a84c, transparent);
	background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}
.p-lp2-secret__deco span {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	color: #c9a84c;
	white-space: nowrap;
	opacity: 0.8;
}

.p-lp2-secret__label {
	position: relative;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
	background: -webkit-linear-gradient(315deg, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.08) 100%);
	background: linear-gradient(135deg, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.08) 100%);
	border: 1px solid rgba(201, 168, 76, 0.5);
	color: #c9a84c;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 700;
	letter-spacing: 0.3em;
	padding: 14px 40px;
	text-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
	-webkit-box-shadow: inset 0 1px 0 rgba(201, 168, 76, 0.3), 0 0 40px rgba(201, 168, 76, 0.1);
	box-shadow: inset 0 1px 0 rgba(201, 168, 76, 0.3), 0 0 40px rgba(201, 168, 76, 0.1);
}
.p-lp2-secret__label::before, .p-lp2-secret__label::after {
	content: "◆";
	font-size: 0.55rem;
	opacity: 0.7;
}
@media screen and (max-width: 768px) {
	.p-lp2-secret__label {
		font-size: 1rem;
		padding: 12px 28px;
		letter-spacing: 0.2em;
	}
}

.p-lp2-secret__body {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.95rem, 1.6vw, 1.1rem);
	color: rgba(255, 255, 255, 0.85);
	line-height: 2.2;
	letter-spacing: 0.04em;
}
.p-lp2-secret__body strong {
	color: #c9a84c;
	font-weight: 700;
	text-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}
@media screen and (max-width: 768px) {
	.p-lp2-secret__body {
		font-size: 0.9rem;
		text-align: center;
	}
}

.p-lp2-secret__badge {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
}
.p-lp2-secret__badge-line {
	width: 1px;
	height: 32px;
	background: -webkit-gradient(linear, left top, left bottom, from(#c9a84c), to(transparent));
	background: -webkit-linear-gradient(top, #c9a84c, transparent);
	background: linear-gradient(180deg, #c9a84c, transparent);
	opacity: 0.5;
}
.p-lp2-secret__badge-text {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: rgba(201, 168, 76, 0.6);
}

.p-lp2-advisor {
	background: #ffffff;
	padding: 64px 0 72px;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor {
		padding: 40px 0 48px;
	}
}

.p-lp2-advisor__header {
	position: relative;
	max-width: 1300px;
	margin: 0 auto 0;
	padding: 56px 40px 100px;
	background: -webkit-linear-gradient(290deg, #06101e 0%, #0d1b2a 50%, #111e35 100%);
	background: linear-gradient(160deg, #06101e 0%, #0d1b2a 50%, #111e35 100%);
	text-align: center;
	overflow: hidden;
}
.p-lp2-advisor__header::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 600px;
	height: 300px;
	background: -webkit-radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
	background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__header {
		padding: 40px 20px 48px;
		margin: 0;
	}
}

.p-lp2-advisor__header-crown {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 24px;
}
.p-lp2-advisor__header-crown svg {
	width: 64px;
	height: auto;
	-webkit-filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.5));
	filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.5));
}

.p-lp2-advisor__header-label {
	position: relative;
	z-index: 1;
	display: inline-block;
	background: -webkit-linear-gradient(315deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
	background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
	color: #0d1b2a;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.82rem, 1.4vw, 0.95rem);
	font-weight: 700;
	letter-spacing: 0.22em;
	padding: 12px 48px;
	margin-bottom: 32px;
	-webkit-box-shadow: 0 2px 20px rgba(201, 168, 76, 0.4);
	box-shadow: 0 2px 20px rgba(201, 168, 76, 0.4);
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__header-label {
		font-size: 0.82rem;
		padding: 10px 28px;
	}
}

.p-lp2-advisor__header-body {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
	background: transparent;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: rgba(255, 255, 255, 0.9);
	line-height: 2.2;
	text-align: center;
	border: none;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.p-lp2-advisor__header-body strong {
	color: #c9a84c;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__header-body {
		font-size: 0.82rem;
	}
}

.p-lp2-advisor__card {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 48px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	max-width: 860px;
	margin: -60px auto 0;
	background: #ffffff;
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-top: 3px solid #c9a84c;
	padding: 40px;
	-webkit-box-shadow: 0 -4px 0 rgba(201, 168, 76, 0.2), 0 8px 40px rgba(0, 0, 0, 0.15);
	box-shadow: 0 -4px 0 rgba(201, 168, 76, 0.2), 0 8px 40px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 1024px) {
	.p-lp2-advisor__card {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 28px;
		padding: 28px 24px;
	}
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__card {
		margin: -24px 16px 0;
	}
}

.p-lp2-advisor__photo-wrap {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.p-lp2-advisor__photo {
	width: 160px;
	height: 200px;
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.08) 0%, rgba(201, 168, 76, 0.1) 100%);
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.08) 0%, rgba(201, 168, 76, 0.1) 100%);
	border: 1px solid rgba(201, 168, 76, 0.35);
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.p-lp2-advisor__photo img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center top;
	object-position: center top;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__photo {
		width: 130px;
		height: 160px;
	}
}

.p-lp2-advisor__photo-placeholder {
	width: 80px;
	height: 100px;
	opacity: 0.7;
}

.p-lp2-advisor__photo-badge {
	background: #c9a84c;
	color: #0d1b2a;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 4px 14px;
	white-space: nowrap;
}

.p-lp2-advisor__profile {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.p-lp2-advisor__name-block {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #dde3ea;
}

.p-lp2-advisor__name-kana {
	font-size: 0.72rem;
	color: #7a8a9a;
	letter-spacing: 0.12em;
	margin-bottom: 4px;
}

.p-lp2-advisor__name {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	color: #0d1b2a;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}

.p-lp2-advisor__title-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: #c9a84c;
	background: rgba(201, 168, 76, 0.12);
	border: 1px solid rgba(201, 168, 76, 0.35);
	padding: 3px 14px;
	letter-spacing: 0.08em;
}

.p-lp2-advisor__career {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}
.p-lp2-advisor__career li {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 0.83rem;
	color: #1a1a2e;
	line-height: 1.7;
	padding-left: 18px;
	position: relative;
}
.p-lp2-advisor__career li::before {
	content: "▸";
	position: absolute;
	left: 0;
	color: #c9a84c;
	font-size: 0.75rem;
	top: 2px;
}
.p-lp2-advisor__career li strong {
	color: #0d1b2a;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__career li {
		font-size: 0.78rem;
	}
}

.p-lp2-advisor__appeal {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 0.88rem;
	color: #1a3a5c;
	line-height: 1.9;
	padding: 14px 20px;
	background: #f5f7fa;
	border-left: 3px solid #c9a84c;
	font-style: italic;
}
@media screen and (max-width: 768px) {
	.p-lp2-advisor__appeal {
		font-size: 0.83rem;
	}
}

.p-lp2-greeting {
	position: relative;
	z-index: 1;
	background: #0d1b2a;
	padding: 64px 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-greeting {
		padding: 48px 0;
	}
}

.p-lp2-greeting__inner {
	max-width: 760px;
	margin: 0 auto;
}

.p-lp2-greeting__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.2em;
	margin-bottom: 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.3);
	text-align: center;
}

.p-lp2-greeting__body p {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	color: rgba(255, 255, 255, 0.85);
	line-height: 2.2;
	margin-bottom: 16px;
}
.p-lp2-greeting__body p:last-child {
	margin-bottom: 0;
}
.p-lp2-greeting__body p strong {
	color: #c9a84c;
}
@media screen and (max-width: 768px) {
	.p-lp2-greeting__body p {
		font-size: 0.9rem;
	}
}

.p-lp2-privilege {
	background: #ffffff;
	padding: 72px 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-privilege {
		padding: 48px 0;
	}
}

.p-lp2-privilege__overtitle {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.8rem, 1.3vw, 0.9rem);
	color: #0d1b2a;
	text-align: center;
	letter-spacing: 0.2em;
	background: -webkit-linear-gradient(315deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
	background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
	padding: 12px 32px;
	max-width: 560px;
	margin: 0 auto 32px;
	-webkit-box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.5), 0 8px 32px rgba(201, 168, 76, 0.3), 0 16px 48px rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.5), 0 8px 32px rgba(201, 168, 76, 0.3), 0 16px 48px rgba(0, 0, 0, 0.12);
}
.p-lp2-privilege__overtitle strong {
	color: #0d1b2a;
	font-weight: 700;
}

.p-lp2-privilege__card {
	margin: 0 auto;
	background-color: transparent;
	background-image: url("https://sample.baby/lp/img/ticket_bk.png");
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 48px 80px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-lp2-privilege__card {
		padding: 24px 20px;
	}
}

.p-lp2-privilege__card-body {
	padding: 5% 15%;
}
@media screen and (max-width: 768px) {
	.p-lp2-privilege__card-body {
		padding: 10% 10%;
	}
}

.p-lp2-privilege__label {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #0d1b2a;
	margin-bottom: 10px;
}

.p-lp2-privilege__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.12em;
	margin-bottom: 12px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.p-lp2-privilege__divider {
	width: 48px;
	height: 1px;
	background: rgba(13, 27, 42, 0.25);
	margin: 0 auto 8px;
}

.p-lp2-privilege__desc {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: clamp(0.72rem, 1.2vw, 0.85rem);
	color: #f5f7fa;
	line-height: 1.6;
}
.p-lp2-privilege__desc strong {
	font-weight: 700;
	color: #ffffff;
}

.p-lp2-graph {
	background: #f5f7fa;
	padding: 72px 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-graph {
		padding: 48px 0;
	}
}

.p-lp2-graph .p-lp2-section-title {
	color: #0d1b2a;
}

.p-lp2-graph__wrap {
	max-width: 860px;
	margin: 0 auto;
	background: #0d1b2a;
	border: 1px solid rgba(201, 168, 76, 0.35);
	padding: 32px 40px 40px;
	-webkit-box-shadow: 0 4px 24px rgba(201, 168, 76, 0.1);
	box-shadow: 0 4px 24px rgba(201, 168, 76, 0.1);
}
@media screen and (max-width: 768px) {
	.p-lp2-graph__wrap {
		padding: 24px 20px 32px;
	}
}

.p-lp2-graph__label-top {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	font-weight: 700;
	color: #c9a84c;
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}

.p-lp2-graph__inner {
	position: relative;
	max-width: 560px;
	margin: 0 auto;
}

.p-lp2-graph__bars {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 48px;
	height: 280px;
}
@media screen and (max-width: 768px) {
	.p-lp2-graph__bars {
		gap: 24px;
		height: 230px;
	}
}

.p-lp2-graph__bar-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	height: 100%;
	gap: 0;
}

.p-lp2-graph__bar-label {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	margin-top: 10px;
}

.p-lp2-graph__bar-base {
	width: 112px;
	height: 28%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(80, 110, 150, 0.8)), to(rgba(50, 80, 120, 0.6)));
	background: -webkit-linear-gradient(top, rgba(80, 110, 150, 0.8) 0%, rgba(50, 80, 120, 0.6) 100%);
	background: linear-gradient(180deg, rgba(80, 110, 150, 0.8) 0%, rgba(50, 80, 120, 0.6) 100%);
	border: 1px solid rgba(100, 130, 160, 0.5);
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-graph__bar-base {
		width: 78px;
	}
}

.p-lp2-graph__arrow {
	position: absolute;
	left: -20px;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-top: 1px solid #c9a84c;
	border-bottom: 1px solid #c9a84c;
	padding: 4px 0;
}

.p-lp2-graph__arrow-tip {
	font-size: 0.6rem;
	color: #c9a84c;
	line-height: 1;
}

.p-lp2-graph__arrow-line {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	width: 1px;
	background: #c9a84c;
	margin: 2px 0;
}

.p-lp2-graph__bar-diff {
	position: relative;
	width: 112px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background: -webkit-gradient(linear, left top, left bottom, from(#f0d080), color-stop(40%, #c9a84c), to(#9a7a30));
	background: -webkit-linear-gradient(top, #f0d080 0%, #c9a84c 40%, #9a7a30 100%);
	background: linear-gradient(180deg, #f0d080 0%, #c9a84c 40%, #9a7a30 100%);
	border: 1px solid #c9a84c;
	border-bottom: none;
	-webkit-box-shadow: 0 0 24px rgba(201, 168, 76, 0.5);
	box-shadow: 0 0 24px rgba(201, 168, 76, 0.5);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 10px;
}
@media screen and (max-width: 768px) {
	.p-lp2-graph__bar-diff {
		width: 78px;
	}
}

.p-lp2-graph__bar-diff-val {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 0.7rem;
	color: #0d1b2a;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
}
.p-lp2-graph__bar-diff-val em {
	display: block;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.3rem;
	font-weight: 700;
	font-style: normal;
	color: #0d1b2a;
	line-height: 1.2;
}

.p-lp2-graph__baseline {
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(201, 168, 76, 0.6)), to(transparent));
	background: -webkit-linear-gradient(left, transparent, rgba(201, 168, 76, 0.6), transparent);
	background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
	margin: 0 0 8px;
}

.p-lp2-graph__comment {
	position: absolute;
	left: calc(-100% - 64px);
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	white-space: nowrap;
	text-align: right;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1rem, 1.8vw, 1.3rem);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	text-align: left;
}
.p-lp2-graph__comment strong {
	display: block;
	color: #d94f4f;
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	font-weight: 700;
	margin-top: 6px;
	text-shadow: 0 2px 8px rgba(13, 27, 42, 0.9), 0 0 20px rgba(13, 27, 42, 0.8), 2px 2px 4px rgb(13, 27, 42);
}
@media screen and (max-width: 768px) {
	.p-lp2-graph__comment {
		font-size: clamp(0.85rem, 3.5vw, 1rem);
		left: calc(-100% - 40px);
	}
	.p-lp2-graph__comment strong {
		font-size: clamp(1.1rem, 5vw, 1.6rem);
	}
}

@keyframes lp2BarRise {
	from {
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		opacity: 0;
	}
	to {
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
		opacity: 1;
	}
}
.p-lp2-benefits {
	position: relative;
	z-index: 1;
	background: #0d1b2a;
	padding: 72px 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-benefits {
		padding: 48px 0;
	}
}

.p-lp2-benefits__intro {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	text-align: center;
	font-size: clamp(0.88rem, 1.4vw, 1rem);
	color: rgba(255, 255, 255, 0.8);
	margin-top: -32px;
	margin-bottom: 40px;
	line-height: 2;
}
@media screen and (max-width: 768px) {
	.p-lp2-benefits__intro {
		margin-top: -20px;
		font-size: 0.82rem;
		text-align: left;
	}
}

.p-lp2-benefits__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	list-style: none;
	padding: 0;
	max-width: 760px;
	margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
	.p-lp2-benefits__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

.p-lp2-benefits__item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-top: 2px solid #c9a84c;
	padding: 24px 16px 20px;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-webkit-transition: background 0.25s ease, border-color 0.25s ease;
	transition: background 0.25s ease, border-color 0.25s ease;
}
.p-lp2-benefits__item:hover {
	background: rgba(201, 168, 76, 0.06);
	border-color: rgba(201, 168, 76, 0.5);
}

.p-lp2-benefits__item-icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.p-lp2-benefits__item-icon svg {
	width: 56px;
	height: 56px;
}

.p-lp2-benefits__item-text {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.6;
}
@media screen and (max-width: 768px) {
	.p-lp2-benefits__item-text {
		font-size: 0.8rem;
	}
}

.p-lp2-benefits__footer {
	text-align: center;
	padding: 28px;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background: rgba(201, 168, 76, 0.06);
	max-width: 560px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.p-lp2-benefits__footer {
		padding: 20px 5px;
		text-align: center;
	}
}

.p-lp2-benefits__footer-text {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
}

.p-lp2-benefits__footer-line {
	display: block;
	text-align: center;
	margin-bottom: 1em;
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	line-height: 0.9;
}
.p-lp2-benefits__footer-line:last-child {
	margin-bottom: 0;
}
.p-lp2-benefits__footer-line strong {
	display: inline-block;
	color: #c9a84c;
	font-size: clamp(1.2rem, 2.2vw, 1.7rem);
	line-height: 1;
	font-weight: 700;
	vertical-align: bottom;
}

.p-lp2-cta {
	position: relative;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f6f0), to(#ffffff));
	background: -webkit-linear-gradient(top, #f8f6f0 0%, #ffffff 100%);
	background: linear-gradient(180deg, #f8f6f0 0%, #ffffff 100%);
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
	.p-lp2-cta {
		padding: 56px 0;
	}
}

.p-lp2-cta__inner {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	background: -webkit-linear-gradient(290deg, #0a1628 0%, #0d1b2a 60%, #111e35 100%);
	background: linear-gradient(160deg, #0a1628 0%, #0d1b2a 60%, #111e35 100%);
	border: 1px solid rgba(201, 168, 76, 0.4);
	border-top: 2px solid #c9a84c;
	padding: 56px 48px;
	-webkit-box-shadow: 0 8px 40px rgba(13, 27, 42, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.1) inset;
	box-shadow: 0 8px 40px rgba(13, 27, 42, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.1) inset;
}
.p-lp2-cta__inner::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#f0d080), to(transparent));
	background: -webkit-linear-gradient(left, transparent, #f0d080, transparent);
	background: linear-gradient(90deg, transparent, #f0d080, transparent);
}
@media screen and (max-width: 768px) {
	.p-lp2-cta__inner {
		padding: 40px 24px;
	}
}

.p-lp2-cta__icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 28px;
}
.p-lp2-cta__icon svg {
	width: 72px;
	height: 72px;
	-webkit-filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.45));
	filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.45));
}

.p-lp2-cta__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.8;
	margin-bottom: 24px;
}
.p-lp2-cta__title::after {
	content: "";
	display: block;
	width: 48px;
	height: 1px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#c9a84c), to(transparent));
	background: -webkit-linear-gradient(left, transparent, #c9a84c, transparent);
	background: linear-gradient(90deg, transparent, #c9a84c, transparent);
	margin: 20px auto 0;
}

@media screen and (max-width: 768px) {
	.p-lp2-cta__title-main {
		font-size: 0.82rem;
	}
}

.p-lp2-cta__body {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: rgba(255, 255, 255, 0.8);
	line-height: 2.2;
	margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
	.p-lp2-cta__body {
		text-align: left;
	}
}

.p-lp2-cta__btn {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	background: -webkit-linear-gradient(315deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
	background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
	background-size: 200% auto;
	color: #0d1b2a;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 18px 48px;
	text-decoration: none;
	-webkit-transition: background-position 0.4s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.2s ease;
	transition: background-position 0.4s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.2s ease;
	transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.2s ease;
	transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.2s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.2s ease;
	-webkit-box-shadow: 0 4px 24px rgba(201, 168, 76, 0.45);
	box-shadow: 0 4px 24px rgba(201, 168, 76, 0.45);
}
.p-lp2-cta__btn:hover {
	background-position: right center;
	-webkit-box-shadow: 0 8px 32px rgba(201, 168, 76, 0.65);
	box-shadow: 0 8px 32px rgba(201, 168, 76, 0.65);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	opacity: 1;
}
.p-lp2-cta__btn:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
@media screen and (max-width: 768px) {
	.p-lp2-cta__btn {
		padding: 16px 28px;
		font-size: 0.95rem;
		width: 100%;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.p-lp2-cta__btn-icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.p-lp2-cta__btn-icon svg {
	width: 18px;
	height: 18px;
}

.p-lp2-cta__note {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
	line-height: 2;
	margin-top: 24px;
}
@media screen and (max-width: 768px) {
	.p-lp2-cta__note {
		font-size: 0.65rem;
	}
}

.p-lp3-fv {
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.82) 0%, rgba(13, 27, 42, 0.65) 50%, rgba(13, 27, 42, 0.8) 100%), url("https://sample.baby/lp/img/lp03_bk.png") center center/cover no-repeat;
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.82) 0%, rgba(13, 27, 42, 0.65) 50%, rgba(13, 27, 42, 0.8) 100%), url("https://sample.baby/lp/img/lp03_bk.png") center center/cover no-repeat;
}

.lp4 {
	--c-deep: #030a14;
	--c-navy: #0d1b2a;
	--c-navy-l: #162640;
	--c-gold: #c9a84c;
	--c-gold-l: #f0d878;
	--c-gold-d: #8a6a28;
	--c-gold-pale: rgba(201, 168, 76, 0.08);
	--c-white: #ffffff;
	--c-text: rgba(255, 255, 255, 0.72);
	--c-muted: rgba(255, 255, 255, 0.42);
	--c-border: rgba(201, 168, 76, 0.25);
	--c-rise: #d94f4f;
	--font-serif: Cormorant Garamond, Noto Serif JP, serif;
	--font-display: Exo 2, Noto Sans JP, sans-serif;
	--font-body: Noto Sans JP, sans-serif;
}

.lp4 *, .lp4 *::before, .lp4 *::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.lp4 {
	font-family: var(--font-body);
	color: var(--c-white);
	background: var(--c-deep);
	line-height: 1.8;
}

.lp4 a {
	color: inherit;
	text-decoration: none;
}

.lp4 p {
	margin: 0;
	line-height: inherit;
}

.lp4 ul, .lp4 ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp4 strong {
	font-weight: 700;
}

.lp4 em {
	font-style: normal;
}

.lp4-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px;
}
@media screen and (max-width: 768px) {
	.lp4-wrap {
		padding: 0 20px;
	}
}

.lp4-fade {
	opacity: 0;
	-webkit-transform: translateY(32px);
	transform: translateY(32px);
	-webkit-transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.lp4-fade.is-vis {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
.lp4-fade.d1 {
	-webkit-transition-delay: 0.08s;
	transition-delay: 0.08s;
}
.lp4-fade.d2 {
	-webkit-transition-delay: 0.16s;
	transition-delay: 0.16s;
}
.lp4-fade.d3 {
	-webkit-transition-delay: 0.24s;
	transition-delay: 0.24s;
}
.lp4-fade.d4 {
	-webkit-transition-delay: 0.32s;
	transition-delay: 0.32s;
}

.lp4-eye {
	display: block;
	font-family: var(--font-display);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.5em;
	color: var(--c-gold);
	opacity: 0.65;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.lp4-ttl {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	line-height: 1.3;
	letter-spacing: 0.04em;
	color: var(--c-white);
}
.lp4-ttl strong {
	color: var(--c-gold);
	font-weight: 400;
}
@media screen and (max-width: 768px) {
	.lp4-ttl {
		font-size: 1.5rem;
	}
}

.lp4-ttl--sm {
	font-size: 0.65em;
	font-weight: 300;
	opacity: 0.75;
}

.lp4-rule {
	display: block;
	width: 48px;
	height: 1px;
	background: -webkit-gradient(linear, left top, right top, from(var(--c-gold)), to(transparent));
	background: -webkit-linear-gradient(left, var(--c-gold), transparent);
	background: linear-gradient(90deg, var(--c-gold), transparent);
	margin: 20px 0;
}
.lp4-rule--c {
	margin: 20px auto;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--c-gold)), to(transparent));
	background: -webkit-linear-gradient(left, transparent, var(--c-gold), transparent);
	background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
	width: 80px;
}

.lp4-mail {
	background: #1e2d3d;
	padding: 72px 0 0;
	position: relative;
	overflow: hidden;
}
.lp4-mail::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: -webkit-radial-gradient(50% 0%, ellipse 70% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 100%);
	background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 100%);
}

.lp4-mail__icon-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 36px;
	position: relative;
	z-index: 1;
}

.lp4-mail__icon {
	width: 72px;
	height: 72px;
	background: rgba(201, 168, 76, 0.06);
	border: 1px solid var(--c-border);
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.25));
	filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.25));
}
.lp4-mail__icon svg {
	width: 34px;
	height: 34px;
}

.lp4-mail__icon-label {
	font-family: var(--font-display);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.45em;
	color: var(--c-gold);
	opacity: 0.6;
}

.lp4-mail__card {
	max-width: 820px;
	margin: 0 auto;
	background: var(--c-navy);
	border: 1px solid var(--c-border);
	border-top: 2px solid var(--c-gold);
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 8px 60px rgba(13, 27, 42, 0.25);
	box-shadow: 0 8px 60px rgba(13, 27, 42, 0.25);
	padding-bottom: 0;
}

.lp4-mail__header {
	background: rgba(201, 168, 76, 0.07);
	border-bottom: 1px solid var(--c-border);
	padding: 14px 32px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
	.lp4-mail__header {
		padding: 12px 20px;
		gap: 8px;
	}
}

.lp4-mail__from {
	font-family: var(--font-display);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--c-gold);
	opacity: 0.7;
	white-space: nowrap;
}

.lp4-mail__from-val {
	font-size: 0.75rem;
	color: var(--c-text);
	letter-spacing: 0.04em;
}

.lp4-mail__header-sep {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 1px;
	background: var(--c-border);
}

.lp4-mail__stamp {
	font-family: var(--font-display);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--c-gold);
	opacity: 0.5;
	white-space: nowrap;
}

.lp4-mail__subject {
	padding: 18px 32px 16px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.1);
	font-family: "Noto Serif JP", serif;
	font-size: clamp(0.88rem, 1.4vw, 0.98rem);
	font-weight: 700;
	color: var(--c-white);
	letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
	.lp4-mail__subject {
		padding: 14px 20px 12px;
	}
}
.lp4-mail__subject::before {
	content: "件名：";
	font-size: 0.7em;
	color: var(--c-gold);
	opacity: 0.65;
	font-weight: 400;
	margin-right: 8px;
}
@media screen and (max-width: 768px) {
	.lp4-mail__subject {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 4px;
	}
	.lp4-mail__subject::before {
		margin-right: 0;
	}
}

.lp4-mail__body {
	padding: 36px 40px 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 22px;
}
@media screen and (max-width: 768px) {
	.lp4-mail__body {
		padding: 28px 22px 32px;
		gap: 18px;
	}
}

.lp4-mail__greeting {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(0.95rem, 1.6vw, 1.05rem);
	font-weight: 300;
	color: var(--c-text);
	line-height: 2.2;
	letter-spacing: 0.04em;
}
.lp4-mail__greeting strong {
	color: var(--c-gold);
	font-weight: 700;
}

.lp4-mail__selected {
	background: rgba(201, 168, 76, 0.08);
	border: 1px solid rgba(201, 168, 76, 0.3);
	border-left: 3px solid var(--c-gold);
	padding: 20px 24px;
}

.lp4-mail__selected-label {
	font-family: var(--font-display);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.35em;
	color: var(--c-gold);
	opacity: 0.7;
	margin-bottom: 10px;
}

.lp4-mail__selected-txt {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(0.92rem, 1.5vw, 1rem);
	color: var(--c-text);
	line-height: 2.1;
	letter-spacing: 0.04em;
}
.lp4-mail__selected-txt strong {
	color: var(--c-white);
	font-weight: 700;
}

.lp4-mail__txt {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(0.88rem, 1.4vw, 0.96rem);
	color: var(--c-muted);
	line-height: 2.3;
	letter-spacing: 0.04em;
}
.lp4-mail__txt strong {
	color: var(--c-text);
	font-weight: 700;
}

.lp4-mail__sep {
	border: none;
	height: 1px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--c-border)), to(transparent));
	background: -webkit-linear-gradient(left, transparent, var(--c-border), transparent);
	background: linear-gradient(90deg, transparent, var(--c-border), transparent);
	margin: 4px 0;
}

.lp4-mail__notice {
	background: rgba(217, 79, 79, 0.06);
	border: 1px solid rgba(217, 79, 79, 0.25);
	padding: 12px 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 10px;
}
@media screen and (max-width: 768px) {
	.lp4-mail__notice {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 6px;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.lp4-mail__notice-icon {
	font-size: 0.75rem;
	color: var(--c-rise);
	opacity: 0.8;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-top: 2px;
}

.lp4-mail__notice-txt {
	font-size: 0.76rem;
	color: var(--c-muted);
	line-height: 1.85;
	letter-spacing: 0.04em;
}

.lp4-mail__arrow {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0;
	padding: 24px 0 0;
}

.lp4-mail__arrow-line {
	width: 1px;
	height: 48px;
	background: -webkit-gradient(linear, left top, left bottom, from(var(--c-border)), to(var(--c-gold)));
	background: -webkit-linear-gradient(top, var(--c-border), var(--c-gold));
	background: linear-gradient(180deg, var(--c-border), var(--c-gold));
}

.lp4-mail__arrow-head {
	font-size: 0.7rem;
	color: var(--c-gold);
	opacity: 0.7;
	line-height: 1;
	-webkit-animation: lp4ArrowBounce 1.6s ease-in-out infinite;
	animation: lp4ArrowBounce 1.6s ease-in-out infinite;
}

@-webkit-keyframes lp4ArrowBounce {
	0%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}
}

@keyframes lp4ArrowBounce {
	0%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}
}
.lp4-fv {
	position: relative;
	min-height: 600px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: var(--c-deep);
	overflow: hidden;
	padding: 100px 0 80px;
}
@media screen and (max-width: 768px) {
	.lp4-fv {
		min-height: auto;
		padding: 64px 0 56px;
	}
}

.lp4-fv__grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: -webkit-linear-gradient(rgba(201, 168, 76, 0.055) 1px, transparent 1px), -webkit-linear-gradient(left, rgba(201, 168, 76, 0.055) 1px, transparent 1px);
	background-image: linear-gradient(rgba(201, 168, 76, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.055) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: -webkit-radial-gradient(50% 50%, ellipse 85% 90%, black 25%, transparent 100%);
	mask-image: radial-gradient(ellipse 85% 90% at 50% 50%, black 25%, transparent 100%);
}

.lp4-fv__glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	-webkit-filter: blur(50px);
	filter: blur(50px);
}
.lp4-fv__glow--1 {
	top: -140px;
	left: 0;
	width: 640px;
	height: 520px;
	background: -webkit-radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
	background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}
.lp4-fv__glow--2 {
	bottom: -120px;
	right: 0;
	width: 540px;
	height: 440px;
	background: -webkit-radial-gradient(ellipse, rgba(42, 90, 140, 0.16) 0%, transparent 70%);
	background: radial-gradient(ellipse, rgba(42, 90, 140, 0.16) 0%, transparent 70%);
}

.lp4-fv__in {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 72px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media (max-width: 960px) {
	.lp4-fv__in {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

.lp4-fv__pre {
	font-family: var(--font-display);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.55em;
	color: rgba(201, 168, 76, 0.55);
	margin-bottom: 18px;
}

.lp4-fv__h1 {
	font-family: var(--font-display);
	font-weight: 100;
	font-size: clamp(3.4rem, 7.5vw, 6.2rem);
	line-height: 0.92;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	background: -webkit-linear-gradient(315deg, #f0d878 0%, #c9a84c 40%, #f0d878 70%, #c9a84c 100%);
	background: linear-gradient(135deg, #f0d878 0%, #c9a84c 40%, #f0d878 70%, #c9a84c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
@media screen and (max-width: 768px) {
	.lp4-fv__h1 {
		font-size: clamp(2.8rem, 12vw, 4rem);
	}
}

.lp4-fv__sub {
	font-family: var(--font-serif);
	font-size: clamp(1rem, 1.8vw, 1.3rem);
	font-weight: 300;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.8;
	letter-spacing: 0.06em;
	margin-bottom: 44px;
}

.lp4-fv__specs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 14px;
}

.lp4-fv__spec {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
}

.lp4-fv__spec-lbl {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--c-gold);
	opacity: 0.75;
	white-space: nowrap;
	width: 88px;
}

.lp4-fv__spec-line {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 1px;
	background: var(--c-border);
}

.lp4-fv__spec-val {
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 1.8vw, 1.45rem);
	font-weight: 300;
	color: var(--c-white);
	white-space: nowrap;
	letter-spacing: 0.04em;
}
.lp4-fv__spec-val strong {
	color: var(--c-gold);
	font-weight: 400;
}

.lp4-fv__img {
	position: relative;
}

.lp4-fv__img-box {
	position: relative;
	aspect-ratio: 3/4;
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.85), rgba(6, 10, 20, 0.92));
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.85), rgba(6, 10, 20, 0.92));
	border: 1px solid var(--c-border);
	border-top: 2px solid var(--c-gold);
	overflow: visible;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (max-width: 960px) {
	.lp4-fv__img-box {
		aspect-ratio: 4/5;
	}
}
.lp4-fv__img-box::before, .lp4-fv__img-box::after {
	display: none;
}

.lp4-fv__placeholder {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	color: var(--c-gold);
	opacity: 0.3;
	font-family: var(--font-display);
	font-size: 0.62rem;
	letter-spacing: 0.3em;
}

.lp4-fv__badge {
	position: absolute;
	bottom: -24px;
	left: -28px;
	background: var(--c-deep);
	border: 1px solid var(--c-gold);
	padding: 16px 24px;
	-webkit-box-shadow: 0 8px 40px rgba(201, 168, 76, 0.18);
	box-shadow: 0 8px 40px rgba(201, 168, 76, 0.18);
	z-index: 2;
}
@media screen and (max-width: 768px) {
	.lp4-fv__badge {
		bottom: -28px;
		left: 20px;
		top: auto;
		right: auto;
	}
}

.lp4-fv__badge-lbl {
	font-family: var(--font-display);
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: var(--c-gold);
	opacity: 0.65;
	margin-bottom: 5px;
}

.lp4-fv__badge-num {
	font-family: var(--font-display);
	font-weight: 200;
	font-size: 2.6rem;
	line-height: 1;
	color: var(--c-gold-l);
}

.lp4-fv__badge-unit {
	font-family: var(--font-serif);
	font-size: 0.78rem;
	font-weight: 300;
	color: var(--c-gold);
	margin-left: 3px;
}

.lp4-kn {
	background: -webkit-gradient(linear, left top, left bottom, from(var(--c-deep)), to(var(--c-navy)));
	background: -webkit-linear-gradient(top, var(--c-deep) 0%, var(--c-navy) 100%);
	background: linear-gradient(180deg, var(--c-deep) 0%, var(--c-navy) 100%);
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
	padding: 32px 0;
}

.lp4-kn__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: 900px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.lp4-kn__grid {
		grid-template-columns: 1fr;
	}
}

.lp4-kn__item {
	text-align: center;
	padding: 0 32px;
	position: relative;
}
.lp4-kn__item + .lp4-kn__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8%;
	bottom: 8%;
	width: 1px;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(var(--c-border)), to(transparent));
	background: -webkit-linear-gradient(top, transparent, var(--c-border), transparent);
	background: linear-gradient(180deg, transparent, var(--c-border), transparent);
}
@media screen and (max-width: 768px) {
	.lp4-kn__item {
		padding: 28px 20px;
	}
	.lp4-kn__item + .lp4-kn__item::before {
		top: 0;
		left: 15%;
		right: 15%;
		bottom: auto;
		width: auto;
		height: 1px;
		background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--c-border)), to(transparent));
		background: -webkit-linear-gradient(left, transparent, var(--c-border), transparent);
		background: linear-gradient(90deg, transparent, var(--c-border), transparent);
	}
}

.lp4-kn__lbl {
	font-family: var(--font-display);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: var(--c-gold);
	opacity: 0.65;
	margin-bottom: 4px;
}

.lp4-kn__num {
	font-family: var(--font-display);
	font-weight: 200;
	font-size: clamp(3.2rem, 6vw, 5.5rem);
	line-height: 1.2 !important;
	margin-bottom: 4px;
	background: -webkit-linear-gradient(315deg, #f0d878 0%, #c9a84c 60%);
	background: linear-gradient(135deg, #f0d878 0%, #c9a84c 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lp4-kn__unit {
	font-family: var(--font-serif);
	font-size: 0.7rem;
	font-weight: 300;
	-webkit-text-fill-color: var(--c-gold);
	color: var(--c-gold);
	margin-left: 2px;
}

.lp4-kn__desc {
	font-size: 0.76rem;
	color: var(--c-muted);
	line-height: 1.8;
}

.lp5-special__alert {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin: 0 auto 52px;
	background: rgba(217, 79, 79, 0.1);
	border: 1px solid rgba(217, 79, 79, 0.5);
	border-left: 4px solid var(--c-rise);
	padding: 20px 28px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 14px;
}
@media screen and (max-width: 768px) {
	.lp5-special__alert {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 6px;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.lp5-special__alert-icon {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 1rem;
	color: var(--c-rise);
	margin-top: 1px;
}

.lp5-special__alert-txt {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(0.92rem, 1.5vw, 1.05rem);
	color: rgba(13, 27, 42, 0.75);
	line-height: 2.1;
	letter-spacing: 0.04em;
	text-align: left;
}
.lp5-special__alert-txt strong {
	display: block;
	font-size: 1.15em;
	color: var(--c-navy);
	margin-top: 4px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.lp5-special {
	background: #f0f2f5;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.lp5-special::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--c-gold)), to(transparent));
	background: -webkit-linear-gradient(left, transparent, var(--c-gold), transparent);
	background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.lp5-special__hd {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
}

.lp5-special__label {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.45em;
	color: var(--c-gold);
	opacity: 0.9;
	border: 1px solid rgba(201, 168, 76, 0.4);
	padding: 6px 20px;
	margin-bottom: 20px;
}

.lp5-special__ttl {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: clamp(1.5rem, 3vw, 2.4rem);
	color: var(--c-navy);
	line-height: 1.55;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
}
.lp5-special__ttl em {
	color: var(--c-gold-d);
	font-style: italic;
	font-weight: 700;
}

.lp5-special__sub {
	font-family: var(--font-serif);
	font-size: clamp(0.85rem, 1.4vw, 0.95rem);
	color: rgba(13, 27, 42, 0.55);
	letter-spacing: 0.06em;
}

.lp5-special__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	background: var(--c-border);
	border: 1px solid var(--c-border);
	max-width: 900px;
	margin: 48px auto 0;
}
@media screen and (max-width: 768px) {
	.lp5-special__grid {
		grid-template-columns: 1fr;
	}
}
@media (min-width: 769px) {
	.lp5-special__grid {
		-webkit-box-align: stretch;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
}

.lp5-special__card {
	background: var(--c-navy);
	padding: 36px 40px 48px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	position: relative;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
.lp5-special__card:hover {
	background: var(--c-navy-l);
}
@media (min-width: 769px) {
	.lp5-special__card {
		height: 100%;
	}
}
.lp5-special__card::before {
	display: none;
}

.lp5-special__point {
	width: 100%;
	background: -webkit-gradient(linear, left top, right top, from(var(--c-gold-d)), color-stop(var(--c-gold)), color-stop(var(--c-gold-l)), to(var(--c-gold)));
	background: -webkit-linear-gradient(left, var(--c-gold-d), var(--c-gold), var(--c-gold-l), var(--c-gold));
	background: linear-gradient(90deg, var(--c-gold-d), var(--c-gold), var(--c-gold-l), var(--c-gold));
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 24px;
	margin-bottom: 28px;
}

.lp5-special__point-label {
	font-family: var(--font-display);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.45em;
	color: var(--c-deep);
	opacity: 0.9;
	line-height: 1;
	padding-bottom: 2px;
}

.lp5-special__point-num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1;
	color: var(--c-deep);
	letter-spacing: 0.05em;
}

.lp5-special__point-line {
	display: none;
}

.lp5-special__card-sub {
	font-family: var(--font-serif);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	font-weight: 400;
	color: var(--c-gold);
	letter-spacing: 0.1em;
	line-height: 1;
	opacity: 0.85;
}

.lp5-special__card-main {
	font-family: var(--font-display);
	font-weight: 200;
	font-size: clamp(3.2rem, 5.5vw, 5rem);
	line-height: 1.05;
	background: -webkit-linear-gradient(315deg, #f0d878 0%, #c9a84c 60%);
	background: linear-gradient(135deg, #f0d878 0%, #c9a84c 60%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 0.02em;
	text-align: center;
	margin-top: -10px;
}
.lp5-special__card-main em {
	font-size: 0.48em;
	font-style: normal;
	font-weight: 300;
	-webkit-text-fill-color: var(--c-gold);
	color: var(--c-gold);
	letter-spacing: 0.05em;
}
.lp5-special__card-main span {
	font-size: 0.4em;
	font-weight: 300;
	-webkit-text-fill-color: var(--c-gold);
	letter-spacing: 0.05em;
	margin-left: 2px;
}

.lp5-special__card-note {
	font-size: 0.58rem;
	color: var(--c-muted);
	line-height: 1.5;
	letter-spacing: 0.01em;
	text-align: center;
	opacity: 0.45;
	max-width: 260px;
	margin-top: -8px;
	white-space: nowrap;
}

.lp5-special__message {
	max-width: 820px;
	margin: 40px auto 0;
	background: var(--c-navy);
	border: 1px solid var(--c-border);
	border-left: 4px solid var(--c-gold);
	padding: 32px 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
@media screen and (max-width: 768px) {
	.lp5-special__message {
		padding: 24px 20px;
	}
}

.lp5-special__message-txt {
	font-family: var(--font-serif);
	font-size: clamp(0.92rem, 1.5vw, 1.02rem);
	color: var(--c-text);
	line-height: 2.2;
	letter-spacing: 0.04em;
	text-align: left;
}
.lp5-special__message-txt strong {
	color: var(--c-white);
	font-weight: 700;
}

.lp5-gold {
	color: var(--c-gold);
	font-style: normal;
	font-weight: 700;
}

.lp5-special__card-ttl {
	font-family: var(--font-serif);
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	font-weight: 700;
	color: var(--c-white);
	line-height: 1.5;
	text-align: center;
}

.lp5-special__card-desc {
	font-size: 0.83rem;
	color: var(--c-muted);
	line-height: 2.2;
	text-align: center;
	max-width: 280px;
}
@media screen and (max-width: 768px) {
	.lp5-special__card-desc {
		text-align: left;
		max-width: 100%;
	}
}

.lp5-plan {
	background: var(--c-deep);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.lp5-plan::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 800px;
	height: 600px;
	border-radius: 50%;
	background: -webkit-radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
	background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 65%);
	pointer-events: none;
}

.lp5-plan__hd {
	text-align: center;
	margin-bottom: 64px;
}

.lp5-plan__diff {
	max-width: 820px;
	margin: 0 auto 64px;
	background: rgba(201, 168, 76, 0.06);
	border: 1px solid var(--c-border);
	border-left: 4px solid var(--c-gold);
	padding: 28px 36px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
@media screen and (max-width: 768px) {
	.lp5-plan__diff {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 22px 20px;
	}
}

.lp5-plan__diff-icon {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	background: rgba(201, 168, 76, 0.1);
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 2px;
}
.lp5-plan__diff-icon svg {
	width: 22px;
	height: 22px;
}

.lp5-plan__diff-txt {
	font-family: var(--font-serif);
	font-size: clamp(0.95rem, 1.6vw, 1.05rem);
	color: var(--c-text);
	line-height: 2.3;
	letter-spacing: 0.04em;
}
.lp5-plan__diff-txt strong {
	color: var(--c-gold);
	font-weight: 700;
}

.lp5-plan__features {
	max-width: 820px;
	margin: 0 auto 64px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
	background: var(--c-border);
	border: 1px solid var(--c-border);
}

.lp5-plan__feature {
	background: var(--c-navy);
	padding: 32px 36px;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 20px;
	-webkit-box-align: start;
	-webkit-align-items: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
.lp5-plan__feature:hover {
	background: rgba(13, 27, 42, 0.8);
}
@media screen and (max-width: 768px) {
	.lp5-plan__feature {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 24px 20px;
	}
}

.lp5-plan__feature-num {
	font-family: var(--font-display);
	font-weight: 200;
	font-size: 2rem;
	color: var(--c-gold);
	opacity: 0.5;
	line-height: 1;
	padding-top: 4px;
}

.lp5-plan__feature-ttl {
	font-family: var(--font-serif);
	font-size: clamp(1rem, 1.6vw, 1.1rem);
	font-weight: 700;
	color: var(--c-white);
	margin-bottom: 8px;
	line-height: 1.5;
}

.lp5-plan__feature-desc {
	font-size: 0.83rem;
	color: var(--c-muted);
	line-height: 2.2;
}
.lp5-plan__feature-desc strong {
	color: var(--c-text);
	font-weight: 700;
}

.lp5-plan__market {
	max-width: 820px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--c-border);
	padding: 36px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.lp5-plan__market {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 24px 20px;
	}
}

.lp5-plan__market-ttl {
	font-family: var(--font-serif);
	font-size: clamp(1rem, 1.7vw, 1.2rem);
	font-weight: 700;
	color: var(--c-white);
	line-height: 1.6;
	margin-bottom: 16px;
}
.lp5-plan__market-ttl em {
	color: var(--c-gold);
	font-style: normal;
}

.lp5-plan__market-desc {
	font-size: 0.83rem;
	color: var(--c-muted);
	line-height: 2.2;
}

.lp5-plan__market-chart {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.lp5-plan__market-chart svg {
	width: 100%;
	max-width: 360px;
	background: rgba(255, 255, 255, 0.09);
	border-radius: 4px;
}
@media screen and (max-width: 768px) {
	.lp5-plan__market-chart svg {
		max-width: 100%;
		display: block;
		margin: 0 auto;
	}
}

.lp5-compound {
	max-width: 860px;
	margin: 0 auto 64px;
}

.lp5-compound__ttl {
	font-family: var(--font-serif);
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	font-weight: 700;
	color: var(--c-gold);
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

@-webkit-keyframes lp5-expand-w {
	from {
		width: 0;
		max-width: 0;
	}
}

@keyframes lp5-expand-w {
	from {
		width: 0;
		max-width: 0;
	}
}
.lp5-compound__track {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 0;
}
@media screen and (max-width: 768px) {
	.lp5-compound__track {
		display: none;
	}
}

.lp5-compound__item {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
	clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
	margin-right: -1px;
	padding: 0;
	-webkit-transition: -webkit-filter 0.2s;
	transition: -webkit-filter 0.2s;
	transition: filter 0.2s;
	transition: filter 0.2s, -webkit-filter 0.2s;
	overflow: hidden;
}
.lp5-compound__item:last-child {
	-webkit-clip-path: none;
	clip-path: none;
	border-radius: 0 3px 3px 0;
	margin-right: 0;
	border: 1px solid rgba(201, 168, 76, 0.35);
}
.lp5-compound__item:hover {
	-webkit-filter: brightness(1.12);
	filter: brightness(1.12);
}
.lp5-compound__item:nth-child(1) {
	height: 130px;
}
.lp5-compound__item:nth-child(2) {
	height: 170px;
}
.lp5-compound__item:nth-child(3) {
	height: 220px;
}
.lp5-compound__item:nth-child(4) {
	height: 280px;
}
@media screen and (max-width: 768px) {
	.lp5-compound__item {
		display: none;
	}
}

.lp5-compound__item-inner {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	overflow: hidden;
	white-space: nowrap;
}
.lp5-compound__track.is-vis .lp5-compound__item-inner {
	width: 100%;
}
.lp5-compound__track.is-vis .lp5-compound__item:nth-child(1) .lp5-compound__item-inner {
	-webkit-transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0s;
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}
.lp5-compound__track.is-vis .lp5-compound__item:nth-child(2) .lp5-compound__item-inner {
	-webkit-transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
}
.lp5-compound__track.is-vis .lp5-compound__item:nth-child(3) .lp5-compound__item-inner {
	-webkit-transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}
.lp5-compound__track.is-vis .lp5-compound__item:nth-child(4) .lp5-compound__item-inner {
	-webkit-transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.42s;
	transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.42s;
}
.lp5-compound__item-inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
}
.lp5-compound__item-inner .lp5-compound__body {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px 28px 20px 20px;
	white-space: nowrap;
}

.lp5-compound__item:nth-child(1) .lp5-compound__item-inner {
	background: -webkit-linear-gradient(290deg, #0e3347, #0a2535);
	background: linear-gradient(160deg, #0e3347, #0a2535);
}
.lp5-compound__item:nth-child(1) .lp5-compound__item-inner::before {
	background: -webkit-gradient(linear, left top, right top, from(#7dd4f5), to(transparent));
	background: -webkit-linear-gradient(left, #7dd4f5, transparent);
	background: linear-gradient(90deg, #7dd4f5, transparent);
}

.lp5-compound__item:nth-child(2) .lp5-compound__item-inner {
	background: -webkit-linear-gradient(290deg, #16472a, #0e3020);
	background: linear-gradient(160deg, #16472a, #0e3020);
}
.lp5-compound__item:nth-child(2) .lp5-compound__item-inner::before {
	background: -webkit-gradient(linear, left top, right top, from(#7de8a0), to(transparent));
	background: -webkit-linear-gradient(left, #7de8a0, transparent);
	background: linear-gradient(90deg, #7de8a0, transparent);
}

.lp5-compound__item:nth-child(3) .lp5-compound__item-inner {
	background: -webkit-linear-gradient(290deg, #3d3010, #27200a);
	background: linear-gradient(160deg, #3d3010, #27200a);
}
.lp5-compound__item:nth-child(3) .lp5-compound__item-inner::before {
	background: -webkit-gradient(linear, left top, right top, from(#f5c842), to(transparent));
	background: -webkit-linear-gradient(left, #f5c842, transparent);
	background: linear-gradient(90deg, #f5c842, transparent);
}

.lp5-compound__item:nth-child(4) .lp5-compound__item-inner {
	background: -webkit-linear-gradient(290deg, #3d2a08, #241800);
	background: linear-gradient(160deg, #3d2a08, #241800);
}
.lp5-compound__item:nth-child(4) .lp5-compound__item-inner::before {
	background: -webkit-gradient(linear, left top, right top, from(#f0d878), to(#c9a84c));
	background: -webkit-linear-gradient(left, #f0d878, #c9a84c);
	background: linear-gradient(90deg, #f0d878, #c9a84c);
}

.lp5-compound__period {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 8px;
}

.lp5-compound__amount {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(0.9rem, 1.4vw, 1.05rem);
	color: var(--c-white);
	line-height: 1.3;
}
.lp5-compound__amount.lp5-compound__amount--goal {
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	color: var(--c-gold-l);
	font-weight: 500;
}

.lp5-compound__circle {
	display: none;
}

.lp5-compound__body {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.lp5-compound__arrow {
	display: none;
}

.lp5-compound__sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.lp5-compound__sp {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 5px;
	}
}

.lp5-compound__row {
	position: relative;
	height: 72px;
	overflow: hidden;
}
.lp5-compound__row::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 3px;
}
.lp5-compound__row:nth-child(4) {
	height: 80px;
}

.lp5-compound__row-bg {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	border-radius: 0 3px 3px 0;
	z-index: 1;
	-webkit-clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
	width: 0;
	-webkit-transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp5-compound__row-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 10px;
	height: 2px;
}

.lp5-compound__sp.is-vis .lp5-compound__row:nth-child(1) .lp5-compound__row-bg {
	width: 20%;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.lp5-compound__sp.is-vis .lp5-compound__row:nth-child(2) .lp5-compound__row-bg {
	width: 35%;
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
}
.lp5-compound__sp.is-vis .lp5-compound__row:nth-child(3) .lp5-compound__row-bg {
	width: 60%;
	-webkit-transition-delay: 0.24s;
	transition-delay: 0.24s;
}
.lp5-compound__sp.is-vis .lp5-compound__row:nth-child(4) .lp5-compound__row-bg {
	width: 100%;
	-webkit-transition-delay: 0.36s;
	transition-delay: 0.36s;
}

.lp5-compound__row:nth-child(1) .lp5-compound__row-bg {
	background: -webkit-linear-gradient(315deg, #1a4d6e, #0e3047);
	background: linear-gradient(135deg, #1a4d6e, #0e3047);
}
.lp5-compound__row:nth-child(1) .lp5-compound__row-bg::before {
	background: -webkit-gradient(linear, left top, right top, from(#7dd4f5), to(transparent));
	background: -webkit-linear-gradient(left, #7dd4f5, transparent);
	background: linear-gradient(90deg, #7dd4f5, transparent);
}

.lp5-compound__row:nth-child(2) .lp5-compound__row-bg {
	background: -webkit-linear-gradient(315deg, #1e5c34, #0e3820);
	background: linear-gradient(135deg, #1e5c34, #0e3820);
}
.lp5-compound__row:nth-child(2) .lp5-compound__row-bg::before {
	background: -webkit-gradient(linear, left top, right top, from(#7de8a0), to(transparent));
	background: -webkit-linear-gradient(left, #7de8a0, transparent);
	background: linear-gradient(90deg, #7de8a0, transparent);
}

.lp5-compound__row:nth-child(3) .lp5-compound__row-bg {
	background: -webkit-linear-gradient(315deg, #5a4510, #3a2c08);
	background: linear-gradient(135deg, #5a4510, #3a2c08);
}
.lp5-compound__row:nth-child(3) .lp5-compound__row-bg::before {
	background: -webkit-gradient(linear, left top, right top, from(#f5c842), to(transparent));
	background: -webkit-linear-gradient(left, #f5c842, transparent);
	background: linear-gradient(90deg, #f5c842, transparent);
}

.lp5-compound__row:nth-child(4) .lp5-compound__row-bg {
	-webkit-clip-path: none;
	clip-path: none;
	border-radius: 3px;
	background: -webkit-linear-gradient(315deg, #5c3f0a, #2e1e04);
	background: linear-gradient(135deg, #5c3f0a, #2e1e04);
	border: 1px solid rgba(201, 168, 76, 0.35);
}
.lp5-compound__row:nth-child(4) .lp5-compound__row-bg::before {
	background: -webkit-gradient(linear, left top, right top, from(#f0d878), to(#c9a84c));
	background: -webkit-linear-gradient(left, #f0d878, #c9a84c);
	background: linear-gradient(90deg, #f0d878, #c9a84c);
	right: 0;
}

.lp5-compound__row-inner {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	padding: 0 16px;
	gap: 12px;
}

.lp5-compound__row-label {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 3px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.lp5-compound__row-period {
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.35);
}

.lp5-compound__row-amount {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
}
.lp5-compound__row:nth-child(4) .lp5-compound__row-amount {
	font-size: 1.2rem;
	color: var(--c-gold-l);
	font-weight: 500;
}

.lp4-data {
	background: #1e2d3d;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.lp4-data__bgtext {
	display: none;
}

.lp4-data__hd {
	text-align: center;
	margin-bottom: 72px;
}

.lp4-data__wr {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 880px;
	margin: 0 auto 64px;
}
@media screen and (max-width: 768px) {
	.lp4-data__wr {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

.lp4-data__circle-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.lp4-data__circle {
	position: relative;
	width: 220px;
	height: 220px;
}
.lp4-data__circle svg {
	width: 100%;
	height: 100%;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.lp4-data__c-track {
	fill: none;
	stroke: rgba(201, 168, 76, 0.1);
	stroke-width: 5;
}

.lp4-data__c-prog {
	fill: none;
	stroke: url(style.css);
	stroke-width: 5;
	stroke-linecap: round;
	stroke-dasharray: 0 553;
	-webkit-transition: stroke-dasharray 2.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
	transition: stroke-dasharray 2.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.lp4-data__circle.is-anim .lp4-data__c-prog {
	stroke-dasharray: 553 553;
}

.lp4-data__c-inner {
	position: absolute;
	inset: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 2px;
}

.lp4-data__c-num {
	font-family: var(--font-display);
	font-weight: 200;
	font-size: 3.4rem;
	line-height: 1;
	color: var(--c-gold-l);
}

.lp4-data__c-unit {
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 400;
	color: var(--c-gold);
	letter-spacing: 0.1em;
}

.lp4-data__c-lbl {
	font-size: 0.65rem;
	color: var(--c-muted);
	letter-spacing: 0.12em;
}

.lp4-data__wr-ttl {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(1.1rem, 1.9vw, 1.4rem);
	font-weight: 700;
	color: var(--c-white);
	line-height: 1.65;
	margin-bottom: 18px;
}

.lp4-data__wr-body {
	font-size: 0.86rem;
	color: var(--c-muted);
	line-height: 2;
	margin-bottom: 20px;
}

.lp4-data__tl {
	max-width: 780px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--c-border);
	padding: 40px 48px;
}
@media screen and (max-width: 768px) {
	.lp4-data__tl {
		padding: 28px 24px;
	}
}

.lp4-data__tl-lbl {
	font-family: var(--font-display);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: var(--c-gold);
	opacity: 0.65;
	margin-bottom: 28px;
	text-align: center;
}

.lp4-data__bars {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 18px;
}

.lp4-data__bar {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 16px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.lp4-data__bar {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
		gap: 8px 12px;
	}
	.lp4-data__bar .lp4-data__bar-name {
		grid-column: 1;
		grid-row: 1;
		text-align: left;
	}
	.lp4-data__bar .lp4-data__bar-val {
		grid-column: 2;
		grid-row: 1;
		text-align: right;
	}
	.lp4-data__bar .lp4-data__bar-track {
		grid-column: 1/-1;
		grid-row: 2;
	}
}

.lp4-data__bar-name {
	font-size: 0.73rem;
	color: var(--c-muted);
	text-align: right;
}

.lp4-data__bar-track {
	height: 7px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
	overflow: hidden;
}

.lp4-data__bar-fill {
	height: 100%;
	border-radius: 4px;
	width: 0;
	background: -webkit-gradient(linear, left top, right top, from(var(--c-gold-d)), color-stop(var(--c-gold)), to(var(--c-gold-l)));
	background: -webkit-linear-gradient(left, var(--c-gold-d), var(--c-gold), var(--c-gold-l));
	background: linear-gradient(90deg, var(--c-gold-d), var(--c-gold), var(--c-gold-l));
	-webkit-transition: width 4.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
	transition: width 4.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.lp4-data__bar.is-anim .lp4-data__bar-fill {
	width: var(--w);
}

.lp4-data__bar-val {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 300;
	color: var(--c-gold);
	white-space: nowrap;
}

.lp5-reasons {
	max-width: 820px;
	margin: 56px auto 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
	background: var(--c-border);
	border: 1px solid var(--c-border);
}

.lp5-reason {
	background: var(--c-navy);
	padding: 32px 36px;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
.lp5-reason:hover {
	background: rgba(13, 27, 42, 0.8);
}
@media screen and (max-width: 768px) {
	.lp5-reason {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 22px 18px;
	}
}

.lp5-reason__num {
	text-align: center;
}

.lp5-reason__num-label {
	font-family: var(--font-display);
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--c-gold);
	opacity: 0.6;
	display: block;
	margin-bottom: 2px;
}

.lp5-reason__num-val {
	font-family: var(--font-display);
	font-weight: 200;
	font-size: 2.4rem;
	line-height: 1;
	color: var(--c-gold);
}

.lp5-reason__ttl {
	font-family: var(--font-serif);
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 700;
	color: var(--c-white);
	margin-bottom: 8px;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding-bottom: 8px;
}
.lp5-reason__ttl::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 0;
	background: -webkit-gradient(linear, left top, right top, from(var(--c-gold)), to(rgba(201, 168, 76, 0.3)));
	background: -webkit-linear-gradient(left, var(--c-gold), rgba(201, 168, 76, 0.3));
	background: linear-gradient(90deg, var(--c-gold), rgba(201, 168, 76, 0.3));
	-webkit-transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
	transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.lp5-reason.is-vis .lp5-reason__ttl::after {
	width: 100%;
}

.lp5-reason__desc {
	font-size: 1rem;
	color: var(--c-white);
	line-height: 2.2;
}
@media screen and (max-width: 768px) {
	.lp5-reason__desc {
		font-size: 0.85rem;
	}
}

.lp4-res {
	background: #f0f2f5;
	padding: 100px 0;
	position: relative;
}
.lp4-res::before {
	display: none;
}
.lp4-res .lp4-res__hd .lp4-ttl {
	color: var(--c-navy);
}
.lp4-res .lp4-res__hd .lp4-ttl strong {
	color: var(--c-gold-d);
}
.lp4-res .lp4-res__hd .lp4-eye {
	color: var(--c-gold-d);
	display: inline-block;
	border: 1px solid rgba(201, 168, 76, 0.4);
	padding: 6px 20px;
	letter-spacing: 0.45em;
}
.lp4-res .lp4-res__note {
	color: rgba(13, 27, 42, 0.45);
}
.lp4-res .lp4-res__grid {
	background: rgba(13, 27, 42, 0.08);
	border-color: rgba(13, 27, 42, 0.1);
}
.lp4-res .lp4-res__card {
	background: #0d1b2a;
}
.lp4-res .lp4-res__card:hover {
	background: #162640;
}
.lp4-res .lp4-res__card::before {
	display: none;
}
.lp4-res .lp4-res__top {
	border-bottom-color: rgba(201, 168, 76, 0.15);
}
.lp4-res .lp4-res__tag {
	color: var(--c-muted);
}
.lp4-res .lp4-res__name {
	color: var(--c-white);
}
.lp4-res .lp4-res__gain-lbl {
	color: var(--c-gold);
}
.lp4-res .lp4-res__gain-num {
	color: var(--c-gold-l);
}
.lp4-res .lp4-res__gain-unit {
	color: var(--c-gold);
}
.lp4-res .lp4-res__comment {
	color: var(--c-muted);
	border-left-color: rgba(201, 168, 76, 0.3);
}

.lp4-res__hd {
	text-align: center;
	margin-bottom: 16px;
}

.lp4-res__note {
	text-align: center;
	font-size: 0.7rem;
	color: var(--c-muted);
	margin-bottom: 52px;
	letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
	.lp4-res__note {
		font-size: 0.55rem;
	}
}

.lp4-res__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	background: var(--c-border);
	border: 1px solid var(--c-border);
}
@media screen and (max-width: 768px) {
	.lp4-res__grid {
		grid-template-columns: 1fr;
	}
}

.lp4-res__card {
	background: var(--c-navy);
	padding: 36px 36px 32px;
	position: relative;
	overflow: hidden;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
.lp4-res__card:hover {
	background: rgba(13, 27, 42, 0.92);
}
@media screen and (max-width: 768px) {
	.lp4-res__card {
		padding: 26px 22px;
	}
}
.lp4-res__card::before {
	content: attr(data-i);
	position: absolute;
	right: 16px;
	bottom: -16px;
	font-family: var(--font-display);
	font-weight: 100;
	font-size: 7rem;
	color: rgba(201, 168, 76, 0.035);
	line-height: 1;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.lp4-res__top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.lp4-res__av {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--c-gold-pale);
	border: 1px solid var(--c-border);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.lp4-res__av svg {
	width: 44px;
	height: 44px;
}

.lp4-res__tag {
	font-size: 0.63rem;
	color: var(--c-muted);
	letter-spacing: 0.08em;
	margin-bottom: 2px;
}

.lp4-res__name {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--c-white);
}

.lp4-res__gain {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: right;
}

.lp4-res__gain-lbl {
	font-size: 0.55rem;
	letter-spacing: 0.18em;
	color: var(--c-gold);
	opacity: 0.6;
	margin-bottom: 2px;
}

.lp4-res__gain-num {
	font-family: var(--font-display);
	font-weight: 300;
	font-size: 1.9rem;
	line-height: 1;
	color: var(--c-gold-l);
}

.lp4-res__gain-unit {
	font-family: "Noto Serif JP", serif;
	font-size: 0.62rem;
	font-weight: 300;
	color: var(--c-gold);
	margin-left: 3px;
}

.lp4-res__specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 16px;
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.lp4-res__spec-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
}

.lp4-res__spec-lbl {
	font-size: 0.58rem;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.3);
	font-family: var(--font-display);
}

.lp4-res__spec-val {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.75);
}

.lp4-res__comment {
	font-family: "Noto Serif JP", serif;
	font-size: 0.83rem;
	color: var(--c-muted);
	line-height: 2;
	padding-left: 12px;
	border-left: 2px solid rgba(201, 168, 76, 0.2);
}

.lp4-why {
	background: #1e2d3d;
	padding: 110px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.lp4-why::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: -webkit-radial-gradient(50% 0%, ellipse 60% 55%, rgba(201, 168, 76, 0.07) 0%, transparent 100%), -webkit-radial-gradient(50% 100%, ellipse 60% 55%, rgba(42, 90, 140, 0.08) 0%, transparent 100%);
	background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 100%), radial-gradient(ellipse 60% 55% at 50% 100%, rgba(42, 90, 140, 0.08) 0%, transparent 100%);
}

.lp4-why__in {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}

.lp4-why__quote {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: clamp(1.5rem, 3.5vw, 2.8rem);
	line-height: 1.65;
	color: var(--c-white);
	letter-spacing: 0.04em;
}
.lp4-why__quote em {
	color: var(--c-gold);
	font-style: normal;
}
@media screen and (max-width: 768px) {
	.lp4-why__quote {
		font-size: 1.2rem;
	}
}

.lp4-why__quote--norisk {
	background: rgba(217, 79, 79, 0.1);
	border: 1px solid rgba(217, 79, 79, 0.3);
	padding: 28px 36px;
}
@media screen and (max-width: 768px) {
	.lp4-why__quote--norisk {
		padding: 24px 20px;
	}
}

.lp4-why__body {
	font-size: clamp(0.88rem, 1.5vw, 1rem);
	color: var(--c-muted);
	line-height: 2.3;
	max-width: 620px;
}
.lp4-why__body strong {
	color: var(--c-white);
}
.lp4-why__body--card {
	background: #f0f2f5;
	border-top: 3px solid var(--c-gold);
	color: #1a1a2e;
	padding: 32px 40px;
	max-width: 780px;
	width: 100%;
	line-height: 2.2;
	font-size: clamp(0.88rem, 1.4vw, 1rem);
	font-family: var(--font-serif);
}
.lp4-why__body--card strong {
	color: #0d1b2a;
}
@media screen and (max-width: 768px) {
	.lp4-why__body--card {
		padding: 24px 20px;
		text-align: left;
	}
}

.lp5-why-card {
	max-width: 780px;
	width: 100%;
	background: var(--c-navy);
	border: 1px solid rgba(201, 168, 76, 0.3);
	position: relative;
}
.lp5-why-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--c-gold)), to(transparent));
	background: -webkit-linear-gradient(left, transparent, var(--c-gold), transparent);
	background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.lp5-why-card__icons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.lp5-why-card__icon-item {
	padding: 28px 16px 24px;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	border-right: 1px solid rgba(201, 168, 76, 0.12);
}
.lp5-why-card__icon-item:last-child {
	border-right: none;
}

.lp5-why-card__circle {
	display: none;
}

.lp5-why-card__label {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--c-gold);
	letter-spacing: 0.1em;
}

.lp5-why-card__body {
	padding: 36px 44px 44px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 28px;
}
@media screen and (max-width: 768px) {
	.lp5-why-card__body {
		padding: 28px 24px 36px;
	}
}

.lp5-why-card__lead {
	font-family: var(--font-serif);
	font-size: clamp(0.85rem, 1.3vw, 0.92rem);
	color: var(--c-white);
	text-align: center;
	line-height: 2.2;
	letter-spacing: 0.06em;
}

.lp5-why-card__rule {
	width: 60px;
	height: 1px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(201, 168, 76, 0.4)), to(transparent));
	background: -webkit-linear-gradient(left, transparent, rgba(201, 168, 76, 0.4), transparent);
	background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.lp5-why-card__num {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	gap: 8px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.lp5-why-card__n {
	font-family: var(--font-display);
	font-weight: 200;
	font-size: clamp(4.5rem, 10vw, 7rem);
	line-height: 1;
	color: var(--c-gold);
	letter-spacing: 0.05em;
}

.lp5-why-card__unit {
	font-family: var(--font-serif);
	font-size: 1.4rem;
	color: var(--c-gold);
}

.lp5-why-card__quote {
	font-family: var(--font-serif);
	font-size: clamp(1.2rem, 2.5vw, 1.8rem);
	font-weight: 300;
	color: var(--c-white);
	text-align: center;
	line-height: 1.6;
}
.lp5-why-card__quote em {
	color: var(--c-gold);
	font-style: italic;
}

.lp4-flow {
	background: #f0f2f5;
	padding: 100px 0;
	position: relative;
}
.lp4-flow::after {
	display: none;
}

.lp4-flow__hd {
	text-align: center;
	margin-bottom: 28px;
}

.lp4-flow__hd .lp4-eye {
	color: var(--c-gold-d);
	display: inline-block;
	border: 1px solid rgba(201, 168, 76, 0.4);
	padding: 6px 20px;
	letter-spacing: 0.45em;
}

.lp4-flow__hd .lp4-ttl {
	color: var(--c-navy);
}

.lp4-flow__hd .lp4-ttl strong {
	color: var(--c-gold-d);
}

.lp4-flow__ctx {
	max-width: 580px;
	margin: 0 auto 64px !important;
}
@media screen and (max-width: 768px) {
	.lp4-flow__ctx {
		text-align: left !important;
	}
}
.lp4-flow__ctx {
	font-family: var(--font-serif);
	font-size: clamp(0.9rem, 1.5vw, 1.02rem);
	color: rgba(13, 27, 42, 0.65);
	line-height: 2.3;
	text-align: center;
}

.lp4-flow__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}
.lp4-flow__steps::before {
	content: "";
	position: absolute;
	top: 44px;
	left: calc(16.67% + 20px);
	right: calc(16.67% + 20px);
	height: 1px;
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--c-gold)), color-stop(var(--c-gold)), to(transparent));
	background: -webkit-linear-gradient(left, transparent, var(--c-gold), var(--c-gold), transparent);
	background: linear-gradient(90deg, transparent, var(--c-gold), var(--c-gold), transparent);
	z-index: 0;
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	.lp4-flow__steps {
		grid-template-columns: 1fr;
	}
	.lp4-flow__steps::before {
		display: none;
	}
}

.lp4-flow__step {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.lp4-flow__step {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		text-align: left;
		gap: 22px;
		padding: 22px 0;
		border-bottom: 1px solid rgba(13, 27, 42, 0.08);
	}
	.lp4-flow__step:last-child {
		border-bottom: none;
	}
}

.lp4-flow__num {
	width: 88px;
	height: 88px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	background: #f0f2f5;
	border: 1px solid var(--c-gold);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 28px;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.lp4-flow__num {
		width: 72px;
		height: 72px;
		margin-bottom: 0;
	}
}
.lp4-flow__num span {
	font-family: var(--font-display);
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--c-gold-d);
	opacity: 0.65;
}
.lp4-flow__num em {
	font-family: var(--font-display);
	font-weight: 200;
	font-size: 1.75rem;
	color: var(--c-gold-d);
	line-height: 1;
}

.lp4-flow__step-ttl {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	font-weight: 700;
	color: var(--c-navy);
	margin-bottom: 10px;
	line-height: 1.55;
}

.lp4-flow__step-desc {
	font-size: 0.79rem;
	color: rgba(13, 27, 42, 0.6);
	line-height: 2;
	text-align: left;
}

.lp5-flow-card {
	margin-top: 48px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.lp5-flow-card__inner {
	background: var(--c-navy);
	border: 1px solid rgba(201, 168, 76, 0.35);
	padding: 40px 56px;
	max-width: 720px;
	width: 100%;
	position: relative;
	text-align: center;
}
.lp5-flow-card__inner::before, .lp5-flow-card__inner::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border-color: rgba(201, 168, 76, 0.6);
	border-style: solid;
}
.lp5-flow-card__inner::before {
	top: 10px;
	left: 10px;
	border-width: 1px 0 0 1px;
}
.lp5-flow-card__inner::after {
	bottom: 10px;
	right: 10px;
	border-width: 0 1px 1px 0;
}
@media screen and (max-width: 768px) {
	.lp5-flow-card__inner {
		padding: 32px 24px;
	}
}

.lp5-flow-card__text {
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	color: rgba(255, 255, 255, 0.75);
	line-height: 2.2;
	letter-spacing: 0.04em;
}
.lp5-flow-card__text strong {
	color: var(--c-gold);
	font-weight: 700;
}

.lp4-closing {
	background: -webkit-linear-gradient(290deg, var(--c-deep) 0%, var(--c-navy) 100%);
	background: linear-gradient(160deg, var(--c-deep) 0%, var(--c-navy) 100%);
	padding: 110px 0;
	border-top: 1px solid var(--c-border);
	text-align: center;
}

.lp4-closing__in {
	max-width: 680px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 28px;
}

.lp4-closing__pre {
	font-family: var(--font-display);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.55em;
	color: var(--c-gold);
	opacity: 0.58;
}

.lp4-closing__h {
	font-family: var(--font-serif);
	font-weight: 300;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.5;
	color: var(--c-white);
	letter-spacing: 0.04em;
}
.lp4-closing__h em {
	color: var(--c-gold);
	font-style: italic;
}
@media screen and (max-width: 768px) {
	.lp4-closing__h {
		font-size: 1.4rem;
	}
}

.lp4-closing__body {
	font-family: var(--font-serif);
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	color: var(--c-muted);
	line-height: 2.4;
}

.lp4-closing__date {
	background: var(--c-gold-pale);
	border: 1px solid var(--c-border);
	padding: 22px 44px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}

.lp4-closing__date-lbl {
	font-family: var(--font-display);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: var(--c-gold);
	opacity: 0.65;
}

.lp4-closing__date-val {
	font-family: "Noto Serif JP", serif;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 700;
	color: var(--c-white);
	letter-spacing: 0.08em;
}

.lp4-closing__sig {
	font-size: 0.76rem;
	color: var(--c-muted);
	letter-spacing: 0.14em;
}

.p-market-list__count {
	font-size: 0.85rem;
	color: #7a8a9a;
	margin-bottom: 24px;
	padding-bottom: 8px;
	border-bottom: 1px solid #dde3ea;
}

.p-market-list__items {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0;
}

.p-market-list__item {
	border-bottom: 1px solid #dde3ea;
}
.p-market-list__item:first-child {
	border-top: 1px solid #dde3ea;
}

.p-market-list__link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	-webkit-transition: padding-left 0.2s ease;
	transition: padding-left 0.2s ease;
}
.p-market-list__link:hover {
	padding-left: 8px;
	opacity: 1;
}

.p-market-list__date {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 0.8rem;
	color: #7a8a9a;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	min-width: 130px;
}

.p-market-list__title {
	font-size: 0.9rem;
	color: #1a1a2e;
	line-height: 1.6;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.p-article {
	max-width: 860px;
	margin: 0 auto;
}

.p-article__head {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 2px solid #c9a84c;
}

.p-article__date {
	display: block;
	font-size: 0.82rem;
	color: #7a8a9a;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}

.p-article__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: 700;
	color: #0d1b2a;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.p-article__body {
	font-size: 0.95rem;
	line-height: 2;
	color: #1a1a2e;
}
.p-article__body p {
	margin-bottom: 24px;
}
.p-article__body p:last-child {
	margin-bottom: 0;
}
.p-article__body h2 {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: #0d1b2a;
	margin: 64px 0 16px;
	padding-left: 16px;
	border-left: 3px solid #c9a84c;
}
.p-article__body h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #0d1b2a;
	margin: 40px 0 8px;
}
.p-article__body ul, .p-article__body ol {
	list-style: revert;
	padding-left: 40px;
	margin-bottom: 24px;
}
.p-article__body ul li, .p-article__body ol li {
	margin-bottom: 4px;
	line-height: 1.9;
}

.p-article__foot {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid #dde3ea;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.p-shop-header {
	padding: 24px 40px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-shop-header {
		padding: 16px 16px;
	}
}

.p-shop-header__member {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

.p-breadcrumb {
	background: #f5f7fa;
	padding: 8px 0;
	font-size: 0.8rem;
	color: #7a8a9a;
}

.p-breadcrumb__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.p-breadcrumb__list li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
}
.p-breadcrumb__list li:not(:last-child)::after {
	content: "›";
	color: #7a8a9a;
}
.p-breadcrumb__list li a {
	color: #0d1b2a;
	font-weight: 500;
	-webkit-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.p-breadcrumb__list li a:hover {
	color: #c9a84c;
	opacity: 1;
}

.p-shop-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 64px;
}

.p-shop-card {
	background: #ffffff;
	border-radius: 4px;
	border-top: 3px solid #c9a84c;
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	-webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
	transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
.p-shop-card:hover {
	-webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}
.p-shop-card {
	padding: 0;
	overflow: hidden;
}

.p-shop-card__inner {
	display: grid;
	grid-template-columns: 280px 1fr;
}
@media screen and (max-width: 1024px) {
	.p-shop-card__inner {
		grid-template-columns: 1fr;
	}
}

.p-shop-card__img {
	background: #e8edf3;
	min-height: 220px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
}
.p-shop-card__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.p-shop-card__img .img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 220px;
	background: -webkit-linear-gradient(315deg, #0d1b2a 0%, #1a3a5c 100%);
	background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}

.p-shop-card__body {
	padding: 40px 40px 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}
@media screen and (max-width: 768px) {
	.p-shop-card__body {
		padding: 24px 16px;
	}
}

.p-shop-card__name {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 700;
	color: #0d1b2a;
	padding-bottom: 8px;
	border-bottom: 2px solid #c9a84c;
}

.p-shop-card__specs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
	font-size: 0.85rem;
	color: #4a5568;
	line-height: 1.6;
}

.p-shop-card__spec-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
}
.p-shop-card__spec-item .spec-label {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-weight: 600;
	color: #0d1b2a;
	min-width: 90px;
}

.p-shop-card__price {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.3rem, 2.5vw, 1.6rem);
	font-weight: 700;
	color: #d94f4f;
	margin-top: auto;
}

.p-shop-card__footer {
	padding: 16px 40px 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
@media screen and (max-width: 768px) {
	.p-shop-card__footer {
		padding: 16px 16px 24px;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.p-shop-detail__product {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px;
	margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
	.p-shop-detail__product {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.p-shop-detail__banner {
	background: #e8edf3;
	border-radius: 4px;
	overflow: hidden;
	min-height: 200px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.p-shop-detail__banner .img-placeholder {
	width: 100%;
	min-height: 200px;
	background: -webkit-linear-gradient(315deg, #0d1b2a 0%, #1a3a5c 100%);
	background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}
.p-shop-detail__banner img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-shop-detail__name {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.2rem, 2.2vw, 1.5rem);
	font-weight: 700;
	color: #0d1b2a;
	padding-bottom: 8px;
	border-bottom: 2px solid #c9a84c;
	margin-bottom: 16px;
}

.p-shop-detail__specs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
	font-size: 0.875rem;
	color: #4a5568;
	margin-bottom: 16px;
}

.p-shop-detail__spec-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	line-height: 1.6;
}
.p-shop-detail__spec-item .spec-label {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-weight: 600;
	color: #0d1b2a;
	min-width: 100px;
}

.p-shop-detail__price {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 2.8vw, 1.8rem);
	font-weight: 700;
	color: #d94f4f;
}

.p-shop-credit {
	margin-bottom: 64px;
}

.c-btn-red {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	padding: 16px 32px;
	background: #d94f4f;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	border-radius: 2px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: background 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
	transition: background 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
	-webkit-box-shadow: 0 4px 16px rgba(217, 79, 79, 0.35);
	box-shadow: 0 4px 16px rgba(217, 79, 79, 0.35);
}
.c-btn-red:hover {
	background: #b83f3f;
	-webkit-box-shadow: 0 6px 24px rgba(217, 79, 79, 0.5);
	box-shadow: 0 6px 24px rgba(217, 79, 79, 0.5);
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
	opacity: 1;
}
.c-btn-red:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.p-shop-transfer {
	margin-bottom: 64px;
}

.p-shop-transfer__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1rem;
	font-weight: 700;
	color: #0d1b2a;
	padding-bottom: 8px;
	border-bottom: 2px solid #c9a84c;
	margin-bottom: 24px;
}

.p-shop-transfer__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}
.p-shop-transfer__table tr {
	border-bottom: 1px solid #dde3ea;
}
.p-shop-transfer__table tr:last-child {
	border-bottom: none;
}
.p-shop-transfer__table th {
	width: 130px;
	padding: 16px 16px;
	text-align: left;
	font-weight: 600;
	color: #ffffff;
	background: #0d1b2a;
	vertical-align: middle;
	font-size: 0.875rem;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
	.p-shop-transfer__table th {
		width: 90px;
		padding: 8px;
		font-size: 0.8rem;
	}
}
.p-shop-transfer__table td {
	padding: 16px 24px;
	color: #1a1a2e;
	font-weight: 500;
	vertical-align: middle;
	background: #ffffff;
}
@media screen and (max-width: 768px) {
	.p-shop-transfer__table td {
		padding: 8px 16px;
	}
}
.p-shop-transfer__table tr:nth-child(even) td {
	background: #f5f7fa;
}

.p-shop-date {
	margin-bottom: 64px;
	padding: 40px;
	background: #f5f7fa;
	border-radius: 4px;
	border-left: 4px solid #c9a84c;
}
@media screen and (max-width: 768px) {
	.p-shop-date {
		padding: 24px 16px;
	}
}

.p-shop-date__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #0d1b2a;
	margin-bottom: 8px;
}

.p-shop-date__desc {
	font-size: 0.85rem;
	color: #4a5568;
	line-height: 1.8;
	margin-bottom: 24px;
}

.p-shop-date__select .c-select-wrap {
	max-width: 400px;
}
@media screen and (max-width: 768px) {
	.p-shop-date__select .c-select-wrap {
		max-width: 100%;
	}
}

.p-shop-submit {
	text-align: center;
	margin-top: 64px;
}

.c-btn-red-lg {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 320px;
	padding: 18px 48px;
	background: #d94f4f;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	border-radius: 2px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: background 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
	transition: background 0.25s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
	transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease, -webkit-box-shadow 0.25s ease, -webkit-transform 0.15s ease;
	-webkit-box-shadow: 0 4px 20px rgba(217, 79, 79, 0.4);
	box-shadow: 0 4px 20px rgba(217, 79, 79, 0.4);
}
.c-btn-red-lg:hover {
	background: #b83f3f;
	-webkit-box-shadow: 0 6px 28px rgba(217, 79, 79, 0.55);
	box-shadow: 0 6px 28px rgba(217, 79, 79, 0.55);
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	opacity: 1;
}
.c-btn-red-lg:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
@media screen and (max-width: 768px) {
	.c-btn-red-lg {
		min-width: unset;
		width: 95%;
		font-size: 1rem;
		padding: 16px 20px;
	}
}

.p-shop-complete {
	text-align: center;
	padding: 96px 40px;
	background: #ffffff;
	border-radius: 4px;
	border-top: 3px solid #c9a84c;
	-webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 768px) {
	.p-shop-complete {
		padding: 64px 16px;
	}
}

.p-shop-complete__heading {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 700;
	color: #0d1b2a;
	margin-bottom: 24px;
}
.p-shop-complete__heading::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: -webkit-gradient(linear, left top, right top, from(#c9a84c), to(#f0d080));
	background: -webkit-linear-gradient(left, #c9a84c, #f0d080);
	background: linear-gradient(90deg, #c9a84c, #f0d080);
	margin: 12px auto 0;
}

.p-shop-complete__msg {
	font-size: 0.95rem;
	color: #1a1a2e;
	line-height: 1.9;
	margin-bottom: 24px;
	font-weight: 500;
}

.p-shop-complete__caution {
	font-size: 0.85rem;
	color: #d94f4f;
	line-height: 1.8;
	margin-bottom: 64px;
	padding: 16px 24px;
	background: rgba(217, 79, 79, 0.06);
	border-radius: 2px;
	border-left: 3px solid #d94f4f;
	text-align: left;
}

.p-performance__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
}

.p-performance__card {
	display: grid;
	grid-template-columns: 1fr 220px;
	gap: 0;
	border: 1px solid #dde3ea;
	border-radius: 2px;
	overflow: hidden;
	background: #ffffff;
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 1024px) {
	.p-performance__card {
		grid-template-columns: 1fr;
	}
}

.p-performance__card-left {
	padding: 40px;
	border-right: 1px solid #dde3ea;
}
@media screen and (max-width: 1024px) {
	.p-performance__card-left {
		border-right: none;
		border-bottom: 1px solid #dde3ea;
		padding: 24px 16px;
	}
}

.p-performance__stock {
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #dde3ea;
}

.p-performance__stock-name {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #0d1b2a;
	margin-bottom: 8px;
	letter-spacing: 0.05em;
}

.p-performance__stock-data {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	font-size: 0.85rem;
	color: #4a5568;
}
.p-performance__stock-data li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}
.p-performance__stock-data li span {
	font-weight: 600;
	color: #0d1b2a;
}

.p-performance__voice-attr {
	font-size: 0.82rem;
	color: #7a8a9a;
	font-weight: 600;
	margin-bottom: 8px;
	letter-spacing: 0.03em;
}

.p-performance__voice-comment {
	font-size: 0.88rem;
	color: #1a1a2e;
	line-height: 1.9;
}

.p-performance__card-right {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 40px 16px;
	background: #0d1b2a;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.p-performance__card-right {
		padding: 24px 16px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 16px;
		-webkit-box-align: end;
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}

.p-performance__profit-label {
	font-size: clamp(1.6rem, 2.5vw, 2rem);
	color: #c9a84c;
	letter-spacing: 0.2em;
	font-weight: 700;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-style: italic;
	margin-top: 8px;
	line-height: 1;
}
@media screen and (max-width: 1024px) {
	.p-performance__profit-label {
		margin-top: 0;
	}
}

.p-performance__profit-num {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	letter-spacing: -0.02em;
}

.p-performance__profit-unit {
	display: block;
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 4px;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
	.p-performance__profit-unit {
		display: inline;
		font-size: 0.9rem;
		margin-top: 0;
		margin-left: 4px;
	}
}

.p-legal__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.p-legal__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	line-height: 1.9;
}
.p-legal__table tr {
	border-bottom: 1px solid #dde3ea;
}
.p-legal__table tr:first-child {
	border-top: 1px solid #dde3ea;
}
.p-legal__table th {
	width: 200px;
	padding: 16px 24px;
	text-align: left;
	vertical-align: top;
	font-weight: 600;
	color: #0d1b2a;
	background: #f5f7fa;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
	.p-legal__table th {
		width: 120px;
		padding: 8px 16px;
		font-size: 0.82rem;
		white-space: normal;
	}
}
.p-legal__table td {
	padding: 16px 24px;
	vertical-align: top;
	color: #1a1a2e;
}
@media screen and (max-width: 768px) {
	.p-legal__table td {
		padding: 8px 16px;
		font-size: 0.85rem;
	}
}

.p-legal__content {
	font-size: 0.9rem;
	line-height: 2;
	color: #1a1a2e;
}
.p-legal__content h2 {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #0d1b2a;
	margin: 64px 0 16px;
	padding-left: 16px;
	border-left: 3px solid #c9a84c;
}
.p-legal__content h2:first-child {
	margin-top: 0;
}
.p-legal__content p {
	margin-bottom: 24px;
}
.p-legal__content ul, .p-legal__content ol {
	list-style: revert;
	padding-left: 40px;
	margin-bottom: 24px;
}
.p-legal__content ul li, .p-legal__content ol li {
	margin-bottom: 4px;
}

.p-about-hero {
	background: -webkit-radial-gradient(30% 50%, ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 65%), -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
	background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 65%), linear-gradient(135deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
	background-attachment: fixed;
	padding: 96px 40px;
	text-align: center;
	color: #ffffff;
}
@media screen and (max-width: 768px) {
	.p-about-hero {
		padding: 64px 16px;
	}
}

.p-about-hero__catch {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 700;
	color: #c9a84c;
	letter-spacing: 0.08em;
	line-height: 1.8;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.p-about-hero__catch {
		font-size: 1rem;
	}
}

.p-about-hero__stats {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 96px;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.p-about-hero__stats {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.p-about-hero__stat {
	text-align: center;
}
.p-about-hero__stat strong {
	display: block;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 700;
	color: #c9a84c;
	line-height: 1;
	letter-spacing: -0.02em;
}
.p-about-hero__stat span {
	display: block;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 8px;
	letter-spacing: 0.08em;
}

.p-about-hero__note {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 40px;
}

.p-about-hero__lead {
	max-width: 800px;
	margin: 0 auto;
	font-size: 0.95rem;
	line-height: 2;
	color: rgba(255, 255, 255, 0.85);
}

.p-about-section {
	padding: 96px 0;
}
@media screen and (max-width: 768px) {
	.p-about-section {
		padding: 64px 0;
	}
}
.p-about-section--white {
	background: #ffffff;
}
.p-about-section--gray {
	background: #f5f7fa;
}
.p-about-section--navy {
	background: -webkit-radial-gradient(30% 50%, ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 65%), -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
	background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 65%), linear-gradient(135deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
	background-attachment: fixed;
	color: #ffffff;
}

.p-about-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 64px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (max-width: 1024px) {
	.p-about-grid {
		grid-template-columns: 1fr;
	}
}
.p-about-grid--rev {
	grid-template-columns: 380px 1fr;
}
@media screen and (max-width: 1024px) {
	.p-about-grid--rev {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 1024px) {
	.p-about-grid--rev .p-about-grid__img {
		-webkit-box-ordinal-group: 0;
		-webkit-order: -1;
		-ms-flex-order: -1;
		order: -1;
	}
}

.p-about-section__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.06em;
	margin-bottom: 40px;
	padding-bottom: 16px;
	border-bottom: 2px solid #c9a84c;
}
.p-about-section--white .p-about-section__title, .p-about-section--gray .p-about-section__title {
	color: #0d1b2a;
}
.p-about-section--navy .p-about-section__title {
	color: #ffffff;
}

.p-about-section__body {
	font-size: 0.92rem;
	line-height: 2.1;
}
.p-about-section--white .p-about-section__body, .p-about-section--gray .p-about-section__body {
	color: #1a1a2e;
}
.p-about-section--navy .p-about-section__body {
	color: rgba(255, 255, 255, 0.85);
}
.p-about-section__body p {
	margin-bottom: 24px;
}
.p-about-section__body p:last-child {
	margin-bottom: 0;
}

.p-about-grid__img .img-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	background: -webkit-linear-gradient(315deg, #0d1b2a 0%, #1a3a5c 100%);
	background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
	border-radius: 2px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}
.p-about-grid__img img {
	width: 100%;
	height: auto;
	border-radius: 2px;
	display: block;
}

.p-about-safety {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 40px;
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
	.p-about-safety {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 24px;
	}
}

.p-about-safety__item {
	text-align: center;
	width: 160px;
}
@media screen and (max-width: 768px) {
	.p-about-safety__item {
		width: auto;
		max-width: 200px;
	}
}

.p-about-safety__icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 8px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 2rem;
}
.p-about-safety__icon--gold {
	background: rgba(201, 168, 76, 0.15);
	border: 2px solid #c9a84c;
}
.p-about-safety__icon--navy {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.p-about-safety__label {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 1rem;
	font-weight: 700;
	color: #c9a84c;
	display: block;
	margin-bottom: 4px;
}

.p-about-safety__desc {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
}

.p-about-cta {
	background: #f5f7fa;
	padding: 96px 0;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-about-cta {
		padding: 64px 0;
	}
}

.p-about-cta__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 700;
	color: #0d1b2a;
	margin-bottom: 24px;
	line-height: 1.8;
}

.p-about-cta__note {
	margin-top: 40px;
	padding: 24px 40px;
	background: #ffffff;
	border-left: 3px solid #dde3ea;
	border-radius: 2px;
	font-size: 0.82rem;
	color: #7a8a9a;
	line-height: 1.9;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
@media screen and (max-width: 768px) {
	.p-about-cta__note {
		padding: 16px;
	}
}

.p-mail-list__count {
	font-size: 0.85rem;
	color: #7a8a9a;
	margin-bottom: 24px;
	padding-bottom: 8px;
	border-bottom: 1px solid #dde3ea;
}

.p-mail-list__items {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0;
}

.p-mail-list__item {
	border-bottom: 1px solid #dde3ea;
}
.p-mail-list__item:first-child {
	border-top: 1px solid #dde3ea;
}

.p-mail-list__link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
	-webkit-transition: padding-left 0.2s ease;
	transition: padding-left 0.2s ease;
}
.p-mail-list__link:hover {
	padding-left: 8px;
	opacity: 1;
}

.p-mail-list__date {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 0.8rem;
	color: #7a8a9a;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	min-width: 130px;
}

.p-mail-list__title {
	font-size: 0.9rem;
	color: #1a1a2e;
	line-height: 1.6;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.p-mail-list__badge {
	display: inline-block;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: 0.7rem;
	font-weight: 700;
	color: #ffffff;
	background: #c9a84c;
	padding: 1px 6px;
	border-radius: 2px;
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.p-mail-detail__card {
	max-width: 860px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #dde3ea;
	border-top: 2px solid #0d1b2a;
	-webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
	border-radius: 2px;
	overflow: hidden;
}

.p-mail-detail__header {
	background: rgba(13, 27, 42, 0.04);
	border-bottom: 1px solid #dde3ea;
	padding: 12px 28px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
	.p-mail-detail__header {
		padding: 10px 16px;
		gap: 8px;
	}
}

.p-mail-detail__from-label {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: #0d1b2a;
	opacity: 0.6;
	white-space: nowrap;
}

.p-mail-detail__from-val {
	font-size: 0.82rem;
	color: #1a1a2e;
	letter-spacing: 0.03em;
}

.p-mail-detail__header-sep {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 1px;
	background: #dde3ea;
}

.p-mail-detail__date {
	font-size: 0.75rem;
	color: #7a8a9a;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.p-mail-detail__subject {
	padding: 16px 28px 14px;
	border-bottom: 1px solid #dde3ea;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	font-weight: 700;
	color: #0d1b2a;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
@media screen and (max-width: 768px) {
	.p-mail-detail__subject {
		padding: 14px 16px 12px;
	}
}
.p-mail-detail__subject::before {
	content: "件名：";
	font-size: 0.72em;
	color: #c9a84c;
	font-weight: 400;
	margin-right: 6px;
	opacity: 0.8;
}

.p-mail-detail__body {
	padding: 32px 36px 36px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
@media screen and (max-width: 768px) {
	.p-mail-detail__body {
		padding: 24px 18px 28px;
		gap: 16px;
	}
}

.p-mail-detail__greeting {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.9rem, 1.4vw, 1rem);
	color: #1a1a2e;
	line-height: 2.2;
	letter-spacing: 0.04em;
}
.p-mail-detail__greeting strong {
	color: #0d1b2a;
	font-weight: 700;
}

.p-mail-detail__highlight {
	background: rgba(201, 168, 76, 0.05);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-left: 3px solid #c9a84c;
	padding: 18px 22px;
}

.p-mail-detail__highlight-label {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	color: #c9a84c;
	opacity: 0.75;
	margin-bottom: 8px;
}

.p-mail-detail__highlight-txt {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.88rem, 1.4vw, 0.96rem);
	color: #1a1a2e;
	line-height: 2;
	letter-spacing: 0.03em;
}
.p-mail-detail__highlight-txt strong {
	color: #0d1b2a;
	font-weight: 700;
}

.p-mail-detail__txt {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(0.88rem, 1.4vw, 0.95rem);
	color: #1a1a2e;
	line-height: 2.2;
	letter-spacing: 0.03em;
}
.p-mail-detail__txt strong {
	color: #0d1b2a;
	font-weight: 700;
}

.p-mail-detail__sep {
	border: none;
	height: 1px;
	background: #dde3ea;
	margin: 4px 0;
}

.p-mail-detail__notice {
	background: rgba(217, 79, 79, 0.04);
	border: 1px solid rgba(217, 79, 79, 0.2);
	padding: 12px 18px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 10px;
}

.p-mail-detail__notice-icon {
	font-size: 0.78rem;
	color: #d94f4f;
	opacity: 0.8;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-top: 2px;
}

.p-mail-detail__notice-txt {
	font-size: 0.78rem;
	color: #7a8a9a;
	line-height: 1.9;
	letter-spacing: 0.03em;
}

.p-mail-detail__foot {
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid #dde3ea;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.p-member__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.p-member__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
	line-height: 1.9;
}
.p-member__table tr {
	border-bottom: 1px solid #dde3ea;
}
.p-member__table tr:first-child {
	border-top: 2px solid #c9a84c;
}
.p-member__table th {
	width: 200px;
	padding: 16px 24px;
	text-align: left;
	vertical-align: middle;
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-weight: 600;
	color: #c9a84c;
	background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
	background: linear-gradient(135deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
	border-right: 2px solid rgba(201, 168, 76, 0.3);
	letter-spacing: 0.08em;
	white-space: nowrap;
}
@media screen and (max-width: 768px) {
	.p-member__table th {
		display: block;
		width: 100%;
		padding: 8px 16px 4px;
		border-right: none;
		border-bottom: 1px solid rgba(201, 168, 76, 0.15);
		font-size: 0.78rem;
		color: rgba(201, 168, 76, 0.8);
		background: -webkit-linear-gradient(315deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
		background: linear-gradient(135deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 58, 92, 0.93) 50%, rgba(13, 27, 42, 0.97) 100%);
		white-space: normal;
	}
}
.p-member__table td {
	padding: 16px 24px;
	vertical-align: middle;
	color: #1a1a2e;
	font-size: 0.95rem;
}
@media screen and (max-width: 768px) {
	.p-member__table td {
		display: block;
		width: 100%;
		padding: 4px 16px 16px;
	}
}
@media screen and (max-width: 768px) {
	.p-member__table tr {
		display: block;
	}
}

.p-thanks__icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 24px;
}
.p-thanks__icon svg {
	-webkit-filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.35));
	filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.35));
}

.p-thanks__title {
	font-family: "Noto Serif JP", "ヒラギノ明朝 Pro W3", serif;
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	font-weight: 700;
	color: #0d1b2a;
	margin-bottom: 24px;
	letter-spacing: 0.08em;
}

.p-thanks__text {
	font-size: 0.92rem;
	color: #1a1a2e;
	line-height: 2.2;
	margin-bottom: 40px;
}

.p-member__contact-note {
	margin-top: 40px;
	margin-bottom: 16px;
	font-size: 0.88rem;
	color: #7a8a9a;
	text-align: center;
	letter-spacing: 0.04em;
}

.p-member__table .is-empty {
	color: #7a8a9a;
	font-size: 0.82rem;
	font-style: italic;
}/*# sourceMappingURL=style.css.map */
