/**
 * LP (Landing Page) styles
 * Used when page template is page-lp.php and lp-header.php / lp-footer.php exist.
 * Main content width: 1440px, side gutter: 24px.
 */

:root {
	--lp-content-max: 1440px;
	--lp-content-medium-max: 688px;
	--lp-gutter: 24px;
}

.reslog-lp-block,
.reslog-lp-block *,
.reslog-lp-block *::before,
.reslog-lp-block *::after {
	box-sizing: border-box;
}

.reslog-lp-block {
	width: 100%;
	max-width: 100%;
	background: #fff;
}

@media (max-width: 767px) {
	.reslog-lp-block {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		overflow-x: clip;
	}
}

/* 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%;
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 23px var(--lp-gutter) 20px;
	gap: 1rem;
}

.header-lp__logo {
	top: 23px;
	left: var(--lp-gutter);
	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: 25px;
	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 {
	display: none;
	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;
	pointer-events: none;
	overflow: hidden;
}

body.lp-menu-open .header-lp__overlay {
	display: block;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	overflow-y: auto;
}

.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: 1439px) {
	.header-lp__logo {
		width: 168px;
	}

	.header-lp__inner {
		padding-top: 10px;
		padding-bottom: 10px;
		max-width: 1000px;
	}

	.header-lp__nav-link {
		font-size: 20px;
		line-height: 28px;
	}

	.lp-hero__title {
		padding-top: 74px !important;
	}

	.lp-hero__inner {
		max-width: 1000px !important;
	}

	.lp-hero__title-1 {
		font-size: 44px !important;
		line-height: 61px !important;
	}

	.lp-hero__title-2 {
		font-size: 38px !important;
		line-height: 61px !important;
	}

	.lp-hero__highlight-1 {
		font-size: 21px !important;
		line-height: 35px !important;
	}

	.lp-hero__btn--primary,
	.lp-hero__btn--secondary {
		font-size: 31px !important;
		width: 320px !important;
		padding: 22px 0px !important;
	}

	.lp-hero {
		height: 660px !important;
	}

	.lp-hero__title-number-img {
		width: 99px !important;
	}
}

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

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

	.header-lp__inner {
		padding: 0 !important;
		max-width: 640px;
	}

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

#content {
	padding: 0px;
}

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

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

/* ==========================================================================
   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% 100%;
	background-repeat: no-repeat, no-repeat;
	height: 845px;
}

.lp-hero__inner {
	width: 100%;
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 0 var(--lp-gutter);
}

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

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

.lp-hero__title-1 {
	font-size: 58px;
	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-size: 120px;
	line-height: 90px;
	letter-spacing: -30px;
}

.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: 23px;
	line-height: 55px;
	letter-spacing: -0.29px;
}

.lp-hero__highlight-2 {
	font-size: 40px;
	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 {
	padding-top: 78px;
}

.lp-hero__cta-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 23px;
}

.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: 334px;
	font-size: 36px;
}

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

.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: 1200x) {
	.lp-hero {
		height: 700px;
	}

	.lp-hero__title {
		padding-top: 70px;
	}

	.lp-hero__title-1 {
		font-size: 50px;
		line-height: 69px;
	}

	.lp-hero__title-2 {
		font-size: 43px;
		line-height: 69px;
	}

	.lp-hero__title-number-img {
		height: 84px;
	}
	
	.lp-hero__highlight-1 {
		font-size: 21px;
		line-height: 39px;
	}

	.lp-hero__highlight-2 {
		font-size: 35px;
		line-height: 39px;
	}

	.lp-hero__btn {
		font-size: 31px;
		line-height: 42px;
	}

	.lp-hero__btn--primary {
		width: 320px;
	}

	.lp-hero__btn--secondary {
		width: 350px;
	}
}

@media (max-width: 1023px) {
	.lp-hero {
		position: relative;
		background-size: 100% 410px;
    	background-repeat: no-repeat;
    	height: 410px !important;
	}

	.lp-hero__title {
		padding-top: 22px;
		text-align: left;
		padding-top: 50px !important;
	}
	
	.lp-hero__title-1 {
		font-size: 27px !important;
		line-height: 29px !important;
		font-weight: bold;
		letter-spacing: -0.21px;
	}
	
	.lp-hero__title-2 {
		font-size: 18px !important;
		line-height: 29px !important;
		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;
		width: 60px;
	}
	
	.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;
		height: 100%;
		max-width: 640px !important;
		padding: 0 !important;
	}

	.lp-hero__cta {
		width: 100%;
		position: absolute;
		left: 0px;
		bottom: 35px;
	}

	.lp-hero__cta-inner {
		align-items: center;
		justify-content: left;
		flex-direction: row;
		border-radius: 10px;
		opacity: 1;
		filter: blur(0px);
		margin-left: auto;
		margin-right: auto;
		padding: 23px 0;
	}

	.lp-hero__btn {
		font-size: 16px !important;
		line-height: 37px;
		padding: 10px 0px !important;
	}

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

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

	.lp-hero__highlight {
		text-align: left;
		padding-top: 30px !important;

	}

	.lp-hero__highlight-1 {
		font-size: 13px !important;
		line-height: 10px !important;
	}

	.lp-hero__highlight-2 {
		font-size: 22px !important;
	}

	.header-lp__inner {
		max-width: 640px !important;
		padding: 10px;
	}
}

/* ==========================================================================
   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: 800px;
	padding: 44px 0;
}

.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%;
	max-width: var(--lp-content-max);
	margin: 0 auto;
	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 var(--lp-gutter);
	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;
	width: fit-content;
	max-width: 100%;
	background: #33379A 0% 0% no-repeat padding-box;
	color: #fff;
	font-size: 23px;
	line-height: 32px;
	font-weight: bold;
	padding: 8px 26px;
	margin-bottom: 1rem;
	margin-left: auto;
	margin-right: auto;
}

.lp-challenges__badge-editor {
	display: block;
	width: auto;
	max-width: 100%;
	min-height: 0;
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
	font: caption;
	font-weight: inherit;
	line-height: inherit;
	text-align: center;
	white-space: pre-wrap;
	resize: none;
	overflow: hidden;
}

.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: 14px;
    line-height: 20px;
    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 (min-width: 768px) {
	.lp-challenges__container {
		flex-wrap: nowrap;
	}

	.lp-challenges__card {
		flex: 0 1 20%;
		min-width: 0;
	}

	.lp-support__container-inner {
		flex-wrap: nowrap;
	}

	.lp-support__card {
		flex: 0 1 20%;
		min-width: 0;
	}

	.lp-support__card:last-child {
		grid-column: auto;
		justify-self: auto;
	}
}

@media (max-width: 1439px) {
	.lp-challenges {
		padding-bottom: 126px;
		min-height: 0;
	}

	.lp-challenges__title {
		font-size: 30px;
		line-height: 42px;
	}

	.lp-challenges__container {
		max-width: 1000px;
		display: flex;
		gap: 1rem;
		justify-items: center;
	}

	.lp-challenges__badge {
		font-size: 19px;
		line-height: 34px;
	}

	.lp-challenges__desc {
		font-size: 13px;
		line-height: 20px;
	}

	/* .lp-challenges__card:nth-child(3), .lp-challenges__card:nth-child(4), .lp-challenges__card:nth-child(5) {
		padding-top: 20px;
	} */

	.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__circle {
		max-width: 122px;
	}

	.lp-challenges__badge {
		padding: 0 24px !important;
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.lp-challenges {
		padding: 16px 0 !important;
		height: 930px !important;
	}

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

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

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

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

	.lp-challenges__card:nth-child(4) .lp-challenges__badge {
		padding: 0px 10px !important;
	}

	.lp-support__title-3 {
		font-size: 19px !important;
	}

	.lp-support__title-1 {
		font-size: 24px !important;
	}

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

	.lp-hero {
		height: 735px !important;
	}

	.lp-hero__title-1 {
		font-size: 19px !important;
		letter-spacing: -1px;
	}

	.lp-hero__title-number-sp-img {
		width: 44px !important;
	}

	.header-lp__inner {
		padding-left: 30px !important;
	}

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

	.lp-hero__btn {
		font-size: 25px !important;
	}

	.lp-hero__btn--primary, 
	.lp-hero__btn--secondary {
		max-width: 266px;
	}

	.lp-hero__highlight {
		margin-top: 15px;
		padding: 10px 30px !important;
		text-align: center;
		color: #33379A;
		background: rgba(255, 255, 255, 0.38);
	}
	
	.lp-hero__highlight-1 {
		font-size: 12px !important;
		line-height: 21px;
		font-weight: medium;
		letter-spacing: -1.2px;
	}
	
	.lp-hero__highlight-2 {
		font-size: 20px !important;
		line-height: 21px;
		font-weight: bold;
		letter-spacing: -0.22px;
	}

	.lp-challenges__container {
		max-width: 343px !important;
		padding: 18px 16px !important;
	}

	.lp-challenges__card {
		width: 137px !important;
	}

	.lp-support__container {
		max-width: 343px !important;
		padding-top: 38px !important;
		padding-bottom: 0 !important;
	}

	.lp-achievement__container {
		max-width: 343px !important;
		padding: 0 !important;
	}

	.lp-achievement__card-wrap {
		width: 204px;
	}

	.lp-achievement__badge {
		font-size: 13px !important;
	}

	.lp-achievement__kpi-label,
	.lp-achievement__kpi-suffix {
		font-size: 20px !important;
	}

	.lp-achievement__kpi-value {
		font-size: 39px !important;
	}
	
	.lp-achievement__kpi-value-1 {
		font-size: 31px !important;
	}

	.lp-achievement__desc_sp {
		font-size: 11px !important;
		padding: 0px 5px 40px 5px !important;
		letter-spacing: -1px;
	}

	.lp-achievement__kpi {
		min-height: 141px !important;
	}

	.lp-achievement__kpi-arrow {
		width: 70px !important;
		right: -49px !important;
        top: -47px !important;
	}

	.lp-achievement__card-wrap:nth-child(2) {
		margin-left: 57px !important;
	}

	.lp-achievement__kpi-label-1 {
		font-size: 13px !important;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-label {
		font-size: 13px !important;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-value {
		font-size: 36px !important;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-value-1 {
		font-size: 25px !important;
	}

	.lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-arrow {
		left: -49px !important;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(3) .lp-achievement__kpi-label {
		font-size: 16px !important;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(3) .lp-achievement__kpi-label-1 {
		font-size: 12px !important;
	}

	.lp-achievement__cta-desc {
		font-size: 26px !important;
	}

	.lp-achievement__cta p {
		display: block !important;
	}

	.lp-support__card {
		width: 137px !important;
	}

	.lp-support__container-inner {
		padding: 18px 16px !important;
	}

	.lp-support__card:nth-child(4) .lp-support__badge {
		padding: 0 10px !important;
	}

	.lp-support__desc {
		width: 124%;
	}

	.lp-hero__title {
		text-align: center;
	}

	/* .lp-support__card {
		max-width: 143px !important;
	} */
}

/* ==========================================================================
   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-top: 30px;
	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: 13px solid #e8a35c;
}

.lp-support__title-1 {
    font-size: 51px;
    line-height: 55px;
    font-weight: bold;
}

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

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

.lp-support__title-4 {
	font-size: 170px;
	font-weight: 900;
	line-height: 90px;
	letter-spacing: -35px;
}

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

.lp-support__title-5-kara {
	font-size: 2.8em;
	letter-spacing: -1px;
}

.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;
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 163px 0 14px;
}

.lp-support__container-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: #fff;
	padding: 40px var(--lp-gutter);
	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;
	width: fit-content;
	max-width: 100%;
	background: #F08129 0% 0% no-repeat padding-box;
	color: #fff;
	font-size: 23px;
	line-height: 32px;
	font-weight: bold;
	padding: 8px 26px;
	margin-bottom: 1rem;
	margin-left: auto;
	margin-right: auto;
}

.lp-support__badge-editor {
	display: block;
	width: auto;
	max-width: 100%;
	min-height: 0;
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
	font: caption;
	font-weight: inherit;
	line-height: inherit;
	text-align: center;
	white-space: pre-wrap;
	resize: none;
	overflow: hidden;
}

.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: 14px;
    line-height: 20px;
    color: #333;
    margin: 0;
}

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

.lp-support__cta {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 163px;
}

.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;
}

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

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

	.lp-support__title-3 {
		font-size: 36px;
		line-height: 88px;
	}

	.lp-support__title-2 {
		font-size: 30px !important;
	}

	.lp-support__title-1 {
		font-size: 47px;
		line-height: 88px;
	}

	.lp-support__title {
		display: flex;
		align-items: baseline;
		justify-content: center;
	}

	.lp-support__title-br::after {
		content: "\A";
		white-space: pre;
	}

	.lp-support__container {
		max-width: 1000px;
		flex-direction: column;
		padding: 90px 0 50px;
		justify-items: center;
	}

	.lp-support__container-inner {
		display: flex;
		gap: 1rem;
		padding: 40px var(--lp-gutter);
	}

	.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__badge {
		padding: 0 20px !important;
        font-size: 18px;
	}

	.lp-support__circle {
		max-width: 122px;
	}

	.lp-support__desc {
		font-size: 12px;
		letter-spacing: -1px;
	}
}

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

	.lp-mobile-break {
		display: block;
		white-space: nowrap;
	}

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

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

	.lp-support__title {
		margin-left: -20px;
        margin-right: -20px;
        padding-top: 30px;
        padding-bottom: 45px;
        display: block;
	}
	
	.lp-support__title-underline {
		display: inline-block;
		border-bottom: 6px solid #e8a35c;
	}
	
	.lp-support__title-1 {
		font-size: 42px;
		line-height: 33px;
	}
	
	.lp-support__title-2 {
		font-size: 17px;
		line-height: 33px;
	}
	
	.lp-support__title-3 {
		font-size: 33px;
		line-height: 33px;
	}
	
	.lp-support__title-4 {
		font-size: 70px;
	}

	.lp-support__title-5 {
		font-size: 46px !important;
		line-height: 41px;
	}

	.lp-support__title-5-kara {
		font-size: 0.76em;
	}

	.lp-support__title-6 {
		font-size: 36px !important;
		line-height: 41px;
	}

	.lp-support__title-number-img {
		width: 90px !important;
		margin-top: -20px !important;
	}
	
	.lp-challenges__title {
		font-size: 20px !important;
	}

	.lp-challenges__title::after {
		width: 76px;
	}
	/* .lp-support__title-number-sp-img {
		display: inline-block;
	} */

	.lp-support__badge {
		font-size: 18px;
		padding: 0 32px !important;
	}

	.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;
		display: block !important;
	}

	.lp-challenges__badge {
		padding: 0 32px !important;	
	}

	.lp-challenges__card {
		width: 182px;
		flex: none;
	}

	.lp-support__container {
		max-width: 430px;
	}

	.lp-support__card {
		width: 182px;
		flex: none;
	}

	.header-lp__logo {
		width: 83px;
		height: 27px;
		margin-top: -10px;
	}

	.header-lp__nav-link {
		font-size: 13px !important;
	}

	.header-lp__nav {
		gap: 20px;
	}

	.header-lp__nav-caret {
		width: 10px;
	}
}

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

@media (min-width: 768px) and (max-width: 1023px) {
	.lp-challenges {
		padding: 16px 0 !important;
		height: auto !important;
		min-height: 0;
		padding-bottom: 96px !important;
	}

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

	.lp-challenges__desc {
		font-size: 11px;
		line-height: 1.45;
		width: 100%;
	}

	.lp-challenges__container {
		max-width: 520px !important;
		flex-wrap: wrap;
		justify-content: center;
		gap: 18px 20px;
		padding: 16px 22px 20px !important;
	}

	.lp-challenges__card {
		border-right: none;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
		width: calc((100% - 20px) / 2) !important;
		max-width: 210px;
		min-width: 0;
		flex: 0 0 calc((100% - 20px) / 2);
	}

	.lp-challenges__card:last-child {
		width: 100% !important;
		max-width: 210px;
		flex-basis: 100%;
		justify-self: center;
		margin-left: auto;
		margin-right: auto;
	}

	.lp-challenges__badge {
		font-size: 17px;
		margin-bottom: 0.75rem;
	}

	.lp-challenges__card:nth-child(4) .lp-challenges__badge {
		padding: 0px 10px !important;
	}

	.lp-challenges__circle {
		max-width: 110px;
		margin-bottom: 0.75rem;
	}
}

.lp-profile {
	background: #f5f3f5;
}

.lp-profile__container {
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 90px 0 120px;
}

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

.lp-profile__title::after {
	content: "";
	display: block;
	width: 179px;
	height: 3px;
	background: #33379A;
	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: 275px;
	height: 348px;
	padding: 0px 10px;
	object-fit: cover;
	display: block;
}

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

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

.lp-profile__text {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.4;
	color: #333;
	margin-top: 65px;
}

.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: 160px;
	display: flex;
	align-items: center;
	gap: 7px;
	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: 49px;
	height: 49px;
	display: block;
}

@media (max-width: 1439px) {
	.lp-profile__title {
		font-size: 38px;
		line-height: 61px;
	}

	.lp-profile__container {
		max-width: 1000px;
		margin: 0 auto;
		padding: 54px 0 100px;
	}

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

	.lp-profile__text {
		font-size: 19px;
		line-height: 28px;
		margin-top: 40px;
	}

	.lp-profile__name {
		font-size: 47px;
		margin: 0;
	}
}

@media (max-width: 1023px) {
	.lp-profile {
		padding-left: 10px;
		padding-right: 10px;
	}

	.lp-profile__title {
		font-size: 25px;
		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: 19px;
		font-weight: normal;
		line-height: 23px;
		letter-spacing: 0px;
	}

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

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

	.lp-profile__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.lp-profile__container {
		max-width: 430px !important;
	}

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

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

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

.lp-support-range__container {
	max-width: var(--lp-content-max);
	margin: 0 auto;
}

.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: 0 0 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: 23px;
	line-height: 41px;
	font-weight: bold;
	white-space: normal;
	text-align: center;
	padding: 9px 0px;
	margin-bottom: 1rem;
}

.lp-support-range__badge br {
	display: block;
	content: "";
}

.lp-support-range__badge-editor {
	display: block;
	width: 100%;
	min-height: 0;
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
	font: inherit;
	font-weight: inherit;
	line-height: inherit;
	text-align: center;
	white-space: pre-wrap;
	resize: none;
	overflow: hidden;
}

.lp-support-range__badge-preview {
	display: block;
	width: 100%;
	white-space: normal;
}

/*.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: 21px;
	line-height: 38px;
	color: #333;
	margin: 0;
	letter-spacing: -1px;
}

.lp-support-range__cta {
	text-align: right;
	font-size: 18px;
	letter-spacing: -1px;
	padding: 0 0 140px;
	color: #FD7000;
	width: 100%;
}

@media (max-width: 1439px) {
	.lp-support-range__cta {
    	font-size: 15px;
    	margin-top: 15px;
		padding-bottom: 90px;
	}
	
	.lp-support-range__title {
		font-size: 39px;
		line-height: 64px;
		padding-top: 90px;
	}

	.lp-support-range__container {
		max-width: 1000px;
		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__badge {
		font-size: 18px;
		/* padding: 0 20px; */
	}

	.lp-support-range__circle {
		max-width: 185px;
	}

	.lp-support-range__desc {
		font-size: 16px;
		line-height: 26px;
	}

	.lp-achievement__desc {
		padding: 20px 0 !important;
		font-size: 14px !important;
		letter-spacing: -1px !important;
		width: 300px;
	}

	.lp-achievement__card {
		width: 90% !important;
	}
}

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

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

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

	.lp-support-range__badge {
		width: 180px;
		font-size: 18px;
		line-height: 19px;
		white-space: normal;
		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-support-range__container {
		max-width: 430px;
	}

	.lp-support-range__card {
		flex: none;
		width: 182px;
	}

	.lp-support-range__container-inner {
		justify-content: space-between;
	}
}


/* ==========================================================================
   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;
	letter-spacing: 10px;
}

.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: 0 0 36px;
	max-width: var(--lp-content-max);
	margin: 0 auto;
}

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

.lp-achievement__card-wrap {
	flex: 0 0 32%;
	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: 22px;
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: -0.03em;
	padding: 10px 5px;
	text-align: center;
	border-radius: 5px;
	position: absolute;
	top: -30px;
	left: 22px;
	z-index: 2;
	white-space: normal;
	overflow: hidden;
}

.lp-achievement__badge-editor {
	display: block;
	width: 100%;
	min-height: 0;
	padding: 0;
	margin: 0;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	color: inherit;
	font: inherit;
	font-weight: inherit;
	line-height: inherit;
	text-align: center;
	white-space: pre-wrap;
	resize: none;
	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;
	z-index: 1000;
}

.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 .sp__version {
	display: none;
}

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

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

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

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

.lp-achievement__kpi-arrow {
	position: absolute;
	right: -56px;
	width: 86px;
}

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

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

.lp-achievement__cta .sp__version {
	display: none;
}

.lp-achievement__cta p {
	margin: 30px 0 0 0;
	letter-spacing: -3px;
}

.lp-achievement__cta-line--emphasis {
	font-size: 1.08em;
}

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

.lp-achievement__desc_sp {
	display: none;
}

@media (max-width: 1439px) {
	.lp-achievement__title {
		font-size: 50px;
		line-height: 80px;
		padding-top: 26px;
	}

	/* .lp-achievement__card {
		display: flex;
		width: 60%;
	} */

	.lp-achievement__container {
		max-width: 1000px;
	}

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

	.lp-achievement__card-wrap {
		width: 100%;
	}

	.lp-achievement__card-wrap:nth-child(2) {
		align-items: center;
	}

	/* .lp-achievement__desc {
		display: none;
	} */

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

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

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

	/* .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: -30px;
	} */

	.lp-achievement__kpi {
		min-height: 157px;
	}

	.lp-achievement__cta {
		font-size: 34px;
		line-height: 84px;
		padding-bottom: 90px;
	}

	.lp-achievement__cta p {
		display: flex;
		justify-content: center;
		align-items: baseline;
	}

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

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

	.lp-achievement__figure-img {
		max-height: 194px;
	}

	.lp-achievement__figure {
		min-height: 220px;
	}

	.lp-achievement__kpi-label, 
	.lp-achievement__kpi-suffix {
		font-size: 26px;
	}

	.lp-achievement__kpi-value {
		font-size: 44px;
	}

	.lp-achievement__kpi-value-1 {
		font-size: 31px;
	}

	.lp-achievement__card-wrap {
		flex: 0 0 258px;
	}

	.lp-achievement__kpi-label-1 {
		font-size: 17px;
	}

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

@media (max-width: 1023px) {
	.lp-achievement__cta {
		padding-left: 10px;
		padding-right: 10px;
	}

	.lp-achievement__title {
		font-size: 25px;
		line-height: 32px;
	}

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

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

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

	.lp-achievement__kpi {
		min-height: 250px;
	}

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

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-label
 	{
		font-size: 20px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-suffix {
		font-size: 31px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-value {
		font-size: 59px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(2) .lp-achievement__kpi-value-1 {
		font-size: 41px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(2) .lp-achievement__desc_sp {
		font-size: 17px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(3) .lp-achievement__kpi-label {
		font-size: 26px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(3) .lp-achievement__kpi-label-1 {
		font-size: 18px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(3) .lp-achievement__kpi-value {
		font-size: 67px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(3) .lp-achievement__kpi-value-1 {
		font-size: 51px;
	}

	.lp-achievement__container-inner > .lp-achievement__card-wrap:nth-child(3) .lp-achievement__kpi-suffix {
		font-size: 34px;
	}

	.lp-achievement__kpi {
		padding: 10px 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: 69px;
		font-weight: bold;
		color: #F08129;
		line-height: 70px;
	}
	
	.lp-achievement__kpi-value-1 {
		font-family: Futura, "Futura PT", sans-serif;
		font-size: 55px;
		font-weight: bold;
		color: #F08129;
		line-height: 67px;
	}

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

	.lp-achievement__cta-desc {
		font-size: 30px;
		margin: 0 !important;
	}

	.lp-achievement__cta-line--emphasis {
		font-size: 1.05em;
		display: block;
	}

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

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

	.lp-achievement__cta .sp__version {
		display: block;
	}

	.lp-achievement__cta .pc__version {
		display: none;
	}

	.lp-achievement__card {
		display: flex;
		max-width: 362px !important;
	}

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

	.lp-achievement__desc {
		display: none;
	}

	.lp-achievement__kpi-arrow {
		width: 122px;
		right: -75px;
		top: -90px;
	}

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

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

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

	.lp-achievement__desc_sp {
		font-size: 19px;
		line-height: 25px;
		display: block;
		padding: 0px 5px 20px 5px;
	}

	.lp-achievement__kpi .pc__version {
		display: none;
	}

	.lp-achievement__kpi .sp__version {
		display: block;
	}
}

@media (max-width: 767px) {
	.lp-achievement__card {
		display: flex;
		max-width: 228px !important;
	}

	.lp-hero__inner {
		max-width: 343px !important;
	}

	.lp-challenges__badge {
		padding: 0 30px !important;
	}

	.lp-support__title-2 {
		font-size: 15px !important;
	}

	.lp-support__title-5 {
		font-size: 31px !important;
	}

	.lp-support__cta-line--first .lp-support__title-5-kara + .lp-support__title-5-after {
		display: block;
		margin-top: 4px;
	}

	.lp-support__title-6 {
		font-size: 23px !important;
	}

	.lp-support__title-number-img {
		width: 55px !important;
		margin-top: 5px !important;
	}

	.lp-profile__title {
		font-size: 20px !important;
	}

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

	.lp-profile__container {
		max-width: 343px !important;
	}

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

	.lp-profile__social {
		padding-top: 65px;
	}

	.lp-support-range__title {
		font-size: 20px !important;
		line-height: 42px !important;
	}

	.lp-support-range__container-inner {
		padding-top: 20px;
		gap: 25px;
	}

	.lp-support-range__container {
		max-width: 343px !important;
	}

	.lp-support-range__card {
		width: 137px !important;
		padding-bottom: 0 !important;
	}

	.lp-support-range__badge {
		font-size: 14px;
		width: 100%;
	}

	.lp-support-range__cta {
		padding-top: 60px !important;
	}

	.lp-achievement__container-inner {
		padding-top: 52px !important;
	}

	.lp-pricing__title {
		font-size: 20px !important;
	}

	.lp-pricing__container {
		max-width: 343px !important;
	}

	.lp-support-range__desc {
		width: 125%;
		letter-spacing: -2px;
	}
}

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

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

.lp-pricing__container {
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 100px 0 0;
}

.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: 120px 0 200px;
}

.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 40px;
	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: 45px;
	font-weight: 900;
	color: #33379A;
	margin: 0;
}

.lp-pricing__desc {
    font-size: 20px;
    color: #2C2B29;
    line-height: 1.5;
    margin: 20px 0 0 0;
    height: 55px;
}

.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: 92px;
	font-weight: bold;
	color: #F08129;
	display: inline;
	line-height: 150px;
}

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

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

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

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

.lp-pricing__features li {
	margin: 0;
}

.lp-pricing__btn {
	display: inline-block;
	padding: 12px 68px;
	font-size: 34px;
	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;
	margin-top: 56px;
}

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

@media (max-width: 1439px) {
	.lp-pricing__container {
		max-width: 1000px !important;
		padding-top: 0px;
	}

	.lp-pricing__title {
		font-size: 35px;
		line-height: 96px;
		padding-top: 90px;
	}

	.lp-pricing__title::after {
		width: 147px;
	}

	.lp-pricing__inner {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 50px;
		padding-top: 60px;
	}

	.lp-achievement__container-inner {
		padding-top: 73px;
	}

	.lp-pricing__plan-name {
		font-size: 33px;
		line-height: 63px;
	}

	.lp-pricing__desc {
		font-size: 14px;
		line-height: 26px;
		height: 37px;
	}

	.lp-pricing__amount {
		font-size: 85px;
		line-height: 120px;
	}

	.lp-pricing__unit {
		font-size: 21px;
		line-height: 33px;
	}

	.lp-pricing__contract {
		font-size: 15px;
		line-height: 25px;
	}

	.lp-pricing__features {
		font-size: 14px;
		line-height: 38px;
	}

	.lp-pricing__btn {
		font-size: 28px;

		padding: 12px 38px;
	}
}

@media (max-width: 1023px) {
	.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: 25px;
		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;
		line-height: 30px;
	}

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

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

	.lp-pricing__container {
		max-width: 430px !important;
	}

	.lp-pricing__badge {
		font-size: 18px !important;
		margin-top: -4px !important;
	}
}

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

.lp-flow {
	background: #fff;
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 120px 0 200px;
}

.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: 110px 0 125px;
}

.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: 38px;
	font-weight: medium;
	font-style: italic;
	color: #F08129;
	margin: 0px 0px 86px 0px;
	letter-spacing: -2px;
}

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

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

.lp-flow__step-label {
	display: block;
	font-size: 29px;
	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: 29px;
	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: 29px;
	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;
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 0;
	color: #33379A;
	letter-spacing: -2px;
}

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

.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: 53px;
	font-weight: bold;
}

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

@media (max-width: 1439px) {
	.lp-flow__title {
		font-size: 36px;
        line-height: 87px;
	}

	.lp-pricing__badge {
		font-size: 15px;
		top: -33px;
		padding: 3px 42px 0 32px;
		right: 31px;
	}

	.lp-flow {
		max-width: 1000px;
		padding-top: 90px;
		padding-bottom: 100px;
	}

	.lp-flow__banner {
		width: 1000px;
		margin-bottom: 0px;
		margin-top: 55px;
	}

	.lp-flow__step {
		width: 269px;
		height: 295px;
	}

	.lp-flow__step:nth-child(1) {
		padding-left: 10px;
	}

	.lp-flow__step:nth-child(2) {
		left: calc((100% - 269px) / 4);
	}

	.lp-flow__step:nth-child(3) {
		left: calc((100% - 269px) * 2 / 4);
	}

	.lp-flow__step:nth-child(4) {
		left: calc((100% - 269px) * 3 / 4);
	}

	.lp-flow__step:nth-child(5) {
		left: calc(100% - 269px);
	}

	.lp-flow__step-label {
		font-size: 21px;
	}

	.lp-flow__step-num {
		font-size: 28px;
		margin-bottom: 54px;
	}

	.lp-flow__step-num-1 {
		font-size: 43px;
	}

	.lp-flow__step-label-2 {
		font-size: 21px;
		padding-left: 70px;
		margin-bottom: 25px;
	}

	.lp-flow__step-label-3 {
		font-size: 21px;
		margin-bottom: 70px !important;
	}

	.lp-flow__step-num-2 {
		margin-bottom: 50px;
	}

	.lp-flow__step-label-1 {
		font-size: 21px;
		padding-left: 70px;
		margin-bottom: 20px;
	}

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

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


	/* .lp-flow {
		padding: 44px 10px 39px 10px;
	}

	.lp-flow__banner {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

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

	.lp-flow__step {
		position: relative;
		left: 0 !important;
		width: 80%;
		max-width: 420px;
		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 {
		width: 100%;
		height: auto;
		object-fit: contain;
		z-index: -1;
		display: block;
	}

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

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

	.lp-flow__step-label, .lp-flow__step-label-1, .lp-flow__step-label-2 {
		font-size: 35px;
		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: 202px;
	}

	.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-flow__step-num-2 {
		font-size: 28px;
	}

	.lp-support__title-5 {
		font-size: 55px;
	}

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

	.lp-support__title-number-img {
		width: 98px;
		margin-top: 35px;
	}

	.lp-support__cta {
		display: flex;
		justify-content: center;
		align-items: baseline;
		padding-top: 0 !important;
		padding-bottom: 85px !important;
	}

	.lp-flow__illus-img {
		width: 63%;
	}

	.lp-profile__social {
		padding-top: 90px !important;
	}
}

@media (max-width: 1023px) {
	.lp-flow__title {
		font-size: 25px;
	}

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

	.lp-flow__step {
		width: 80%;
		height: 100%;
	}

	.lp-flow__step-num, .lp-flow__step-num-2 {
		font-size: 21px;
	}

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

	.lp-flow__step-label, .lp-flow__step-label-1, .lp-flow__step-label-2 {
		font-size: 17px;
	}

	.lp-flow {
		padding: 44px 10px 39px 10px;
		max-width: 640px !important;
	}

	.lp-flow__banner {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

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

	.lp-flow__step {
		position: relative;
		left: 0 !important;
		width: 80%;
		max-width: 420px;
		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 {
		width: 100%;
		height: auto;
		object-fit: contain;
		z-index: -1;
		display: block;
	}

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

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

	.lp-flow__step-label, .lp-flow__step-label-1, .lp-flow__step-label-2 {
		font-size: 27px;
		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: 202px;
	}

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

	.lp-flow__summary p {
		font-size: 48px;
		letter-spacing: 3px;
	}

	.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: 42px;
	}

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

	.lp-challenges__container {
		max-width: 430px;
	}
}

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

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

.lp-contact__inner {
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 71px var(--lp-gutter) 102px;
}

.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: 1439px) {
	.lp-contact__title {
		font-size: 42px;
		line-height: 67px;
	}
}

@media (max-width: 1023px) {
	.lp-contact__title {
		font-size: 25px;
	}

	.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;
}

.footer-lp__main {
	max-width: var(--lp-content-max);
	margin: 0 auto;
	padding: 40px var(--lp-gutter) 7px;

	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;
	margin-top: 35px;
}

.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;
}

.is-editor-preview .footer-lp__heading {
	padding-left: 0 !important;
	border-left: 0 !important;
	box-shadow: none !important;
}

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

.footer-lp__links--editor {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.55rem;
}

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

.is-editor-preview .footer-lp__links a {
	display: inline;
	padding: 0 !important;
	border: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.is-editor-preview .footer-lp__links--editor a {
	line-height: 1.45;
}

.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) {
	.lp-support__cta {
		padding-bottom: 0 !important;
	}

    .lp-pricing__container {
        max-width: 343px !important;
    }

	.lp-profile__social {
		padding-top: 60px !important;
	}

	.lp-profile__container {
		padding-bottom: 90px !important;
	}

	.lp-achievement__cta {
		padding-bottom: 65px !important;
	}

	.lp-pricing__features {
		height: auto;
	}

	.lp-pricing__btn {
		margin-top: 50px;
	}

	.lp-pricing__inner {
		padding: 20px 0;
	}

	.lp-pricing__card.lp-pricing__card--featured p {
		font-size: 16px;
	}

	.lp-flow__step-num, .lp-flow__step-num-2 {
		font-size: 19px;
	}

	.lp-flow__step-num-1 {
		font-size: 28px;
	}

	.lp-flow__step-label, .lp-flow__step-label-1, .lp-flow__step-label-2 {
		font-size: 15px;
	}

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

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

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

	.lp-contact__inner {
		padding-top: 48px;
	}

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

/* @media (max-width: 1439px) {
	.footer-lp__main {
		max-width: 1000px !important;
	}

	.footer-lp__heading {
		font-size: 24px;
	}

	.footer-lp__links {
		font-size: 17px;
	}
} */


@media (max-width: 1439px) {
	.footer-lp__heading {
		font-size: 24px;
	}

	.footer-lp__links a {
		font-size: 17px;
	}

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

	.footer-lp__brand {
		margin-top: 69px;
	}

	.footer-lp__block {
		margin-top: 80px;
	}

	.footer-lp__part--right {
		justify-content: space-around;
		/* margin-left: 50px; */
	}

	.footer-lp__main {
		max-width: 1000px !important;
		padding: 40px 23px;
	}

	.footer-lp__part--right .footer-lp__block:first-child {
		width: auto;
	}
}

@media (max-width: 1023px) {
	.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;
	}
}
