:root {
	--pink: #CC365F;
	--pink-dark: #c93d64;
	--light-pink: #EDBAB6;
	--bg: #F6E9E6;
	--blue: #0000C8;
	--text: #232323;
	--muted: #666;
	--card: #ffffff;
	--shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

* {
	box-sizing: border-box;
}

.tx-pink {
	color: var(--pink);
}

.block {
	display: block;
}

.note {
	font-size: 0.8em;
}

.mgt02 {
	margin-top: 0.2em;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	font-family: "Yu Gothic", Meiryo, system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
	color: var(--text);
	background: var(--bg);
}

p {
	line-height: 1.8;
}

.page {
	min-height: 100%;
	background-image:url('../../img/page/lp/page-bg.png');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.topbar {
	background: var(--pink);
	color: #fff;
	padding: 2.5em 0 2em;
}

.topbar__inner {
	padding: 16px 16px 10px;
	text-align: center;
}

.topbar__title {
	margin: 0;
	font-weight: 800;
	letter-spacing: .1em;
	font-size: 25px;
	position: relative;
}

.topbar__title::after {
	content: '';
	display: inline-block;
	width: 100px;
	height: 50px;
	background-image: url('../../img/page/lp/bg-text-01.png');
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	top: -0.8em;
	left: 60%;
	transform: translateX(-60%);
	background-repeat: no-repeat;
}

.tabs {
	width: 100%;
	max-width: 350px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
	margin-bottom: 2em;
}

.tabs__tab {
	appearance: none;
	background: transparent;
	border: 0;
	padding: 12px 5px;
	color: var(--text);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .02em;
	padding-bottom: 7px;
	border-bottom: 5px solid #C8C7E0;
	cursor: pointer;
}

.tabs__tab.is-active {
	border-bottom: 5px solid var(--pink);
	padding-bottom: 7px;
}

.main {
	padding: 14px 0 40px;
	background-image:url('../../img/page/lp/main-bg.png');
	background-size: contain;
	background-repeat: repeat-y;
	background-color: var(--bg);

}

.panel {
	display: none;
	padding-left: 16px;
	padding-right: 16px;
}

.panel.is-active {
	display: block;
}

.hero {

}

.hero__media {
	display: block;

	img {
		width: 100%;
	}
}

.hero__content {
	padding: 14px 14px 0;
}

.hero__headline {
	margin: 0 0 8px;
	font-weight: 900;
	color: var(--pink);
	font-size: 15px;
}

.section {
	margin-top: 16px;
}

.section__title {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 900;
	color: var(--pink);
	letter-spacing: .04em;
}

.section__text {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.75;
}

.spec {

}

.spec__list {
	margin: 0;
	padding: 6px 0;
}

.spec__row {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 10px;
	padding: 12px 14px;
	border-top: 3px solid rgba(0, 0, 0, .06);
}

.spec__row:last-child {
	border-bottom: 3px solid rgba(0, 0, 0, .06);
}


.spec__dt {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
	color: #444;
}

.spec__dd {
	font-weight: 600;
	margin: 0;
	font-size: 12px;
	color: var(--muted);
	line-height: 1.8;
}

.cta {
	margin: 16px 0 0;
	display: flex;
	justify-content: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 0;
	min-width: 220px;
	height: 44px;
	border-radius: 10px;
	font-weight: 900;
	letter-spacing: .12em;
	font-size: 18px;
}

.btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 7px 0 rgb(12, 32, 96);
}

.btn--primary::after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	margin-left: 0.2em;
	background-image: url(../../img/page/lp/link.svg);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
}

.benefits {
	margin-top: 8em;
	padding: 18px 20px 80px;
	color: #fff;
	position: relative;
	background: var(--pink);
}

.benefits::after {
	content: '';
	background: var(--pink);
	border-radius: 50% 50% 0 0;
	width: 100%;
	height: 150px;
	display: block;
	position: absolute;
	top: -75px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.benefits__inner {
	position: relative;
	z-index: 2;
}

.benefits__title {
	text-align: center;
	margin-top: -1.5em;
	margin-bottom: 1.5em;
}

.benefits__title:after {
	background-image: url('../../img/page/lp/bg-text-02.png');
	right: 10%;
	transform: translateX(-10%);
}

.benefits__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.benefit {
	background: var(--light-pink);
	border-radius: 10px 25px 10px 25px;
	padding: 12px 10px;
	display: flex;
	gap: 10px;
	align-items: center;
	min-height: 62px;
	flex-direction: column;
	gap: 0;
}

.benefit-img {
	display: block;
	width: 100%;
	max-width: 80px;

	img {
		width: 100%;
	}
}

.benefit__text {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
	color: var(--text);
}

.benefit__text_main {
	margin: 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
}

.benefit-other {
	margin-bottom: 0;
	text-align: center;
	font-size: 16px;
	display: flex;
    align-items: center;
	margin: 2em 0 1em;
}

.benefit-other:before,
.benefit-other:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
}

.benefit-other:before {
    margin-right: 1rem;
}

.benefit-other:after {
    margin-left: 1rem;
}

.benefit-note {
	font-size: 12px;
}

.dotty {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.dotty-img {
	display: block;
	width: 100%;
	max-width: 100px;

	img {
		width: 100%;
	}
}

#flow {
	padding: 40px 16px;
}

.flow_title {
	text-align: center;
	margin-bottom: 1.5em;
}

.flow_title::after {
	background-image: url('../../img/page/lp/bg-text-03.png');
	right: 10%;
	transform: translateX(-10%);
}

.flow-img {
	display: block;
	img {
		width: 100%;
	}
}

#flow .cta {
	margin-top: 3em;
}


picture {
	display: block;

	img {
		width: 100%;
	}
}

.fix-logo {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	left: calc((100% - 420px) / 2 - 20vw);
	picture {
		width: 13.3vw;
	}
}

.nav-btn-wrap {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: 10%;
	width: 100%;
	max-width: 20vw;
	right: calc((100% - 420px) / 2 - 25vw);

	picture {
		width: 100%;
		max-width: 250px;
		margin: 2em auto 0;
	}
}

.fix-nav {
	nav {
		ul {
			padding-left: 0;
			li {
				list-style: none;
				background-color: var(--pink);
				box-shadow: 0 7px 0 rgb(113, 13, 47);
				border-radius: 5px;


				a {
					text-decoration: none;
					display: inline-block;
					width: 100%;
					height: 100%;
					color: #fff;
					font-weight: 600;
					font-size: clamp(12px, 1.2vw, 18px);
					letter-spacing: .2;
					padding: 0.5em 1.5em;
					position: relative;
				}

				a::after {
					content: '';
					clip-path: polygon(0 0, 0 100%, 100% 50%);
					width: 10px;
					height: 12px;
					display: inline-block;
					background-color: #fff;
					bottom: 0;
					margin: auto;
					position: absolute;
					right: 1em;
					top: 0;
				}
			}

			li + li {
				margin-top: 1.5em;
			}
		}
	}
}

@media (min-width:480px) {
	.main, .topbar {
		max-width: 420px;
		margin: 0 auto;
		overflow-x: hidden;
	}
}

@media (max-width:860px) {
	.fix-logo,.nav-btn-wrap {
		display: none;
	}

}