@charset "UTF-8";

/*----------------------------------------------------------*/
/* カスタマイズ用CSS
/*----------------------------------------------------------*/
:root {
	--base: #f7f6f4;
	--main: #111;
	--sub: #d4d0cd;
	--orange: #e64435;
	--text: #111;
	--ease: all 0.3s ease;
	--font-jp: "游ゴシック Medium", sans-serif;
	--font-en: "roboto", sans-serif;
	--font-all: "roboto", "游ゴシック Medium", sans-serif;
}
body {
	color: var(--text);
	font-weight: 600;
}
h1,h2,h3,h4,h5,h6,b,strong {
	font-family: var(--font-all);
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	font-weight: bold;
	letter-spacing: 0.1em;
}
#all_wrap p {
	font-size: 13px;
	line-height: 2;
	font-weight: 600;
}
#all_wrap .orange { color: var(--orange); }

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	:root {
		--base: #f7f6f4;
		--main: #111;
		--sub: #d4d0cd;
		--text: #111;
		--ease: all 0.3s ease;
		--font-jp: "游ゴシック Light", sans-serif;
		--font-en: "roboto", sans-serif;
		--font-all: "roboto", "游ゴシック Light", sans-serif;
	}
	body {
		color: var(--text);
		font-weight: lighter;
	}
	#all_wrap.lp01 {
		padding-top: 50px;
	}
	#all_wrap p {
		font-size: 15.6px;
		line-height: 2;
		font-weight: 600;
	}
}

/*----------------------------------------------------------*/
/* 共通
/*----------------------------------------------------------*/
.lp-contHead {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 10px;
}
.lp-contHead.mb30 {
	margin-bottom: 30px;
}
.lp-contHead.mb50 {
	margin-bottom: 50px;
}
#all_wrap .lp-contHead > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	font-style: normal;
	color: var(--main);
	position: relative;
}
#all_wrap .lp-contHead > h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 30px;
	line-height: 1.7em;
	color: var(--text);
	position: relative;
	border: none;
	background: none;
}
#all_wrap .lp-contHead > p {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: left;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.lp-contHead {
		width: calc(100% - 60px);
		max-width: 100%;
		grid-row-gap: 5px;
	}
	.lp-contHead.mb30 {
		margin-bottom: 30px;
	}
	.lp-contHead.mb50 {
		margin-bottom: 20px;
	}
	#all_wrap .lp-contHead > em {
		font-size: 16px;
	}
	#all_wrap .lp-contHead > h2 {
		font-size: 23px;
	}
	#all_wrap .lp-contHead > p small {
		font-size: 11px;
		line-height: 1.4em;
	}
}

/*画像ヘッダー*/
#all_wrap .lp-imgHead {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .lp-imgHead.mb50 {
	margin-bottom: 50px;
}
#all_wrap .lp-imgHead > .lp-imgHead_ttl {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 5;
}
#all_wrap .lp-imgHead > .lp-imgHead_ttl > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 13px;
	line-height: 1;
	font-style: normal;
	color: var(--main);
	position: relative;
}
#all_wrap .lp-imgHead > .lp-imgHead_ttl > h2 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 30px;
	line-height: 1.7em;
	color: var(--text);
	position: relative;
	border: none;
	background: none;
}
#all_wrap .lp-imgHead > .lp-imgHead_ttl > h2 strong {
	color: var(--main);
}
#all_wrap .lp-imgHead > .lp-imgHead_ttl > h2 b {
	font-size: 1.5em;
	color: var(--main);
}
#all_wrap .lp-imgHead > figure {
	width: 50%;
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px 0 0 10px;
}
#all_wrap .lp-imgHead > figure::before {
	content: '';
	display: block;
	padding-top: 50%;
}
#all_wrap .lp-imgHead > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*画像ヘッダー*/
	#all_wrap .lp-imgHead {
		width: calc(100%);
		max-width: 100%;
		grid-row-gap: 20px;
	}
	#all_wrap .lp-imgHead.mb50 {
		margin-bottom: 50px;
	}
	#all_wrap .lp-imgHead > .lp-imgHead_ttl {
		width: calc(100% - 60px);
		max-width: 100%;
		grid-row-gap: 5px;
		position: relative;
		top: unset;
		left: unset;
		transform: unset;
		margin: 0 auto 10px;
	}
	#all_wrap .lp-imgHead > .lp-imgHead_ttl > em {
		font-size: 15px;
	}
	#all_wrap .lp-imgHead > .lp-imgHead_ttl > h2 {
		font-size: 23px;
	}
	#all_wrap .lp-imgHead > .lp-imgHead_ttl > h2 b {
		font-size: 1.3em;
	}
	#all_wrap .lp-imgHead > figure {
		width: calc(100% - 30px);
		padding: 0;
		margin: 0 0 0 auto;
		position: relative;
		overflow: hidden;
		text-align: center;
		border-radius: 10px 0 0 10px;
	}
	#all_wrap .lp-imgHead > figure::before {
		content: '';
		display: block;
		padding-top: 65%;
	}
}

/*ボタン*/
#all_wrap .lp-btn {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#all_wrap .lp-btn.left {
	justify-content: flex-start;
}
#all_wrap .lp-btn.right {
	justify-content: flex-end;
}
#all_wrap .lp-btn > a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 15px 100px;
	margin: 0;
	border: 1px solid var(--text);
	background: none;
	border-radius: 50px;
	font-size: 13px;
	line-height: 1;
	color: var(--text);
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#all_wrap .lp-btn > a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(45deg);
	transition: var(--ease);
}
#all_wrap .lp-btn > a:hover {
	color: #fff;
	border: 1px solid var(--main);
	background: var(--main);
	transition: var(--ease);
}
#all_wrap .lp-btn > a:hover::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transition: var(--ease);
}

/*セクション*/
.lp-sec {
	width: 100%;
	padding: 50px 0 80px;
	margin: 0 auto;
	position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*セクション*/
	.lp-sec {
		width: 100%;
		padding: 30px 0;
	}
}

/*----------------------------------------------------------*/
/* ヘッダー
/*----------------------------------------------------------*/
#headerLP {
	width: 100%;
	max-height: 80px;
	padding: 10px 50px;
	margin: 0 auto;
	background: #fff;
	position: relative;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	z-index: 100;
}
#all_wrap #headerLP > #logo {
	width: auto;
	height: 60px;
	padding: 0;
	margin: 0 auto 0 0;
	border: none;
	background: none;
}
#headerLP > #logo a {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	height: 100%;
	padding: 0;
	margin: 0;
}
#headerLP > #logo img {
	width: auto;
	height: 60px;
	padding: 0;
	margin: 0 10px 0 0;
}
#headerLP > #logo h1 {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 1;
	color: #111;
	font-weight: 500;
}

/*ボタン*/
.headBtn {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 5px;
	padding: 10px 30px;
	margin: 0;
	background: #e64435;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	color: #fff;
	border-radius: 35px;
	transition: var(--ease);
	margin-left: 20px;
}
.headBtn.line {
	background: #06c755;
}
.headBtn:hover {
	opacity: 0.8;
	transition: var(--ease);
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#headerLP {
		width: 100%;
		max-height: 60px;
		padding: 5px 10px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 50;
	}
	#all_wrap #headerLP > #logo {
		width: auto;
		height: 50px;
	}
	#headerLP > #logo img {
		width: auto;
		height: 50px;
		padding: 0;
		margin: 0 10px 0 0;
	}
	#headerLP > #logo h1 {
		font-size: 14px;
	}
	/*ボタン*/
	.headBtn {
		column-gap: 5px;
		padding: 8px 15px;
		font-size: 10px;
		border-radius: 28px;
		margin-left: 10px;
	}
	.headBtn::after {
		width: 12px;
		min-width: 12px;
		height: 12px;
	}
}

/************************************************************/
/*　ハンバーガーメニュー
/************************************************************/

/* ドロワーメニュー */
#headerLP .humburger {
	width: 30px;
	height: 15px;
	padding: 0;
	margin: 0;
	position: fixed;
	top: 40px;
	left: unset;
	right: 50px;
	transform: translate(-50%, -50%);
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
#headerLP .humburger span {
	width: 100%;
	display: inline-block;
	transition: all .3s;/*アニメーションの設定*/
	position: absolute;
	left: 0;
	height: 1px;
	background: #111;
}
#headerLP .humburger span:nth-of-type(1) {
	top:0;
	width: 60%;
}
#headerLP .humburger span:nth-of-type(2) {
	top:7px;
}
#headerLP .humburger span:nth-of-type(3) {
	top:14px;
	width: 60%;
	left: unset;
	right: 0;
}
#headerLP #navTgl:checked + .open .humburger span:nth-of-type(1) {
	top: 0;
	left: 0;
	transform: translateY(7px) rotate(-45deg);
	width: 100%;
	background: #111;
}
#headerLP #navTgl:checked + .open .humburger span:nth-of-type(2) {
	opacity: 0;
	display: none;
	transform: none;
}
#headerLP #navTgl:checked + .open .humburger span:nth-of-type(3) {
	top: 20px;
	left: 0;
	transform: translateY(-13px) rotate(45deg);
	width: 100%;
	background: #111;
}
#headerLP .sub_page .humburger span {
	background: #111;
}
#headerLP #navTgl {
	display: none;
}
#headerLP label.open,
#headerLP label.close {
	cursor: pointer;
}
#headerLP .open {
	visibility: visible;
	opacity: 1;
	z-index: 10000;
	width: 50px;
	height: 15px;
	padding: 0;
	margin: 0 0 0 25px;
	color: #fff;
	background: none;
	font-size: 3em;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
}
#headerLP .open.fixed {
	visibility: visible;
	opacity: 1;
	transition: all 0.3s ease;
	position: fixed;
	top: 40px;
	right: 50px;
}
#headerLP #navTgl:checked + .open {
	background: none;
}
#headerLP .close {
	pointer-events: none;
	z-index: 1;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
#headerLP #navTgl:checked ~ .close {
	pointer-events: auto;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/* ドロワーメニュー */
	#headerLP .humburger {
		width: 30px;
		height: 15px;
		padding: 0;
		margin: 0;
		position: fixed;
		top: 30px;
		left: unset;
		right: 0;
		transform: translate(-50%, -50%);
		display: flex;
		display: -webkit-flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: nowrap;
	}
	#headerLP .humburger span {
		width: 100%;
		display: inline-block;
		transition: all .3s;/*アニメーションの設定*/
		position: absolute;
		left: 0;
		height: 1px;
		background: #111;
	}
	#headerLP .humburger span:nth-of-type(1) {
		top:0;
		width: 60%;
	}
	#headerLP .humburger span:nth-of-type(2) {
		top:7px;
	}
	#headerLP .humburger span:nth-of-type(3) {
		top:14px;
		width: 60%;
		left: unset;
		right: 0;
	}
	#headerLP #navTgl:checked + .open .humburger span:nth-of-type(1) {
		top: 0;
		left: 0;
		transform: translateY(7px) rotate(-45deg);
		width: 100%;
		background: #111;
	}
	#headerLP #navTgl:checked + .open .humburger span:nth-of-type(2) {
		opacity: 0;
		display: none;
		transform: none;
	}
	#headerLP #navTgl:checked + .open .humburger span:nth-of-type(3) {
		top: 20px;
		left: 0;
		transform: translateY(-13px) rotate(45deg);
		width: 100%;
		background: #111;
	}
	#headerLP .sub_page .humburger span {
		background: #111;
	}
	#headerLP #navTgl {
		display: none;
	}
	#headerLP label.open,
	#headerLP label.close {
		cursor: pointer;
	}
	#headerLP .open {
		visibility: visible;
		opacity: 1;
		z-index: 10000;
		width: 30px;
		height: 15px;
		padding: 0;
		margin: 0 0 0 20px;
		color: #fff;
		background: none;
		font-size: 3em;
		text-align: center;
		transition: all 0.3s ease;
		position: relative;
		right: 5px;
	}
	#headerLP .open.fixed {
		visibility: visible;
		opacity: 1;
		transition: all 0.3s ease;
		position: fixed;
		top: 40px;
		right: 50px;
	}
	#headerLP #navTgl:checked + .open {
		background: none;
	}
	#headerLP .close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: all 0.3s ease;
	}
	#headerLP #navTgl:checked ~ .close {
		pointer-events: auto;
	}
}


/************************************************************/
/*　メインビジュアル
/************************************************************/
#lp-mv {
	width: 100%;
	padding: 200px 0;
	margin: 0 auto 50px;
	background-image: url('https://alesco.fit/wp-content/uploads/lp-mv_3.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 0;
}
#lp-mv::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
}
.lp-mv_info {
	width: 100%;
	max-width: 1100px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .lp-mv_info > h2 {
	padding: 0;
	margin: 0 auto 20px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 45px;
	font-weight: bold;
	color: #111;
	line-height: 2em;
	border: none;
	background: none;
	position: relative;
	letter-spacing: 0.05em;
	text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
	font-weight: 900;
}
#all_wrap .lp-mv_info > h2 strong {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #e64435;
}
/*メダル*/
#lp-mv .lp-mv_info > .medalList {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	display: -webkit-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	transition-delay: 1s;
	column-gap: 20px;
}
#lp-mv .lp-mv_info > .medalList > li {
	width: 150px;
	padding: 0;
	margin: 0;
	position: relative;
}
#lp-mv .lp-mv_info > .medalList > li img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
	filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.2));
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-mv {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		background-image: url('https://alesco.fit/wp-content/uploads/lp-mv_3_sp-1.webp');
		z-index: 0;
	}
	.lp-mv_info {
		width: 100%;
		max-width: 100%;
		padding: 30px;
	}
	#all_wrap .lp-mv_info > h2 {
		padding: 0;
		margin: 0 auto 10px;
		font-size: 22px;
		line-height: 1.7em;
		text-align: left;
		white-space: nowrap;
	}
	/*メダル*/
	#lp-mv .lp-mv_info > .medalList {
		width: 100px;
		flex-direction: column;
		justify-content: center;
		column-gap: 10px;
		grid-row-gap: 10px;
	}
	#lp-mv .lp-mv_info > .medalList > li {
		width: calc(100%);
	}
}

/************************************************************/
/*　メインナビ
/************************************************************/
#lp-mainNav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #lp-mainNav > ul {
	width: fit-content;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
	border-left: 1px solid var(--main);
}
#all_wrap #lp-mainNav > ul > li {
	width: 125px;
	height: auto;
	aspect-ratio: 1/1;
	position: relative;
	border: 1px solid var(--main);
	border-left: none;
}
#all_wrap #lp-mainNav > ul > li > a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 10px;
	width: 100%;
	aspect-ratio: 1/1;
	padding: 20px 15px;
	margin: 0;
	background: none;
	transition: var(--ease);
}
#all_wrap #lp-mainNav > ul > li > a span {
	display: block;
	width: 100%;
	height: 40px;
	text-align: center;
}
#all_wrap #lp-mainNav > ul > li > a img {
	width: auto;
	height: 100%;
}
#all_wrap #lp-mainNav > ul > li > a p {
	padding: 0;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1;
	color: var(--main);
}
#all_wrap #lp-mainNav > ul > li > a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-bottom: 1px solid var(--main);
	border-right: 1px solid var(--main);
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translate(-50%,0) rotate(45deg);
	transition: var(--ease);
}
#all_wrap #lp-mainNav > ul > li > a:hover {
	filter: brightness(1.2);
	transition: var(--ease);
}
#all_wrap #lp-mainNav > ul > li > a:hover::after {
	bottom: 12px;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-mainNav {
		width: 100%;
		padding: 30px;
	}
	#all_wrap #lp-mainNav > ul {
		width: 100%;
		flex-wrap: wrap;
	}
	#all_wrap #lp-mainNav > ul > li {
		width: calc(100% / 3);
		aspect-ratio: unset;
	}
	#all_wrap #lp-mainNav > ul > li:nth-child(1),
	#all_wrap #lp-mainNav > ul > li:nth-child(2),
	#all_wrap #lp-mainNav > ul > li:nth-child(3) {
		border-bottom: none;
	}
	#all_wrap #lp-mainNav > ul > li > a {
		grid-row-gap: 10px;
		padding: 15px 15px 25px;
		aspect-ratio: unset;
	}
	#all_wrap #lp-mainNav > ul > li > a span {
		height: 40px;
	}
	#all_wrap #lp-mainNav > ul > li > a p {
		font-size: 11px;
	}
	#all_wrap #lp-mainNav > ul > li > a::after {
		bottom: 10px;
	}
	#all_wrap #lp-mainNav > ul > li > a:hover::after {
		bottom: 8px;
		transition: var(--ease);
	}
}

/************************************************************/
/*　コンセプト
/************************************************************/
#lp-concept {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
}
.lp-concept_info {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .lp-concept_info > h3 {
	font-size: 18px;
	line-height: 1.2em;
	color: var(--main);
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	border: none;
	background: none;
}
#all_wrap .lp-concept_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-concept {
		width: 100%;
		padding: 10px 0 30px;
	}
	.lp-concept_info {
		width: 100%;
		max-width: 100%;
	}
	#all_wrap .lp-concept_info > h3 {
		font-size: 20px;
		line-height: 1.75em;
		width: calc(100% - 60px);
		margin: 0 auto 30px;
	}
	#all_wrap .lp-concept_info > p {
		width: calc(100% - 60px);
		margin: 0 auto;
	}
}

/************************************************************/
/*　強み
/************************************************************/
#lp-strength {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	border-bottom: 1px solid var(--sub);
	background: var(--base);
	position: relative;
}
/*リスト*/
#all_wrap .lp-strengthList {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 50px;
}
#all_wrap .lp-strengthList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 30px;
}
#all_wrap .lp-strengthList > li > .lp-strengthList_info {
	width: calc(100% - 30px - 300px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp-strengthList_info > header {
	width: 100%;
	padding: 0;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 5px;
	z-index: 5;
}
#all_wrap .lp-strengthList_info > header > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 15px;
	line-height: 1;
	font-style: normal;
	color: var(--main);
	position: relative;
}
#all_wrap .lp-strengthList_info > header > em b {
	font-size: 1.4em;
	display: inline-block;
	margin-left: 5px;
}
#all_wrap .lp-strengthList_info > header > h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 18px;
	line-height: 1;
	color: var(--text);
	position: relative;
	border: none;
	background: none;
}
#all_wrap .lp-strengthList_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .lp-strengthList > li > figure {
	width: 300px;
	padding: 0;
	margin: 0;
}
#all_wrap .lp-strengthList > li > figure img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-strength {
		width: 100%;
		padding: 30px 0;
	}
	/*リスト*/
	#all_wrap .lp-strengthList {
		width: calc(100% - 60px);
		max-width: 100%;
		grid-row-gap: 40px;
	}
	#all_wrap .lp-strengthList > li {
		width: 100%;
		column-gap: 0;
		flex-wrap: wrap;
		grid-row-gap: 20px;
	}
	#all_wrap .lp-strengthList > li > .lp-strengthList_info {
		width: calc(100%);
	}
	#all_wrap .lp-strengthList_info > header {
		margin: 0 auto 10px;
	}
	#all_wrap .lp-strengthList_info > header > em {
		font-size: 18px;
		margin: 0 auto 10px;
	}
	#all_wrap .lp-strengthList_info > header > em b {
		font-size: 1.4em;
	}
	#all_wrap .lp-strengthList_info > header > h3 {
		display: block;
		width: 100%;
		font-size: 20px;
		line-height: 1.75em;
		margin: 0 auto 10px;
	}
	#all_wrap .lp-strengthList > li > figure {
		width: 100%;
		padding: 0;
		margin: 0;
	}
}

/************************************************************/
/*　選ばれる理由
/************************************************************/
#lp-reason {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
/*リスト*/
#all_wrap .lp-reasonList {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 90px;
	grid-row-gap: 50px;
}
#all_wrap .lp-reasonList::before,
#all_wrap .lp-reasonList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 60px);
}
#all_wrap .lp-reasonList::before {
	order: 1;
}
#all_wrap .lp-reasonList > li {
	width: calc(100% / 3 - 60px);
	padding: 0;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
}
#all_wrap .lp-reasonList > li > em {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 25px;
	line-height: 1;
	font-style: normal;
	color: var(--main);
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 5;
}
#all_wrap .lp-reasonList > li figure {
	width: 100%;
	aspect-ratio: 1/1;
	padding: 0;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 50%;
}
#all_wrap .lp-reasonList > li figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .lp-reasonList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .lp-reasonList > li  h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.75em;
	font-weight: 600;
	color: var(--text);
	text-align: center;
	position: relative;
	border: none;
	background: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-reason {
		width: 100%;
		padding: 30px 0;
	}
	/*リスト*/
	#all_wrap .lp-reasonList {
		width: calc(100% - 60px);
		max-width: 100%;
		column-gap: 30px;
		grid-row-gap: 30px;
		justify-content: space-around;
		flex-wrap: wrap;
		margin: 0 auto 20px;
	}
	#all_wrap .lp-reasonList::before,
	#all_wrap .lp-reasonList::after {
		display: none;
	}
	#all_wrap .lp-reasonList > li {
		width: calc(100% / 2 - 15px);
		grid-row-gap: 10px;
		margin: 0;
	}
	#all_wrap .lp-reasonList > li > em {
		font-size: 25px;
		top: 12px;
		left: 0;
		z-index: 5;
	}
	#all_wrap .lp-reasonList > li  h3 {
		font-size: 16px;
		line-height: 1.75em;
	}
	#all_wrap .lp-reasonList > li figure {
		width: 90%;
	}
}

/************************************************************/
/*　様々なプラン
/************************************************************/
#lp-plan {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
.lp-plan_wrap {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .lp-plan_wrap > p {
	font-size: 16px;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
}
/*リスト*/
.lp-planList {
	width: 100%;
	padding: 0;
	margin: 0 auto 50px;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 20px;
}
.lp-planList > li {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 5px;
	width: calc(100% / 4 - 15px);
	padding: 0;
	margin: 0;
	position: relative;
	aspect-ratio: 1/1;
	background: #fff;
	border: 3px solid var(--main);
	border-radius: 50%;
}
.lp-planList > li > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: bold;
	color: var(--main);
}
.lp-planList > li > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-plan {
		width: 100%;
		padding: 30px 0;
	}
	.lp-plan_wrap {
		width: calc(100% - 60px);
		max-width: 100%;
	}
	#all_wrap .lp-plan_wrap > p {
		font-size: 16px;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
	}
	/*リスト*/
	.lp-planList {
		width: 100%;
		max-width: 100%;
		column-gap: 30px;
		grid-row-gap: 30px;
		flex-wrap: wrap;
		margin: 0 auto 20px;
		justify-content: space-between;
	}
	.lp-planList > li {
		grid-row-gap: 5px;
		width: calc(100% / 2 - 15px);
		margin: 0;
	}
	.lp-planList > li > h3 {
		width: 100%;
		padding: 0;
		margin: 0 auto;
		text-align: center;
		font-size: 20px;
		line-height: 1.2em;
		font-weight: bold;
		color: var(--main);
	}
}

/************************************************************/
/*　目標を叶えるプログラム
/************************************************************/
#lp-case {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
.lp-case_wrap {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 50px;
	grid-row-gap: 50px;
}
.lp-case_wrap .caseBox {
	width: calc(100% / 2 - 25px);
	padding: 0;
	margin: 0;
	position: relative;
}
.lp-case_wrap .caseBox > p strong {
	color: var(--main);
}
.lp-case_wrap .caseBox dt {
	padding: 10px 30px;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 5px;
	border: 2px solid var(--main);
	border-radius: 10px 10px 0 0;
	position: relative;
}
#all_wrap .lp-case_wrap .caseBox dt > em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 20px;
	line-height: 1;
	font-style: normal;
	color: var(--orange);
	position: relative;
}
#all_wrap .lp-case_wrap .caseBox dt > em b {
	font-size: 1.4em;
	display: inline-block;
	margin-left: 5px;
}
#all_wrap .lp-case_wrap .caseBox dt > h3 {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 23px;
	line-height: 1;
	color: var(--orange);
	position: relative;
	border: none;
	background: none;
}
#all_wrap .lp-case_wrap .caseBox dt > .badge {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	aspect-ratio: 1/1;
	background: var(--main);
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	color: #fff;
	text-align: center;
	position: absolute;
	top: -20px;
	right: -20px;
	z-index: 5;
}
.lp-case_wrap .caseBox dd {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	padding: 20px 0;
	margin: 0;
	border: 2px solid var(--main);
	border-top: none;
	border-radius: 0 0 10px 10px;
	position: relative;
}
.lp-case_wrap .caseBox dd figure {
	width: 40%;
	padding: 0;
	margin: 0;
	border-radius: 0 10px 10px 0;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.lp-case_wrap .caseBox dd figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
.lp-case_wrap .caseBox dd figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.caseBox_info {
	width: 60%;
	padding: 0 30px;
	margin: 0;
	position: relative;
}
#all_wrap .caseBox_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-case {
		width: 100%;
		padding: 30px 0;
	}
	#lp-case .lp-contHead {
		width: 100%;
	}
	.lp-case_wrap {
		width: calc(100%);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 30px;
	}
	.lp-case_wrap .caseBox:nth-of-type(odd) {
		width: calc(100% - 30px);
		margin: 0 auto 0 0;
	}
	.lp-case_wrap .caseBox:nth-of-type(even) {
		width: calc(100% - 30px);
		margin: 0 0 0 auto;
	}
	.lp-case_wrap .caseBox.head {
		width: calc(100% - 60px);
		margin: 0 auto;
	}
	.lp-case_wrap .caseBox dt {
		padding: 10px 20px;
	}
	.lp-case_wrap .caseBox:nth-of-type(odd) dt {
		border-radius: 0 10px 0 0;
		border-left: none;
	}
	.lp-case_wrap .caseBox:nth-of-type(odd) dd {
		border-radius: 0 0 10px 0;
		border-left: none;
	}
	.lp-case_wrap .caseBox:nth-of-type(even) dt {
		border-radius: 10px 0 0 0;
		border-right: none;
	}
	.lp-case_wrap .caseBox:nth-of-type(even) dd {
		border-radius: 0 0 0 10px;
		border-right: none;
	}
	#all_wrap .lp-case_wrap .caseBox dt > em {
		font-size: 15px;
	}
	#all_wrap .lp-case_wrap .caseBox dt > h3 {
		font-size: 18px;
	}
	#all_wrap .lp-case_wrap .caseBox dt > .badge {
		width: 60px;
		height: 60px;
		font-size: 14px;
	}
	.lp-case_wrap .caseBox dd {
		padding: 20px 0;
		border: 2px solid var(--main);
		border-top: none;
		border-radius: 0 0 10px 10px;
	}
	.caseBox_info {
		width: 60%;
		padding: 0 20px;
	}
	.lp-case_wrap .caseBox dd figure::before {
		content: '';
		display: block;
		padding-top: 100%;
	}
}

/************************************************************/
/*　お客様の声
/************************************************************/
#lp-voice {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
/*リスト*/
#all_wrap .lp-voiceList {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 15px;
}
#all_wrap .lp-voiceList::after {
	content: '';
	display: block;
	width: calc(100% / 3 - 10px);
}
#all_wrap .lp-voiceList > li {
	width: calc(100% / 3 - 10px);
	padding: 20px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .lp-voiceList > li.main {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: unset;
	column-gap: 20px;
}
.lp-voiceList_left {
	width: calc(100% / 2 - 10px);
	padding: 0 0 50px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.lp-voiceList_right {
	width: calc(100% / 2 - 10px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp-voiceList > li header {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .lp-voiceList > li header > em {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-family: var(--font-en);
	font-size: 18px;
	line-height: 1;
	font-style: normal;
	color: var(--main);
	position: relative;
}
#all_wrap .lp-voiceList > li header > em b {
	font-size: 1.4em;
	display: inline-block;
	margin-left: 5px;
}
#all_wrap .lp-voiceList > li header > span {
	display: inline-block;
	padding: 4px 10px 5px;
	margin: 0;
	background: #fff;
	border: 1px solid var(--text);
	font-size: 10px;
	line-height: 1;
	color: var(--text);
	border-radius: 20px;
	margin-top: 4px;
}
#all_wrap .lp-voiceList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	font-size: 15px;
	line-height: 1.75em;
	color: var(--text);
}
#all_wrap .lp-voiceList > li.main h3 {
	padding: 5px 0;
}
#all_wrap .marker {
	background-image: linear-gradient(to top, rgba(234, 85, 50, 0.2) 0%, rgba(234, 85, 50, 0.2) 40%, rgba(234, 85, 50, 0) 40%, rgba(234, 85, 50, 0) 100%);
	display: inline;
}
#all_wrap .lp-voiceList > li span.editor {
	display: block;
	padding: 0;
	margin: 0;
	font-size: 10px;
	color: #727272;
}
/*-リザルト*/
#all_wrap .lp-voiceList > li .result {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 30px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp-voiceList > li .result span {
	position: relative;
}
#all_wrap .lp-voiceList > li .result span:first-of-type::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: none;
	border-top: 2px solid var(--main);
	border-right: 2px solid var(--main);
	position: absolute;
	top: 50%;
	right: -18px;
	transform: translate(0,-50%) rotate(45deg);
}
#all_wrap .lp-voiceList > li .result span:last-of-type {
	font-size: 24px;
	color: var(--main);
}
#all_wrap .lp-voiceList > li p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*動画*/
.lp-voiceList_right figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: center;
	overflow: hidden;
	aspect-ratio: 16/9;
}
.lp-voiceList_right figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.lp-voiceList_right figure iframe {
	width: 100%;
	height: 100%;
}
/*画像*/
#all_wrap .lp-voiceList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
	overflow: hidden;
	aspect-ratio: 1/1;
}
#all_wrap .lp-voiceList > li > figure::before {
	content: '';
	display: block;
	padding: 50%;
}
#all_wrap .lp-voiceList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-voice {
		width: 100%;
		padding: 30px 0;
	}
	/*リスト*/
	#all_wrap .lp-voiceList {
		width: calc(100% - 60px);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	#all_wrap .lp-voiceList::after {
		content: '';
		display: none;
	}
	#all_wrap .lp-voiceList > li {
		width: calc(100%);
		padding: 20px;
		border-radius: 10px;
		grid-row-gap: 10px;
	}
	#all_wrap .lp-voiceList > li.main {
		width: 100%;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	.lp-voiceList_left {
		width: calc(100%);
		grid-row-gap: 10px;
	}
	.lp-voiceList_right {
		width: calc(100%);
	}
	#all_wrap .lp-voiceList > li header {
		column-gap: 10px;
		width: 100%;
	}
	#all_wrap .lp-voiceList > li header > em {
		font-size: 18px;
	}
	#all_wrap .lp-voiceList > li h3 {
		width: 100%;
		font-size: 18px;
	}
	#all_wrap .lp-voiceList > li.main h3 {
		padding: 0;
	}
	/*動画*/
	.lp-voiceList_right figure {
		position: relative;
		bottom: unset;
		right: unset;
	}
	#all_wrap .lp-voiceList > li span.editor {
		font-size: 12px;
	}
}

/************************************************************/
/*　無料体験の流れ
/************************************************************/
#lp-flow {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#all_wrap .lp-flowList {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}
#all_wrap .lp-flowList > li {
	width: 100%;
	padding: 30px;
	margin: 0 auto 80px;
	position: relative;
	background: var(--base);
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 30px;
}
#all_wrap .lp-flowList > li::after {
	content: '';
	display: block;
	width: 50px;
	height: auto;
	aspect-ratio: 300/93;
	background-image: url('https://alesco.fit/wp-content/uploads/lp_arrow_bl.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position: absolute;
	bottom: -45px;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .lp-flowList > li:last-child {
	margin-bottom: 50px;
}
#all_wrap .lp-flowList > li:last-child::after {
	display: none;
}
/*-英字*/
#all_wrap .lp-flowList > li > em {
	display: inline-block;
	font-family: var(--font-en);
	text-align: center;
	font-style: normal;
	color: #d8cfcb;;
	line-height: 1;
	font-size: 12px;
	text-align: center;
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 2;
}
/*-画像*/
#all_wrap .lp-flowList > li > figure {
	width: 250px;
	min-width: 250px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .lp-flowList > li > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
#all_wrap .lp-flowList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .lp-flowList > li > figure > i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .lp-flowList > li > figure > i img {
	width: 100%;
	height: auto;
}
.lp-flowList_info {
	width: calc(100% - 30px - 250px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp-flowList_info > h3 {
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	border: none;
	background: none;
	font-size: 16px;
	line-height: 1.4em;
	color: var(--text);
}
#all_wrap .lp-flowList_info > .time {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	column-gap: 7px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	color: var(--main);
	position: relative;
	padding: 0;
	margin: 0 auto 10px;
}
#all_wrap .lp-flowList_info > .time::before {
	content: '';
	display: block;
	width: 20px;
	min-width: 20px;
	height: 20px;
	aspect-ratio: 1/1;
	background-image: url('https://alesco.fit/wp-content/uploads/icon_watch_bl.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .lp-flowList_info > p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	line-height: 1.7em;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-flow {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap .lp-flowList {
		width: calc(100% - 60px);
		max-width: 100%;
	}
	#all_wrap .lp-flowList > li {
		width: 100%;
		padding: 30px 20px 20px;
		margin: 0 auto 50px;
		column-gap: 0;
		grid-row-gap: 10px;
		flex-wrap: wrap;
	}
	#all_wrap .lp-flowList > li::after {
		bottom: -32px;
		left: 50%;
		transform: translate(-50%,0);
	}
	#all_wrap .lp-flowList > li:last-child {
		margin-bottom: 30px;
	}
	/*-英字*/
	#all_wrap .lp-flowList > li > em {
		font-size: 15.6px;
		font-weight: lighter;
		white-space: nowrap;
		top: -6px;
		left: 50%;
	}
	/*-画像*/
	#all_wrap .lp-flowList > li > figure {
		width: 100%;
		min-width: 100%;
	}
	#all_wrap .lp-flowList > li > figure.icon::before {
		content: '';
		display: block;
		padding-top: 80px;
	}
	#all_wrap .lp-flowList > li > figure > i {
		width: 80px;
		height: 80px;
		min-height: 80px;
	}
	#all_wrap .lp-flowList > li > figure > i img {
		width: auto;
		height: 100%;
	}
	.lp-flowList_info {
		width: calc(100%);
	}
	#all_wrap .lp-flowList_info > h3 {
		padding: 0;
		margin: 0 auto 15px;
		font-size: 19px;
	}
	#all_wrap .lp-flowList_info > .time {
		font-size: 14px;
	}
	#all_wrap .lp-flowList_info > p {
		font-size: 15px;
		line-height: 2em;
	}
}

/*お問い合わせボタン*/
#all_wrap .contactBtn {
	padding: 0;
	margin: 0 auto;
	text-align: center;
}
#all_wrap .contactBtn > p {
	font-size: 14px;
	line-height: 1.4em;
	text-align: center;
	padding: 0;
	margin: 0 auto 10px;
}
#all_wrap .contactBtn > a {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 5px;
	padding: 15px 100px;
	margin: 0 auto;
	background: var(--main);
	border-radius: 50px;
	position: relative;
	transition: var(--ease);
}
#all_wrap .contactBtn > a:hover {
	filter: brightness(1.2);
	transition: var(--ease);
}
#all_wrap .contactBtn > a::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: none;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(45deg);
}
#all_wrap .contactBtn > a em {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 15px;
	line-height: 1;
	color: #ffe200;
	font-style: normal;
}
#all_wrap .contactBtn > a span {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
	line-height: 1;
	color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*お問い合わせボタン*/
	#all_wrap .contactBtn > a {
		grid-row-gap: 5px;
		padding: 12px 40px;
		border-radius: 40px;
	}
	#all_wrap .contactBtn > a::after {
		width: 10px;
		height: 10px;
		top: 50%;
		right: 20px;
	}
	#all_wrap .contactBtn > a em {
		font-size: 12px;
	}
	#all_wrap .contactBtn > a span {
		font-size: 18px;
		white-space: nowrap;
	}
}

/************************************************************/
/*　よくあるご質問
/************************************************************/
#lp-faq {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
#all_wrap .lp-faqList {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
}
#all_wrap .lp-faqList dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: none;
	border-bottom: 1px solid #d3d3d3;
	position: relative;
}
#all_wrap .lp-faqList dt {
	width: 100%;
	padding: 30px 60px 30px 1.5em;
	margin: 0;
	font-size: 16px;
	position: relative;
	cursor: pointer;
	transition: var(--ease);
}
#all_wrap .lp-faqList dt:hover {
	color: var(--red);
	transition: var(--ease);
}
#all_wrap .lp-faqList dt::before {
	content: 'Q';
	display: inline-block;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 1;
	color: var(--main);
}
#all_wrap .lp-faqList dd {
	padding: 0 0 30px 1.5em;
	background: none;
	font-style: normal;
	font-feature-settings: "palt";
	position: relative;
	margin: 0;
	font-size: 15px;
}
#all_wrap .lp-faqList dd p {
	font-size: 15px;
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .lp-faqList dd p:last-of-type {
	margin-bottom: 0;
}
#all_wrap .lp-faqList dt span {
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
	transition: var(--ease);
}
#all_wrap .lp-faqList dt span::before,
#all_wrap .lp-faqList dt span::after {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: var(--main);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#all_wrap .lp-faqList dt span::after {
	transform: translate(-50%,-50%) rotate(90deg);
	transition: var(--ease);
}
#all_wrap .lp-faqList dt .active::after {
	transform: translate(-50%,-50%) rotate(0);
	transform-origin: center center;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-faq {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap .lp-faqList {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	#all_wrap .lp-faqList dl {
		width: 100%;
	}
	#all_wrap .lp-faqList dt {
		width: 100%;
		padding: 20px 50px 20px 1.5em;
		font-size: 14px;
	}
	#all_wrap .lp-faqList dt::before {
		top: 20px;
	}
	#all_wrap .lp-faqList dd {
		padding: 0 0 20px 0;
		font-size: 14px;
	}
	#all_wrap .lp-faqList dd p {
		font-size: 14px;
	}
	#all_wrap .lp-faqList dt span {
		display: block;
		width: 10px;
		height: 10px;
		top: 50%;
		right: 10px;
	}
	#all_wrap .lp-faqList dt span::before,
	#all_wrap .lp-faqList dt span::after {
		width: 10px;
		height: 1px;
	}
}

/************************************************************/
/*　代表メッセージ
/************************************************************/
#lp-message {
	width: 100%;
	padding: 100px 0 100px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
#all_wrap .lp-message_wrap {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	column-gap: 100px;
}
#all_wrap .lp-message_left {
	width: calc(100% - 100px - 400px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp-message_right {
	width: 400px;
	padding: 0;
	margin: 0;
	position: relative;
}
/*説明*/
#all_wrap .lp-message_left p {
	padding: 0;
	margin: 0 auto;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
/*画像*/
#all_wrap .lp-message_right figure {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
}
#all_wrap .lp-message_right figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#all_wrap .lp-message_right figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*名前*/
#all_wrap .lp-message_right > h3 {
	display: inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 10px;
	padding: 20px;
	margin: 0;
	background: #fff;
	border-radius: 10px;
	position: absolute;
	bottom: -40px;
	right: -20px;
	z-index: 5;
}
#all_wrap .lp-message_right > h3 span {
	display: inline-block;
	width: 100%;
	font-size: 15px;
	line-height: 1;
}
#all_wrap .lp-message_right > h3 strong {
	display: inline-block;
	font-size: 25px;
	line-height: 1;
}
#all_wrap .lp-message_right > h3 strong em {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	color: var(--main);
	margin-left: 15px;
	font-style: normal;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-message {
		width: 100%;
		padding: 30px 0;
	}
	#lp-message .lp-contHead {
		width: 100%;
	}
	#all_wrap .lp-message_wrap {
		width: calc(100%);
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 15px;
	}
	#all_wrap .lp-message_left {
		width: calc(100% - 60px);
		margin: 0 auto;
	}
	#all_wrap .lp-message_right {
		width: calc(100% - 60px);
		margin: 0 auto 0 0;
	}
	/*画像*/
	#all_wrap .lp-message_right figure {
		border-radius: 0 10px 10px 0;
	}
	/*名前*/
	#all_wrap .lp-message_right > h3 {
		column-gap: 15px;
		grid-row-gap: 10px;
		padding: 15px 0 15px 15px;
		border-radius: 10px 0 0 0;
		position: absolute;
		bottom: -15px;
		right: 0;
		z-index: 5;
	}
	#all_wrap .lp-message_right > h3 span {
		font-size: 12px;
		line-height: 1;
	}
	#all_wrap .lp-message_right > h3 strong {
		display: inline-block;
		font-size: 18px;
		line-height: 1;
	}
	#all_wrap .lp-message_right > h3 strong em {
		display: inline-block;
		font-size: 12px;
		margin-left: 15px;
	}
}

/************************************************************/
/*　トレーナー
/************************************************************/
#lp-trainers {
	width: 100%;
	padding: 100px 0 100px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
/*画像*/
#lp-trainers > figure {
	width: calc(50% - 75px);
	padding: 0;
	margin: 0 0 0 auto;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px 0 0 10px;
}
#lp-trainers > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
#lp-trainers > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
/*説明*/
.lp-trainers_info {
	width: 100%;
	max-width: 950px;
	padding: 0 475px 0 0;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}
#all_wrap .lp-trainers_info > p {
	padding: 0;
	margin: 0 auto 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
}
#all_wrap .lp-trainers_info > p:last-of-type {
	margin-bottom: 20px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-trainers {
		width: 100%;
		padding: 30px 0;
	}
	#lp-trainers .lp-contHead {
		width: 100%;
	}
	/*画像*/
	#lp-trainers > figure {
		width: calc(100% - 20px);
		padding: 0;
		margin: 0 0 0 auto;
		border-radius: 10px 0 0 10px;
	}
	/*説明*/
	.lp-trainers_info {
		width: calc(100% - 60px);
		max-width: 100%;
		padding: 0;
		margin: 0 auto 20px;
		position: relative;
		top: unset;
		left: unset;
		transform: unset;
		z-index: 5;
		order: 1;
	}
	#all_wrap .lp-trainers_info > p:last-of-type {
		margin-bottom: 20px;
	}
}

/************************************************************/
/*　店舗一覧
/************************************************************/
#lp-location {
	width: 100%;
	padding: 50px 0 100px;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
/*リスト*/
#all_wrap .lp-locationList {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
}
#all_wrap .lp-locationList > li {
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 30px;
	width: 100%;
	padding: 30px 0;
	margin: 0 auto;
	border-bottom: 1px solid #d3d3d3;
	position: relative;
}
#all_wrap .lp-locationList > li:first-child {
	padding-top: 0;
}
#all_wrap .lp-locationList > li > figure {
	width: 30%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	aspect-ratio: 1/0.65;
	border-radius: 5px;
}
#all_wrap .lp-locationList > li > figure::before {
	content: '';
	display: block;
	padding-top: 65%;
}
#all_wrap .lp-locationList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#all_wrap .lp-locationList > li > figure iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.lp-locationList_info {
	width: calc(100% - 30px - 30%);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp-locationList_info > h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	font-size: 20px;
	line-height: 1.2em;
	border: none;
	background: none;
}
#all_wrap .lp-locationList_info > dl {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 15px;
	grid-row-gap: 10px;
	position: relative;
}
#all_wrap .lp-locationList_info > dl dt {
	width: 80px;
	min-width: 80px;
	padding: 6px 8px;
	margin: 0;
	border-radius: 3px;
	background: #d8cfcb;
	font-size: 13px;
	line-height: 1;
	text-align: center;
}
#all_wrap .lp-locationList_info > dl dd {
	width: calc(100% - 15px - 80px);
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 13px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-location {
		width: 100%;
		padding: 30px 0;
	}
	/*リスト*/
	#all_wrap .lp-locationList {
		width: calc(100% - 60px);
		max-width: 100%;
	}
	#all_wrap .lp-locationList > li {
		flex-wrap:wrap;
		column-gap: 0;
		grid-row-gap: 15px;
		width: 100%;
		padding: 20px 0;
	}
	#all_wrap .lp-locationList > li > figure {
		width: 100%;
	}
	.lp-locationList_info {
		width: calc(100%);
	}
	#all_wrap .lp-locationList_info > h3 {
		margin: 0 auto 15px;
		font-size: 18px;
	}
	#all_wrap .lp-locationList_info > dl dd {
		line-height: 1.2em;
	}
}

/************************************************************/
/*　お知らせ
/************************************************************/
#lp-news {
	width: 100%;
	padding: 100px 0 100px;
	margin: 0 auto;
	background: #fff;
	position: relative;
}
.lp-news_wrap {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
}
.lp-news_ttl {
	width: calc(50% - 50px);
	padding: 0;
	margin: 0;
	position: relative;
}
.lp-news_info {
	width: calc(50%);
	padding: 0;
	margin: 0;
	position: relative;
}
/*リスト*/
.lp-newsList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	flex-direction: column;
	grid-row-gap: 30px;
}
.lp-newsList > li {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
.lp-newsList > li > figure {
	width: 100px;
	min-width: 100px;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.lp-newsList > li > figure::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.lp-newsList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.newsList_info {
	width: calc(100% - 20px - 100px);
	padding: 0 30px 0 0;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
.newsList_info::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: none;
	border-top: 1px solid #727070;
	border-right: 1px solid #727070;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%) rotate(45deg);
	transition: var(--ease);
}
.lp-newsList > li:hover .newsList_info::after {
	border-top: 1px solid var(--main);
	border-right: 1px solid var(--main);
	transform: translate(3px,-50%) rotate(45deg);
	transition: var(--ease);
}
#all_wrap .newsList_info .date {
	display: block;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: left;
	font-size: 10px;
	line-height: 1;
	color: var(--main);
}
.newsList_info h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	line-height: 1.5em;
	transition: var(--ease);
	font-weight: lighter;
	font-size: 11px;
}
.lp-newsList > li:hover .newsList_info h3 {
	color: var(--main);
	transition: var(--ease);
}
/*-タグ*/
#all_wrap .lp-newsList > li .tagList {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	column-gap: 5px;
	grid-row-gap: 5px;
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp-newsList > li .tagList .tags {
	display: inline-block;
	padding: 3px 7px 4px;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1;
	color: var(--text);
	border: 1px solid var(--text);
	border-radius: 16px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-news {
		width: 100%;
		padding: 30px 0;
	}
	#lp-news .lp-contHead {
		width: 100%;
		margin: 0 auto;
	}
	.lp-news_wrap {
		width: calc(100% - 60px);
		max-width: 100%;
		flex-wrap: wrap;
		grid-row-gap: 15px;
		column-gap: 0;
	}
	.lp-news_ttl {
		width: calc(100%);
	}
	.lp-news_info {
		width: calc(100%);
	}
	/*リスト*/
	.lp-newsList {
		width: 100%;
		grid-row-gap: 15px;
		margin: 0 auto 10px;
	}
	.lp-newsList > li {
		width: 100%;
		column-gap: 10px;
	}
	.newsList_info {
		width: calc(100% - 10px - 100px);
		padding: 0 25px 0 0;
		column-gap: 10px;
		grid-row-gap: 5px;
	}
	.newsList_info::after {
		content: '';
		display: block;
		width: 10px;
		height: 10px;
	}
	#all_wrap #lp-news .lp-btn.left {
		text-align: center;
		justify-content: center;
	}
	/*-タグ*/
	#all_wrap .lp-newsList > li .tagList {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		column-gap: 5px;
		grid-row-gap: 5px;
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
}

/************************************************************/
/*　コラム
/************************************************************/
#lp-column {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: var(--base);
	position: relative;
}
.lp-columnList {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
.lp-columnList.mb30 {
	margin-bottom: 30px;
}
.lp-columnList > li {
	width: calc(100% / 3 - 20px);
	padding: 0;
	margin: 0;
	position: relative;
}
.lp-columnList > li > figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.lp-columnList > li > figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.lp-columnList > li > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.columnList_info {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 10px;
	grid-row-gap: 10px;
}
#all_wrap .lp-columnList > li .date {
	display: inline-block;
	width: 100px;
	padding: 0;
	margin: 0;
	position: relative;
	text-align: left;
	font-size: 10px;
	line-height: 1;
	color: var(--main);
}
.lp-columnList > li h3 {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 13px;
	line-height: 2;
	font-weight: lighter;
	transition: var(--ease);
}
.lp-columnList > li:hover h3 {
	color: var(--main);
	transition: var(--ease);
}
/*-タグ*/
#all_wrap .lp-columnList > li .tagList {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 5px;
	grid-row-gap: 5px;
	width: calc(100% - 110px);
	padding: 0;
	margin: 0;
	position: relative;
}
#all_wrap .lp-columnList > li .tagList .tags {
	display: inline-block;
	padding: 3px 7px 4px;
	margin: 0;
	font-size: 0.8rem;
	line-height: 1;
	color: var(--text);
	border: 1px solid var(--text);
	border-radius: 16px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-column {
		width: 100%;
		padding: 30px 0;
	}
	#all_wrap #lp-column .lp-contHead > h2 {
		font-size: 22px;
	}
	.lp-columnList {
		width: calc(100% - 60px);
		max-width: 100%;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	.lp-columnList.mb30 {
		margin-bottom: 20px;
	}
	.lp-columnList > li {
		width: calc(100%);
		display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		column-gap: 10px;
	}
	.lp-columnList > li figure {
		width: 100px;
		min-width: 100px;
		padding: 0;
		margin: 0;
	}
	.lp-columnList > li figure::before {
		padding-top: 75%;
	}
	.columnList_info {
		width: calc(100% - 10px - 100px);
		padding: 0;
		margin: 0 auto;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
		column-gap: 10px;
		grid-row-gap: 5px;
	}
	#all_wrap .lp-columnList > li .date {
		display: block;
		width: 100%;
		font-size: 10px;
	}
	.lp-columnList > li h3 {
		width: 100%;
		padding: 0;
	}
	.lp-columnList > li:hover h3 {
		color: var(--main);
		transition: var(--ease);
	}
	/*-タグ*/
	#all_wrap .lp-columnList > li .tagList {
		display: inline-flex;
		justify-content: flex-start;
		width: calc(100%);
	}
}

/************************************************************/
/*　ナビゲーション
/************************************************************/
#lp-btmNav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
/*リスト*/
.lp-btmNavList {
	width: 100%;
	max-width: calc(950px + 60px);
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.lp-btmNavList > li {
	width: calc(100% / 3);
	padding: 0 30px 30px;
	margin: 0;
	position: relative;
	border-right: 1px solid #dedede;
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
.lp-btmNavList > li:last-child {
	border: none;
}
.lp-btmNavList > li figure {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 0 0 20px 20px;
}
.lp-btmNavList > li figure::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.lp-btmNavList > li figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.lp-btmNavList > li em {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
}
.lp-btmNavList > li h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 22px;
	line-height: 1.2em;
}
.lp-btmNavList > li > a {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	width: 100%;
	padding: 10px 20px 12px;
	margin: auto auto 0;
	position: relative;
	background: #fff;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	color: var(--text);
	border: 1px solid var(--text);
	border-radius: 35px;
	transition: var(--ease);
}
.lp-btmNavList > li > a::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: none;
	border-top: 1px solid var(--text);
	border-right: 1px solid var(--text);
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(45deg);
	transition: var(--ease);
}
.lp-btmNavList > li > a:hover {
	background: var(--main);
	color: #fff;
	border: 1px solid var(--main);
	transition: var(--ease);
}
.lp-btmNavList > li > a:hover::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-btmNav {
		width: 100%;
	}
	/*リスト*/
	.lp-btmNavList {
		width: calc(100%);
		max-width: 100%;
	}
	.lp-btmNavList > li {
		width: calc(100%);
		padding: 0 20px 20px;
		border: none;
		border-bottom: 1px solid #dedede;
	}
	.lp-btmNavList > li figure {
		width: 100%;
		padding: 0;
		margin: 0 auto 5px;
		border-radius: 0 0 20px 20px;
	}
	.lp-btmNavList > li em {
		font-size: 12px;
	}
	.lp-btmNavList > li h2 {
		margin: 0 auto 7px;
		font-size: 18px;
	}
}

/************************************************************/
/*　リンク
/************************************************************/
#lp-link {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	background: #111;
	position: relative;
	display: flex;
	justify-content: space-between;
}
.lp-link_left {
	width: 60%;
	padding: 100px 50px;
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.lp-link_info {
	display: inline-flex;
	flex-direction: column;
	grid-row-gap: 15px;
}
.lp-link_info > em {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	font-style: normal;
}
.lp-link_info > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	font-size: 30px;
	line-height: 2;
	color: #fff;
}
#all_wrap .lp-link_info > .btn a {
	border-radius: 35px;
	overflow: hidden;
	font-size: 13px;
}
/*-画像*/
#lp-link > figure {
	width: 40%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#lp-link > figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
}
#lp-link > figure span {
	display: block;
	width: fit-content;
	padding: 20px;
	margin: 0;
	background: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}
#lp-link > figure span > img {
	width: 100px;
	height: auto;
	position: relative;
	top: unset;
	left: unset;
	transform: unset;
	object-fit: unset;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-link {
		width: 100%;
		flex-wrap: wrap;
	}
	.lp-link_left {
		width: 100%;
		padding: 30px;
	}
	.lp-link_info {
		display: inline-flex;
		flex-direction: column;
		grid-row-gap: 10px;
	}
	.lp-link_info > em {
		display: block;
		width: 100%;
		font-size: 12px;
		line-height: 1;
		color: #fff;
		font-style: normal;
	}
	.lp-link_info > h2 {
		margin: 0 auto 10px;
		font-size: 20px;
		line-height: 1.4em;
	}
	.lp-link_info > .btn a {
		border-radius: 35px;
		overflow: hidden;
	}
	/*-画像*/
	#lp-link > figure {
		width: 100%;
	}
	#lp-link > figure::before {
		content: '';
		display: block;
		padding-top: 250px;
	}
}

/************************************************************/
/*　予約
/************************************************************/
#lp-reserve {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	background: #fff;
	position: relative;
	text-align: center;
}
#lp-reserve > i {
	display: block;
	width: 100px;
	height: auto;
	margin: 0 auto 5px;
}
#lp-reserve > h2 {
	width: 100%;
	padding: 0;
	margin: 0 auto 15px;
	font-size: 23px;
	line-height: 1.5em;
	color: var(--main);
	text-align: center;
}
#lp-reserve > a {
	display: inline-flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	column-gap: 10px;
	padding: 15px 100px;
	margin: 0 auto 10px;
	border: 1px solid var(--main);
	background: var(--main);
	border-radius: 50px;
	font-size: 13px;
	line-height: 1;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: var(--ease);
	position: relative;
}
#lp-reserve > a::after {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: none;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%) rotate(45deg);
	transition: var(--ease);
}
#lp-reserve > a:hover {
	color: var(--main);
	border: 1px solid var(--main);
	background: #fff;
	transition: var(--ease);
}
#lp-reserve > a:hover::after {
	border-top: 1px solid var(--main);
	border-right: 1px solid var(--main);
	transition: var(--ease);
}
#lp-reserve > small {
	display: block;
	text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#lp-reserve {
		width: 100%;
		padding: 30px;
	}
	#lp-reserve > i {
		margin: 0 auto 5px;
		display: none;
	}
	#lp-reserve > h2 {
		margin: 0 auto 10px;
		font-size: 20px;
	}
}

/************************************************************/
/*　フッター
/************************************************************/
#footerLP {
	width: 100%;
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
	background: var(--base);
}
.footer_wrap {
	width: 100%;
	max-width: 950px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	column-gap: 70px;
}
.footer_left {
	width: 200px;
	padding: 0;
	margin: 0;
	position: relative;
}
.footer_right {
	width: calc(100% - 70px - 200px);
	padding: 0;
	margin: 0;
	position: relative;
}
/*情報*/
.footer_left i {
	display: block;
	width: 100px;
	text-align: center;
	margin: 0 auto;
}
.footer_left i img {
	width: 100%;
	height: auto;
}
.footer_left h2 {
	padding: 0;
	margin: 0;
	text-align: center;
	line-height: 1.4em;
	font-size: 13px;
}
..footer_left h2 small {
	display: block;
	width: 100%;
	text-align: center;
}
/*メニュー*/
.lp-footerList {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	grid-row-gap: 30px;
}
.lp-footerList > li {
	width: calc(100% / 3 - 20px);
	padding: 0;
	margin: 0;
	position: relative;
	transition: var(--ease);
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
}
.lp-footerList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.lp-footerList > li > span {
	display: block;
	width: 100%;
	font-size: 11px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
}
#all_wrap .lp-footerList > li > p {
	display: block;
	width: 100%;
	font-size: 11px;
	line-height: 1;
	color: var(--text);
	padding: 0;
	margin: 0;
}
.lp-footerList > li:hover {
	opacity: 0.5;
	transition: var(--ease);
}
/*コピーライト*/
.copyright {
	display: block;
	width: 100%;
	margin: 50px auto 0;
	padding: 0;
	text-align: center;
	font-size: 10px;
	line-height: 1;
	font-style: normal;
	color: var(--text);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#footerLP {
		width: 100%;
		padding: 30px 0;
	}
	.footer_wrap {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 20px;
	}
	.footer_left {
		width: 100%;
		padding: 0 20px;
	}
	.footer_right {
		width: 100%;
		padding: 0 20px;
	}
	/*メニュー*/
	.lp-footerList {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
		list-style: none;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		column-gap: 20px;
		grid-row-gap: 20px;
	}
	.lp-footerList > li {
		width: calc(100% / 2 - 10px);
	}
	/*コピーライト*/
	.copyright {
		display: block;
		width: 100%;
		margin: 30px auto 0;
	}
}

/************************************************************/
/*　パネルメニュー
/************************************************************/
#headerLP #menuNavBox {
	width: 400px;
	height: 100%;
	padding: 100px 30px 30px;
	margin: 0;
	overflow-y: scroll;
	position: fixed;
	top: 0;
	left: unset;
	right: 0;
	z-index: 0;
	-ms-overflow-style: none;
	scrollbar-width: none;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
#headerLP #menuNavBox::before {
	content: '';
	display: block;
	width: 400px;
	height: 100%;
	background: var(--base);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	position: fixed;
	top: 0;
	left: unset;
	right: 0;
	z-index: -1;
	opacity: 0.98;
}
/*リスト*/
.lp-panelList {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
}
.lp-panelList > li {
	width: calc(50% - 10px);
	padding: 20px 0;
	margin: 0;
	background: none;
	position: relative;
	transition: var(--ease);
	display: flex;
	flex-direction: column;
	grid-row-gap: 5px;
	border-bottom: 1px solid #dedede;
}
.lp-panelList > li > a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.lp-panelList > li > span {
	display: block;
	width: 100%;
	font-size: 10px;
	line-height: 1;
	color: var(--main);
	font-style: normal;
}
#all_wrap .lp-panelList > li > p {
	display: block;
	width: 100%;
	font-size: 13px;
	line-height: 1;
	color: var(--text);
	padding: 0;
	margin: 0;
}
.lp-panelList > li:hover {
	opacity: 0.5;
	transition: var(--ease);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#headerLP #menuNavBox {
		width: 100vw;
		height: 100%;
		padding: 50px 30px 30px;
	}
	#headerLP #menuNavBox::before {
		content: '';
		display: block;
		width: 100vw;
		opacity: 0.9;
	}
	/*リスト*/
	.lp-panelList {
		column-gap: 20px;
	}
	.lp-panelList > li {
		width: calc(50% - 10px);
		padding: 20px 0;
	}

	#to_top {
		width: 30px;
		height: auto;
		display: block;
		padding: 0;
		margin: 0;
		position: fixed;
		bottom: 100px;
		right: 10px;
		z-index: 999;
	}
}


/************************************************************/
/*　お問い合わせページ
/************************************************************/
#lp01-contact {
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#lp01-contact > header {
	padding: 50px 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap #lp01-contact > header h2 {
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: none;
	background: none;
	font-size: 2em;
	line-height: 1.4em;
	text-align: center;
}
#all_wrap #lp01-contact > .main {
	width: 90%;
	max-width: 675px;
	margin: 0 auto;
}
#all_wrap .contact__table {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 40px;
	position: relative;
}
#all_wrap .contact__inner {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	grid-row-gap: 15px;
	position: relative;
}
#all_wrap .contact__inner dt {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 16px;
	font-weight: bold;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: baseline;
	column-gap: 10px;
}
#all_wrap .contact__inner dt .att {
	font-size: 14px;
	color: red;
	display: inline-block;
}
#all_wrap .contact__inner dd {
	padding: 0;
	margin: 0;
	position: relative;
	font-size: 14px;
	line-height: 1.5;
}
#all_wrap .contact__table input[type="text"],
#all_wrap .contact__table input[type="email"] {
	width: 100%;
	padding: 10px 0 10px 15px;
	box-sizing: border-box;
	border: 1px solid #333;
	font-size: 14px;
	color: #333;
}
#all_wrap .contact__table .wpcf7-radio {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	grid-row-gap: 10px;
	flex-direction: unset;
	padding: 0;
	margin: 0 auto;
	position: relative;
}
#all_wrap .contact__table .wpcf7-radio .wpcf7-list-item {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-weight: 400;
}

/*日付*/
.first-choice {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: none;
	border-radius: 5px;
	column-gap: 30px;
	grid-row-gap: 15px;
}
.second-choice {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: none;
	border-radius: 5px;
	column-gap: 30px;
	grid-row-gap: 15px;
}
.third-choice {
	width: 100%;
	padding: 0;
	margin: 0 auto 10px;
	position: relative;
	display: -webkit-flex;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: none;
	border-radius: 5px;
	column-gap: 30px;
	grid-row-gap: 15px;
}
#all_wrap .contact__table span.date {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0;
}
#all_wrap .contact__table span.time {
	display: inline-flex;
	display: -webkit-inline-flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 0;
	margin: 0;
}
#all_wrap .contact__table p.small {
	padding: 0;
	margin: 10px 0 0;
	font-size: 11px;
	line-height: 1.4em;
	font-weight: 400;
	color: #555;
}
#all_wrap .contact__table em {
	display: inline-block;
	width: 80px;
	padding: 0;
	margin: 0 15px 0 0;
	position: relative;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	color: #000;
	font-style: normal;
}
#all_wrap .contact__table .first-choice em::after {
	content: '*';
	display: block;
	font-size: 14px;
	line-height: 1;
	color: firebrick;
	position: absolute;
	top: 0;
	right: -0.5em;
}
#all_wrap .contact__table span.time .select_wrap select {
	width: 190px;
	height: 36px;
	line-height: 36px;
	padding: 8px 10px;
	margin: 0;
	background: #fff;
	border: 1px solid #cacaca;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	font-feature-settings: "palt";
	outline: none;
	text-align: left;
}
#all_wrap .contact__table input[type="date" i] {
	width: 190px;
	height: 36px;
	line-height: 36px;
	padding: 8px 10px;
	margin: 0;
	background: #fff;
	border: 1px solid #cacaca;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	font-feature-settings: "palt";
	outline: none;
	text-align: left;
}
#all_wrap .contact__table .contact__submit {
	margin-top: 30px;
	text-align: center;
}
#all_wrap .contact__table input[type="submit"] {
	background-color: #ed5d2a;
	color: #fff;
	font-size: 14px;
	padding: 20px 0;
	width: 250px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 30px;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	.first-choice {
		width: 100%;
		padding: 15px;
		background: #fafafa;
		justify-content: center;
	}
	.second-choice {
		width: 100%;
		padding: 15px;
		background: #fafafa;
		justify-content: center;
	}
	.third-choice {
		width: 100%;
		padding: 15px;
		background: #fafafa;
		justify-content: center;
	}
}


/************************************************************/
/*　料金スライダー
/************************************************************/

/*Flexslider*/
#all_wrap #slider {
	width: 100%;
	max-width: 800px;
	padding: 0;
	margin: 0 auto 50px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-row-gap: 2px;
}
#all_wrap .flex-viewport {
	width: 100%;
	padding: 0;
	margin: 0 auto 30px;
}
#all_wrap #slider .slides {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	z-index: 0;
}
#all_wrap #slider .slides li {
	width: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}
/*ボックス*/
#all_wrap .lp-price_box {
	width: calc(100% - 20px);
	padding: 0;
	margin: 0 auto;
	position: relative;
	border: 4px solid var(--main);
}
#all_wrap .lp-price_box > dt {
	border-bottom: 4px solid var(--main);
	font-size: 30px;
	font-weight: bold;
	font-weight: 700;
	width: 100%;
	padding: 20px 35px;
	margin: 0;
	color: var(--main);
}
#all_wrap .lp-price_box > dd {
	width: 100%;
	padding: 35px;
	margin: 0;
	display: flex;
	justify-content: space-between;
	column-gap: 50px;
	position: relative;
}
#all_wrap .lp-price_box > dd::after {
	content: '';
	display: block;
	width: 100%;
	height: 25px;
	padding: 0;
	margin: 0 auto;
	background-image: url('https://alesco.fit/wp-content/uploads/icon_plus.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
#all_wrap .lp-price_box > dd > div {
	width: calc(100% / 2 - 25px);
}
/*-料金詳細*/
.lp-price_info {
	padding: 20px 20px 10px;
	margin: 0;
	background: var(--orange);
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}
#all_wrap .lp-price_info > h3 {
	text-align: center;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: bold;
	background: #fff;
	border: none;
	width: 100%;
	padding: 10px;
	margin: 0 auto;
}
#all_wrap .lp-price_info > .times {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
	background: #fff;
}
#all_wrap .lp-price_info > .times > h4 {
	font-size: 16px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	padding: 12px 10px;
	margin: 0;
	position: relative;
	background: none;
	border: none;
}
#all_wrap .lp-price_info > .times > h4::after {
	content: '';
	display: block;
	width: calc(100% - 20px);
	height: 1px;
	border-bottom: 2px dashed var(--orange);
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translate(-50%,0);
}
#all_wrap .lp-price_info > .times > p {
	font-size: 14px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	padding: 12px 10px;
	margin: 0;
	position: relative;
	background: none;
	border: none;
}
#all_wrap .lp-price_info > .times > p b {
	font-family: var(--font-jp);
	font-size: 16px;
	color: var(--orange);
}
#all_wrap .lp-price_info > .lp-price_all {
	font-size: 30px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
#all_wrap .lp-price_info > .lp-price_all small {
	font-size: 0.6em;
}
/*入会金*/
#all_wrap .lp-price_entrance {
	padding: 20px 20px 10px;
	margin: 0;
	background: #fff;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	grid-row-gap: 15px;
}
#all_wrap .lp-price_entrance > em {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	background: var(--orange);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	min-width: 60px;
	aspect-ratio: 1/1;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-align: center;
	font-style: normal;
}
#all_wrap .lp-price_entrance > p {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	line-height: 1.5em;
}
#all_wrap .lp-price_entrance > p.lp-entrance_all {
	font-size: 30px;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	color: var(--text);
}
#all_wrap .lp-price_entrance > p.lp-entrance_all small {
	font-size: 0.6em;
}

/*ナビゲーション*/
#all_wrap .flex-direction-nav {
	width: calc(100% + 120px);
	padding: 0;
	margin: 0 auto;
	position: relative;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#all_wrap .flex-direction-nav > li {
	display: block;
	width: 50px;
	height: 50px;
	padding: 0;
	margin: 0;
}
#all_wrap .flex-direction-nav > li > a {
	display: flex;
	justify-content:center;
	align-content: center;
	align-items: center;
	background: var(--text);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	position: relative;
	top: unset;
	left: unset;
	right: unset;
	padding: 0;
	margin: 0;
	text-shadow: none;
}
#all_wrap .flex-direction-nav > li > a::before {
	content: '';
	display: block;
	width: 23px;
	height: auto;
	aspect-ratio: 23 / 11;
	background-image: url('https://alesco.fit/wp-content/uploads/arrow.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
}
#all_wrap .flex-direction-nav > li:last-child > a::before {
	transform: scale(-1,1);
}
/*リスト*/
#all_wrap .flex-control-nav {
	width: 100%;
	padding: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	column-gap: 10px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 5;
}
#all_wrap .flex-control-nav > li {
	padding: 0;
	margin: 0;
}

/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	/*Flexslider*/
	#all_wrap #slider {
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin: 0 auto 30px;
		grid-row-gap: 2px;
	}
	#all_wrap .flex-viewport {
		width: 100%;
		padding: 0;
		margin: 0 auto 30px;
	}
	/*ボックス*/
	#all_wrap .lp-price_box {
		width: calc(100% - 20px);
		border: 3px solid var(--main);
	}
	#all_wrap .lp-price_box > dt {
		border-bottom: 3px solid var(--main);
		font-size: 20px;
		padding: 10px 20px;
	}
	#all_wrap .lp-price_box > dd {
		width: 100%;
		padding: 20px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 0;
		grid-row-gap: 10px;
	}
	#all_wrap .lp-price_box > dd::after {
		background-size: auto 25px;
		position: relative;
		top: unset;
		left: unset;
		transform: unset;
		z-index: -1;
		order: 2;
	}
	#all_wrap .lp-price_box > dd > div {
		width: calc(100%);
	}
	/*-料金詳細*/
	.lp-price_info {
		padding: 20px 20px 10px;
		grid-row-gap: 10px;
		order: 1;
	}
	#all_wrap .lp-price_info > h3 {
		font-size: 14px;
		padding: 10px;
	}
	#all_wrap .lp-price_info > .times > h4 {
		font-size: 14px;
		padding: 10px 10px;
		margin: 0;
	}
	#all_wrap .lp-price_info > .times > p {
		font-size: 14px;
		padding: 10px 10px;
	}
	#all_wrap .lp-price_info > .times > p b {
		font-size: 14px;
	}
	#all_wrap .lp-price_info > .lp-price_all {
		font-size: 25px;
	}
	#all_wrap .lp-price_info > .lp-price_all small {
		font-size: 0.6em;
	}
	/*入会金*/
	#all_wrap .lp-price_entrance {
		padding: 20px 20px 10px;
		grid-row-gap: 10px;
		order: 3;
	}
	#all_wrap .lp-price_entrance > p {
		font-size: 14px;
	}
	#all_wrap .lp-price_entrance > p.lp-entrance_all {
		font-size: 20px;
	}
	/*ナビゲーション*/
	#all_wrap .flex-direction-nav {
		width: calc(100% + 10px);
		top: calc(50% + 12px);
	}
	#all_wrap .flex-direction-nav > li {
		display: block;
		width: 30px;
		height: 30px;
	}
	#all_wrap .flex-direction-nav > li > a::before {
		width: 13px;
	}
}