/**
 * LP (Landing Page) styles
 * Used when page template is page-lp.php and lp-header.php / lp-footer.php exist.
 */

/* Futura: place "Futura Regular.ttf" and "Futura Bold.otf" in parts/lp/fonts/ */
@font-face {
	font-family: "Futura";
	src: url("fonts/Futura Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Futura";
	src: url("fonts/Futura Medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "Futura";
	src: url("fonts/Futura Bold.otf") format("opentype");
	font-weight: bold;
	font-style: normal;
}

/* ==========================================================================
   LP Header
   ========================================================================== */
body {
	font-family: "Noto Sans JP", sans-serif !important;
}

.header-lp {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff !important;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-lp__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	padding: 23px 200px 20px 200px;
	gap: 1rem;
}

.header-lp__logo {
	top: 23px;
	left: 200px;
	width: 196px;
	height: 64px;
	opacity: 1;
}

.header-lp__logo:hover {
	color: #000;
}

.header-lp__logo-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.header-lp__nav {
	display: flex;
	align-items: center;
	gap: 49px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-lp__nav-item {
	position: relative;
}

.header-lp__nav-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	color: #000;
	font-size: 29px;
	line-height: 39px;
	font-weight: bold;
	padding: 0px;
}

.header-lp__nav-link:hover {
	color: #000;
}

.header-lp__nav-caret {
	width: 20px;
	height: auto;
	vertical-align: middle;
}

/* Hamburger: visible only on mobile — dark blue square, white icon + MENU */
.header-lp__menu-btn {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 64px;
	height: 64px;
	padding: 0;
	background: #33379A 0% 0% no-repeat padding-box;
	border: none;
	cursor: pointer;
	gap: 4px;
}

.header-lp__menu-btn-bars {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.header-lp__menu-btn-bar {
	display: block;
	width: 24px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
}

.header-lp__menu-btn-label {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
}

/* Mobile menu overlay */
.header-lp__overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: #33379A 0% 0% no-repeat padding-box;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.25s ease, opacity 0.25s ease;
	overflow-y: auto;
}

body.lp-menu-open .header-lp__overlay {
	visibility: visible;
	opacity: 1;
}

.header-lp__overlay-inner {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 24px 40px;
	position: relative;
}

/* Close button: top right, X + vertical MENU */
.header-lp__close-btn {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 56px;
	height: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #33379A 0% 0% no-repeat padding-box;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	padding: 0;
}

.header-lp__close-x {
	width: 24px;
	height: 24px;
	position: relative;
}

.header-lp__close-x::before,
.header-lp__close-x::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 1px;
}

.header-lp__close-x::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.header-lp__close-x::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header-lp__close-label {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
}

/* Overlay title */
.header-lp__overlay-title {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.15em;
	margin: 0 0 2rem;
	text-align: center;
}

/* Overlay nav list with separators */
.header-lp__overlay-nav {
	width: 100%;
	max-width: 280px;
}

.header-lp__overlay-list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.header-lp__overlay-list li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-lp__overlay-list li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.header-lp__overlay-link {
	display: block;
	padding: 1rem 0.5rem;
	font-size: 18px;
	font-weight: medium;
	color: #fff;
	text-decoration: none;
}

.header-lp__overlay-link:hover {
	color: rgba(255, 255, 255, 0.9);
}

/* Social icons at bottom */
.header-lp__overlay-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 3rem;
}

.header-lp__overlay-social a {
	display: inline-flex;
	color: #fff;
	opacity: 0.95;
}

.header-lp__overlay-social a:hover {
	opacity: 1;
}

.header-lp__overlay-social-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

@media (max-width: 767px) {
	.header-lp__nav {
		display: none;
	}

	.header-lp__menu-btn {
		display: flex;
	}

	.header-lp__inner {
		padding: 0px 0px 0px 20px;
	}

	.header-lp__logo {
		width: 120px;
		height: 40px;
	}
}

#content {
	padding: 0px;
}

#inner-content {
	width: 100% !important;
}

.main-lp {
	max-width: 100% !important;
}

/* ==========================================================================
   LP Hero
   ========================================================================== */

.lp-hero {
	background:
		linear-gradient(to bottom, rgba(163, 163, 163, 0.4) 0%, transparent 10px),
		#f0eeeb url(images/intro-bg.png) no-repeat center center;
	background-size: 100% 10px, cover;
	background-repeat: no-repeat, no-repeat;
	height: 845px;
}

.lp-hero__inner {
	width: 100%;
	padding: 0 200px;
}

.lp-hero__text {
	flex: 1;
	min-width: 0;
}

.lp-hero__title {
	padding-top: 101px;
	color: #2C2B29;
}

.lp-hero__title-1 {
	font-size: 70px;
	line-height: 110px;
	font-weight: bold;
	letter-spacing: -0.7px;
}

.lp-hero__title-2 {
	font-size: 60px;
	line-height: 110px;
	font-weight: bold;
	letter-spacing: -0.6px;
}

.lp-hero__title-number {
	/* font-family: Futura, "Futura PT", sans-serif; */
	font-size: 120px;
	/* font-style: italic; */
	line-height: 110px;
	/* font-weight: bold; */
	letter-spacing: -30px;
	/* color: #F28B3A; */
}

.lp-hero__title-number-img {
	display: inline-block;
}

.lp-hero__title-number-sp-img {
	display: none;
}

.lp-hero__highlight {
	padding-top: 60px;
	color: #2C2B29;
}

.lp-hero__highlight-1 {
	font-size: 29px;
	line-height: 55px;
	font-weight: medium;
	letter-spacing: -0.29px;
}

.lp-hero__highlight-2 {
	font-size: 49px;
	line-height: 55px;
	font-weight: bold;
	letter-spacing: -0.49px;
}

.lp-hero__title-img {
	margin-top: 100px;
}

.lp-hero__highlight-img {
	margin-top: 85px;
	margin-bottom: 78px;
	padding-left: 5px;
}

.lp-hero__highlight-sp-img {
	display: none;
}

.lp-hero__desc {
	font-size: clamp(0.9375rem, 2vw, 1.0625rem);
	line-height: 1.7;
	color: #333;
	margin: 0 0 2rem;
}

.lp-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 23px;
	padding-top: 78px;
}

.lp-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 32px 0px;
	font-size: 43px;
	line-height: 59px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 6px;
	transition: opacity 0.2s;
}

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

.lp-hero__btn--primary {
	background: url(images/intro-btn-contact.png) no-repeat center center;
	background-size: 100% 100%;
	color: #fff;
	border: none;
	width: 395px;
}

.lp-hero__btn--secondary {
	background: url(images/intro-btn-price.png) no-repeat center center;
	background-size: 100% 100%;
	color: #fff;
	border: none;
	width: 430px;
}

.lp-hero__illus {
	flex: 0 1 55%;
	max-width: 560px;
	min-width: 0;
}

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

.lp-hero__img-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	background: rgba(0, 0, 0, 0.06);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 0.875rem;
}

@media (max-width: 767px) {
	.lp-hero {
		position: relative;
	}

	.lp-hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: url(images/sp-intro-bg.png) no-repeat top center;
		background-size: cover;
		opacity: 1;
		z-index: 0;
	}

	.lp-hero__title {
		padding-top: 22px;
		text-align: center;
	}
	
	.lp-hero__title-1 {
		font-size: 21px;
		line-height: 29px;
		font-weight: bold;
		letter-spacing: -0.21px;
	}
	
	.lp-hero__title-2 {
		font-size: 18px;
		line-height: 29px;
		font-weight: bold;
		letter-spacing: -0.18px;
	}
	
	.lp-hero__title-number {
		font-size: 36px;
		line-height: 29px;
		font-weight: bold;
		letter-spacing: -10px;
	}

	.lp-hero__title-number-img {
		display: none;
	}
	
	.lp-hero__title-number-sp-img {
		display: inline-block;
	}
	
	.lp-hero__highlight {
		margin-top: 15px;
		padding: 10px 12px;
		text-align: center;
		color: #33379A;
		background: rgba(255, 255, 255, 0.38);
	}
	
	.lp-hero__highlight-1 {
		font-size: 13px;
		line-height: 21px;
		font-weight: medium;
		letter-spacing: -0.13px;
	}
	
	.lp-hero__highlight-2 {
		font-size: 22px;
		line-height: 21px;
		font-weight: bold;
		letter-spacing: -0.22px;
	}

	.lp-hero__title-img {
		margin-top: 22px;
	}

	.lp-hero__highlight-sp-img {
		display: block;
		margin-top: 26px;
		margin-bottom: 340px;
	}

	.lp-hero__highlight-img {
		display: none;
	}

	.lp-hero__inner {
		position: relative;
		z-index: 1;
		flex-direction: column;
		text-align: center;
		padding: 0 20px;
		height: 100%;
	}

	.lp-hero__cta {
		background: #FFFFFF 0% 0% no-repeat padding-box;
		box-shadow: 0px 4px 12px #00000031;
		border-radius: 10px;
		opacity: 1;
		filter: blur(0px);
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 100%;
		max-width: 380px;
		margin-left: auto;
		margin-right: auto;
		padding: 23px 0;
		position: absolute;
		bottom: 35px;
	}

	.lp-hero__btn {
		font-size: 27px;
		line-height: 37px;
		padding: 17px 0px;
	}

	.lp-hero__btn--primary,
	.lp-hero__btn--secondary {
		width: 100%;
		max-width: 300px;
		box-sizing: border-box;
	}

	.lp-hero__illus {
		order: -1;
		max-width: 100%;
	}
}

/* ==========================================================================
   LP Challenges (よくある課題)
   ========================================================================== */

.lp-challenges {
	position: relative;
	overflow: hidden;
	background: transparent linear-gradient(180deg, #33379A 0%, #C0C2E8 100%) 0% 0% no-repeat padding-box;
	min-height: 727px;
	padding: 20px 200px;
}

.lp-challenges__title,
.lp-challenges__container {
	position: relative;
	z-index: 1;
}

.lp-challenges__title {
	font-size: 49px;
	font-weight: 900;
	color: #fff;
	text-align: center;
	margin: 0 0 45px;
}

.lp-challenges__title::after {
	content: "";
	display: block;
	width: 179px;
	height: 3px;
	background: #fff;
	margin: 0.5rem auto 0;
}

.lp-challenges__container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin: 0 auto;
	background: linear-gradient(180deg, #fafaff 0%, #ffffff 50%, #f8f7fc 100%);
	border-radius: 6px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	padding: 40px 36px;
	position: relative;
	z-index: 1;
}

.lp-challenges__card {
	flex: 1 1 0;
	min-width: 140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lp-challenges__card:last-child {
	border-right: none;
}

.lp-challenges__badge {
	display: inline-block;
	background: #33379A 0% 0% no-repeat padding-box;
	color: #fff;
	font-size: 30px;
	line-height: 32px;
	font-weight: bold;
	padding: 8px 26px;
	margin-bottom: 1rem;
}

.lp-challenges__card:nth-child(4) .lp-challenges__badge {
	letter-spacing: -4px;
	padding: 8px 5px;
}

.lp-challenges__circle {
	width: 100%;
	max-width: 178px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #e8e6f0;
	margin-bottom: 1rem;
	flex-shrink: 0;
}

.lp-challenges__desc {
	font-size: 18px;
	line-height: 24px;
	color: #333;
	margin: 0;
}

.lp-challenges__wave_left {
	position: absolute;
	bottom: -200px;
	left: 0;
	right: 50%;
	width: 50%;
	height: 200px;
	background: #fff;
	transform: skewY(8deg);
	transform-origin: bottom right;
	z-index: 1;
}

.lp-challenges__wave_right {
	position: absolute;
	bottom: -200px;
	left: 50%;
	right: 0;
	width: 50%;
	height: 200px;
	background: #fff;
	transform: skewY(-8deg);
	transform-origin: bottom left;
	z-index: 1;
}

@media (max-width: 767px) {
	.lp-challenges {
		padding: 2.5rem 1rem 4rem;
	}

	.lp-challenges__title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.lp-challenges__desc {
		font-size: 11px;
		line-height: 15px;
	}

	.lp-challenges__container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
		padding: 1.5rem 1rem;
		justify-items: center;
	}

	.lp-challenges__card {
		border-right: none;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
		min-width: 0;
	}

	.lp-challenges__card:nth-child(4) .lp-challenges__desc {
		letter-spacing: -1px;
	}

	.lp-challenges__card:last-child {
		grid-column: 1 / -1;
		justify-self: center;
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.lp-challenges__badge {
		font-size: 17px;
	}

	.lp-challenges__card:nth-child(4) .lp-challenges__badge {
		padding: 8px 20px;
	}
}

/* ==========================================================================
   LP Support (イグジットオーナーが解決)
   ========================================================================== */

.lp-support {
	background: #FAC99F 0% 0% no-repeat padding-box;
}

.lp-support__title {
	font-size: clamp(1.15rem, 2.8vw, 1.6rem);
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	padding-bottom: 40px;
	line-height: 1.5;
	background: #fff;
	letter-spacing: -2px;
}

.lp-support__title-number-img {
	display: inline-block;
}

.lp-support__title-number-sp-img {
	display: none;
}

.lp-support__title-underline {
	display: inline-block;
	border-bottom: 18px solid #e8a35c;
}

.lp-support__title-1 {
	font-size: 75px;
	line-height: 81px;
	font-weight: bold;
	letter-spacing: -0.78px;
}

.lp-support__title-2 {
	font-size: 48px;
	line-height: 81px;
	font-weight: bold;
	letter-spacing: -1px;
}

.lp-support__title-3 {
	font-size: 58px;
	line-height: 81px;
	font-weight: bold;
}

.lp-support__title-4 {
	font-size: 120px;
	font-weight: 900;
	line-height: 120px;
}

.lp-support__title-5 {
	font-size: 78px;
	font-weight: bold;
	line-height: 95px;
	letter-spacing: -0.78px;
}

.lp-support__title-6 {
	font-size: 58px;
	font-weight: bold;
	line-height: 95px;
	letter-spacing: -0.78px;
}

.lp-support__container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 117px 200px 14px;
}

.lp-support__container-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: #fff;
	padding: 40px 36px;
	border-radius: 6px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.lp-support__card {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lp-support__card:last-child {
	border-right: none;
}

.lp-support__badge {
	display: inline-block;
	background: #F08129 0% 0% no-repeat padding-box;
	color: #fff;
	font-size: 30px;
	line-height: 32px;
	font-weight: bold;
	padding: 8px 26px;
	margin-bottom: 1rem;
}

.lp-support__card:nth-child(4) .lp-support__badge {
	letter-spacing: -4px;
	padding: 8px 10px;
}

.lp-support__circle {
	width: 100%;
	max-width: 178px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #fff;
	margin-bottom: 1rem;
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-support__circle-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lp-support__desc {
	font-size: 17px;
	line-height: 24px;
	color: #333;
	margin: 0;
}

.lp-support__highlight {
	color: #EF8129;
	font-weight: 700;
}

.lp-support__cta {
	text-align: center;
	padding-top: 60px;
	padding-bottom: 98px;
}

.lp-support__cta-highlight {
	color: #FD7000;
	font-family: Futura, "Futura PT", sans-serif;
	letter-spacing: -1px;
}

.lp-support__cta-highlight:nth-child(1) {
	letter-spacing: -9px;
}

.mobile-only-break {
	display: none;
}

@media (max-width: 767px) {
	.mobile-only-break {
		display: block;
		white-space: nowrap;
	}

	.lp-support {
		padding: 0 1rem 3rem;
	}

	.lp-support__container {
		flex-direction: column;
		padding: 1.5rem 0;
	}

	.lp-support__container-inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
		padding: 1.5rem 1rem;
	}

	.lp-support__desc {
		font-size: 13px;
	}

	.lp-support__card {
		border-right: none;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
		min-width: 0;
	}

	.lp-support__card:last-child {
		grid-column: 1 / -1;
		justify-self: center;
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.lp-support__title {
		margin-left: -20px;
		margin-right: -20px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.lp-support__title-br::after {
		content: "\A";
		white-space: pre;
	}
	
	.lp-support__title-underline {
		display: inline-block;
		border-bottom: 6px solid #e8a35c;
	}
	
	.lp-support__title-1 {
		font-size: 27px;
		line-height: 33px;
	}
	
	.lp-support__title-2 {
		font-size: 17px;
		line-height: 33px;
	}
	
	.lp-support__title-3 {
		font-size: 21px;
		line-height: 33px;
	}
	
	.lp-support__title-4 {
		font-size: 55px;
	}

	.lp-support__title-5 {
		font-size: 34px;
		line-height: 41px;
	}

	.lp-support__title-6 {
		font-size: 25px;
		line-height: 41px;
	}

	.lp-support__title-number-img {
		display: none;
	}
	
	.lp-support__title-number-sp-img {
		display: inline-block;
	}

	.lp-support__badge {
		font-size: 14px;
		padding: 8px 30px;
	}

	.lp-support__card:nth-child(4) .lp-support__badge {
		padding: 8px 26px;
	}

	/* .lp-support__title-2:after {
		content: "";
		display: block;
	} */

	.lp-support__cta {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

/* ==========================================================================
   LP Profile (プロフィール)
   ========================================================================== */

.lp-profile {
	background: #f5f3f5;
	padding: 112px 200px 150px;
}

.lp-profile__title {
	font-size: 58px;
	line-height: 94px;
	font-weight: 700;
	color: #3a3f7a;
	text-align: center;
	margin: 0;
}

.lp-profile__title::after {
	content: "";
	display: block;
	width: 179px;
	height: 3px;
	background: #3a3f7a;
	margin: 0.5rem auto 0;
}

.lp-profile__inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px;
	padding-top: 60px;
}

.lp-profile__img-wrap {
	flex: 0 0 auto;
}

.lp-profile__img {
	width: 438px;
	height: 438px;
	padding: 0px 10px;
	object-fit: cover;
	display: block;
}

.lp-profile__body {
	flex: 1 1 320px;
	min-width: 0;
}

.lp-profile__name {
	font-size: 68px;
	line-height: 112px;
	font-weight: bold;
	color: #1a1a1a;
	margin: 0 0 1.25rem;
	line-height: 1.3;
}

.lp-profile__text {
	font-size: 27px;
	font-weight: bold;
	line-height: 42px;
	color: #333;
	letter-spacing: -1px;
}

.lp-profile__text p {
	margin: 0 0 35px;
	text-align: left;
}

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

.lp-profile__social {
	padding-top: 46px;
	display: flex;
	align-items: center;
	gap: 21px;
	justify-content: flex-end;
}

.lp-profile__social a {
	display: inline-flex;
	opacity: 0.9;
}

.lp-profile__social a:hover {
	opacity: 1;
}

.lp-profile__social-icon {
	width: 59px;
	height: 59px;
	display: block;
}

@media (max-width: 767px) {
	.lp-profile {
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 60px;
		padding-bottom: 80px;
	}

	.lp-profile__title {
		font-size: 20px;
		line-height: 32px;
	}

	.lp-profile__title::after {
		width: 62px;
		height: 2px;
		margin: 0.5rem auto 0;
	}

	.lp-profile__name {
		font-size: 35px;
	}

	.lp-profile__text {
		font-size: 14px;
		line-height: 23px;
		letter-spacing: 0px;
	}

	.lp-profile__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding-top: 34px;
	}

	.lp-profile__img {
		width: 240px;
		height: 240px;
	}

	.lp-profile__social {
		justify-content: center;
	}

	.lp-profile__text {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ==========================================================================
   LP Support Range (支援範囲)
   ========================================================================== */

.lp-support-range {
	background: #FFF3EB 0% 0% no-repeat padding-box;
}

.lp-support-range__title {
	font-size: 58px;
	font-weight: bold;
	color: #F08129;
	text-align: center;
	padding-top: 126px;
	line-height: 1.5;
}

.lp-support-range__title::after {
	content: "";
	display: block;
	width: 179px;
	height: 3px;
	background: #e8a35c;
	margin: 30px auto 0;
}

.lp-support-range__container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0px 200px 57px;
}

.lp-support-range__container-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	padding: 98px 0px 0px;
}

.lp-support-range__card {
	flex: 0 0 25%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-bottom: 70px;
}

.lp-support-range__card:last-child {
	border-right: none;
}

.lp-support-range__badge {
	width: 80%;
	display: inline-block;
	background: #F08129 0% 0% no-repeat padding-box;
	color: #fff;
	font-size: 28px;
	line-height: 41px;
	font-weight: bold;
	white-space: nowrap;
	padding: 9px 0px;
	margin-bottom: 1rem;
}

/*.lp-support-range__card:nth-child(2) .lp-support-range__badge {
	letter-spacing: -1px;
	padding: 8px 10px;
}

.lp-support-range__card:nth-child(3) .lp-support-range__badge {
	letter-spacing: -1px;
	padding: 8px 10px;
}

.lp-support-range__card:nth-child(9) .lp-support-range__badge {
	letter-spacing: -1px;
	padding: 8px 10px;
}

.lp-support-range__card:nth-child(11) .lp-support-range__badge {
	letter-spacing: -1px;
	padding: 8px 10px;
}

.lp-support-range__card:nth-child(12) .lp-support-range__badge {
	letter-spacing: -1px;
	padding: 8px 10px;
}*/

.lp-support-range__circle {
	width: 100%;
	max-width: 255px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #fff;
	margin-bottom: 1rem;
	flex-shrink: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-support-range__circle-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lp-support-range__desc {
	font-size: 26px;
	line-height: 38px;
	color: #333;
	margin: 0;
	letter-spacing: -1px;
}

.lp-support-range__cta {
	text-align: right;
	font-size: 23px;
	padding: 0px 200px 140px;
	color: #FD7000;
}

@media (max-width: 1024px) {
	.lp-support-range__card {
		flex: 0 0 calc(50% - 1rem);
	}
}

@media (max-width: 767px) {
	.lp-support-range {
		padding: 2.5rem 1rem 3rem;
	}

	.lp-support-range__container {
		flex-direction: column;
		padding: 0;
	}

	.lp-support-range__container-inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
		padding: 1rem 0;
	}

	.lp-support-range__card {
		flex: none;
		border-right: none;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
		min-width: 0;
	}

	.lp-support-range__card:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.lp-support-range__cta {
		text-align: left;
		padding-left: 10px;
		padding-right: 10px;
	}

	.lp-support-range__title {
		font-size: 20px;
		padding-top: 0px;
	}
	
	.lp-support-range__title::after {
		content: "";
		display: block;
		width: 62px;
		height: 1px;
		margin-top: 8px;
	}

	.lp-support-range__badge {
		width: 85%;
		font-size: 14px;
		line-height: 19px;
		white-space: nowrap;
		padding: 7px 0px;
	}

	.lp-support-range__desc {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: -1px;
	}

	.lp-support-range__cta {
		text-align: center;
		margin: 0 auto;
		font-size: 14px;
		padding-top: 47px;
		padding-bottom: 0px;
	}
}


/* ==========================================================================
   LP Achievement (支援実績)
   ========================================================================== */

.lp-achievement {
	background: #F8F8F8 0% 0% no-repeat padding-box;
}

.lp-achievement__title {
	font-size: 58px;
	font-weight: bold;
	color: #2C2B29;
	text-align: center;
	padding-top: 126px;
	line-height: 1.5;
}

.lp-achievement__title::after {
	content: "";
	display: block;
	width: 179px;
	height: 3px;
	background: #2C2B29;
	margin: 30px auto 0;
}

.lp-achievement__container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0px 200px 53px;
}

.lp-achievement__container-inner {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-start;
	gap: 10px;
	padding: 72px 0px 0px;
	min-height: 520px;
}

.lp-achievement__card-wrap {
	flex: 0 0 33.33333333333333%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.lp-achievement__card-wrap:nth-child(1) {
	justify-content: start;
}

.lp-achievement__card-wrap:nth-child(2) {
	justify-content: center;
}

.lp-achievement__card-wrap:nth-child(3) {
	justify-content: end;
}

.lp-achievement__card {
	box-sizing: border-box;
	display: flex;
	max-width: 418px;
	flex-direction: column;
	align-items: stretch;
	text-align: center;
	padding-top: 40px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: visible;
	position: relative;
}

.lp-achievement__card:last-child {
	border-right: none;
}

.lp-achievement__badge {
	width: calc(100% - 44px);
	background: #33379A 0% 0% no-repeat padding-box;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: -0.03em;
	padding: 10px 12px;
	text-align: center;
	border-radius: 5px;
	position: absolute;
	top: -30px;
	left: 22px;
	z-index: 2;
	white-space: nowrap;
	overflow: hidden;
}

.lp-achievement__figure {
	width: 100%;
	max-width: 241px;
	background: #fff;
	min-height: 322px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-achievement__figure-img {
	width: 100%;
	height: 100%;
	max-height: 322px;
	object-fit: contain;
	display: block;
}

.lp-achievement__kpi {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: -28px 14px 14px;
	background: rgba(51, 55, 154, 0.08);
	position: relative;
	min-height: 257px;
	border-radius: 5px;
}

.lp-achievement__kpi-label,
.lp-achievement__kpi-suffix {
	font-size: 44px;
	font-weight: bold;
	color: #2C2B29;
	line-height: 44px;
}

.lp-achievement__kpi-label-1 {
	font-size: 30px;
	font-weight: bold;
	color: #2C2B29;
	line-height: 30px;
}

.lp-achievement__kpi-value {
	font-family: Futura, "Futura PT", sans-serif;
	font-size: 73px;
	font-weight: bold;
	color: #F08129;
	line-height: 84px;
}

.lp-achievement__kpi-value-1 {
	font-family: Futura, "Futura PT", sans-serif;
	font-size: 51px;
	font-weight: bold;
	color: #F08129;
	line-height: 67px;
}

.lp-achievement__kpi-arrow {
	position: absolute;
	right: -84px;
}

.lp-achievement__desc {
	padding: 35px 30px 0px 0px;
	font-size: 22px;
	line-height: 36px;
	color: #333;
	text-align: center;
	letter-spacing: -2px;
}

.lp-achievement__cta {
	text-align: center;
	font-size: 58px;
	font-weight: bold;
	padding: 0px 200px 128px;
	color: #33379A;
	letter-spacing: -2px;
}

.lp-achievement__cta p {
	margin: 0;
}

.lp-achievement__cta-desc-1 {
	font-size: 84px;
	font-weight: bold;
}

.lp-achievement__desc_sp {
	display: none;
}

@media (max-width: 900px) {
	.lp-achievement__container-inner {
		flex-wrap: wrap;
	}

	.lp-achievement__card {
		flex: 0 0 calc(50% - 17px);
	}

	.lp-achievement__container {
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (max-width: 600px) {
	.lp-achievement__card {
		display: flex;
		width: 100%;
	}

	.lp-achievement__container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lp-achievement__container-inner {
		flex-direction: column;
	}

	.lp-achievement__card-wrap {
		flex: none;
	}

	.lp-achievement__card-wrap:nth-child(2) {
		padding-left: 30%;
	}

	.lp-achievement__cta {
		padding-left: 10px;
		padding-right: 10px;
	}

	.lp-achievement__title {
		padding-top: 26px;
		font-size: 20px;
		line-height: 32px;
	}

	.lp-achievement__title::after {
		content: "";
		display: block;
		width: 62px;
		height: 1px;
		background: #2C2B29;
		margin: 10px auto 0;
	}

	.lp-achievement__badge {
		font-size: 15px;
	}

	.lp-achievement__kpi-label,
	.lp-achievement__kpi-suffix {
		font-size: 22px;
		font-weight: bold;
		color: #2C2B29;
		line-height: 34px;
	}

	.lp-achievement__kpi {
		padding: 40px 10px 0px 10px;
	}

	.lp-achievement__kpi-label-1 {
		font-size: 22px;
		font-weight: bold;
		color: #2C2B29;
		line-height: 34px;
	}

	.lp-achievement__kpi-value {
		font-family: Futura, "Futura PT", sans-serif;
		font-size: 44px;
		font-weight: bold;
		color: #F08129;
		line-height: 84px;
	}
	
	.lp-achievement__kpi-value-1 {
		font-family: Futura, "Futura PT", sans-serif;
		font-size: 35px;
		font-weight: bold;
		color: #F08129;
		line-height: 67px;
	}

	.lp-achievement__desc {
		display: none;
	}

	.lp-achievement__desc_sp {
		font-size: 13px;
		line-height: 18px;
		display: block;
		padding: 0px 5px 40px 5px;
		letter-spacing: -1px;
	}

	.lp-achievement__desc_sp:nth-child(1) {
		padding-bottom: 40px;
	}

	.lp-achievement__card-wrap:nth-child(2) {
		margin-top: -20px;
	}

	.lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-arrow {
		position: absolute;
		top: -80px;
		left: -84px;
	}

	.lp-achievement__card-wrap:nth-child(3) {
		margin-top: -20px;
	}

	.lp-achievement__cta {
		padding-bottom: 73px;
	}

	.lp-achievement__cta-desc {
		font-size: 30px;
	}

	.lp-achievement__cta-desc-1 {
		font-size: 44px;
	}

	.lp-achievement__cta-desc-1:before, .lp-achievement__cta-desc-1::after {
		content: "";
		display: block;
		width: 100%;
	}
}

/* ==========================================================================
   LP Pricing (料金プラン)
   ========================================================================== */

.lp-pricing {
	background: #F5F4FD 0% 0% no-repeat padding-box;
}

.lp-pricing__title {
	font-size: 58px;
	font-weight: 900;
	color: #33379A;
	text-align: center;
	padding-top: 106px;
}

.lp-pricing__title::after {
	content: "";
	display: block;
	width: 179px;
	height: 3px;
	background: #33379A;
	margin: 20px auto 0;
}

.lp-pricing__inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 11px;
	padding: 100px 200px 144px;
}

.lp-pricing__card {
	flex: 1 1 280px;
	max-width: 496px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 42px;
	box-shadow: 0px 3px 6px #00000029;
	padding: 35px 0px 51px;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lp-pricing__card--featured {
	border: none;
	background: linear-gradient(#fff, #fff) padding-box,
		linear-gradient(328deg, #1C25FF, #F08129) border-box;
	border: 5px solid transparent;
}

.lp-pricing__badge {
	position: absolute;
	top: -54px;
	right: 40px;
	background: linear-gradient(284deg, #1C25FF, #F08129);
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	padding: 3px 38px;
	border-radius: 20px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	white-space: nowrap;
}

.lp-pricing__plan-name {
	font-size: 58px;
	font-weight: 900;
	color: #33379A;
	margin: 0;
}

.lp-pricing__desc {
	font-size: 26px;
	font-weight: medium;
	color: #2C2B29;
	line-height: 1.5;
	margin: 0;
	letter-spacing: -2px;
}

.lp-pricing__price-wrap {
	margin-bottom: 0px;
}

.lp-pricing__currency {
	font-size: 34px;
	font-weight: bold;
	color: #2C2B29;
}

.lp-pricing__amount {
	font-family: Futura, "Futura PT", sans-serif;
	font-size: 117px;
	font-weight: bold;
	color: #F08129;
	display: inline;
	line-height: 150px;
}

.lp-pricing__unit {
	font-size: 34px;
	font-weight: bold;
	color: #2C2B29;
}

.lp-pricing__contract {
	font-size: 26px;
	color: #2C2B29;
	margin: 10px 0px 0px;
}

.lp-pricing__divider {
	border: none;
	border-top: 2px solid #D8D8D8;
	width: 80%;
	margin: 43px 0px 43px;
}

.lp-pricing__features {
	list-style: none;
	padding: 0 0 70px;
	font-size: 26px;
	color: #2C2B29;
	line-height: 1.8;
	margin: 0;
}

.lp-pricing__features li {
	margin: 0;
}

.lp-pricing__btn {
	display: inline-block;
	padding: 12px 68px;
	font-size: 43px;
	font-weight: bold;
	text-decoration: none;
	border-radius: 8px;
	transition: opacity 0.2s;
	margin-top: auto;
}

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

.lp-pricing__btn--outline {
	background: #FFFFFF 0% 0% no-repeat padding-box;
	color: #33379A;
	border: 2px solid #34389A;
	box-shadow: 2px 5px 0px #00000045;
}

.lp-pricing__btn--outline:hover {
	color: #2a3f7a;
}

.lp-pricing__btn--primary {
	background: linear-gradient(292deg, #1C25FF 0%, #F08129 100%);
	color: #fff;
	border: none;
	box-shadow: 2px 5px 0px #00000045;
}

.lp-pricing__btn--primary:hover {
	color: #fff;
}

@media (max-width: 767px) {
	.lp-pricing__card {
		max-width: 100%;
		margin-bottom: 25px;
	}

	.lp-pricing__card:nth-child(1) {
		margin-bottom: 80px;
	}

	.lp-pricing__inner {
		padding-left: 20px;
		padding-right: 20px;
		flex-direction: column;
		padding-top: 20px;
	}

	.lp-pricing__title {
		font-size: 20px;
		line-height: 32px;
		padding-top: 47px;
	}

	.lp-pricing__title::after {
		content: "";
		display: block;
		width: 62px;
		height: 1px;
		background: #33379A;
		margin: 10px auto 0;
	}

	.lp-pricing__plan-name {
		font-size: 40px;
		font-weight: 900;
		color: #33379A;
		margin: 0;
	}

	.lp-pricing__amount {
		font-size: 82px;
	}

	.lp-pricing__contract {
		font-size: 18px;
	}

	.lp-pricing__features {
		font-size: 18px;
	}

	.lp-pricing__desc {
		font-size: 18px;
	}

	.lp-pricing__btn {
		font-size: 30px;
		padding: 12px 50px;
	}
}

/* ==========================================================================
   LP Flow (ご利用までの流れ)
   ========================================================================== */

.lp-flow {
	background: #fff;
	padding: 75px 200px 68px;
}

.lp-flow__title {
	font-size: 58px;
	font-weight: 900;
	color: #2C2B29;
	text-align: center;
	margin: 0;
}

.lp-flow__title::after {
	content: "";
	display: block;
	width: 179px;
	height: 3px;
	background: #2c2b29;
	margin: 20px auto 0;
}

.lp-flow__banner {
	width: 100%;
	position: relative;
	height: 438px;
	margin-top: 74px;
	margin: 74px 0 140px;
}

.lp-flow__step {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0;
	width: 402px;
	height: 438px;
	box-sizing: border-box;
}

.lp-flow__step:nth-child(1) { left: 0; z-index: 5; }
.lp-flow__step:nth-child(2) { left: calc((100% - 402px) / 4); z-index: 4; }
.lp-flow__step:nth-child(3) { left: calc((100% - 402px) * 2 / 4); z-index: 3; }
.lp-flow__step:nth-child(4) { left: calc((100% - 402px) * 3 / 4); z-index: 2; }
.lp-flow__step:nth-child(5) { left: calc(100% - 402px); z-index: 1; }

.lp-flow__step:nth-child(1) {
	background: url('images/flow-1.png') no-repeat center center;
	background-size: contain;
	background-position: center bottom;
	text-align: center;
	align-items: flex-start;
	padding-left: 66px;
}

.lp-flow__step:nth-child(2) {
	background: url('images/flow-2.png') no-repeat center center;
	background-size: contain;
	background-position: center bottom;
}

.lp-flow__step:nth-child(3) {
	background: url('images/flow-3.png') no-repeat center center;
	background-size: contain;
	background-position: center bottom;
}

.lp-flow__step:nth-child(4) {
	background: url('images/flow-4.png') no-repeat center center;
	background-size: contain;
	background-position: center bottom;
}

.lp-flow__step:nth-child(5) {
	background: url('images/flow-5.png') no-repeat center center;
	background-size: contain;
	background-position: center bottom;
}

.lp-flow__step-num {
	display: block;
	font-size: 46px;
	font-weight: medium;
	font-style: italic;
	color: #F08129;
	margin: 0px 0px 66px 0px;
	letter-spacing: -2px;
}

.lp-flow__step-num-1 {
	font-size: 65px;
	font-weight: medium;
} 

.lp-flow__step-num-2 {
	display: block;
	font-size: 46px;
	font-weight: medium;
	font-style: italic;
	color: #FFFFFF;
	margin: 0px 0px 66px 0px;
	letter-spacing: -2px;
} 

.lp-flow__step-label {
	display: block;
	font-size: 35px;
	font-weight: bold;
	color: #2C2B29;
	text-shadow: 0px 3px 6px #00000029;
	margin-bottom: 56px;
	letter-spacing: -2px;
}

.lp-flow__step-label-1 {
	display: block;
	font-size: 35px;
	font-weight: bold;
	color: #FFFFFF;
	text-shadow: 0px 3px 6px #00000029;
	margin-bottom: 36px;
	padding-left: 106px;
	letter-spacing: -2px;
}

.lp-flow__step-label-2 {
	display: block;
	font-size: 35px;
	font-weight: bold;
	color: #2C2B29;
	text-shadow: 0px 3px 6px #00000029;
	margin-bottom: 56px;
	padding-left: 106px;
	letter-spacing: -2px;
}

.lp-flow__step-label-3 {
	margin-bottom: 96px;
}

.lp-flow__illus {
	width: 100%;
	display: flex;
	align-items: left;
	justify-content: flex-start;
}

.lp-flow__illus-1 {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-flow__illus-img {
	width: auto;
	height: auto;
}

.lp-flow__arrow {
	width: 0;
	height: 0;
	margin: 0 auto;
	border-left: 22px solid transparent;
	border-right: 22px solid transparent;
	border-top: 20px solid #8b7cb8;
	border-bottom: none;
}

.lp-flow__summary {
	text-align: center;
	font-size: 58px;
	font-weight: bold;
	padding: 0px 200px 0px;
	color: #33379A;
	letter-spacing: -2px;
}

.lp-flow__summary p {
	font-size: 73px;
	font-weight: bold;
	color: #2c2b29;
	text-align: center;
	margin: 10px 0 0 0;
}

.lp-flow__summary-desc-1 {
	text-decoration: underline;
	text-decoration-color: #F1AC71;
	text-decoration-thickness: 15px;
	text-underline-offset: 30px;
}

.lp-flow__summary-desc-2 {
	font-size: 63px;
	font-weight: bold;
}

.lp-flow__step-img {
	display: none;
}

@media (max-width: 767px) {
	.lp-flow {
		padding: 44px 10px 39px 10px;
	}

	.lp-flow__banner {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.lp-flow__title {
		font-size: 22px;
	}

	.lp-flow__title::after {
		width: 69px;
		height: 2px;
	}

	.lp-flow__banner {
		margin-top: 42px;
		margin-bottom: 10px;
	}

	.lp-flow__step {
		position: relative;
		left: 0 !important;
		width: 80%;
		height: 100%;
		padding-left: 0px !important;
		align-items: center !important;
		background-repeat: no-repeat;
		background-image: none !important;
	}

	.lp-flow__step-inner {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
	}

	.lp-flow__step:nth-child(2) {
		margin-top: -161px;
	}

	.lp-flow__step:nth-child(2) .lp-flow__step-inner {
		top: 155px;
	}

	.lp-flow__step:nth-child(3) {
		margin-top: -161px;
	}

	.lp-flow__step:nth-child(3) .lp-flow__step-inner {
		top: 155px;
	}

	.lp-flow__step:nth-child(4) {
		margin-top: -161px;
	}

	.lp-flow__step:nth-child(4) .lp-flow__step-inner {
		top: 155px;
	}

	.lp-flow__step:nth-child(5) {
		margin-top: -161px;
	}
	
	.lp-flow__step:nth-child(5) .lp-flow__step-inner {
		top: 155px;
	}

	.lp-flow__step-img {
		/* position: absolute; */
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		object-fit: contain;
		z-index: -1;
		display: block;
	}

	.lp-flow__step-num {
		font-size: 21px;
		margin-bottom: 0px;
		letter-spacing: 0px;
	}

	.lp-flow__step-num-1, .lp-flow__step-num-2 {
		font-size: 30px;
		margin-bottom: 0px;
	}

	.lp-flow__step-label, .lp-flow__step-label-1, .lp-flow__step-label-2 {
		font-size: 17px;
		padding-left: 0px !important;
		margin-bottom: 0px;
	}

	.lp-flow__illus,
	.lp-flow__illus-1 {
		justify-content: center;
		align-items: center;
	}

	.lp-flow__illus-img {
		position: absolute;
		max-width: 97px;
		width: auto;
		height: auto;
		display: block;
	}

	.lp-flow__illus-img-1 {
		top: 20px;
		right: -10%;
	}

	.lp-flow__illus-img-2 {
		top: 20px;
		left: -15%;
		max-width: 145px;
	}

	.lp-flow__illus-img-3 {
		top: 20px;
		right: -5%;
	}

	.lp-flow__illus-img-4 {
		top: 20px;
		left: -7%;
		max-width: 145px;
	}

	.lp-flow__illus-img-5 {
		top: 20px;
		right: -10%;
	}

	.lp-achievement__cta-img {
		width: 40%;
	}

	.lp-flow__summary {
		padding-left: 10px;
		padding-right: 10px;
	}

	.lp-flow__summary p {
		font-size: 30px;
	}

	.lp-flow__summary-desc-1 {
		text-decoration: underline;
		text-decoration-color: #F1AC71;
		text-decoration-thickness: 9px;
		text-underline-offset: 5px;
	}

	.lp-flow__summary-desc-2 {
		font-size: 26px;
	}

	.lp-flow__summary-desc-2::after {
		content: "\A";
		white-space: pre;
	}
}

/* ==========================================================================
   LP Contact (お問い合わせ)
   ========================================================================== */

.lp-contact {
	background: #F5F4FD 0% 0% no-repeat padding-box;
	padding: 71px 200px 102px;
	
}

.lp-contact__inner {
	max-width: 900px;
	margin: 0 auto;
}

.lp-contact__title {
	font-size: 58px;
	font-weight: 900;
	color: #33379A;
	text-align: center;
	margin: 0 0 0.5rem;
}

.lp-contact__title-line {
	width: 179px;
	height: 3px;
	background: #33379a;
	margin: 0 auto 30px;
}

.lp-contact__form {
	display: flex;
	flex-direction: column;
	gap: 0rem;
}

.lp-contact__row {
	display: flex;
	flex-wrap: wrap;
	gap: 0rem;
	align-items: flex-start;
}

.lp-contact__row--full {
	flex-direction: column;
}

.lp-contact__row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.lp-contact__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.lp-contact__label {
	display: block;
	font-size: 21px;
	font-weight: medium;
	color: #2c2b29;
	margin: 0;
}

.lp-contact__required {
	font-size: 0.75em;
	color: #c00;
	margin-left: 0.25em;
}

.lp-contact__input,
.lp-contact__textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	font-family: inherit;
	color: #2c2b29 !important;
	background-color: #fff !important;
	border: 1px solid #707070 !important;
	border-radius: 5px !important;
	box-sizing: border-box;
}

.lp-contact__input:focus,
.lp-contact__textarea:focus {
	outline: none;
	border-color: #8b7cb8;
}

.lp-contact__textarea {
	min-height: 140px;
	resize: vertical;
}

.lp-contact__row--radios {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.lp-contact__radio-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.lp-contact__radio-group .lp-contact__label {
	margin-bottom: 0.25rem;
}

.lp-contact__radio-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9375rem;
	color: #2c2b29;
	cursor: pointer;
}

.lp-contact__radio {
	width: 18px;
	height: 18px;
	accent-color: #8b7cb8;
}

.lp-contact__row--captcha {
	align-items: flex-start;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 80px;
}

.lp-contact__recaptcha-widget {
	min-height: 78px;
	min-width: 304px;
	display: block;
}

.lp-contact__recaptcha-notice {
	font-size: 0.875rem;
	color: #666;
	margin: 0;
}

.lp-contact__recaptcha-notice a {
	color: #33379a;
	text-decoration: underline;
}

.lp-contact__recaptcha {
	font-size: 0.75rem;
	color: #666;
}

.lp-contact__recaptcha--badge .lp-contact__recaptcha-text {
	display: inline;
	margin-bottom: 0;
}

.lp-contact__recaptcha-text {
	display: block;
	margin-bottom: 0.25rem;
}

.lp-contact__recaptcha-link {
	color: #666;
	text-decoration: underline;
}

.lp-contact__recaptcha-link:hover {
	color: #333;
}

.lp-contact__row--submit {
	justify-content: flex-start;
	margin-top: 32px;
}

.lp-contact__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	padding: 26px 60px;
	font-size: 33px;
	font-weight: bold;
	font-family: inherit;
	line-height: 33px;
	color: #fff;
	background: #F08129 0% 0% no-repeat padding-box;
	box-shadow: 2px 5px 0px #00000045;
	border-radius: 8px;
	border: none;
	cursor: pointer;
}

.lp-contact__submit:hover {
	background: #e07d2a;
	box-shadow: 0 4px 12px rgba(242, 140, 56, 0.4);
}

.lp-contact__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.lp-contact__hubspot {
	margin-top: 3rem;
}

@media (max-width: 767px) {
	.lp-contact {
		padding: 47px 40px 62px 40px;
	}

	.lp-contact__title {
		font-size: 20px;
	}

	.lp-contact__title-line {
		margin-bottom: 10px;
		width: 62px;
		height: 2px;
	}

	.lp-contact__label {
		font-size: 16px;
	}

	.lp-contact__row--half,
	.lp-contact__row--radios {
		grid-template-columns: 1fr;
		gap: 0.35rem;
	}

	.lp-contact__submit {
		width: 100%;
		font-size: 16px;
		padding: 10px 0px;
	}
}

/* ==========================================================================
   LP Footer
   ========================================================================== */

.footer-lp {
	background: #322458 !important;
	color: #fff !important;
	padding: 40px 200px 7px 200px;
}

.footer-lp__main {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 auto 64px;
}

.footer-lp__part {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.footer-lp__part--left {
	gap: 114px;
}

.footer-lp__part--right {
	flex: 1;
	justify-content: flex-end;
}

.footer-lp__part--right .footer-lp__block--divider {
	border-left: 1px solid #fff;
	padding-left: 38px;
}

.footer-lp__part--right .footer-lp__block:first-child {
	width: 100%;
	max-width: 374px;
}

.footer-lp__brand {
	width: 176px;
	height: 58px;
}

.footer-lp__logo {
	width: 100%;
	height: 100%;
	flex-shrink: 0;
}

.footer-lp__block {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 46px;
}

/* .footer-lp__block--divider: divider only in .footer-lp__part--right (see above) */

.footer-lp__heading {
	font-weight: 700;
	font-size: 29px;
	line-height: 39px;
	margin: 0;
	letter-spacing: 0.02em;
}

.footer-lp__links {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-lp__links a {
	color: #fff !important;
	text-decoration: none;
	font-size: 21px;
}

.footer-lp__links a:hover {
	text-decoration: underline;
}

.footer-lp__social {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 0.25rem;
}

.footer-lp__social a {
	display: inline-flex;
	color: #fff;
	opacity: 0.95;
}

.footer-lp__social a:hover {
	opacity: 1;
}

.footer-lp__social svg {
	width: 22px;
	height: 22px;
}

.footer-lp__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: #fff;
	color: #4a4a4a;
	text-decoration: none;
	font-weight: 600;
	font-size: 21px;
	padding: 16px 37px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s;
}

.footer-lp__btn:hover {
	opacity: 0.92;
	color: #4a4a4a;
}

.footer-lp__btn svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.footer-lp__copy {
	text-align: center;
	font-size: 17px;
	line-height: 23px !important;
	margin: 0;
}

@media (max-width: 767px) {
	.footer-lp__main {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-lp__brand {
		width: 115px;
		height: 38px;
	}

	.footer-lp__part {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.footer-lp__part--left {
		gap: 30px;
	}

	.footer-lp__part--left .footer-lp__block {
		border-top: 1px solid rgba(255, 255, 255, 0.35);
		padding-top: 30px;
		margin-top: 0;
	}

	.footer-lp__part--right {
		justify-content: center;
		margin-top: 30px;
	}

	.footer-lp__part--right .footer-lp__block--divider,
	.footer-lp__block--divider {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.35);
		padding-top: 30px;
		margin-top: 30px;
	}

	.footer-lp__social {
		text-align: center;
		justify-content: center;
	}

	.footer-lp {
		padding-left: 10px;
		padding-right: 10px;
	}
}
