.marumeguri-lp {
	--mg-ink: #26384a;
	--mg-ink-soft: #3e5367;
	--mg-muted: #687b8d;
	--mg-white: #ffffff;
	--mg-soft: #fbfcfd;
	--mg-soft-blue: #f8fbfc;
	--mg-line: rgba(38, 56, 74, .13);
	--mg-line-strong: rgba(38, 56, 74, .2);
	--mg-blue: #2f7893;
	--mg-green: #6f8b7b;
	--mg-coral: #c98568;
	--mg-shadow: 0 24px 70px rgba(28, 52, 70, .1);
	background: var(--mg-white);
	color: var(--mg-ink);
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
	margin: 0;
}

.marumeguri-lp * {
	box-sizing: border-box;
}

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

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

.mg-shell {
	margin-left: auto;
	margin-right: auto;
	width: min(1160px, calc(100% - 48px));
}

.mg-header {
	align-items: center;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--mg-line);
	display: flex;
	gap: 24px;
	justify-content: space-between;
	left: 0;
	padding: 14px 28px;
	position: sticky;
	right: 0;
	top: 0;
	z-index: 20;
}

.mg-brand {
	align-items: center;
	color: var(--mg-ink);
	display: inline-flex;
	gap: 0;
	min-width: max-content;
}

.mg-brand img {
	display: block;
	flex: 0 0 auto;
	height: 54px;
	width: auto;
}

.mg-nav {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: .88rem;
	font-weight: 700;
	gap: 6px 22px;
	justify-content: flex-end;
}

.mg-nav a {
	color: var(--mg-ink-soft);
	padding: 8px 0;
}

.mg-nav a:hover {
	color: var(--mg-blue);
}

.mg-nav-cta {
	background: var(--mg-ink);
	border-radius: 999px;
	color: var(--mg-white) !important;
	padding: 10px 16px !important;
}

.mg-hero {
	background:
		radial-gradient(circle at 84% 18%, rgba(47, 120, 147, .055), transparent 24rem),
		var(--mg-white);
	border-bottom: 1px solid var(--mg-line);
	padding: 86px 0 88px;
}

.mg-hero-grid {
	align-items: center;
	display: grid;
	gap: 52px;
	grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
}

.mg-kicker,
.mg-section-label,
.mg-feature-label {
	color: var(--mg-blue);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1.3;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.mg-hero h1 {
	color: var(--mg-ink);
	font-size: clamp(2.52rem, 4.2vw, 4.1rem);
	font-weight: 800;
	line-height: 1.08;
	margin: 0;
	max-width: 760px;
}

.mg-hero-lead {
	color: var(--mg-ink-soft);
	font-size: 1.14rem;
	font-weight: 500;
	line-height: 1.95;
	margin: 24px 0 0;
	max-width: 670px;
}

.mg-hero-subcopy {
	color: var(--mg-ink);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.75;
	margin: 18px 0 0;
	max-width: 620px;
}

.mg-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.mg-button {
	align-items: center;
	border: 1px solid var(--mg-line-strong);
	border-radius: 999px;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 50px;
	padding: 14px 22px;
	text-align: center;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.mg-button:hover {
	transform: translateY(-2px);
}

.marumeguri-lp .mg-button-primary {
	background: var(--mg-ink);
	border-color: var(--mg-ink);
	color: var(--mg-white);
}

.marumeguri-lp .mg-button-primary:hover {
	background: var(--mg-blue);
	border-color: var(--mg-blue);
	color: var(--mg-white);
}

.marumeguri-lp .mg-button-secondary {
	background: rgba(255, 255, 255, .76);
	color: var(--mg-ink);
}

.mg-hero-note {
	color: var(--mg-muted);
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.75;
	margin: 20px 0 0;
	max-width: 680px;
}

.mg-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.mg-hero-tags li {
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 999px;
	color: var(--mg-ink-soft);
	font-size: .82rem;
	font-weight: 800;
	line-height: 1.35;
	padding: 8px 12px;
}

.mg-hero-preview {
	display: block;
	margin-left: auto;
	max-width: 760px;
	width: 100%;
}

.mg-preview-card {
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(28, 52, 70, .08);
	margin: 0;
	overflow: hidden;
}

.mg-preview-card img {
	aspect-ratio: 16 / 10;
	background: var(--mg-soft);
	object-fit: cover;
	object-position: top center;
	width: 100%;
}

.mg-preview-card figcaption {
	color: var(--mg-ink-soft);
	font-size: .82rem;
	font-weight: 800;
	padding: 12px 14px;
}

.mg-preview-card-main img {
	aspect-ratio: 16 / 10;
}

.mg-section {
	padding: 96px 0;
}

.mg-section-soft {
	background: var(--mg-white);
	border-bottom: 1px solid var(--mg-line);
	border-top: 1px solid var(--mg-line);
}

.mg-section-form {
	background: var(--mg-white);
	border-top: 1px solid var(--mg-line);
	color: var(--mg-ink);
}

.mg-section-head {
	margin-bottom: 42px;
	max-width: 760px;
}

.mg-section-head h2,
.mg-waitlist h2 {
	color: var(--mg-ink);
	font-size: clamp(2rem, 3.4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.18;
	margin: 0;
}

.mg-section-head p:not(.mg-section-label),
.mg-waitlist p {
	color: var(--mg-muted);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.9;
	margin: 18px 0 0;
}

.mg-feature-list {
	display: grid;
	gap: 26px;
}

.mg-feature {
	align-items: stretch;
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	display: grid;
	gap: 0;
	grid-template-columns: minmax(460px, 1.12fr) minmax(360px, .88fr);
	overflow: hidden;
}

.mg-feature:nth-child(even) {
	grid-template-columns: minmax(360px, .88fr) minmax(460px, 1.12fr);
}

.mg-feature:nth-child(even) .mg-feature-media {
	order: 2;
}

.mg-feature-no-image,
.mg-feature-no-image:nth-child(even) {
	grid-template-columns: 1fr;
}

.mg-feature-no-image .mg-feature-body {
	max-width: 860px;
}

.mg-feature-media {
	background: var(--mg-white);
	align-items: center;
	display: flex;
	min-height: 460px;
	padding: 28px;
}

.mg-feature-media img {
	aspect-ratio: 16 / 10;
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	box-shadow: var(--mg-shadow);
	height: auto;
	max-height: 420px;
	object-fit: contain;
	object-position: top center;
	width: 100%;
}

.mg-feature-body {
	align-content: center;
	display: grid;
	padding: 40px;
}

.mg-feature h3 {
	color: var(--mg-ink);
	font-size: clamp(1.6rem, 2.4vw, 2.3rem);
	font-weight: 800;
	line-height: 1.28;
	margin: 0;
}

.mg-feature-lead {
	color: var(--mg-ink-soft) !important;
	font-size: 1rem !important;
	font-weight: 800 !important;
	line-height: 1.65 !important;
	margin-top: 18px !important;
}

.mg-feature p {
	color: var(--mg-muted);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.85;
	margin: 14px 0 0;
}

.mg-feature ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.mg-feature li {
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 999px;
	color: var(--mg-ink-soft);
	font-size: .84rem;
	font-weight: 800;
	line-height: 1.35;
	padding: 8px 12px;
}

.mg-feature-closing {
	color: var(--mg-ink) !important;
	font-weight: 800 !important;
	margin-top: 22px !important;
}

.mg-vision {
	background: var(--mg-white);
	border-top: 1px solid var(--mg-line);
	padding-bottom: 84px;
	padding-top: 84px;
}

.mg-vision-card {
	max-width: 860px;
}

.mg-vision-card h2 {
	color: var(--mg-ink);
	font-size: clamp(2rem, 3.2vw, 3.1rem);
	font-weight: 800;
	line-height: 1.22;
	margin: 0;
}

.mg-vision-card p:not(.mg-section-label) {
	color: var(--mg-ink-soft);
	font-size: 1.04rem;
	font-weight: 600;
	line-height: 2;
	margin: 20px 0 0;
}

.mg-people-grid {
	align-items: start;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
}

.mg-people-grid .mg-section-head {
	margin-bottom: 0;
}

.mg-people-list {
	display: grid;
	gap: 14px;
}

.mg-people-list article {
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	padding: 24px;
}

.mg-people-list span {
	color: var(--mg-blue);
	display: block;
	font-size: .86rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.mg-people-list p {
	color: var(--mg-ink-soft);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.75;
	margin: 0;
}

.mg-faq-grid {
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, .76fr) minmax(520px, 1.24fr);
}

.mg-faq-grid .mg-section-head {
	margin-bottom: 0;
}

.mg-faq-list {
	display: grid;
	gap: 12px;
}

.mg-faq-item {
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	padding: 0;
}

.mg-faq-item summary {
	color: var(--mg-ink);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.55;
	list-style: none;
	padding: 22px 58px 22px 24px;
	position: relative;
}

.mg-faq-item summary::-webkit-details-marker {
	display: none;
}

.mg-faq-item summary::after {
	color: var(--mg-blue);
	content: "+";
	font-size: 1.3rem;
	font-weight: 700;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}

.mg-faq-item[open] summary::after {
	content: "-";
}

.mg-faq-item p {
	border-top: 1px solid var(--mg-line);
	color: var(--mg-muted);
	font-size: .96rem;
	font-weight: 500;
	line-height: 1.85;
	margin: 0;
	padding: 18px 24px 22px;
}

.mg-waitlist {
	align-items: start;
	display: grid;
	gap: 54px;
	grid-template-columns: .86fr 1.14fr;
}

.mg-section-form .mg-section-label {
	color: var(--mg-blue);
}

.mg-section-form .mg-waitlist h2 {
	color: var(--mg-ink);
}

.mg-section-form .mg-waitlist p {
	color: var(--mg-muted);
}

.mg-form-shell {
	background: var(--mg-soft);
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	color: var(--mg-ink);
	padding: 30px;
}

.mg-form-shell form {
	display: grid;
	gap: 18px;
	margin: 0;
}

.mg-form-shell p {
	margin: 0;
}

.mg-form-shell label,
.mg-form-shell legend {
	color: var(--mg-ink);
	display: grid;
	font-size: .94rem;
	font-weight: 800;
	gap: 8px;
	line-height: 1.5;
}

.mg-form-shell fieldset {
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	margin: 0;
	padding: 16px;
}

.mg-form-shell .wpcf7-list-item {
	display: inline-flex;
	margin: 10px 16px 0 0;
}

.mg-form-shell .wpcf7-list-item label {
	align-items: center;
	display: inline-flex;
	font-weight: 700;
	gap: 7px;
}

.mg-form-shell a {
	color: var(--mg-blue);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: .18em;
}

.mg-form-shell .wpcf7-acceptance label,
.mg-privacy-row {
	align-items: center;
	display: inline-flex;
	font-weight: 700;
	gap: 8px;
}

.mg-form-shell .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.mg-form-shell input[type="text"],
.mg-form-shell input[type="email"],
.mg-form-shell textarea {
	background: var(--mg-white);
	border: 1px solid var(--mg-line-strong);
	border-radius: 8px;
	color: var(--mg-ink);
	font: inherit;
	min-height: 48px;
	padding: 12px 14px;
	width: 100%;
}

.mg-form-shell input[type="text"]:focus,
.mg-form-shell input[type="email"]:focus,
.mg-form-shell textarea:focus {
	border-color: var(--mg-blue);
	box-shadow: 0 0 0 3px rgba(47, 120, 147, .14);
	outline: none;
}

.mg-form-shell textarea {
	min-height: 132px;
	resize: vertical;
}

.mg-form-shell input[type="checkbox"] {
	accent-color: var(--mg-blue);
	height: 18px;
	width: 18px;
}

.mg-form-shell input[type="submit"] {
	background: var(--mg-ink);
	border: 0;
	border-radius: 999px;
	color: var(--mg-white);
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	min-height: 52px;
	padding: 14px 24px;
	width: 100%;
}

.mg-form-shell input[type="submit"]:hover {
	background: var(--mg-blue);
}

.mg-form-shell .wpcf7-response-output {
	border-radius: 8px;
	margin: 4px 0 0 !important;
	padding: 12px 14px !important;
}

.mg-form-shell .wpcf7-not-valid-tip {
	color: #b85d46;
	font-size: .86rem;
	font-weight: 700;
	margin-top: 6px;
}

.mg-fallback-notice {
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	padding: 24px;
}

.mg-fallback-notice h3 {
	color: var(--mg-ink);
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.5;
	margin: 0;
}

.mg-fallback-notice p {
	color: var(--mg-muted);
	font-size: .94rem;
	font-weight: 600;
	line-height: 1.75;
	margin: 10px 0 0;
}

.mg-form-note {
	color: var(--mg-muted);
	font-size: .86rem;
	font-weight: 600;
	line-height: 1.7;
	margin: 18px 0 0 !important;
}

.mg-policy-main {
	background: var(--mg-white);
}

.mg-policy-hero {
	border-bottom: 1px solid var(--mg-line);
	padding: 76px 0 54px;
	text-align: center;
}

.mg-policy-hero h1 {
	color: var(--mg-ink);
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.18;
	margin: 0;
}

.mg-policy-hero p:not(.mg-section-label) {
	color: var(--mg-ink-soft);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.9;
	margin: 22px auto 0;
	max-width: 860px;
}

.mg-policy-date {
	color: var(--mg-muted) !important;
	font-size: .92rem !important;
	font-weight: 800 !important;
	margin-top: 18px !important;
}

.mg-policy-content {
	padding: 64px 0 96px;
}

.mg-policy-card {
	background: var(--mg-white);
	border: 1px solid var(--mg-line);
	border-radius: 8px;
	box-shadow: 0 18px 54px rgba(28, 52, 70, .06);
	margin: 0 auto;
	max-width: 920px;
	padding: 46px;
}

.mg-policy-card section + section {
	border-top: 1px solid var(--mg-line);
	margin-top: 34px;
	padding-top: 34px;
}

.mg-policy-card h2 {
	color: var(--mg-ink);
	font-size: 1.18rem;
	font-weight: 800;
	line-height: 1.45;
	margin: 0;
}

.mg-policy-card p,
.mg-policy-card li,
.mg-policy-card dd {
	color: var(--mg-muted);
	font-size: .98rem;
	font-weight: 500;
	line-height: 1.9;
}

.mg-policy-card p {
	margin: 16px 0 0;
}

.mg-policy-card ul {
	margin: 16px 0 0;
	padding-left: 1.35em;
}

.mg-policy-card li + li {
	margin-top: 6px;
}

.mg-policy-card a {
	color: var(--mg-blue);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: .18em;
}

.mg-policy-contact {
	display: grid;
	gap: 14px;
	margin: 18px 0 0;
}

.mg-policy-contact div {
	display: grid;
	gap: 8px;
	grid-template-columns: 100px minmax(0, 1fr);
}

.mg-policy-contact dt {
	color: var(--mg-ink-soft);
	font-size: .92rem;
	font-weight: 800;
	line-height: 1.6;
}

.mg-policy-contact dd {
	margin: 0;
}

.mg-footer {
	align-items: center;
	background: var(--mg-white);
	border-top: 1px solid var(--mg-line);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	padding: 28px;
}

.mg-footer p {
	color: var(--mg-muted);
	font-size: .78rem;
	font-weight: 600;
	margin: 0;
}

.mg-footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
}

.mg-footer a {
	color: var(--mg-muted);
	font-size: .9rem;
	font-weight: 700;
}

@media (max-width: 980px) {
	.mg-shell {
		width: min(100% - 40px, 760px);
	}

	.mg-header {
		align-items: flex-start;
		flex-direction: column;
		padding: 12px 22px;
	}

	.mg-nav {
		justify-content: flex-start;
		width: 100%;
	}

	.mg-hero {
		padding: 64px 0 72px;
	}

	.mg-hero-grid,
	.mg-faq-grid,
	.mg-people-grid,
	.mg-waitlist {
		grid-template-columns: 1fr;
	}

	.mg-hero-preview {
		grid-template-columns: 1fr 1fr;
	}

	.mg-preview-card-discover {
		grid-column: span 2;
		grid-row: auto;
		transform: none;
	}

	.mg-preview-card-discover img {
		aspect-ratio: 16 / 10;
	}

	.mg-preview-card-promote,
	.mg-preview-card-operate {
		transform: none;
	}

	.mg-feature,
	.mg-feature:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.mg-feature:nth-child(even) .mg-feature-media {
		order: 0;
	}

	.mg-feature-media {
		min-height: auto;
	}
}

@media (max-width: 620px) {
	.mg-shell {
		width: min(100% - 32px, 560px);
	}

	.mg-header {
		position: static;
	}

	.mg-nav {
		font-size: .82rem;
		gap: 4px 12px;
	}

	.mg-brand img {
		height: 46px;
	}

	.mg-nav-cta {
		padding: 8px 13px !important;
	}

	.mg-hero {
		padding: 48px 0 54px;
	}

	.mg-hero-lead,
	.mg-section-head p:not(.mg-section-label),
	.mg-waitlist p {
		font-size: .96rem;
		line-height: 1.82;
	}

	.mg-hero-actions,
	.mg-button {
		width: 100%;
	}

	.mg-hero-preview {
		gap: 10px;
	}

	.mg-preview-card figcaption {
		font-size: .76rem;
		padding: 10px 11px;
	}

	.mg-section {
		padding: 64px 0;
	}

	.mg-policy-hero {
		padding: 46px 0 38px;
	}

	.mg-policy-content {
		padding: 38px 0 64px;
	}

	.mg-policy-card {
		padding: 24px;
	}

	.mg-policy-card section + section {
		margin-top: 26px;
		padding-top: 26px;
	}

	.mg-policy-contact div {
		grid-template-columns: 1fr;
	}

	.mg-feature-media {
		padding: 12px;
	}

	.mg-feature-body,
	.mg-people-list article,
	.mg-form-shell {
		padding: 22px;
	}

	.mg-feature li {
		width: 100%;
	}

	.mg-footer {
		align-items: flex-start;
		flex-direction: column;
		padding: 24px 20px;
	}
}
