@charset "utf-8";

/*============================
202607 LP
============================*/
:root {
	--lp-blue: #0097e0;
	--lp-blue2: #009fe8;
	--lp-yellow: #ffe600;
	--lp-orange: #ff7b00;
	--lp-teal: #28aab3;
	--lp-light: #d9effa;
	--lp-text: #1a1a1a;
	--lp-white: #ffffff;
	--lp-tab: #8bc3dd;
}

body.lp {
	min-width: 10.80rem;
	color: var(--lp-text);
}

@media screen and (max-width: 640px) {
	body.lp {
		min-width: 100%;
		padding-bottom: calc(0.76rem + env(safe-area-inset-bottom));
	}
}

.lp-in {
	width: 100%;
	max-width: 10rem;
	margin: 0 auto;
	padding: 0 0.2rem;
	box-sizing: border-box;
	position: relative;
}

.lp-sec-lead {
	text-align: center;
	font-weight: 800;
	font-size: 0.2rem;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 0.04rem;
}

@media screen and (max-width: 640px) {
	.lp-sec-lead {
		font-size: 0.16rem;
		margin-bottom: 0;
	}
}
.lp-sec-ttl {
	text-align: center;
	font-weight: 800;
	font-size: 0.4rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin-bottom: 0.4rem;
}

@media screen and (max-width: 640px) {
	.lp-sec-ttl,
	.lp-faq__ttl span,
	.lp-contact__ttl,
	.lp-feature__ttl-m {
		font-size: 0.28rem;
	}
}

.lp-sec-ttl--blue {
	color: var(--lp-blue2);
	font-size: 0.3rem;
	letter-spacing: 0.1em;
	position: relative;
	display: inline-block;
	width: 100%;
}
@media screen and (max-width: 640px) {
	.lp-sec-ttl--blue {
		font-size: 0.2rem;
		letter-spacing: 0.05em;
	}
}

.lp-sec-ttl--blue span {
	display: inline-block;
	position: relative;
}

.lp-sec-ttl--blue span::after {
	content: "";
	display: block;
	width: calc(100% + 0.06rem);
	height: 0.15rem;
	background: var(--lp-yellow);
	position: absolute;
	left: -0.03rem;
	bottom: 0.04rem;
	height: 0.15rem;
	border-radius: 0.04rem;
	z-index: -1;
}

/*============================
ヘッダー
============================*/
header {
	padding-top: 0.3rem;
	padding-bottom: 0.5rem;
	padding-left: 0.3rem;
	padding-right: 0.2rem;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	z-index: 10;
	transition: all 0.6s ease;
}
@media screen and (max-width: 640px) {
	header {
		height: 0.6rem;
	}
}

header.scr  {
	background-color: #fff;
	box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.3);
}
/* ロゴ */
.header_logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.5rem;
	height: 1.3rem;
	background: #fff;
	padding: 0.2rem 0;
	border-radius: 0 0 0.2rem 0;
	box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.3);
	box-sizing: content-box;
	transition: width 0.4s ease, height 0.4s ease, padding 0.4s ease;
	overflow: hidden;
}
@media screen and (max-width: 640px) {
	.header_logo {
		width: 0.80rem;
		height: 0.94rem;
		padding: 0.10rem;
	}
}

.scr .header_logo {
	width: 1.5rem;
	height: 100%;
	padding: 0 0.20rem;
	box-shadow: none;
}

@media screen and (max-width: 640px) {
	.scr .header_logo {
		height: 0.26rem;
		padding: 0.15rem 0.24rem;
		box-shadow: none;
	}
}

.header_logo .logo_def,
.header_logo .logo_scr {
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 0;
	transition: opacity 0.4s ease, transform 0.4s ease;
}
@media screen and (max-width: 640px) {
	.header_logo .logo_scr {
		position: absolute;
		left: 40%;
	}
}

.header_logo .logo_def {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
@media screen and (max-width: 640px) {
	.header_logo .logo_def {
		width: 60%;
	}
}

.header_logo .logo_def img {
	display: block;
	width: 1rem;
	height: auto;
}

@media screen and (max-width: 640px) {
	.header_logo .logo_def img {
		width: auto;
	}
}

.header_logo .logo_scr {
	transform: translate(-50%, -50%) scale(0.9);
	opacity: 0;
	pointer-events: none;
}

.header_logo .logo_scr img {
	display: block;
	width: 1.27rem;
	height: 0.32rem;
}

@media screen and (max-width: 640px) {
	.header_logo .logo_scr img {
		width: 1.01rem;
		height: 0.26rem;
	}
}

header.scr .logo_scr {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	pointer-events: auto;
	width: 1.27rem;
}

header.scr .logo_def {
	transform: translate(-50%, -50%) scale(0.9);
	opacity: 0;
	pointer-events: none;
}



header h1 {
	text-align: right;
	font-size: 0.12rem;
	position: relative;
	top:-0.1rem;
}

@media screen and (max-width: 640px) {
	header h1 {
		position: relative;
		top: -2rem;
	}
}

header.hide {
	transform: translateY(-100px);
	opacity:0;
}

@media screen and (max-width: 640px) {
	header {
		padding-top: 0.16rem;
		padding-bottom: 0.16rem;
	}

	header.hide {
		transform: translateY(-80px);
		opacity: 0;
	}
}


header nav {
	position: absolute;
	top: 0.5rem;
	right: 0.20rem;
}

@media screen and (max-width: 640px) {
	header nav {
		position: absolute;
		top: 0;
		left: 0;
		height: 105vh;
		transform: none;
		width: 100%;
		box-sizing: border-box;
		/* background-color: rgba(28, 28, 28, 0.9); */
		background: #0097e0;
		box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(10px);
	}
}

header nav ul {
	display: flex;
}

@media screen and (max-width: 640px) {
	header nav ul {
		display: block;
		padding-top: 0.1rem;
		padding-bottom: 0.1rem;
		width: 50%;
		margin: auto;
		margin-top: 0.8rem;
	}
}

header nav li {
	padding-left: 0.2rem;
}

@media screen and (max-width: 640px) {
	header nav li {
		padding-left: 0;
	}
}

header nav li a {
	font-size: 0.16rem;
	color: #222;
	text-decoration: none;
	line-height: 1.5;
	display: block;
	letter-spacing: 0.075em;
	position: relative;
}

header nav li a:hover {
	color: var(--lp-blue);
}

header nav li a::after {
	content: "";
	display: block;
	position: relative;
	top: 0.02rem;
	width: 0;
	height: 1px;
	background-color: #FFF;
	transition: all 0.6s ease;
}

header nav li a:hover::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--lp-blue);
}

@media screen and (max-width: 640px) {
	header nav li a {
		font-size: 0.18rem;
		font-weight: bold;
		color: #fff;
		padding-top: 0.2rem;
		padding-bottom: 0.2rem;
	}
	header nav li a::before {
		content: '▶';
		padding-right: 0.1rem;
		font-size: 0.12rem;
		color: var(--lp-yellow);
	}
}




/*============================
side CTA
============================*/
.lp-side-cta {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0;
}

@media screen and (max-width: 640px) {
	.lp-side-cta {
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		transform: none;
		flex-direction: row;
		align-items: stretch;
		gap: 0.08rem;
		padding: 0.1rem 0.12rem calc(0.1rem + env(safe-area-inset-bottom));
		box-sizing: border-box;
		background: transparent;
	}
	.lp-side-cta .-item {
		width: 50%;
	}
}

.lp-side-cta__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 0.72rem;
	padding: 0.18rem 0.1rem 0.22rem;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	border-radius: 0.12rem 0 0 0.12rem;
	text-decoration: none;
	transition: width 0.25s ease, padding 0.25s ease, opacity 0.25s ease;
}
@media screen and (max-width: 640px) {
	.lp-side-cta__item {
		flex: 1;
		width: 100%;
		min-height: 0.56rem;
		padding: 0.12rem 0.08rem;
		flex-direction: row;
		justify-content: center;
		gap: 0.08rem;
		border-radius: 0.06rem;
		transition: opacity 0.2s ease;
		border: 1px solid #fff;
		box-sizing: border-box;
		box-shadow: 0 0 0.06rem rgba(0, 0, 0, 0.20);
	}
}

.lp-side-cta__item:hover {
	opacity: 0.8;
}

.lp-side-cta__item--estimate {
	background: var(--lp-orange);
	margin-bottom: 0.15rem;
	align-items: center;
	padding-left: 0.1rem;
	padding-right: 0.1rem;
}

@media screen and (max-width: 640px) {
	.lp-side-cta__item--estimate {
		margin-bottom: 0;
		padding-left: 0.08rem;
		padding-right: 0.08rem;
	}

	.lp-side-cta__item--estimate:hover {
		width: auto;
		padding-left: 0.08rem;
		padding-right: 0.08rem;
		opacity: 0.85;
	}
}

.lp-side-cta__item--estimate .lp-side-cta__label {
	align-self: flex-start;
	margin-left: 0.15rem;
}

@media screen and (max-width: 640px) {
	.lp-side-cta__item--estimate .lp-side-cta__label {
		align-self: center;
		margin-left: 0;
	}
}

.lp-side-cta__item--estimate:hover {
	width: 0.9rem;
	padding-left: 0.1rem;
	padding-right: 0.22rem;
	opacity: 1;
}

.lp-side-cta__item--tel {
	background: var(--lp-blue2);
}

.lp-side-cta__icon {
	display: block;
	width: 0.28rem;
	height: auto;
	margin-bottom: 0.06rem;
}

@media screen and (max-width: 640px) {
	.lp-side-cta__icon {
		width: 0.22rem;
		margin-bottom: 0;
		flex-shrink: 0;
	}
}

.lp-side-cta__item--tel .lp-side-cta__icon {
	width: 0.26rem;
}

@media screen and (max-width: 640px) {
	.lp-side-cta__item--tel .lp-side-cta__icon {
		width: 0.2rem;
	}
}

.lp-side-cta__sub {
	display: block;
	font-size: 0.12rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	margin-bottom: 0.1rem;
	writing-mode: horizontal-tb;
}

@media screen and (max-width: 640px) {
	.lp-side-cta__sub {
		display: none;
	}
}

.lp-side-cta__label {
	display: block;
	font-size: 0.18rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.18em;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

@media screen and (max-width: 640px) {
	.lp-side-cta__label {
		display: none;
	}
}

.lp-side-cta__label-sp {
	display: none;
}

@media screen and (max-width: 640px) {
	.lp-side-cta__label-sp {
		display: block;
		font-size: 0.13rem;
		font-weight: 700;
		letter-spacing: 0.04em;
		line-height: 1.3;
		writing-mode: horizontal-tb;
	}
}

.lp-side-cta .pc_item_wrap .item {
	border-radius: 0.10rem 0 0 0.10rem;
	overflow: hidden;
	box-shadow: 0 0 0.10rem rgba(0, 0, 0, 0.10);
}

.lp-side-cta .pc_item_wrap .item a {
	display: block;
	width: 0.60rem;
}

.lp-side-cta .pc_item_wrap .item a:hover {
	filter: brightness(1.2);
}


.lp-side-cta .pc_item_wrap .item.-mail {
	background-color: #FF7B00;
}

.lp-side-cta .pc_item_wrap .item.-tel {
	background-color: #0097E0;
	margin-top: 0.15rem;
}

/*============================
MV
============================*/
.lp-mv {
	position: relative;
	overflow: hidden;
	padding: 0.2rem 0 0.8rem;
	min-height: 7.2rem;
	margin-top: 1rem;
}

@media screen and (max-width: 640px) {
	.lp-mv {
		min-height: auto;
		padding-bottom: 0.4rem;
		margin-top: 0.6rem;
	}
}

.lp-mv__deco {
	position: absolute;
	border-radius: 0.6rem;
	pointer-events: none;
	opacity: 0.3;
}

.lp-mv__deco--green {
	width: 5.36rem;
	height: 2.82rem;
	background: #abe16a;
	left: -0.95rem;
	top: -0.76rem;
	border-radius: 0 0.6rem 0.6rem 0;
}

.lp-mv__deco--yellow {
	width: 3.61rem;
	height: 2.66rem;
	background: var(--lp-yellow);
	left: 0.02rem;
	top: 4.58rem;
	border-radius: 0 0.5rem 0.5rem 0;
}

.lp-mv__deco--blue {
	width: 50%;
	height: 5.87rem;
	background: var(--lp-blue);
	right: 0;
	top: 0.6rem;
	border-radius: 0.6rem 0 0 0.6rem;
}

@media screen and (max-width: 640px) {
	.lp-mv__deco--blue {
		height: 3.80rem;
		border-radius: 0 0 0 0.30rem;
	}
}

.lp-mv__deco--teal {
	width: 4.23rem;
	height: 2.73rem;
	background: var(--lp-teal);
	right: -1.86rem;
	top: 4.82rem;
	border-radius: 0.6rem;
}

.lp-mv__inner {
	margin: 0 auto;
	position: relative;
	z-index: 1;
	min-height: 6.2rem;
}
@media screen and (max-width: 640px) {
	.lp-mv__inner {
		min-height: auto;
	}
}		
.lp-mv__visual {
	position: relative;
	height: 6rem;
}

@media screen and (max-width: 640px) {
	.lp-mv__visual {
		height: auto;
		display: flex;
		flex-direction: column;
	}
}

.lp-mv__photo {
	position: absolute;
	overflow: hidden;
}



.lp-mv__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lp-mv__photo--bath {
	left: 0;
	top: 0;
	width: 55%;
	height: 6rem;
	border-radius: 0 0.4rem 0.4rem 0;
}
@media screen and (max-width: 640px) {
	.lp-mv__photo--bath {
		display: none;
		position: relative;
		width: 90% ;
		height: 2.4rem ;
		left: auto ;
		right: auto ;
		top: auto ;
		border-radius: 0.2rem ;
	}
}

.lp-mv__photo--kids {
	right: 0;
	top: 0.91rem;
	width: 40%;
	height: 6rem;
	border-radius: 0.4rem 0 0 0.4rem;
}

@media screen and (max-width: 640px) {
	.lp-mv__photo--kids {
		width: calc(100vw - 0.15rem);
		height: 70vw ;
		border-radius: 0.2rem 0 0 0.2rem;
		top: 0;
		position: relative;
		left: 0.15rem;
	}
}

.lp-mv__content {
	position: absolute;
	left: 0.6rem;
	bottom: -0.1rem;
	z-index: 3;
	width: 6.54rem;
	max-width: calc(100% - 1.2rem);
	pointer-events: none;
}

@media screen and (max-width: 640px) {
	.lp-mv__content {
		position: relative;
		left: auto;
		bottom: auto;
		width: 100%;
		max-width: 100%;
		padding: 0.16rem 0.2rem 0;
		box-sizing: border-box;
		pointer-events: auto;
		margin-top: -0.9rem;
	}
}

.lp-mv__ttl {
	margin: 0;
	font-size: 0;
	line-height: 0;
}
@media screen and (max-width: 640px) {
	.lp-mv__ttl {
		position: relative;
		left: -0.10rem;
	}
}

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

@media screen and (max-width: 640px) {
	.lp-mv__ttl img {
		width: 100%;
		max-width: 6.54rem;
		margin: 0 auto;
	}
}

/*============================
reason
============================*/
.lp-reason {
	padding: 0.6rem 0 0.8rem;
}
@media screen and (max-width: 640px) {
	.lp-reason {
		padding: 0.4rem 0 0;
	}
}

.lp-reason__list {
	display: grid;
	grid-template-columns: repeat(3, 2.3rem);
	justify-content: center;
	gap: 0.5rem 0.48rem;
	margin-top: 0.5rem;
}

@media screen and (max-width: 640px) {
	.lp-reason__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.24rem;
		margin-top: 0;
	}
}

.lp-reason__item {
	text-align: center;
	height: 2.30rem;
	height: 2.30rem;
	border-radius: 50%;
	background: var(--lp-light);
	position: relative;
}
@media screen and (max-width: 640px) {
	.lp-reason__item {
		height: 1.6rem;
	}
}

.lp-reason__circle {
	width: 100%;
	height: 1.00rem;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
	.lp-reason__circle {
		width: 1.6rem;
		height: 1.6rem;
	}
}

.lp-reason__circle img {
	display: block;
}

.lp-reason__circle.-icon01 {
	width: 1.38rem;
	padding-top: 0.35rem;
}
@media screen and (max-width: 640px) {
	.lp-reason__circle.-icon01 {
		width: 0.8rem;
		padding-top: 0.15rem;
	}
}

.lp-reason__circle.-icon02 {
	padding-top: 0.25rem;
}
@media screen and (max-width: 640px) {
	.lp-reason__circle.-icon02 {
		padding-top: 0.15rem;
	}
}

.lp-reason__circle.-icon02 img {
	width: 0.55rem;
	margin: auto;
	padding-bottom: 0.05rem;
}
@media screen and (max-width: 640px) {
	.lp-reason__circle.-icon02 img {
		width: 0.35rem;
		padding-bottom: 0;
	}
}

.lp-reason__circle.-icon03 {
	width: 0.97rem;
	padding-left: 0.20rem;
	padding-top: 0.35rem;
}
@media screen and (max-width: 640px) {
	.lp-reason__circle.-icon03 {
		width: 0.55rem;
		padding-left: 0.10rem;
		padding-top: 0.10rem;
	}
}

.lp-reason__circle.-icon04 {
	width: 1.09rem;
	padding-top: 0.35rem;
}
@media screen and (max-width: 640px) {
	.lp-reason__circle.-icon04 {
		width: 0.65rem;
		padding-top: 0.10rem;
	}
}

.lp-reason__circle.-icon05 {
	width: 1.13rem;
	padding-top: 0.45rem;
}
@media screen and (max-width: 640px) {
	.lp-reason__circle.-icon05 {
		width: 0.70rem;
		padding-top: 0.20rem;
	}
}

.lp-reason__circle.-icon06 {
	width: 1.09rem;
	padding-top: 0.35rem;
}
@media screen and (max-width: 640px) {
	.lp-reason__circle.-icon06 {
		width: 0.70rem;
		padding-top: 0.15rem;
	}
}

.lp-reason__num {
	color: var(--lp-blue2);
	font-weight: 500;
	line-height: 1;
	text-align: center;
	width: 100%;
}

.lp-reason__num span {
	font-family: "Oswald", sans-serif;
	font-size: 0.51rem;
	font-weight: 500;
	color: var(--lp-blue1);
	letter-spacing: 0;
}

@media screen and (max-width: 640px) {
	.lp-reason__num span {
		font-size: 0.32rem;
	}
}

.lp-reason__num small {
	font-size: 0.25rem;
	font-weight: 700;
	margin-left: 0.04rem;
}

@media screen and (max-width: 640px) {
	.lp-reason__num small {
		font-size: 0.18rem;
		margin-left: 0.02rem;
	}
}

.lp-reason__label {
	font-size: 0.17rem;
	font-weight: 600;
	line-height: 1.3;
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
	top: 1.60rem;
}
@media screen and (max-width: 640px) {
	.lp-reason__label {
		top: 1.05rem;
		font-size: 0.13rem;
	}
}

/*============================
worry
============================*/
.lp-worry {
	padding: 0.58rem 0 0;
	color: #fff;
}

.lp-worry__inner {
	background: var(--lp-teal);
	padding-top: 0.5rem;
}

.lp-worry__ttl {
	text-align: center;
	font-weight: 700;
	font-size: 0.3rem;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
	line-height: 1.5;
}

@media screen and (max-width: 640px) {
	.lp-worry__ttl {
		font-size: 0.22rem;
	}
}

.lp-worry__ttl span {
	color: var(--lp-yellow);
	font-size: 0.4rem;
	position: relative;
	display: inline-block;
}

@media screen and (max-width: 640px) {
	.lp-worry__ttl span {
		font-size: 0.28rem;
	}
}

.lp-worry__ttl span::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.02rem;
	height: 0.08rem;
	background: var(--lp-yellow);
	border-radius: 0.04rem;
}

@media screen and (max-width: 640px) {
	.lp-worry__ttl span::after {
		height: 0.05rem;
	}
}
.lp-worry__stage {
	text-align: center;
}

@media screen and (max-width: 640px) {
	.lp-worry__stage {
		padding: 0 0.1rem;
	}
}

.lp-worry__stage img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: relative;
	bottom: -0.01rem;
}

.lp-worry__arrow {
	text-align: center;
	margin: 0.2rem 0;
}
@media screen and (max-width: 640px) {
	.lp-worry__arrow {
		max-width: 0.6rem;
		margin: 0.3rem auto 0.1rem;
	}
}

.lp-worry__arrow img {
	width: 0.84rem;
	height: auto;
	transform: rotate(180deg);
}

.lp-worry__solve {
	color: var(--lp-text);
	padding: 0.5rem 0 0.8rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	.lp-worry__solve {
		padding: 0.1rem 0 0.6rem;
	}
}

.lp-worry__solve .lp-in {
	position: relative;
	z-index: 1;
}

.lp-worry__solve-ttl {
	text-align: center;
	font-weight: 700;
	font-size: 0.3rem;
	color: var(--lp-teal);
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
}
@media screen and (max-width: 640px) {
	.lp-worry__solve-ttl {
		font-size: 0.18rem;
		line-height: 1.6;
		margin-bottom: 0.2rem;
	}
}

.lp-worry__solve-ttl span {
	font-size: 0.4rem;
}
@media screen and (max-width: 640px) {
	.lp-worry__solve-ttl span {
		font-size: 0.22rem;
	}
}
.lp-worry__solve-lead {
	text-align: center;
	font-size: 0.28rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
	line-height: 1.6;
}
@media screen and (max-width: 640px) {
	.lp-worry__solve-lead {
		font-size: 0.24rem;
		line-height: 1.4;
	}
}
.lp-worry__solve-lead .lp-mark {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 0 0.04rem;
}

.lp-worry__solve-lead .lp-mark::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.08rem;
	height: 0.16rem;
	background: var(--lp-yellow);
	z-index: -1;
	border-radius: 0.04rem;
}
@media screen and (max-width: 640px) {
	.lp-worry__solve-lead .lp-mark::before {
		height: 0.1rem;
	}
}

.lp-worry__solve-lead strong {
	color: var(--lp-blue2);
	font-size: 0.4rem;
	font-weight: 700;
	font-family: Inter, sans-serif;
	margin: 0 0.04rem;
}

@media screen and (max-width: 640px) {
	.lp-worry__solve-lead strong {
		font-size: 0.32rem;
	}
}
.lp-worry__solve-lead .lp-unit {
	color: var(--lp-blue2);
	font-size: 0.28rem;
}

.lp-worry__solve-txt {
	text-align: center;
	font-size: 0.16rem;
	line-height: 2;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
	.lp-worry__solve-txt {
		font-size: 0.14rem;
		text-align: left;
	}
}
.lp-worry .img_01 {
	position: absolute;
	left: -1rem;
	top: 0;
	max-width: 1.64rem;
	z-index: -1;
}
@media screen and (max-width: 640px) {
	.lp-worry .img_01 {
    top: -1rem;
		left: 0.15rem;
    max-width: 0.6rem;
    z-index: -1;
	}
}

.lp-worry .img_02 {
	position: absolute;
	right: -1rem;
	top: 0;
	max-width: 1.7rem;
	width: 100%;
	z-index: -1;
}
@media screen and (max-width: 640px) {
	.lp-worry .img_02 {
    right: 0.16rem;
    top: -1rem;
    max-width: 0.6rem;
	}
}

/*============================
CTA
============================*/
.lp-cta {
	background: var(--lp-blue);
	padding: 0.5rem 0 0.7rem;
	position: relative;
	overflow: hidden;
}

.lp-cta::before,
.lp-cta::after {
	content: "";
	position: absolute;
}

.lp-cta::before {
	width: 1.6rem;
	height: 1.6rem;
	left: -0.2rem;
	top: 1.48rem;
	background-image: url(../img/lp/cta_deco_left.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
}
@media screen and (max-width: 640px) {
	.lp-cta::before {
		left: 0;
		top: 1.5rem;
		width: 0.8rem;
		height: 0.8rem;
	}
}

.lp-cta::after {
	width: 1.6rem;
	height: 1.6rem;
	right: -0.2rem;
	bottom: 0.6rem;
	background-image: url(../img/lp/cta_deco_right.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right center;
}
@media screen and (max-width: 640px) {
	.lp-cta::after {
		right: 0;
		bottom: 0.2rem;
		width: 0.8rem;
		height: 0.8rem;
	}
}

.lp-cta__inner {
	max-width: 10rem;
	margin: 0 auto;
	padding: 0 0.2rem;
	position: relative;
	text-align: center;
	color: #fff;
}

.lp-cta__illust {
	position: absolute;
	pointer-events: none;
}

@media screen and (max-width: 640px) {
	.lp-cta__illust {
		display: none;
	}
}

.lp-cta__illust--l {
	left: -0.5rem;
	top: 0.2rem;
	max-width: 2.14rem;
	height: auto;
}

.lp-cta__illust--r {
	right: -0.2rem;
	top: 0.5rem;
	width: 2.03rem;
	height: auto;
}

.lp-cta__ttl {
	font-size: 0.32rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0 0 0.45rem;
	line-height: 1.5;
	color: #fff;
}
@media screen and (max-width: 640px) {
	.lp-cta__ttl {
		font-size: 0.22rem;
	}
}

.lp-cta__ttl-lead {
	display: inline-block;
	font-size: 0.22rem;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
	.lp-cta__ttl-lead {
		font-size: 0.16rem;
	}
}

.lp-cta__ttl-line {
	position: relative;
	display: inline-block;
}

.lp-cta__ttl-line::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.02rem;
	height: 0.08rem;
	background: var(--lp-yellow);
	border-radius: 0.04rem;
}
@media screen and (max-width: 640px) {
	.lp-cta__ttl-line::after {
		height: 0.05rem;
	}
}

.lp-cta__ttl-brand {
	color: var(--lp-yellow);
}

.lp-cta__area {
	display: inline-block;
	border: 1px solid #fff;
	padding: 0.28rem 0.6rem 0.2rem;
	margin-bottom: 0.4rem;
	position: relative;
	min-width: 4.8rem;
	background: rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.lp-cta__area {
		padding: 0.2rem 0.4rem 0.16rem;
		min-width: auto;
		width: 100%;
	}
}

.lp-cta__area-label {
	position: absolute;
	left: 50%;
	top: -0.14rem;
	transform: translateX(-50%);
	background: #fff;
	color: var(--lp-blue2);
	font-size: 0.2rem;
	font-weight: 700;
	padding: 0.04rem 0.2rem;
	line-height: 1;
}
@media screen and (max-width: 640px) {
	.lp-cta__area-label {
		font-size: 0.18rem;
	}
}

.lp-cta__area-txt {
	font-size: 0.2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
	.lp-cta__area-txt {
		font-size: 0.18rem;
	}
}

.lp-cta__cards {
	display: flex;
	justify-content: center;
	gap: 0.3rem;
	flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
	.lp-cta__cards {
		flex-direction: column;
		align-items: center;
	}
}

.lp-cta__card {
	background: #fff;
	color: var(--lp-text);
	border-radius: 0.1rem;
	box-shadow: 0 0.04rem 0.1rem rgba(0, 0, 0, 0.25);
	width: 4.3rem;
	padding: 0.28rem 0.24rem 0.24rem;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.lp-cta__card {
		width: 100%;
	}
}

.lp-cta__card-ttl {
	font-size: 0.18rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding-bottom: 0.14rem;
	border-bottom: 1px solid #ddd;
	margin-bottom: 0.2rem;
}

.lp-cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.1rem;
	background: var(--lp-orange);
	color: #fff;
	font-size: 0.19rem;
	font-weight: 700;
	border-radius: 0.05rem;
	padding: 0.16rem 0.2rem;
	box-shadow: 0 0.04rem 0 rgba(0, 0, 0, 0.2);
	letter-spacing: 0.05em;
}

.lp-cta__btn:hover {
	opacity: 0.9;
}

.lp-cta__btn img {
	width: 0.15rem;
	height: 0.15rem;
	filter: brightness(0) invert(1);
}

.lp-cta__tel {
	font-size: 0.47rem;
	font-weight: 700;
	font-family: Inter, sans-serif;
	color: var(--lp-orange);
	line-height: 1.2;
	letter-spacing: 0;
	margin: 0.1rem 0 0.12rem;
}

@media screen and (max-width: 640px) {
	.lp-cta__tel {
		font-size: 0.32rem;
	}
}

.lp-cta__tel a {
	color: inherit;
}

.lp-cta__card-note {
	font-size: 0.16rem;
	line-height: 1.5;
	margin-top: 0.14rem;
	letter-spacing: 0.05em;
}

/*============================
plan
============================*/
.lp-plan {
	padding: 0.8rem 0 0.8rem;
	position: relative;
	overflow: clip;
}
@media screen and (max-width: 640px) {
	.lp-plan {
		padding: 0.4rem 0 0.4rem;
		margin-bottom: 0.6rem;
	}
}

.lp-plan::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 5.6rem;
	height: 5.47rem;
	background: var(--lp-light);
	z-index: 0;
	pointer-events: none;
}

@media screen and (max-width: 640px) {
	.lp-plan::before {
		top: 4.6rem;
		height: calc(100% - 4rem);
		top: auto;
		bottom: 0;
	}
}

.lp-plan .lp-in {
	position: relative;
	z-index: 1;
}

.lp-plan__lead {
	text-align: center;
	font-size: 0.16rem;
	line-height: 2;
	margin: -0.2rem 0 0.3rem;
}
@media screen and (max-width: 640px) {
	.lp-plan__lead {
		font-size: 0.14rem;
	}
}

.lp-plan .title_wrap {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 0.30rem;
}

@media screen and (max-width: 640px) {
	.lp-plan .title_wrap {
		display: block;
		text-align: center;
	}
}

.lp-plan .lp-sec-ttl--blue {
	margin-bottom: 0;
	width: auto;
}

.lp-plan__slider {
	margin: 0 auto;
}

.lp-plan__slide {
	outline: none;
}

.lp-plan__card {
	box-sizing: border-box;
	padding: 0.24rem 0.24rem 0.24rem;
}

@media screen and (max-width: 640px) {
	.lp-plan__card {
		padding: 0.16rem 0;
	}
}

.lp-plan__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.16rem;
	margin-bottom: 0.2rem;
}

@media screen and (max-width: 640px) {
	.lp-plan__head {
		flex-wrap: wrap;
		gap: 0.08rem;
	}
}

.lp-plan__tag {
	background: var(--lp-blue2);
	color: #fff;
	font-size: 0.2rem;
	font-weight: 700;
	padding: 0.04rem 0.2rem;
	border-radius: 0.06rem;
	letter-spacing: 0.1em;
	line-height: 1.4;
}

.lp-plan__name {
	font-size: 0.36rem;
	font-weight: 900;
	color: var(--lp-blue);
	letter-spacing: 0.05em;
	line-height: 1.2;
	margin: 0;
}

@media screen and (max-width: 640px) {
	.lp-plan__name {
		font-size: 0.26rem;
	}
}

.lp-plan__media {
	position: relative;
}

.lp-plan__photo {
	position: relative;
	overflow: hidden;
}

.lp-plan__photo img {
	display: block;
	width: 100%;
	height: 4.9rem;
	object-fit: cover;
}

@media screen and (max-width: 640px) {
	.lp-plan__photo img {
		height: 2.4rem;
	}
}

.lp-plan__dummy {
	position: absolute;
	left: 0.25rem;
	top: 0.27rem;
	font-size: 0.2rem;
	color: #c00;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.lp-plan__prices {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	position: absolute;
	left: 0.25rem;
	right: 0.25rem;
	bottom: -0.4rem;
	z-index: 2;
	padding: 0;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.lp-plan__prices {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		grid-template-columns: 1fr 1fr;
		margin-top: 0;
	}
}

.lp-plan__price-item {
	text-align: center;
	padding: 0.18rem 0.1rem 0.16rem;
	border-right: 1px solid #cfcfcf;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.lp-plan__price-item {
		border-bottom: 1px solid #eee;
	}
	.lp-plan__price-item:nth-child(2n) {
		border-right: 0;
	}
}

.lp-plan__price-item:last-child {
	border-right: 0;
}

.lp-plan__type {
	font-size: 0.15rem;
	font-weight: 700;
	margin-bottom: 0.08rem;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
	.lp-plan__type {
		font-size: 0.13rem;
	}
}

.lp-plan__list {
	font-size: 0.14rem;
	margin-bottom: 0.06rem;
	padding-top: 0.06rem;
	border-top: 1px solid #1a1a1a;
	display: inline-block;
	min-width: 1.4rem;
	letter-spacing: 0.02em;
}
@media screen and (max-width: 640px) {
	.lp-plan__list {
		font-size: 0.13rem;
		min-width: auto;
	}
}

.lp-plan__sale {
	font-size: 0.28rem;
	font-weight: 700;
	color: var(--lp-blue2);
	letter-spacing: 0.05em;
	line-height: 1.2;
}

@media screen and (max-width: 640px) {
	.lp-plan__sale {
		font-size: 0.22rem;
	}
}

.lp-plan__sale span {
	font-size: 0.2rem;
}

.lp-plan__price-item--work {
	padding: 0;
	display: flex;
	flex-direction: column;
}

.lp-plan__price-item--work .lp-plan__type {
	background: var(--lp-blue2);
	color: #fff;
	padding: 0.06rem 0.08rem;
	margin: 0;
	font-size: 0.15rem;
}

.lp-plan__price-item--work .lp-plan__sale {
	background: #fbf4e7;
	margin: 0;
	padding: 0.22rem 0.08rem;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.28rem;
}

@media screen and (max-width: 640px) {
	.lp-plan__price-item--work .lp-plan__sale {
		font-size: 0.22rem;
		padding: 0.14rem 0.08rem;
	}
}

.lp-plan__desc {
	font-size: 0.14rem;
	line-height: 2;
	letter-spacing: 0.05em;
	margin: 0.35rem auto 0;
	text-align: center;
	max-width: 9rem;
}

@media screen and (max-width: 640px) {
	.lp-plan__desc {
		font-size: 0.13rem;
		line-height: 1.8;
		text-align: left;
		margin-top: 0.2rem;
	}
}

/* slick dots */
.lp-plan__slider .slick-dots {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 0.1rem;
	position: static;
	margin: 0.28rem 0 0;
	padding: 0;
	list-style: none;
	bottom: auto;
	width: auto;
}

.lp-plan__slider .slick-dots li {
	width: auto;
	height: auto;
	margin: 0;
}

.lp-plan__slider .slick-dots li button {
	width: 0.08rem;
	height: 0.08rem;
	padding: 0;
	border-radius: 50%;
	background: #ccc;
	border: 0;
	font-size: 0;
	line-height: 0;
	color: transparent;
}

.lp-plan__slider .slick-dots li button::before {
	display: none;
}

.lp-plan__slider .slick-dots li.slick-active button {
	width: 0.4rem;
	border-radius: 0.04rem;
	background: var(--lp-blue2);
}

/*============================
feature
============================*/
.lp-feature {
	padding: 0.6rem 0 1rem;
	overflow: hidden;
}
@media screen and (max-width: 640px) {
	.lp-feature {
		padding-top: 0;
		padding-bottom: 0.6rem;
	}
}

.lp-feature__ttl {
	text-align: center;
	margin-bottom: 0.7rem;
	line-height: 1.6;
}
@media screen and (max-width: 640px) {
	.lp-feature__ttl {
		line-height: 1.4;
		margin-bottom: 0.4rem;
	}
}

.lp-feature__ttl-s {
	font-size: 0.24rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
	.lp-feature__ttl-s {
		font-size: 0.2rem;
	}
}

.lp-feature__ttl-hl {
	position: relative;
	display: inline;
	padding: 0 0.04rem 0.04rem;
}

.lp-feature__ttl-hl::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.06rem;
	height: 0.15rem;
	background: var(--lp-yellow);
	border-radius: 0.04rem;
	z-index: -1;
}
@media screen and (max-width: 640px) {
	.lp-feature__ttl-hl::after {
		height: 0.1rem;
		left: 30%;
	}
}

.lp-feature__ttl-m {
	font-size: 0.4rem;
	font-weight: 700;
	color: var(--lp-blue2);
	letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
	.lp-feature__ttl-m {
		font-size: 0.32rem;
	}
}

.lp-feature__ttl-l {
	font-size: 0.34rem;
	font-weight: 900;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
	.lp-feature__ttl-l {
		font-size: 0.28rem;
	}
}

.lp-feature__row {
	position: relative;
	margin-bottom: 0.7rem;
	padding: 0.35rem 0;
}

@media screen and (max-width: 640px) {
	.lp-feature__row {
		padding: 0.28rem 0;
		margin-bottom: 0.4rem;
	}
}

.lp-feature__row:last-child {
	margin-bottom: 0;
}

.lp-feature__row::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
}

.lp-feature__row--01::before,
.lp-feature__row--03::before {
	left: 0;
	width: min(72%, 11rem);
	background: var(--lp-light);
	border-radius: 0 0.5rem 0.5rem 0;
}

@media screen and (max-width: 640px) {
	.lp-feature__row--01::before,
	.lp-feature__row--03::before,
	.lp-feature__row--02::before {
		width: calc(100% - 0.10rem);
		border-radius: 0.24rem;
	}
	.lp-feature__row--01::before,
	.lp-feature__row--03::before {
		left: 0;
		right: auto;
		border-radius: 0 0.24rem 0.24rem 0;
	}
}

.lp-feature__row--02::before {
	right: 0;
	width: min(72%, 11rem);
	background: #f3eee6;
	border-radius: 0.5rem 0 0 0.5rem;
}

@media screen and (max-width: 640px) {
	.lp-feature__row--02::before {
		right: 0;
		left: auto;
		width: calc(100% - 0.10rem);
		border-radius: 0.24rem 0 0 0.24rem;
	}
}

.lp-feature__inner {
	display: flex;
	align-items: center;
	gap: 0.48rem;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.lp-feature__inner {
		flex-direction: column;
		gap: 0.24rem;
	}
}

.lp-feature__media {
	width: 5.2rem;
	flex-shrink: 0;
	position: relative;
}

@media screen and (max-width: 640px) {
	.lp-feature__media {
		width: calc(100% + 0.20rem);
		margin: 0 auto;
	}
	.lp-feature__row--02 .lp-feature__media {
		left: 0.10rem;
	}
}

/* .lp-feature__media-back {
	position: absolute;
	left: -0.18rem;
	top: 0.18rem;
	width: 100%;
	height: 100%;
	border-radius: 0.06rem;
	background: rgba(217, 239, 250, 0.9);
	z-index: 0;
}

.lp-feature__row--02 .lp-feature__media-back {
	left: 0.18rem;
	background: rgba(243, 238, 230, 0.95);
} */

@media screen and (max-width: 640px) {
	.lp-feature__row--02 .lp-feature__inner {
		flex-direction: column-reverse;
	}
}

.lp-feature__img {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	background: #fff;
}

.lp-feature__img img {
	display: block;
	width: 100%;
	height: 3.5rem;
	object-fit: cover;
}

@media screen and (max-width: 640px) {
	.lp-feature__img img {
		height: auto;
		aspect-ratio: 520 / 350;
	}
}

.lp-feature__body {
	flex: 1;
	min-width: 0;
	padding: 0.1rem 0;
}

@media screen and (max-width: 640px) {
	.lp-feature__body {
		padding: 0 0.08rem 0.12rem;
	}
}

.lp-feature__num {
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.06rem;
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	color: transparent;
	-webkit-text-stroke: 0.015rem var(--lp-blue2);
	paint-order: stroke fill;
}

@media screen and (max-width: 640px) {
	.lp-feature__num {
		font-size: 0.5rem;
	}
}

.lp-feature__name {
	font-size: 0.24rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 0.14rem;
}

@media screen and (max-width: 640px) {
	.lp-feature__name {
		font-size: 0.2rem;
	}
}

.lp-feature__points {
	display: flex;
	flex-wrap: wrap;
	gap: 0.1rem 0.22rem;
	margin-bottom: 0.14rem;
}

.lp-feature__points li {
	display: flex;
	align-items: center;
	gap: 0.08rem;
	font-size: 0.16rem;
	font-weight: 700;
	color: var(--lp-blue2);
	letter-spacing: 0.04em;
	line-height: 1.4;
}

@media screen and (max-width: 640px) {
	.lp-feature__points li {
		font-size: 0.14rem;
	}
}

.lp-feature__points img {
	width: 0.3rem;
	height: 0.3rem;
	flex-shrink: 0;
	padding: 0.05rem;
	box-sizing: border-box;
	background: var(--lp-blue2);
	border-radius: 50%;
	object-fit: contain;
}

.lp-feature__txt {
	font-size: 0.15rem;
	line-height: 2;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
	.lp-feature__txt {
		font-size: 0.13rem;
	}
}

.lp-feature__txt--em {
	color: var(--lp-blue2);
	font-weight: 700;
	line-height: 2.1;
	text-decoration: underline;
	text-decoration-color: var(--lp-blue2);
	text-underline-offset: 0.08rem;
	text-decoration-thickness: 0.01rem;
}

/*============================
flow
============================*/
.lp-flow {
	background: var(--lp-teal);
	padding: 0.75rem 0 1rem;
	color: #fff;
}
@media screen and (max-width: 640px) {
	.lp-flow {
		padding-top: 0.50rem;
		padding-bottom: 0.4rem;
	}
}

.lp-flow .lp-in {
	position: relative;
}

.lp-flow__ttl {
	text-align: center;
	font-size: 0.3rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
	.lp-flow__ttl {
		font-size: 0.18rem;
		line-height: 1.4;
	}
}

.lp-flow__ttl span {
	color: var(--lp-yellow);
	font-size: 0.4rem;
	position: relative;
	display: inline-block;
}
@media screen and (max-width: 640px) {
	.lp-flow__ttl span {
		font-size: 0.28rem;
	}
}

.lp-flow__ttl span::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.1rem;
	height: 0.08rem;
	background: var(--lp-yellow);
	border-radius: 0.04rem;
}
@media screen and (max-width: 640px) {
	.lp-flow__ttl span::after {
		height: 0.04rem;
		bottom: -0.02rem;
	}
}

.lp-flow__deco {
	position: absolute;
	right: -1rem;
	top: -1rem;
	width: 1.84rem;
	height: auto;
	pointer-events: none;
}

@media screen and (max-width: 640px) {
	.lp-flow__deco {
		display: none;
	}
}

.lp-flow__list {
	display: flex;
	flex-direction: column;
	gap: 0.53rem;
}
@media screen and (max-width: 640px) {
	.lp-flow__list {
		padding: 0;
	}
}

.lp-flow__item {
	display: flex;
	align-items: center;
	background: #fff;
	color: var(--lp-text);
	border-radius: 0.1rem;
	padding: 0.28rem 0.4rem 0.28rem 0.25rem;
	position: relative;
	min-height: 1.8rem;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.lp-flow__item {
		flex-wrap: wrap;
		align-items: center;
		padding: 0.2rem;
		gap: 0.08rem 0;
	}
}

.lp-flow__item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -0.42rem;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 0.42rem solid transparent;
	border-right: 0.42rem solid transparent;
	border-top: 0.29rem solid #7ec8cf;
	z-index: 2;
}
@media screen and (max-width: 640px) {
	.lp-flow__item:not(:last-child)::after {
		bottom: -0.36rem;
		border-left: 0.24rem solid transparent;
		border-right: 0.24rem solid transparent;
		border-top: 0.18rem solid #7ec8cf;
	}
}

/* 数字 | タイトル | 本文 */
.lp-flow__num {
	width: 1.1rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.1rem;
}

@media screen and (max-width: 640px) {
	.lp-flow__num {
		width: auto;
		margin-right: 0.08rem;
	}
}

.lp-flow__num span {
	position: relative;
	font-size: 0.7rem;
	color: #7ec8cf;
	font-family: Inter, sans-serif;
	line-height: 1;
	letter-spacing: -0.02em;
}

@media screen and (max-width: 640px) {
	.lp-flow__num span {
		font-size: 0.48rem;
	}
}

.lp-flow__name {
	font-size: 0.24rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.4;
	flex-shrink: 0;
	width: 2.5rem;
	margin: 0;
}

@media screen and (max-width: 640px) {
	.lp-flow__name,
	.lp-flow__title {
		width: auto;
		font-size: 0.2rem;
	}
}

.lp-flow__title {
	flex-shrink: 0;
	width: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.06rem;
}

.lp-flow__title .lp-flow__name {
	width: auto;
}

.lp-flow__body {
	flex: 1;
	border-left: 1px solid #d0d0d0;
	padding-left: 0.28rem;
	margin-left: 0.16rem;
	min-width: 0;
}

@media screen and (max-width: 640px) {
	.lp-flow__body {
		width: 100%;
		border-left: 0;
		margin-left: 0;
		padding-left: 0;
		padding-top: 0.12rem;
		border-top: 1px solid #eee;
		flex:auto;
	}
}

.lp-flow__txt {
	font-size: 0.15rem;
	line-height: 1.8;
	letter-spacing: 0.02em;
}
@media screen and (max-width: 640px) {
	.lp-flow__txt {
		font-size: 0.14rem;
	}
}

.lp-flow__body .lp-flow__note {
	margin-top: 0.08rem;
	margin-bottom: 0;
	color: #666;
	font-weight: 400;
	font-size: 0.14rem;
}

@media screen and (max-width: 640px) {
	.lp-flow__body .lp-flow__note {
		font-size: 0.12rem;
	}
}
.lp-flow__body .lp-flow__note::after {
	display: none;
}

.lp-flow__note {
	font-size: 0.16rem;
	font-weight: 700;
	color: var(--lp-text);
	position: relative;
	display: inline-block;
	line-height: 1.4;
}

.lp-flow__note::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.02rem;
	height: 0.08rem;
	background: var(--lp-yellow);
	z-index: -1;
}

.lp-hl {
	background: linear-gradient(transparent 60%, var(--lp-yellow) 60%);
	font-weight: 700;
}

.lp-hl--bold {
	font-weight: 700;
}

/*============================
case
============================*/
.lp-case {
	padding: 0.7rem 0 0.8rem;
}

.lp-case__tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.03rem;
	margin-bottom: 0;
}

@media screen and (max-width: 640px) {
	.lp-case__tabs {
		gap: 0.02rem;
	}
}

.lp-case__tabs li {
	min-width: 0;
	display: flex;
}

.lp-case__tabs button {
	appearance: none;
	width: 100%;
	height: 100%;
	border: 0;
	background: var(--lp-tab);
	padding: 0.14rem 0.12rem 0.16rem;
	cursor: pointer;
	line-height: 1.35;
	color: #fff;
	font-family: inherit;
	text-align: center;
	border-radius: 0.1rem 0.1rem 0 0;
	transition: background 0.2s ease;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 640px) {
	.lp-case__tabs button {
		padding: 0.1rem 0.06rem 0.12rem;
	}
}

.lp-case__tab-cat {
	display: block;
	font-size: 0.14rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 640px) {
	.lp-case__tab-cat {
		font-size: 0.11rem;
	}
}

.lp-case__tab-name {
	display: block;
	margin-top: 0.04rem;
	font-size: 0.22rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 640px) {
	.lp-case__tab-name {
		font-size: 0.14rem;
	}
}

.lp-case__tabs button.is-active {
	background: var(--lp-blue2);
	position: relative;
	z-index: 1;
}

.lp-case__panels {
	border: 0.02rem solid var(--lp-blue2);
	background: #fff;
}

.lp-case__panel {
	display: none;
	padding: 0.4rem 0.4rem 0.4rem 0.45rem;
	gap: 0.4rem;
	align-items: stretch;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.lp-case__panel {
		padding: 0.24rem;
		gap: 0.2rem;
	}
}

.lp-case__panel.is-active {
	display: flex;
}

@media screen and (max-width: 640px) {
	.lp-case__panel.is-active {
		flex-direction: column;
	}
}

.lp-case__text {
	flex: 1;
	min-width: 0;
	padding-top: 0.08rem;
}

.lp-case__cat {
	font-size: 0.16rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.06rem;
	color: var(--lp-text);
}

.lp-case__name {
	font-size: 0.36rem;
	font-weight: 700;
	color: var(--lp-text);
	margin-bottom: 0.24rem;
	letter-spacing: 0.05em;
	line-height: 1.3;
}

@media screen and (max-width: 640px) {
	.lp-case__name {
		font-size: 0.26rem;
		margin-bottom: 0.16rem;
	}
}

.lp-case__desc {
	font-size: 0.15rem;
	line-height: 2;
	letter-spacing: 0.04em;
}

@media screen and (max-width: 640px) {
	.lp-case__desc {
		font-size: 0.13rem;
		line-height: 1.9;
	}
}

.lp-case__desc p + p {
	margin-top: 0.2rem;
}

.lp-case__img {
	width: 4.5rem;
	flex-shrink: 0;
}

@media screen and (max-width: 640px) {
	.lp-case__img {
		width: 100%;
	}
}

.lp-case__img img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 4.5rem;
	object-fit: cover;
}

@media screen and (max-width: 640px) {
	.lp-case__img img {
		min-height: 0;
		height: auto;
		aspect-ratio: 417 / 472;
	}
}

/*============================
timeline
============================*/
.lp-timeline {
	padding: 0.6rem 0 1rem;
}

.lp-timeline__ttl {
	text-align: center;
	margin-bottom: 0.5rem;
	font-size: 0.3rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
	.lp-timeline__ttl {
		font-size: 0.18rem;
		line-height: 1.4;
	}
}

.lp-timeline__ttl span {
	font-weight: 700;
	margin-right: 0.1rem;
}

.lp-timeline__ttl strong {
	font-size: 0.4rem;
	color: var(--lp-blue2);
	position: relative;
	display: inline-block;
}
@media screen and (max-width: 640px) {
	.lp-timeline__ttl strong {
		font-size: 0.26rem;
	}
}

.lp-timeline__ttl strong::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.02rem;
	height: 0.15rem;
	background: var(--lp-yellow);
	border-radius: 0.04rem;
	z-index: -1;
}

@media screen and (max-width: 640px) {
	.lp-timeline__ttl strong::after {
		height: 0.1rem;
	}
}

.lp-timeline__list {
	position: relative;
	max-width: 9.5rem;
	margin: 0 auto;
	padding: 0.1rem 0;
}

/* 縦ライン：マーカー列の中央 */
.lp-timeline__list::before {
	content: "";
	position: absolute;
	left: 0.7rem;
	top: 0.3rem;
	bottom: 0.2rem;
	width: 0.02rem;
	background: var(--lp-blue2);
	z-index: 0;
	height: 90%;
}

@media screen and (max-width: 640px) {
	.lp-timeline__list::before {
		left: 0.45rem;
		top: 1rem;
		height: 88%;
	}
}

.lp-timeline__item {
	display: grid;
	grid-template-columns: 1.4rem 1.03rem 1fr;
	align-items: center;
	column-gap: 0.25rem;
	margin-bottom: 0.45rem;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.lp-timeline__item {
		grid-template-columns: 0.9rem 1fr;
		grid-template-rows: auto auto;
		column-gap: 0.16rem;
		row-gap: 0.1rem;
		align-items: start;
		margin-bottom: 0.36rem;
	}
}

.lp-timeline__item:last-child {
	margin-bottom: 0;
}

.lp-timeline__marker {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0.76rem;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 640px) {
	.lp-timeline__marker {
		grid-column: 1;
		grid-row: 1;
		align-self: center;
		min-height: 1.2rem;
	}
}

.lp-timeline__time {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.4rem;
	height: 0.4rem;
	background: var(--lp-blue2);
	color: #fff;
	font-size: 0.2rem;
	font-weight: 700;
	text-align: center;
	border-radius: 0.4rem;
	font-family: Inter, sans-serif;
	line-height: 1;
	letter-spacing: 0.02em;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.lp-timeline__time {
		width: 0.9rem;
		height: 0.32rem;
		font-size: 0.14rem;
	}
}

.lp-timeline__dot {
	display: block;
	width: 0.11rem;
	height: 0.11rem;
	background: var(--lp-blue2);
	border-radius: 50%;
	flex-shrink: 0;
}

.lp-timeline__photo {
	width: 1.03rem;
	flex-shrink: 0;
}

@media screen and (max-width: 640px) {
	.lp-timeline__photo {
		grid-column: 2;
		grid-row: 1;
		width: 100%;
		max-width: 2.4rem;
	}
}

.lp-timeline__photo img {
	display: block;
	width: 1.03rem;
	height: 0.76rem;
	object-fit: cover;
	border-radius: 0.04rem;
}

@media screen and (max-width: 640px) {
	.lp-timeline__photo img {
		width: 100%;
		height: auto;
		aspect-ratio: 103 / 76;
	}
}

.lp-timeline__txt {
	font-size: 0.15rem;
	line-height: 1.7;
	letter-spacing: 0.02em;
	min-width: 0;
}

@media screen and (max-width: 640px) {
	.lp-timeline__txt {
		grid-column: 2;
		grid-row: 2;
		font-size: 0.13rem;
		line-height: 1.6;
	}
}

.lp-timeline__txt small {
	display: block;
	font-size: 0.13rem;
	color: #666;
	margin-top: 0.04rem;
}

/*============================
FAQ
============================*/
.lp-faq {
	background: var(--lp-light);
	padding: 0.75rem 0 1rem;
}
@media screen and (max-width: 640px) {
	.lp-faq {
		padding: 0.5rem 0 0.6rem;
	}
}

.lp-faq__ttl {
	text-align: center;
	font-size: 0.3rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
	.lp-faq__ttl {
		font-size: 0.18rem;
		line-height: 1.4;
	}
}
.lp-faq__ttl span {
	color: var(--lp-blue);
	font-size: 0.4rem;
	position: relative;
	display: inline-block;
}
@media screen and (max-width: 640px) {
	.lp-faq__ttl span {
		font-size: 0.26rem;
	}
}
.lp-faq__ttl span::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.1rem;
	height: 0.08rem;
	background: var(--lp-yellow);
	border-radius: 0.04rem;
}

.lp-faq__list {
	max-width: 9rem;
	margin: 0 auto;
}

.lp-faq__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	padding: 0.25rem 0 0.28rem;
}

.lp-faq__item dt,
.lp-faq__item dd {
	display: flex;
	align-items: center;
	gap: 0.16rem;
	font-size: 0.18rem;
	line-height: 1.6;
	padding-top: 0.1rem;
}
@media screen and (max-width: 640px) {
	.lp-faq__item dt,
	.lp-faq__item dd {
		font-size: 0.14rem;
		align-items: flex-start;
	}
}

.lp-faq__item dt {
	font-weight: 700;
	margin-bottom: 0.14rem;
}

.lp-faq__item dd {
	font-size: 0.16rem;
}
@media screen and (max-width: 640px) {
	.lp-faq__item dd {
		font-size: 0.14rem;
		line-height: 1.8;
	}
}

.lp-faq__q,
.lp-faq__a {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 0.2rem;
	color: #fff;
}
@media screen and (max-width: 640px) {
	.lp-faq__q,
	.lp-faq__a {
		width: 0.4rem;
		height: 0.4rem;
		font-size: 0.16rem;
		margin-top: -0.05rem;
	}
}

.lp-faq__q {
	background: var(--lp-blue2);
}

.lp-faq__a {
	background: #fff;
	color: var(--lp-blue2);
}

/*============================
contact
============================*/
.lp-contact {
	padding: 0.7rem 0 1rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	.lp-contact {
		padding: 0.6rem 0 0.6rem;
	}
}

.lp-contact__ttl {
	text-align: center;
	font-size: 0.4rem;
	font-weight: 700;
	color: var(--lp-blue2);
	letter-spacing: 0.05em;
	margin-bottom: 0.16rem;
	position: relative;
}
@media screen and (max-width: 640px) {
	.lp-contact__ttl {
		font-size: 0.3rem;
		line-height: 1.2;
	}
}

.lp-contact__ttl::after {
	content: "";
	display: block;
	width: 3.16rem;
	height: 0.08rem;
	background: var(--lp-yellow);
	border-radius: 0.04rem;
	margin: 0.12rem auto 0;
}

.lp-contact__lead {
	text-align: center;
	font-size: 0.16rem;
	margin-bottom: 0.4rem;
	letter-spacing: 0.02em;
}
@media screen and (max-width: 640px) {
	.lp-contact__lead {
		font-size: 0.14rem;
		line-height: 1.6;
		margin-bottom: 0.2rem;
	}
}
.lp-contact__telbox {
	max-width: 6.3rem;
	margin: 0 auto 0.5rem;
	position: relative;
	z-index: 1;
}

.lp-contact__telbox a {
	display: block;
}

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

.lp-form {
	max-width: 9rem;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 0 0.5rem;
}

.lp-form__table {
	width: 100%;
	border-collapse: collapse;
	border: 0.01rem solid var(--lp-light);
	border-radius: 0.08rem;
	overflow: hidden;
	background: #fff;
	table-layout: fixed;
}

@media screen and (max-width: 640px) {
	.lp-form__table,
	.lp-form__table tbody,
	.lp-form__table tr,
	.lp-form__table th,
	.lp-form__table td {
		display: block;
		width: 100%;
		border-radius: 0;
	}
}

.lp-form__table th,
.lp-form__table td {
	border-bottom: 0.01rem solid var(--lp-blue);
	vertical-align: middle;
	box-sizing: border-box;
}

.lp-form__table th {
	width: 2.4rem;
	background: var(--lp-light);
	padding: 0.24rem 0.16rem 0;
	text-align: left;
	font-weight: 700;
	position: relative;
	vertical-align: top;
}

@media screen and (max-width: 640px) {
	.lp-form__table th {
		width: 100%;
		padding: 0.12rem 0.16rem;
		border-bottom: 0;
	}
}

.lp-form__table td {
	padding: 0.16rem 0.2rem;
	background: #f6f9fb;
}

@media screen and (max-width: 640px) {
	.lp-form__table td {
		padding: 0.12rem 0.16rem 0.16rem;
	}
	.lp-form__table td:last-child {
		border-bottom: 0;
	}
}

.lp-form__label {
	display: inline-flex;
	align-items: center;
	gap: 0.08rem;
	flex-wrap: wrap;
	font-size: 0.16rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
}

.lp-form__req {
	display: inline-block;
	background: var(--lp-orange);
	color: #fff;
	font-size: 0.11rem;
	font-weight: 500;
	padding: 0.02rem 0.06rem;
	border-radius: 0.03rem;
	line-height: 1.2;
	position: absolute;
	top: 0.25rem;
	right: 0.20rem;
}

.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form input[type="tel"],
.lp-form select,
.lp-form textarea {
	border: 1px solid #ccc;
	border-radius: 0.04rem;
	padding: 0.08rem 0.12rem;
	font-size: 0.15rem;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
}

.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form select,
.lp-form textarea {
	width: 100%;
	max-width: 5.01rem;
}

@media screen and (max-width: 640px) {
	.lp-form input[type="text"],
	.lp-form input[type="email"],
	.lp-form select,
	.lp-form__tel input[type="tel"],
	.lp-form textarea {
		max-width: 100%;
		width: 100%;
	}
}

.lp-form textarea {
	max-width: 6.26rem;
	min-height: 2.01rem;
	resize: vertical;
}

.lp-form__tel {
	display: flex;
	align-items: center;
	gap: 0.08rem;
	flex-wrap: wrap;
}

/* .lp-form__tel input[type="tel"] {
	width: 1.17rem;
	max-width: 1.17rem;
	min-width: 0;
	flex: 0 0 1.17rem;
} */

.lp-form select {
	max-width: 2.58rem;
}

.lp-form__dates {
	display: flex;
	flex-direction: column;
	gap: 0.16rem;
}

.lp-form__date {
	display: flex;
	align-items: center;
	gap: 0.1rem;
	flex-wrap: wrap;
}

.lp-form__date span {
	font-size: 0.14rem;
	min-width: 1rem;
}
@media screen and (max-width: 640px) {
	.lp-form__date span {
		width: 100%;
	}
}	
.lp-form__date select {
	width: 1.37rem;
	max-width: 1.37rem;
}

.lp-form__checks li,
.lp-form__checks .wpcf7-list-item {
	display: block;
	margin: 0 0 0.1rem;
}

.lp-form__checks .wpcf7-list-item-label {
	margin-left: 0;
}

.lp-form__checks label {
	font-size: 0.15rem;
	display: flex;
	align-items: flex-start;
	gap: 0.08rem;
	cursor: pointer;
	line-height: 1.5;
}
@media screen and (max-width: 640px) {
	.lp-form__checks label {
		font-size: 0.14rem;
		line-height: 1.8;
		align-items: center;
	}
}

.lp-form__privacy {
	text-align: center;
	margin: 0.3rem 0;
	font-size: 0.16rem;
}

.lp-form__privacy a{
	text-decoration: underline;
	color: var(--lp-blue);
}

.lp-form__privacy a:hover{
	opacity: 0.8;
	text-decoration: none;
}


.lp-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.12rem;
	appearance: none;
	border: 0;
	background: var(--lp-orange);
	color: #fff;
	font-size: 0.19rem;
	font-weight: 700;
	font-family: inherit;
	width: 3.4rem;
	height: 0.66rem;
	margin: 0 auto;
	border-radius: 0.05rem;
	box-shadow: 0 0.04rem 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
	letter-spacing: 0.05em;
}

.lp-form__submit:hover {
	opacity: 0.9;
}

.lp-form__submit img {
	width: 0.15rem;
	height: 0.15rem;
	filter: brightness(0) invert(1);
}

/*============================
footer
============================*/
.lp-footer {
	background: var(--lp-blue2);
	color: #fff;
	padding: 0.38rem 0 0.2rem;
}

.lp-footer__inner {
	max-width: 11rem;
	margin: 0 auto;
	padding: 0 0.5rem;
}

.lp-footer__main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.4rem;
}

@media screen and (max-width: 640px) {
	.lp-footer__main {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

.lp-footer__brand img {
	width: 2.02rem;
	height: auto;
	margin-bottom: 0.16rem;
}

.lp-footer__tel {
	display: flex;
	align-items: center;
	gap: 0.08rem;
	font-size: 0.34rem;
	font-weight: 700;
	font-family: Inter, sans-serif;
	margin-bottom: 0.12rem;
}
@media screen and (max-width: 640px) {
	.lp-footer__tel {
		font-size: 0.25rem;
	}
}

.lp-footer__tel a {
	color: #fff;
}

.lp-footer__tel img {
	width: 0.58rem;
	height: auto;
}

.lp-footer__hours {
	font-size: 0.12rem;
	letter-spacing: 0.07em;
	margin-bottom: 0.2rem;
	line-height: 1.4;
}

.lp-footer__links {
	display: flex;
	gap: 0;
}

@media screen and (max-width: 640px) {
	.lp-footer__links {
		justify-content: center;
	}
}

.lp-footer__links li {
	padding: 0 0.16rem;
}

.lp-footer__links li:first-child {
	padding-left: 0;
}

.lp-footer__links a {
	color: #fff;
	font-size: 0.13rem;
	opacity: 0.95;
}

.lp-footer__links li + li {
	border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.lp-footer__logo img {
	width: 1rem;
	height: auto;
}
@media screen and (max-width: 640px) {
	.lp-footer__logo img {
		width: 0.8rem;
		height: auto;
	}
}
.lp-footer__copy {
	text-align: right;
	font-size: 0.13rem;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 0.2rem;
}

@media screen and (max-width: 640px) {
	.lp-footer__copy {
		text-align: center;
		font-size: 0.11rem;
	}
}

@media (hover: hover) {
	.lp-header__nav .link a:hover span {
		color: var(--lp-blue);
	}
}

/*============================
Privacy Policy
============================*/
.lp-privacy__logo {
	text-align: center;
	padding: 0.5rem 0 0;
	box-sizing: border-box;
}

.lp-privacy {
	background: #fff;
	padding: 0.8rem 0.2rem 1rem;
}

@media screen and (max-width: 640px) {
	.lp-privacy {
		padding: 0.6rem 0.2rem 0.8rem;
	}
}

.lp-privacy__header {
	text-align: center;
	padding-bottom: 0.5rem;
	border-bottom: 0.02rem solid #e5e5e5;
	margin-bottom: 0.6rem;
}

@media screen and (max-width: 640px) {
	.lp-privacy__header {
		padding-bottom: 0.4rem;
		margin-bottom: 0.4rem;
	}
}

.lp-privacy__title {
	font-size: 0.42rem;
	font-weight: 700;
	color: var(--lp-blue2);
	margin-bottom: 0.12rem;
}

@media screen and (max-width: 640px) {
	.lp-privacy__title {
		font-size: 0.32rem;
		margin-bottom: 0.08rem;
	}
}

.lp-privacy__subtitle {
	font-size: 0.14rem;
	font-weight: 600;
	color: #999;
	font-family: Inter, sans-serif;
	letter-spacing: 0.04em;
}

@media screen and (max-width: 640px) {
	.lp-privacy__subtitle {
		font-size: 0.12rem;
	}
}

.lp-privacy__content {
	max-width: 10rem;
	margin: 0 auto;
}

.lp-privacy__intro {
	margin-bottom: 0.6rem;
	padding: 0.4rem;
	background: #f8f9fa;
	border-radius: 0.12rem;
}

@media screen and (max-width: 640px) {
	.lp-privacy__intro {
		margin-bottom: 0.4rem;
		padding: 0.3rem 0.2rem;
	}
}

.lp-privacy__intro h2 {
	font-size: 0.24rem;
	font-weight: 700;
	color: var(--lp-blue2);
	margin-bottom: 0.2rem;
	text-align: center;
}

@media screen and (max-width: 640px) {
	.lp-privacy__intro h2 {
		font-size: 0.2rem;
		margin-bottom: 0.15rem;
	}
}

.lp-privacy__intro p {
	font-size: 0.15rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 0.12rem;
}

.lp-privacy__intro p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 640px) {
	.lp-privacy__intro p {
		font-size: 0.13rem;
		line-height: 1.7;
	}
}

.lp-privacy__section {
	margin-bottom: 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 0.01rem solid #e5e5e5;
}

.lp-privacy__section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

@media screen and (max-width: 640px) {
	.lp-privacy__section {
		margin-bottom: 0.4rem;
		padding-bottom: 0.4rem;
	}
}

.lp-privacy__section h3 {
	font-size: 0.2rem;
	font-weight: 700;
	color: var(--lp-blue2);
	margin-bottom: 0.2rem;
	padding-left: 0.12rem;
	border-left: 0.04rem solid var(--lp-accent);
}

@media screen and (max-width: 640px) {
	.lp-privacy__section h3 {
		font-size: 0.18rem;
		margin-bottom: 0.15rem;
	}
}

.lp-privacy__section p {
	font-size: 0.15rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 0.15rem;
}

.lp-privacy__section p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 640px) {
	.lp-privacy__section p {
		font-size: 0.13rem;
		line-height: 1.7;
		margin-bottom: 0.12rem;
	}
}

.lp-privacy__section ul {
	list-style: none;
	margin-top: 0.15rem;
}

.lp-privacy__section ul li {
	font-size: 0.15rem;
	line-height: 1.8;
	color: #333;
	padding-left: 0.2rem;
	position: relative;
	margin-bottom: 0.1rem;
}

.lp-privacy__section ul li:before {
	content: "・";
	position: absolute;
	left: 0;
	color: var(--lp-accent);
	font-weight: 700;
}

@media screen and (max-width: 640px) {
	.lp-privacy__section ul li {
		font-size: 0.13rem;
		line-height: 1.7;
		padding-left: 0.15rem;
	}
}



.wpcf7-spinner {
  display: none;
}

.thanks .btn_wrap {
  padding-top: 0.5rem;
  max-width: 3rem;
  margin: auto;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  font-size: 0.18rem;
  padding: 0.15rem 0!important;
	border-radius: 0.5rem!important;
}
@media screen and (max-width: 640px) {
  .wpcf7 form .wpcf7-response-output {
    font-size: 0.12rem;
    line-height: 1.6;
    padding: 0.1rem;
  }
}
