@charset "utf-8";
/* CSS関数設定 */
:root {
	/* カラーパレット --color-  */
	--c-white: #FFFFFF;
	--c-white-op50: rgba(255, 255, 255, 0.5);
	--c-white-op90: rgba(255, 255, 255, 0.9);
	--c-black: #231815;
	--c-black-op50: rgba(0, 0, 0, 0.5);

	--c-gray-100: #F7F6F4;
	--c-gray-200: #D1D1D1;
	--c-gray-300: #A7A7A7;
	--c-bg-gray: #F7F6F4;
	--c-ft-bg: #E8E6E2;

	--c-pink: #F71E61;
	--c-ornage: #FF8F0D;
	--c-blue: #2D3CF4;
	--c-purple: #EA40CF;

	--c-chart-blue: #3945C9;
	--c-chart-green: #44CB92;
	--c-chart-yellow: #CBAF3C;
	--c-chart-red: #CB5531;
	--c-chart-purple: #893BCC;

	--c-review-red: var(--c-pink);
	--c-review-blue: var(--c-blue);
	--c-review-purple: var(--c-purple);
	--c-review-orange: #F2B21F;
	--c-review-green: #6CD83B;
	--c-review-yellow: #D9CB1D;

	/* カラーテーマ --color-theme- */
	--theme-c-main: var(--c-pink);

	/* テキストカラー --text-color- */
	--txt-c-base: #101010;
	--txt-c-black: var(--c-black);
	--txt-c-white: var(--c-white);
	--txt-c-addon: var(--c-gray-300);
	--txt-c-emphasis: var(--c-red-500);

	/* ボーダーカラー --border-color- */
	--bd-c-gray: var(--c-gray-200);

	/* 背景カラー --background-color- */
	--bg-c-gray: var(--c-gray-100);

	/* ランキングカラー --ranking-color */
	--ranking-c-1st: #BA9700;
	--ranking-c-2nd: #A7A7A7;
	--ranking-c-3rd: #B75400;
	--ranking-c-other: #002C1B;

	/* 共通角丸 --border-radius- */
	--bdrs-sm: 5px;
	--bdrs-md: 10px;
	--bdrs-lg: 20px;

	/* 共通ボックス影 --box-shadow- */
	--bxsd-default: 0px 0px 15px -5px var(--bg-c-gray);
	--bxsd-bottom: 0px 5px 15px -5px var(--bg-c-gray);

	/* ベース文字間隔 --letter-spacing */
	--ls-default: 0.1em;

	/* フォント --font-family- */
	--ff-base: "Noto Sans JP", sans-serif;
	--ff-noto: "Noto Sans JP", serif;

	/* 英数字フォント --font-family- */
	--ff-en: var(--ff-base);
	--ff-num: var(--ff-base);

	/* フォントウェイト --font-weight- */
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-bold: 700;
	--fw-base: var(--fw-regular);
	
	/* アニメーション */
	--anime-fade-in: fadeIn .5s ease-in-out 0s forwards;
	--anime-fade-out: fadeOut .5s ease-in-out 0s forwards;

	/* フォントサイズ --font-size */
	--fz-9: clamp(8px, 0.8vw, 9px);
	--fz-10: clamp(8px, 0.8vw, 10px);
	--fz-11: clamp(10px, 1.1vw, 11px);
	--fz-12: clamp(10px, 1.1vw, 12px);
	--fz-13: clamp(11px, 1vw, 13px);
	--fz-14: clamp(12px, 1.2vw, 14px);
	--fz-15: clamp(13px, 1.4vw, 15px);
	--fz-16: clamp(14px, 1.5vw, 16px);
	--fz-18: clamp(15px, 1.6vw, 18px);
	--fz-20: clamp(16px, 1.8vw, 20px);
	--fz-22: clamp(18px, 2vw, 22px);
	--fz-24: clamp(20px, 2vw, 24px);
	--fz-25: clamp(20px, 2vw, 25px);
	--fz-27: clamp(21px, 2.5vw, 27px);
	--fz-28: clamp(22px, 2.5vw, 28px);
	--fz-30: clamp(25px, 3vw, 30px);
	--fz-35: clamp(25px, 3vw, 35px);
	--fz-36: clamp(26px, 3vw, 36px);
	--fz-38: clamp(30px, 3.5vw, 38px);
	--fz-40: clamp(30px, 3.5vw, 40px);
	--fz-43: clamp(30px, 4vw, 43px);
	--fz-50: clamp(30px, 4vw, 50px);
	--fz-60: clamp(40px, 5vw, 60px);
	--fz-70: clamp(50px, 6vw, 70px);
	--fz-14-const: 14px;
	--fz-15-const: 15px;

	--fz-xs: var(--fz-10); /* extra small */
	--fz-ss: var(--fz-12); /* super small */
	--fz-sm: var(--fz-14); /* small */
	--fz-md: var(--fz-16); /* medium */
	--fz-lg: var(--fz-25); /* large */
	--fz-xl: var(--fz-38); /* extra large */
	--fz-xxl: var(--fz-50); /* double extra large */

	/* ブロック間 --space */
	--spc-10: clamp( 5px, 1.1vw, 10px);
	--spc-15: clamp( 10px, 1.2vw, 15px);
	--spc-20: clamp( 15px, 1.7vw, 20px);
	--spc-25: clamp( 15px, 1.7vw, 25px);
	--spc-35: clamp( 20px, 2.5vw, 35px);
	--spc-30: clamp( 20px, 2.5vw, 30px);
	--spc-40: clamp( 30px, 3.5vw, 40px);
	--spc-50: clamp( 30px, 3.5vw, 50px);
	--spc-60: clamp( 40px, 4.5vw, 60px);
	--spc-65: clamp( 50px, 5.5vw, 65px);
	--spc-75: clamp( 60px, 6.5vw, 75px);
	--spc-80: clamp( 50px, 5.5vw, 80px);
	--spc-90: clamp( 60px, 6.5vw, 90px);
	--spc-100: clamp( 70px, 7.5vw, 100px);

	--spc-xs: var(--spc-10); /* extra small */
	--spc-ss: var(--spc-15); /* super small */
	--spc-sm: var(--spc-20); /* small */
	--spc-md: var(--spc-30); /* medium */
	--spc-lg: var(--spc-50); /* large */
	--spc-xl: var(--spc-80); /* extra large */
	--spc-xxl: var(--spc-100); /* double extra large */


	/* PCマックス幅 --pc-max-width */
	--pc-maw: var(--pc-maw-md);
	--pc-maw-ss: 950px;
	--pc-maw-sm: 1110px;
	--pc-maw-md: 1200px;
	--pc-maw-lg: 1440px;

	/* 親要素を超えて幅100% */
	--full-width: calc(50% - 50vw);

	/* セクション間隔半分 --section-space */
	--sec-spc-half: calc(var(--sec-spc) / 2);

	/* sp横スクロール用padding */
	--sp-scroll-padding-left: calc((100% - var(--inner-w)) / 2);
}

@media screen and (min-width: 768px){
	:root{
		/* --inner-width */
		--inner-w: 95%;
		/* --section-space */
		--sec-spc: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
		--inner-w: 87.201%;
		--sec-spc: 50px;
	}
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--fw-base);font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: inherit;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
i, em {
	font-style: normal;
}
body{
	font-family: var(--ff-base);
	font-weight: var(--fw-base);
	font-feature-settings: "palt" 1;
	letter-spacing: var(--ls-default);
	width:100%;
	color: var(--txt-c-base);
	position:relative;
	z-index: 0;
	overflow-x: clip;
	background-color: var(--c-white);
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--txt-c-base);
}
a img,a{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
}
img{
	height: auto;
	max-width: 100%;
	box-sizing: unset;
	vertical-align: bottom;
}
iframe{
	vertical-align: bottom;
}
.formReset button,
.formReset input[type="button"],
.formReset input[type="submit"],
.formReset input[type="text"],
.formReset input[type="image"],
.formReset select{
	background-color: unset;
	color: var(--txt-c-base);
	-webkit-appearance: none;
	border-radius: 0;
	border: none;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
	font-family: var(--ff-base);
}
.formReset input[type="text"]{
	color: var(--txt-c-base);
}
.formReset input[type="text"]::placeholder{
	color: var(--txt-c-addon);
}
time{
	font-family: var(--ff-noto);
}
/* フォントCSS */
.ff-mincho{
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* セクション間隔*/
.g-mgt{
	margin-top: var(--sec-spc);
}
.g-mgb{
	margin-bottom: var(--sec-spc);
}
.g-pd{
	padding-block: var(--sec-spc);
}
.g-pdt{
	padding-top: var(--sec-spc);
}
.g-pdb{
	padding-bottom: var(--sec-spc);
}
.g-mgt--half{
	margin-top: var(--sec-spc-half);
}
.g-mgb--half{
	margin-bottom: var(--sec-spc-half);
}
.g-pd--half{
	padding-block: var(--sec-spc-half);
}
.g-pdt--half{
	padding-top: var(--sec-spc-half);
}
.g-pdb--half{
	padding-bottom: var(--sec-spc-half);
}
/* グリッド */
.grid {
	display: grid;
	grid-template-columns: repeat(var(--grid-cols, 1), minmax(var(--grid-min-size, 0), 1fr));
	gap: var(--grid-gap, 0);
}
@media screen and (min-width: 768px){
	.grid{
		--grid-cols: var(--grid-cols-pc, 1);
		--grid-gap: var(--grid-gap-pc, 0);
	}
}
@media screen and (max-width: 767px){
	.grid{
		--grid-cols: var(--grid-cols-sp, 1);
		--grid-gap: var(--grid-gap-sp, 0);
	}
}
/* スライダー読み込みまで非表示 */
.slick{
	opacity: 0;
	transition: opacity .3s linear;
}
.slick.slick-initialized{
	opacity: 1;
}
.swiper{
	overflow: hidden;
  opacity: 0;
	transition: opacity .3s linear;
}
.swiper.swiper-initialized{
	opacity: 1;
}
/* 縦書き */
.tategaki{
	writing-mode: vertical-rl;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
	letter-spacing: var(--ls-default);
}
/* テキスト行間文字間 */
[class*="txt"]{
	letter-spacing: var(--ls-default);
}
/* スクロールバー消す */
.noscrollbar,
.noscrollbar{
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
}
.noscrollbar::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar{/* Chrome, Safari 対応 */
	display: none;
}
/* youtube */
.youtubeContainer iframe {
  display: block;
  width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
/* 改行用 */
.dib{
	display: inline-block;
}
/* 非表示 */
.displaynone{
	display: none;
}
/* 親要素超えて幅100% */
.full-width{
	width: 100vw;
	--oya: calc(50% - 50vw);;
	margin-left: var(--oya);
	margin-right: var(--oya);
}
@media (hover: hover){
	.formReset button:hover,
	.formReset input[type="button"]:hover,
	.formReset input[type="submit"]:hover,
	.formReset input[type="image"]:hover,
	.formReset select:hover{
		cursor: pointer;
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
}
html.no-smooth-scroll {
	scroll-behavior: auto;
}
.g-inner,
.g-inner--l,
.g-inner--m,
.g-inner--s,
.g-inner--ss{
	width: var(--inner-w);
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	html{
		scroll-padding-top: 120px;
	}
	body{
		font-size: var(--fz-15-const);
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.g-inner--pc{
		width: var(--inner-w);
		margin-inline: auto;
	}
	.g-inner,
	.g-inner--m,
	.g-inner--pc{
		max-width: var(--pc-maw-md);
	}
	.g-inner--l{
		max-width: var(--pc-maw-lg);
	}
	.g-inner--s{
		max-width: var(--pc-maw-sm);
	}
	.g-inner--ss{
		max-width: var(--pc-maw-ss);
	}
	.g-inner--pcHasSlickGap{
		--inner-adjust: calc(var(--slick-gap) * 2);
		width: calc(var(--inner-w) + var(--inner-adjust));
		max-width: calc(var(--pc-maw-md) + var(--inner-adjust));
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--sec-spc-half);
	}
	.sp{
		display: none !important;
	}
	.tategaki--pc{
		writing-mode: vertical-rl;
	}
	/* pc順番付与 */
	.orderPc-1st { order: 1; }
	.orderPc-2nd { order: 2; }
	.orderPc-3rd { order: 3; }
	.orderPc-4th { order: 4; }
	.orderPc-5th { order: 5; }
	.orderPc-6th { order: 6; }
	.orderPc-7th { order: 7; }
	.orderPc-8th { order: 8; }
	.orderPc-9th { order: 9; }
	.orderPc-10th { order: 10; }
	.orderPc-11th { order: 11; }
	.orderPc-12th { order: 12; }
	.orderPc-13th { order: 13; }
	.orderPc-14th { order: 14; }
	.orderPc-15th { order: 15; }
	.orderPc-16th { order: 16; }
	.orderPc-17th { order: 17; }
	.orderPc-18th { order: 18; }
	.orderPc-19th { order: 19; }
	.orderPc-20th { order: 20; }
	.orderPc-21th { order: 21; }
	.orderPc-22th { order: 22; }
	.orderPc-23th { order: 23; }
	.orderPc-24th { order: 24; }
	.orderPc-25th { order: 25; }
	.orderPc-26th { order: 26; }
	.orderPc-27th { order: 27; }
	.orderPc-28th { order: 28; }
	.orderPc-29th { order: 29; }
	.orderPc-30th { order: 30; }
	.orderPc-31th { order: 31; }
	.orderPc-32th { order: 32; }
	.orderPc-33th { order: 33; }
	.orderPc-34th { order: 34; }
	.orderPc-35th { order: 35; }
	.orderPc-36th { order: 36; }
	.orderPc-37th { order: 37; }
	.orderPc-38th { order: 38; }
	.orderPc-39th { order: 39; }
	.orderPc-40th { order: 40; }
}
@media screen and (max-width: 767px){
	html{
		scroll-padding-top: 50px;
	}
	body{
		font-size: var(--fz-14-const);
		line-height: 1.6;
	}
	.g-inner--sp{
		width: var(--inner-w);
		margin-inline: auto;
	}
	.g-pd--halfPcOnly{
		padding-block: var(--sec-spc);
	}
	.pc{
		display: none !important;
	}
	.sp-scroll--y{
		overflow-y: scroll;
		overflow-x: auto;
	}
	.sp-scroll--x{
		overflow-x: scroll;
		overflow-y: auto;
		padding-inline: calc((100% - var(--inner-w)) / 2);
	}
	.tategaki--sp{
		writing-mode: vertical-rl;
	}
	.formReset input[type="text"],
	.formReset input[type="text"]::placeholder{
		font-size: 16px;
	}
}
/** 吹き出し **/
.g-balloon-solid {
	position: relative;
	color: #FFF;
	line-height: 1.44;
	width: fit-content;
	letter-spacing: 0.1em;
	text-align: center;
}
.g-balloon-solid::after {
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	border-style: solid;
	border-radius: 10px;
	transform: rotate(225deg);
	content: '';
}
@media screen and (min-width: 768px){
	.g-balloon-solid::after {
		right: calc(50% - 25px);
		top: calc(100% - 25px);
		border-width: 20px;
	}
}
@media screen and (max-width: 767px){
	.g-balloon-solid::after {
		right: calc(50% - 20px);
		top: calc(100% - 15px);
		border-width: 12px;
	}
}
.g-balloon-solid.__bg__red {
	background-color: var(--theme-c-main);
}
.g-balloon-solid.__bg__red::after {
	border-color: var(--theme-c-main) transparent transparent transparent;
}
.g-balloon-border {
	position: relative;
	color: var(--c-black);
	line-height: 1.44;
	width: fit-content;
	letter-spacing: 0.1em;
	text-align: center;
	border: 3px solid var(--theme-c-main);
	background-color: var(--c-white);
}
.g-balloon-border::before {
	display: block;
	width: 17px;
	height: 17px;
	position: absolute;
	top: 100%;
	left: calc(50% - 8.5px);
	background-color: var(--theme-c-main);
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	content: '';
}
.g-balloon-border::after {
	display: block;
	width: 11px;
	height: 11px;
	position: absolute;
	top: calc(100% - 1.5px);
	left: calc(50% - 5.5px);
	background-color: var(--c-white);
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	content: '';
}
.g-color_main {
	color: var(--theme-c-main);
}
.g-color_black {
	color: var(--txt-c-black);
}
.g-bg_gray {
	background-color: var(--bg-c-gray);
}
.g-align_center {
	text-align: center;
}
.g-align_right {
	text-align: right;
}
.g-fw_bold {
	font-weight: var(--fw-bold);
}
.g-cta__btn {
	background-color: var(--c-ornage);
	color: var(--c-white);
}
@media screen and (min-width: 768px){
	.g-cta__btn {
		height: 80px;
		border-radius: 40px;
	}
}
@media screen and (max-width: 767px){
	.g-cta__btn {
		height: 60px;
		border-radius: 30px;
	}
}
.g-cta__btn.btn_center {
	margin-inline: auto;
}
.g-cta__btn__link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
	color: inherit;
}
.g-cta__btn__txt {
	font-weight: 900;
	letter-spacing: 0.02em;
}
@media screen and (min-width: 768px){
	.g-cta__btn__txt {
		font-size: 20px;
	}
}
@media screen and (max-width: 767px){
	.g-cta__btn__txt {
		font-size: 18px;
	}
}
.g-cta__btn__arw {
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 25px;
	top: calc(50% - 5px);
	border-right: 2px solid var(--c-white);
	border-bottom: 2px solid var(--c-white);
	transform: rotate(-45deg);
	transition: all ease .5s;
	content: '';
}
@media (hover: hover){
	.g-cta__btn__link:hover {
		opacity: 1.0;
	}
	.g-cta__btn__link:hover .g-cta__btn__arw {
		right: 15px;
	}
}
/* ■■■■■■■■■■■■■■■■■■■■■■header■■■■■■■■■■■■■■■■■■■■■■ */
#headerarea {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	background-color: var(--c-white-op90);
}
.hd-container {
	width: 100%;
	display: flex;
	align-items: center;
}
@media screen and (min-width: 1024px){
	.hd-container {
		height: 100px;
		padding-right: 18%;
	}	
}
@media screen and (max-width: 1023px){
	.hd-container {
		height: 60px;
		justify-content: center;
	}
}
.hd-logo {
	flex-shrink: 0;
}
@media screen and (min-width: 1024px){
	.hd-logo {
		flex-basis: 25%;
	}
}
@media screen and (max-width: 1023px){
	.hd-logo {
		flex-basis: 186px;
	}
}
.hd-logo__large {
	display: block;
	width: 100%;
}
@media screen and (min-width: 1024px){
	.hd-logo__large {
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 1023px){
	.hd-logo__large {
		margin-bottom: 6px;
	}
}
.hd-logo__small {
	display: block;
	font-size: 11px;
	letter-spacing: 0.1em;
	line-height: 1.0;
}
@media screen and (max-width: 1023px){
	.hd-logo__small {
		text-align: center;
	}
}

@media screen and (min-width: 1024px){
	.hd-cta__btn {
		width: 18%;
		max-width: 250px;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 1;
		height: 100%;
		background-color: var(--c-ornage);
	}
}
@media screen and (max-width: 1023px){
	.hd-cta__btn {
		display: none;
	}
}
.hd-cta__btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		color: var(--c-white);
		font-weight: 700;
}

@media screen and (min-width: 1024px){
	.hd-nav {
		flex-grow: 1;
		display: flex;
		height: 100%;
		align-items: center;
		justify-content: flex-end;
		column-gap: 20px;
	}
}
@media screen and (max-width: 1023px){
	.hd-nav {		display: none;
	}
}
@media (hover: hover) {
	.hd-nav__menu:hover {
		opacity: 0.5;
	}
}
.hd-nav__menu__arw, .hd-nav__menu__txt {
	display: inline-block;
	vertical-align: middle;
}
.hd-nav__menu__arw {
	width: 14px;
	height: 14px;
	background-color: var(--theme-c-main);
	border-radius: 50%;
	position: relative;
	margin-right: 4px;
}
.hd-nav__menu__arw::before {
	display: block;
	width: 4px;
	height: 4px;
	position: absolute;
	left: calc(50% - 3.5px);
	top: calc(50% - 2px);
	border-right: 1px solid var(--c-white);
	border-bottom: 1px solid var(--c-white);
	transform: rotate(-45deg);
	content: '';
}
.hd-nav__menu__txt {
	font-weight: 700;
	font-size: clamp(14px,1.25vw, 16px);
}
/* ■■■■■■■■■■■■■■■■■■■■■■footer■■■■■■■■■■■■■■■■■■■■■■ */
#footerarea {
	background-color: var(--c-ft-bg);
}
@media screen and (min-width: 768px){
	.ft-conainer {
		padding-top: 80px;
		padding-bottom: 100px;
	}
}
@media screen and (max-width: 767px){
	.ft-conainer {
		padding-top: 43px;
		padding-bottom: 27px;
	}
}
.ft-conainer__wrap {
	display: flex;
}
@media screen and (min-width: 768px){
	.ft-conainer__wrap {
		justify-content: space-between;
		align-items: center;
		margin-bottom: 16px;
	}
}
@media screen and (max-width: 767px){
	.ft-conainer__wrap {
		flex-wrap: wrap;
		row-gap: 40px;
		justify-content: center;
		margin-bottom: 50px;
	}
}
@media screen and (min-width: 768px){
	.ft-contact {
		flex-basis: 40%;
		min-width: 325px;
	}
}
@media screen and (max-width: 767px){
	.ft-contact {
		flex-basis: 100%;
	}
}
.ft-contact__ttl {
	font-weight: 700;
	width: max-content;
	margin-inline: auto;
	position: relative;
	line-height: 1.7;
}
@media screen and (min-width: 768px){
	.ft-contact__ttl {
		font-size: 30px;
		margin-bottom: 56px;
	}
}
@media screen and (max-width: 767px){
	.ft-contact__ttl {
		font-size: 20px;
		margin-bottom: 30px;
	}
}
.ft-contact__ttl::after {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--c-black);
	position: absolute;
	left: 0;
	top: 100%;
	content: '';
}
.ft-contac__txt {
	font-weight: 800;
}
@media screen and (min-width: 768px){
	.ft-contac__txt {
		font-size: var(--fz-20);
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.ft-contac__txt {
		font-size: 20px;
		margin-bottom: 30px;
	}
}
@media screen and (min-width: 768px){
	.ft-contact .g-cta__btn {
		width: 100%;
		max-width: 400px;
	}
}
@media screen and (max-width: 767px){
	.ft-contact .g-cta__btn {
		width: 100%;
		max-width: 300px;
	}
}
@media screen and (min-width: 768px){
	.ft-contact__sign {
		width: 40%;
		min-width: 325px;
	}
}
.ft-contact__sign__p {
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	width: fit-content;
	margin-inline: auto;
	position: relative;
}
.ft-contact__sign__p::after {
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--c-black);
	position: absolute;
	left: 0;
	top: 100%;
	content: '';
}
.ft-contact__sign__arw {
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: var(--c-black);
	border-radius: 50%;
	position: relative;
	margin-left: 4px;
}
.ft-contact__sign__arw::before {
	display: block;
	width: 3px;
	height: 3px;
	position: absolute;
	top: calc(50% - 2px);
	left: calc(50% - 2.5px);
	border-right: 1px solid var(--c-white);
	border-bottom: 1px solid var(--c-white);
	transform: rotate(-45deg);
	content: '';
}
@media (hover: hover) {
	.ft-contact__sign__p:hover {
		opacity: 0.5;
	}
}
@media screen and (min-width: 768px){
	.ft-logo {
		flex-basis: 51%;
	}
}
@media screen and (max-width: 767px){
	.ft-logo {
		flex-basis: 100%;
		max-width: 560px;
	}
}
.ft-copyright {
	background-color: var(--c-black);
	color: var(--c-white);
}
@media screen and (min-width: 768px){
	.ft-copyright {
		font-size: 14px;
		line-height: 20px;
		padding-block: 25px;
	}
}
@media screen and (max-width: 767px){
	.ft-copyright {
		font-size: 12px;
		line-height: 20px;
		padding-top: 25px;
		padding-bottom: 80px;
	}
}
/* SP 追従ボタン */
.fixed-cta {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
	width: 100%;
	padding-block: 10px;
	background-color: var(--c-white);
}
.fixed-cta .g-cta__btn {
	width: 300px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■ MV ■■■■■■■■■■■■■■■■■■■■■■ */
.mv {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
@media screen and (min-width: 768px){
	.mv-inner{
		width: var(--inner-w);
		max-width: var(--pc-maw-md);
		margin-inline: auto;
	}
}
@media screen and (max-width: 767px){
	.mv-inner{
		width: 100%;
		padding-top: 60px;
		position: relative;
		z-index: 2;
	}
}
@media screen and (min-width: 768px){
	.mv-container {
		width: 45%;
		min-width: 360px;
		padding-top: 120px;
		padding-bottom: 48px;
	}
}
@media screen and (max-width: 767px){
	.mv-container {
		width: 100%;
		text-align: center;
	}
}
@media screen and (min-width: 768px){
	.mv-catch {
		margin-bottom: 17px;
	}
}
@media screen and (max-width: 767px){
	.mv-catch {
		background-color: var(--c-white-op90);
		margin-bottom: 60vw;
		padding-bottom: 6px;
	}
}
.mv-catch__lead {
	display: flex;
	align-items: center;
	column-gap: 10px;
}
@media screen and (min-width: 768px){
	.mv-catch__lead {
		margin-bottom: var(--spc-25);
	}
}
@media screen and (max-width: 767px){
	.mv-catch__lead {
		justify-content: center;
		margin-bottom: var(--spc-10);
	}
}
@media screen and (min-width: 768px){
	.mv-catch__logo {
		width: 38%;
	}
}
@media screen and (max-width: 767px){
	.mv-catch__logo {
		width: 140px;
	}
}
.mv-catch__txt {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.mv-catch__txt {
		font-size: var(--fz-20);
	}
}
@media screen and (max-width: 767px){
	.mv-catch__txt {
		font-size: var(--fz-15);
	}
}
.mv-catch__balloon {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.mv-catch__balloon {
		font-size: var(--fz-27);
		padding-block: 12px;
		padding-inline: 30px;
		border-radius: calc((1.44em + 24px) / 2);
		margin-bottom: 16px;
	}
}
@media screen and (max-width: 767px){
	.mv-catch__balloon {
		font-size: var(--fz-14);
		padding-block: 9px;
		padding-inline: 16px;
		border-radius: calc((1.44em + 14px) / 2);
		margin-bottom: 14px;
		margin-inline: auto;
	}
}
.mv-catch__main {
	font-weight: 800;
	letter-spacing: 0;
}
@media screen and (min-width: 768px){
	.mv-catch__main {
		font-size: clamp(62px, 7.08vw, 85px);
		line-height: 1.41;
	}
}
@media screen and (max-width: 767px){
	.mv-catch__main {
		font-size: 48px;
		line-height: 1.25;
	}
}
.mv-price {
	display: flex;
}
@media screen and (min-width: 768px){
	.mv-price {
		justify-content: space-between;
		flex-direction: row-reverse;
		margin-bottom: 36px;
	}
}
@media screen and (max-width: 767px){
	.mv-price {
		flex-wrap: wrap;
		justify-content: center;
	}
}
.mv-price__tag {
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.0;
}
@media screen and (min-width: 768px){
	.mv-price__tag {
		display: flex;
		justify-content: center;
		align-items: flex-end;
		height: 70px;
		border-top: 2px dashed var(--c-black);
		border-bottom: 2px dashed var(--c-black);
		padding-bottom: 13px;
	}
}
@media screen and (max-width: 767px){
	.mv-price__tag {
		flex-basis: 100%;
	}
}
@media screen and (min-width: 768px){
	.mv-price__tag.__initial__price {
		flex-basis: 43%;
		flex-shrink: 0;
		font-size: var(--fz-12);
	}
}
@media screen and (max-width: 767px){
	.mv-price__tag.__initial__price {
		font-size: var(--fz-12);
	}
}
.mv-price__tag .mv-price__value {
	padding-left: 0.3em;
}
@media screen and (min-width: 768px){
	.mv-price__tag.__initial__price .mv-price__value {
		font-size: clamp(16px, 2.18vw, 28px);
	}
}
.mv-price__tag.__monthly__price {
	font-size: var(--fz-16);
}
@media screen and (min-width: 768px){
	.mv-price__tag.__monthly__price {
		flex-basis: 54%;
		flex-shrink: 0;
	}
}
@media screen and (max-width: 767px){
	.mv-price__tag.__monthly__price {
		margin-bottom: 14px;
	}
}
@media screen and (min-width: 768px){
	.mv-price__tag.__monthly__price .mv-price__value {
		font-size: clamp(18px, 3.125vw, 40px);
	}
}
@media screen and (max-width: 767px){
	.mv-price__tag.__monthly__price .mv-price__value {
		font-size: 40px;
	}
}
@media screen and (min-width: 768px){
	.mv .g-cta__btn {
		width: 330px;
	}
}
@media screen and (max-width: 767px){
	.mv-sp__lower{
		background-color: var(--c-white-op90);
		padding-bottom: 154px;
		padding-top: 10px;
	}
}
.mv-slider {
	position: absolute;
	display: flex;
}
@media screen and (min-width: 768px){
	.mv-slider {
		width: 56%;
		height: 100%;
		left: 50%;
		top: 0;
		justify-content: flex-start;
		column-gap: 30px;
	}
}
@media screen and (max-width: 767px){
	.mv-slider {
		width: 112.5%;
		height: 100%;
		left: 0;
		top: 0;
		justify-content: flex-start;
		column-gap: 15px;
		transform: rotate(-25deg);
	}
}
	#mv-slide-02 {
		transform: rotate(180deg);
	}
	#mv-slide-02 .slick-slide {
		transform: rotate(180deg);
	}
.mv-slider__col {
	visibility: hidden;
	flex-shrink: 0;
}
@media screen and (min-width: 768px){
	.mv-slider__col {
		width: 250px;
	}
}
@media screen and (max-width: 767px){
	.mv-slider__col {
		width: 35%;
	}
}
.mv-slider__col.slick-initialized {
	visibility: visible;
}
.mv-slider__col .slick-list {
	height: 100% !important;
}
@media screen and (min-width: 768px){
	.mv-slider__col .slick-slide {
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 767px){
	.mv-slider__col .slick-slide {
		margin-bottom: 27px;
	}
}
.mv-review {
	width: 100%;
	color: var(--c-white);
	text-align: left;
}
@media screen and (min-width: 768px){
	.mv-review {
		border-radius: 36px;
		padding-block: 32px;
		padding-inline: 12%;
	}
}
@media screen and (max-width: 767px){
	.mv-review {
		border-radius: 18px;
		padding-block: 20px;
		padding-inline: 12%;
	}
}
.mv-review.__review__red {
	background-color: var(--c-review-red);
}
.mv-review.__review__red::after {
	border-color: var(--c-review-red)  transparent transparent transparent;
}
.mv-review.__review__blue {
	background-color: var(--c-review-blue);
}
.mv-review.__review__blue::after {
	border-color: var(--c-review-blue)  transparent transparent transparent;
}
.mv-review.__review__green {
	background-color: var(--c-review-green);
}
.mv-review.__review__green::after {
	border-color: var(--c-review-green)  transparent transparent transparent;
}
.mv-review.__review__yellow {
	background-color: var(--c-review-yellow);
}
.mv-review.__review__yellow::after {
	border-color: var(--c-review-yellow)  transparent transparent transparent;
}
.mv-review.__review__orange {
	background-color: var(--c-review-orange);
}
.mv-review.__review__orange::after {
	border-color: var(--c-review-orange)  transparent transparent transparent;
}
.mv-review.__review__purple {
	background-color: var(--c-review-purple);
}
.mv-review.__review__purple::after {
	border-color: var(--c-review-purple)  transparent transparent transparent;
}
.mv-review__ttl {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.mv-review__ttl {
		font-size: var(--fz-18);
	}
}
@media screen and (max-width: 767px){
	.mv-review__ttl {
		font-size: var(--fz-14);
	}
}
.mv-review__rating {
	display: flex;
	justify-content: flex-start;
	column-gap: 5%;
}
@media screen and (min-width: 768px){
	.mv-review__rating {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.mv-review__rating {
		margin-bottom: 12px;
	}
}
.mv-review__star {
	flex-basis: 12.5%;
	aspect-ratio: 1 / 1;
	background: url('../images/star.svg') center/contain no-repeat;
}
.mv-review__star.__star__check {
	background-image: url('../images/star_check.svg');
}
@media screen and (min-width: 768px){
	.mv-review__content {
		margin-bottom: 18px;
	}
}
@media screen and (max-width: 767px){
	.mv-review__content {
		margin-bottom: 9px;
	}
}
.mv-review__content:last-of-type {
	margin-bottom: 0;
}
.mv-review__hd {
	font-weight: 500;
	position: relative;
}
@media screen and (min-width: 768px){
	.mv-review__hd {
		font-size: 12px;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 767px){
	.mv-review__hd {
		font-size: 10px;
		margin-bottom: 8px;
	}
}
.mv-review__hd::after {
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	background-color: var(--c-white);
	content: '';
}
@media screen and (min-width: 768px){
	.mv-review__hd::after {
		top: calc(100% + 5px);
	}
}
@media screen and (max-width: 767px){
	.mv-review__hd::after {
		top: calc(100% + 4px);
	}
}
@media screen and (min-width: 768px){
	.mv-review__txt {
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
	.mv-review__txt {
		font-size: 10px;
	}
}
/** 共通セクション **/
.g-section {
	position: relative;
	z-index: 1;
}
.g-section__h2 {
	font-weight: 700;
	margin-inline: auto;
}
@media screen and (min-width: 768px){
	.g-section__h2 {
		font-size: var(--fz-28);
		line-height: 40px;
		padding-block: 10px;
		padding-inline: 36px;
		border-radius: 30px;
		margin-bottom: 43px;
	}
}
@media screen and (max-width: 767px){
	.g-section__h2 {
		font-size: 18px;
		line-height: 26px;
		padding-block: 6px;
		padding-inline: 26px;
		border-radius: 2em;
		margin-bottom: 20px;
	}
}
.g-section__h2.__padd0 {
	padding-inline: 0;
}
.g-section__h2.__absolute {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	width: max-content;
}
.g-section__h2 i {
	display: inline-block;
}
.g-txt {
	font-weight: 500;
	line-height: 1.66;
}
@media screen and (min-width: 768px){
	.g-txt {
		font-size: var(--fz-18);
	}
}
@media screen and (max-width: 767px){
	.g-txt {
		font-size: var(--fz-16);
	}
}
.g-inline_link {
	color: var(--theme-c-main);
	font-weight: 500;
	text-decoration: underline;
}
@media screen and (min-width: 768px){
	.g-inline_link {
		font-size: var(--fz-18);
	}
}
@media screen and (max-width: 767px){
	.g-inline_link {
		font-size: var(--fz-16);
	}
}
@media screen and (min-width: 768px){
	.sec-about {
		border-radius: 40px 40px 0 0;
		padding-top: 94px;
		padding-bottom: 147px;
	}	
}
@media screen and (max-width: 767px){
	.about__inner {
		transform: translateY(-100px);
	}
}
.about-hd {
	position: relative;
	background-color: var(--c-white);
	border-radius: 30px;
	box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
@media screen and (min-width: 768px){
	.about-hd {
		margin-bottom: 110px;
	}
}
@media screen and (max-width: 767px){
	.about-hd {
		padding-block: 35px;
		margin-bottom: 50px;
	}
}
@media screen and (min-width: 768px){
	.about-hd__inner {
		padding-top: 66px;
		padding-bottom: 74px;
		padding-left: 5.4%;
		width: 60%;
	}
}
@media screen and (max-width: 767px){
	.about-hd__inner {
		padding-inline: 20px;
	}
}
.about-hd__lead {
	font-weight: 700;
	margin-bottom: 0.5em;
}
@media screen and (min-width: 768px){
	.about-hd__lead {
		font-size: clamp(20px, 2.5vw, 30px);
	}
}
@media screen and (max-width: 767px){
	.about-hd__lead {
		font-size: 20px;
		i {
			display: inline-block;
		}
	}	
}
@media screen and (min-width: 768px){
	.about-hd__illust {
		position: absolute;
		width: 35%;
		right: 2.88%;
		bottom: 10%;
	}
}
@media screen and (max-width: 767px){
	.about-hd__illust {
		width: 70%;
		margin-inline: auto;
		margin-bottom: 20px;
	}
}
.about__h2 {
	display: flex;
	align-items: center;
}
.about__h2 .about__h2__txt {
	padding-right: 1em;
}
@media screen and (min-width: 768px){
	.about__h2 .about__h2__txt {
		font-size: 28px;
	}
	.about__h2 .about__h2__logo {
		width: 258px;
	}
}
@media screen and (max-width: 767px){
	.about__h2 .about__h2__logo {
		width: 156px;
	}
}
.about-lead {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.about-lead {
		font-size: var(--fz-25);
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 767px){
	.about-lead {
		font-size: 18px;
		margin-bottom: 30px;
	}
}
.about-revplus {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (min-width: 768px){
	.about-revplus {
		justify-content: space-between;
		row-gap: 60px;
		margin-bottom: 60px;
	}
}
@media screen and (min-width: 768px){
	.about-revplus__service {
		flex-basis: 48.5%;
		flex-shrink: 0;
	}
}
@media screen and (max-width: 767px){
	.about-revplus {
		justify-content: center;
		row-gap: 30px;
		margin-bottom: 30px;
	}
}
.about-revplus__service__img {
	width: 100%;
	margin-bottom: 20px;
}
.about-revplus__service__h3 {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.about-revplus__service__h3 {
		font-size: var(--fz-22);
		margin-bottom: 20px;
	}
}
/* 導入事例 */
.sec-case {
	position: relative;
	background-color: var(--c-white);
	border-bottom: 1px solid var(--c-gray-200);
}
@media screen and (min-width: 768px){
	.sec-case {
		padding-top: 68px;
		padding-bottom: 99px;
	}
}
@media screen and (max-width: 767px){
	.sec-case {
		padding-top: 76px;
		padding-bottom: 50px;
	}
}
.case__inner {
	position: relative;
	z-index: 1;
}
.case__head {
	position: absolute;
	z-index: 1;
}
@media screen and (min-width: 768px){
	.case__inner {
		width: var(--inner-w);
		max-width: var(--pc-maw-md);
		margin-inline: auto;
	}
	.case__head {
		width: 32.2%;
		left: 3.75%;
		top: 0;
		transform: translateY(-50%);
	}
}
@media screen and (max-width: 767px){
	.case__head {
		width: 68.8%;
		max-width: 300px;
		left: 50%;
		top: 0;
		transform: translate(-50%, -74%);
	}
}
@media screen and (min-width: 768px){
	.case__slider {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 767px){
	.case__slider {
		margin-bottom: 30px;
	}
	.case__slider > .slick-list > .slick-track > .slick-slide {
		margin-inline: 10px;
	}
}
.case__slide__inner {
	display: flex;
	background-color: var(--bg-c-gray);
	border-radius: 30px;
	overflow: hidden;
}
@media screen and (max-width: 767px){
	.case__slide__inner {
		flex-wrap: wrap;
	}
}
.case__slide__img {
	background-color: var(--c-gray-200);
}
@media screen and (min-width: 768px){
	.case__slide__img {
		flex-basis: 29%;
		flex-shrink: 0;
	}
}
@media screen and (max-width: 767px){
	.case__slide__img {
		display: none;
	}
}
@media screen and (min-width: 768px){
	.case__slide__content {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		padding-block: 60px;
		padding-inline: 5%;
	}
}
@media screen and (min-width: 768px){
	.case__slide__txt {
		order: 1;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 767px){
	.case__slide__txt {
		padding-top: 40px;
		padding-inline: 20px;
		margin-bottom: 20px;
	}	
}
@media screen and (min-width: 768px){
	.case__slide__ttl {
		order: 2;
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 767px){
	.case__slide__ttl {
		padding-bottom: 40px;
		padding-inline: 20px;
	}
}
.case__slide__ttlName,
.case__slide__ttlCat {
	vertical-align: middle;
}
@media screen and (max-width: 767px){
	.case__slide__ttlName, .case__slide__ttlCat {
		display: block;
	}
}
.case__slide__ttlName {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.case__slide__ttlName {
		font-size: var(--fz-18);
		margin-right: 15px;
	}
}
@media screen and (max-width: 767px){
	.case__slide__ttlName {
		font-size: 18px;
		margin-bottom: 10px;
	}
}
.case__slide__ttlCat {
	font-weight: 500;
	background-color: var(--c-white);
	padding-inline: 1em;
	padding-block: 0.5em;
	border-radius: 2em;
}
@media screen and (min-width: 768px){
	.case__slide__ttlCat {
		font-size: var(--fz-12);
	}
}
@media screen and (max-width: 767px){
	.case__slide__ttlCat {
		font-size: 12px;
	}
}
@media screen and (min-width: 768px){
	.case__slide__gallery {
		display: flex;
		order: 3;
		justify-content: space-between;
		align-items: flex-start;
	}
}
.case__slide__galleryPic {
	background-color: var(--c-gray-200);
	aspect-ratio: 3 / 2;
}
@media screen and (min-width: 768px){
	.case__slide__galleryPic {
		flex-basis: 32.4%;
		flex-shrink: 0;
	}
}
.case__slide__gallery .slick-slide:nth-child(even) .case__slide__galleryPic {
	background-color: var(--c-gray-300);
}
@media screen and (min-width: 768px){
	.sec-case .g-cta__btn {
		width: 400px;
	}
}
@media screen and (max-width: 767px){
	.sec-case .g-cta__btn {
		width: 300px;
	}
}
.case__slider .slick-arrow {
	z-index: 1;
	background-color: var(--c-white);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
@media screen and (min-width: 768px){
	.case__slider .slick-arrow {
		width: 50px;
		height: 50px;
	}
}
@media screen and (max-width: 767px){
	.case__slider .slick-arrow {
		width: 35px;
		height: 35px;
	}
}
.case__slider .slick-arrow::before {
	display: block;
	border-left: 1px solid var(--c-gray-300);
	border-bottom: 1px solid var(--c-gray-300);
	position: absolute;
	content: '';
}
@media screen and (min-width: 768px){
	.case__slider .slick-arrow::before {
		width: 14px;
		height: 14px;
		top: calc(50% - 7px);
	}
}
@media screen and (max-width: 767px){
	.case__slider .slick-arrow::before {
		width: 10px;
		height: 10px;
		top: calc(50% - 5px);
	}
}
.case__slider .slick-prev::before {
	left: calc(50% - 4px);
	transform: rotate(45deg);
}
@media screen and (min-width: 768px){
	.case__slider .slick-prev {
		left: -25px;
	}
}
@media screen and (max-width: 767px){
	.case__slider .slick-prev {
		left: 7.5px;
	}
}
.case__slider .slick-next::before {
	right: calc(50% - 4px);
	transform: rotate(-135deg);
}
@media screen and (min-width: 768px){
	.case__slider .slick-next {
		right: -25px;
	}
}
@media screen and (max-width: 767px){
	.case__slider .slick-next {
		right: 7.5px;
	}
}
.case__slide__gallery .slick-dots  {
	display: flex;
	justify-content: center;
	column-gap: 14px;
	bottom: unset;
	top: calc(100% + 11px);
}
.case__slide__gallery .slick-dots li {
	flex-basis: 10px;
	height: 10px;
	margin: 0;
	border: 1px solid var(--c-black);
	border-radius: 50%;
}
.case__slide__gallery .slick-dots li.slick-active {
	background-color: var(--c-black);
}
.case__slide__gallery .slick-dots li button{
	width: 100%;
	height: 100%;
	padding: 0;
}
.case__slide__gallery .slick-dots li button::before {
	content: '';
}
/* 横に流れるサイン */
.reviewPlus__sign {
	background: url('../images/REVIEWPLUS.png') repeat-x center center;
}
@media screen and (min-width: 768px){
	.reviewPlus__sign {
		height: 160px;
		background-size: 592px 52px;
		animation: rpScroll 8s linear infinite;
	}
}
@media screen and (max-width: 767px){
	.reviewPlus__sign {
		height: 95px;
		background-size: 394px 35px;
		animation: rpScroll_sp 8s linear infinite;
	}
}
@keyframes rpScroll {
	0% {
    background-position: 0 center;
	}
	100% {
    background-position: -592px center;
	}
}
@keyframes rpScroll_sp {
	0% {
    background-position: 0 center;
	}
	100% {
    background-position: -394px center;
	}
}
/* レビュー信用 */
@media screen and (min-width: 768px){
	.sec-trust {
		padding-top: 100px;
	}
}
@media screen and (max-width: 767px){
	.sec-trust {
		padding-top: 50px;
	}
}
.trust__research {
	background-color: var(--c-white);
	border-radius: 30px;
	box-shadow: 0 0 6px rgba(0,0,0,0.16);
}
@media screen and (min-width: 768px){
	.trust__research {
		margin-top: 18px;
		padding-block: 46px;
		padding-inline: 5%;
	}
}
@media screen and (max-width: 767px){
	.trust__research {
		margin-top: 30px;
		padding-block: 28px;
		padding-inline: 5%;
	}
}
.trust__research__q {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.trust__research__q {
		font-size: var(--fz-22);
		margin-bottom: 38px;
	}
}
@media screen and (max-width: 767px){
	.trust__research__q {
		font-size: 16px;
		margin-bottom: 14px;
	}
}
.trust__research__body {
	position: relative;
}
@media screen and (max-width: 767px){
	.trust__research__body {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-start;
		width: 100%;
		height: 236px;
	}
}
@media screen and (max-width: 767px){
	.trust__research__body {
		margin-bottom: 12px;
	}
}
.trust__research__result {
	position: relative;
	font-weight: 500;
}
@media screen and (min-width: 768px){
	.trust__research__result {
		width: 75.4%;
		padding-bottom: 15px;
		border-bottom: 2px dashed var(--c-black);
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.trust__research__result {
		flex-grow: 1;
		height: 75.4%;
		padding-left: 10px;
		padding-top: 35px;
		border-left: 2px dashed var(--c-black);
	}
}
.trust__research__result::before,
.trust__research__result::after {
	display: block;
	position: absolute;
	content: '';
	background-color: var(--c-black);
}
@media screen and (min-width: 768px){
	.trust__research__result::before, .trust__research__result::after {
		width: 2px;
		height: 16px;
		bottom: -8px;
	}
}
@media screen and (max-width: 767px){
	.trust__research__result::before, .trust__research__result::after {
		width: 10px;
		height: 2px;
		left: -5px;
	}
}
@media screen and (min-width: 768px){
	.trust__research__result::before {
		left: 100%;
	}
}
@media screen and (max-width: 767px){
	.trust__research__result::before {
		top: 100%;
	}
}
@media screen and (min-width: 768px){
	.trust__research__result::after {
		right: 100%;
	}
}
@media screen and (max-width: 767px){
	.trust__research__result::after {
		bottom: 100%;
	}
}
.trust__research__txt {
	position: relative;
}
@media screen and (min-width: 768px){
	.trust__research__txt {
		width: fit-content;
		margin-inline: auto;
		font-size: var(--fz-20);
		font-weight: 500;
	}
}
@media screen and (max-width: 767px){
	.trust__research__txt {
		width: fit-content;
		font-size: var(--fz-18);
		font-weight: 700;
	}
}
.trust__research__illust {
	position: absolute;
}
@media screen and (min-width: 768px){
	.trust__research__illust {
		width: 18.3%;
		right: 100%;
		top: 50%;
		transform: translateY(-50%);
	}
}
@media screen and (max-width: 767px){
	.trust__research__illust {
		width: 47%;
		right: 0;
		bottom: 0;
	}
}
.trust__research__chart {
	display: flex;
	margin-bottom: 10px;
}
@media screen and (max-width: 767px){
	.trust__research__chart {
		flex-direction: column;
		height: 100%;
		padding-right: 70px;
	}
}
.trust__research__data {
	flex-shrink: 0;
	position: relative;
	text-align: center;
}
@media screen and (min-width: 768px){
	.trust__research__data {
		display: flex;
		justify-content: center;
		align-items: center;
		min-width: 40px;
		height: 95px;
	}
}
@media screen and (max-width: 767px){
	.trust__research__data {
		width: 40px;
	}
}
.trust__research__data span{
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.trust__research__data span{
		color: var(--c-white);
		font-size: var(--fz-14);
	}
}
@media screen and (max-width: 767px){
	.trust__research__data span{
		font-size: 12px;
		position: absolute;
		left: calc(100% + 6px);
		top: 50%;
		transform: translateY(-50%);
	}
}
@media screen and (min-width: 768px){
	.trust__research__data em{
		font-size: clamp(16px, 1.53vw, 22px);
	}
}
@media screen and (max-width: 767px){
	.trust__research__data.__large{
		font-size: 16px;
	}
}
@media screen and (min-width: 768px){
	.trust__research__data.__large em{
		font-size: clamp(16px, 2.08vw, 30px);
	}
}
.trust__research__data.__blue {
	background-color: var(--c-chart-blue);
}
@media screen and (min-width: 768px){
	.trust__research__data.__blue {
		width: 6.6%;
	}
}
@media screen and (max-width: 767px){
	.trust__research__data.__blue {
		height: 6.6%;
	}
}
.trust__research__data.__green {
	background-color: var(--c-chart-green);
}
@media screen and (min-width: 768px){
	.trust__research__data.__green {
		width: 68.8%;
	}
}
@media screen and (max-width: 767px){
	.trust__research__data.__green {
		height: 68.8%;
	}
}
.trust__research__data.__yellow {
	background-color: var(--c-chart-yellow);
}
@media screen and (min-width: 768px){
	.trust__research__data.__yellow {
		width: 14.6%;
		flex-shrink: 1;
	}
}
@media screen and (max-width: 767px){
	.trust__research__data.__yellow {
		height: 14.6%;
	}
}
.trust__research__data.__red {
	background-color: var(--c-chart-red);
}
@media screen and (min-width: 768px){
	.trust__research__data.__red {
		width: 4.7%;
	}
}
@media screen and (max-width: 767px){
	.trust__research__data.__red {
		height: 4.7%;
	}
}
.trust__research__data.__purple {
	background-color: var(--c-chart-purple);
}
@media screen and (min-width: 768px){
	.trust__research__data.__purple {
		width: 5.2%;
	}
}
@media screen and (max-width: 767px){
	.trust__research__data.__purple {
		height: 5.2%;
	}
}
@media screen and (max-width: 767px){
	.trust__research__data.__blue span {
		color: var(--c-chart-blue);
	}
	.trust__research__data.__green span{
		color: var(--c-chart-green);
	}
	.trust__research__data.__yellow span{
		color: var(--c-chart-yellow);
	}
	.trust__research__data.__red span{
		color: var(--c-chart-red);
	}
	.trust__research__data.__purple span{
		color: var(--c-chart-purple);
	}
}
@media screen and (min-width: 768px){
	.trust__research__ft {
		display: flex;
		flex-direction: column-reverse;
	}
}
.trust__research__note {
	font-size: var(--fz-12);
}
@media screen and (min-width: 768px){
	.trust__research__note {
		margin-bottom: 30px;
		text-align: right;
	}
}
@media screen and (max-width: 767px){
	.trust__research__note {
		font-size: 10px;
	}
}
.trust__research__answer {
	display: flex;
}
@media screen and (min-width: 768px){
	.trust__research__answer {
		align-items: center;
		column-gap: 2em;
	}
}
@media screen and (max-width: 767px){
	.trust__research__answer {
		flex-wrap: wrap;
		row-gap: 0.25em;
		column-gap: 2em;
		margin-bottom: 10px;
	}
}
.trust__research__answerSample {
	font-weight: 500;
}
@media screen and (min-width: 768px){
	.trust__research__answerSample {
		font-size: clamp(13px, 1.25vw, 18px);
	}
}
@media screen and (max-width: 767px){
	.trust__research__answerSample {
		font-size: 10px;
	}
}
.trust__research__answerSample span {
	display: inline-block;
	vertical-align: middle;
}
.trust__research__answerSample .__color {
	width: 1em;
	height: 1em;
	margin-right: 0.25em;
}
.trust__research__answerSample .__color.__blue {
	background-color: var(--c-chart-blue);
}
.trust__research__answerSample .__color.__green {
	background-color: var(--c-chart-green);
}
.trust__research__answerSample .__color.__yellow {
	background-color: var(--c-chart-yellow);
}
.trust__research__answerSample .__color.__red {
	background-color: var(--c-chart-red);
}
.trust__research__answerSample .__color.__purple {
	background-color: var(--c-chart-purple);
}
/* 活用例 */
@media screen and (min-width: 768px){
	.sec-util {
		padding-top: 130px;
		padding-bottom: 256px;
	}
}
@media screen and (max-width: 767px){
	.sec-util {
		padding-top: 87px;
		padding-bottom: 84px;
	}
}
.utilize {
	position: relative;
	background-color: var(--c-white);
	border-radius: 30px;
	box-shadow: 0 0 6px var(--c-gray-200);
}
@media screen and (max-width: 767px){
	.utilize {
		padding-top: 70px;
		padding-bottom: 40px;
		padding-inline: 3.75%;
		margin-bottom: 30px;
	}
}
@media screen and (min-width: 768px){
	.utilize {
		padding-top: 110px;
		padding-bottom: 80px;
		padding-inline: 3.75%;
		margin-bottom: 100px;
	}
}
.utilize__list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
}
@media screen and (min-width: 768px){
	.utilize__list {
		justify-content: space-between;
	}
}
@media screen and (max-width: 767px){
	.utilize__list {
		justify-content: center;
	}
}
@media screen and (min-width: 768px){
	.utilize__item {
		flex-basis: 48.5%;
		flex-shrink: 0;
	}
}
@media screen and (max-width: 767px){
	.utilize__item {
		flex-basis: 100%;
		max-width: 600px;
	}
}
.utilize__img {
	width: 100%;
}
@media screen and (min-width: 768px){
	.utilize__img {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.utilize__img {
		margin-bottom: 10px;
	}
}
.utilize__ttl {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.utilize__ttl {
		margin-bottom: 10px;
		font-size: var(--fz-22);
	}
}
@media screen and (max-width: 767px){
	.utilize__ttl {
		margin-bottom: 10px;
		font-size: 16px;
	}
}
.utilize__catch {
	line-height: 1.8;
}
@media screen and (min-width: 768px){
	.utilize__catch {
		font-weight: 700;
		font-size: var(--fz-50);
	}
}
@media screen and (max-width: 767px){
	.utilize__catch {
		font-weight: 500;
		font-size: 18px;
	}
}
/* 価格 */
.sec-price {
	position: relative;
}
@media screen and (min-width: 768px){
	.sec-price {
		padding-top: 110px;
	}
}
@media screen and (max-width: 767px){
	.sec-price {
		padding-top: 115px;
	}
}
.service-price__head {
	position: absolute;
	left: 50%;
	bottom: 100%;
	z-index: 1;
}
@media screen and (min-width: 768px){
	.service-price__head {
		width: 39vw;
		max-width: 562px;
		transform: translate(-50%, 19%);
	}
}
@media screen and (max-width: 767px){
	.service-price__head {
		width: 72vw;
		max-width: 350px;
		transform: translate(-50%, 42%);
	}
}
.service-price {
	position: relative;
}
@media screen and (min-width: 768px){
	.service-price {
		border-radius: 30px;
		padding-top: 72px;
		padding-bottom: 50px;
		padding-inline: 8.33%;
	}
}
@media screen and (max-width: 767px){
	.service-price {
		width: 100vw;
		margin-inline: calc(50% - 50vw);
		padding-top: 46px;
		padding-bottom: 50px;
		padding-inline: 5%;
	}
}
.service-price__lead {
	position: relative;
	width: fit-content;
	margin-inline: auto;
	font-weight: 700;
	line-height: 1.0;
}
@media screen and (min-width: 768px){
	.service-price__lead {
		font-size: 26px;
		margin-bottom: 70px;
	}
}
@media screen and (max-width: 767px){
	.service-price__lead {
		font-size: 18px;
		margin-bottom: 30px;
	}
}
@media screen and (min-width: 768px){
	.service-price__lead::before, .service-price__lead::after {
		display: block;
		width: 1px;
		background-color: var(--c-black);
		position: absolute;
		content: '';
		@media screen and (min-width: 768px){
			height: 20px;
			top: calc(100% - 10px);
		}
	}
	.service-price__lead::before {
		left: -10px;
		transform: rotate(-45deg)
	}
	.service-price__lead::after {
		right: -10px;
		transform: rotate(45deg)
	}
}
.service-price__list {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (min-width: 768px){
	.service-price__list {
		justify-content: center;
		column-gap: 4%;
		row-gap: 60px;
		max-width: 622px;
		margin-inline: auto;
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 767px){
	.service-price__list {
		justify-content: center;
		column-gap: 10%;
		row-gap: 20px;
		max-width: 622px;
		margin-inline: auto;
		margin-bottom: 40px;
	}
}
.service-price__point {
	flex-shrink: 0;
}
@media screen and (min-width: 768px){
	.service-price__point {
		flex-basis: 174px;
	}
}
@media screen and (max-width: 767px){
	.service-price__point {
		flex-basis: 35%;
	}
}
.service-price__img {
	width: 100%;
}
@media screen and (min-width: 768px){
	.service-price__img {
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 767px){
	.service-price__img {
		margin-bottom: 8px;
	}
}
.service-price__ttl {
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}
@media screen and (min-width: 768px){
	.service-price__ttl {
		font-size: 20px;
	}
}
@media screen and (max-width: 767px){
	.service-price__ttl {
		font-size: 16px;
	}
}
.service-price__plus {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.service-price__plus {
		font-size: 22px;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.service-price__plus {
		font-size: 16px;
		margin-bottom: 20px;
	}
}
.service-price__main {
	display: flex;
	background-color: var(--c-white);
	text-align: center;
	border-top: 1px solid var(--c-gray-200);
	border-bottom: 1px solid var(--c-gray-200);
}
@media screen and (min-width: 768px){
	.service-price__main {
		flex-direction: column-reverse;
		padding-block: 27px;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.service-price__main {
		flex-direction: column;
		padding-block: 12px;
		margin-bottom: 10px;
	}
}
.service-price__initial {
	font-weight: 500;
}
@media screen and (min-width: 768px){
	.service-price__initial {
		font-size: 14px;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 767px){
	.service-price__initial {
		font-size: 12px;
	}
}
.service-price__monthly {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.service-price__monthly {
		font-size: 16px;
	}
}
@media screen and (max-width: 767px){
	.service-price__monthly {
		font-size: 16px;
	}
}
.service-price__monthly__value {
	line-height: 1.0;
	padding-left: 0.1em;
}
@media screen and (min-width: 768px){
	.service-price__monthly__value {
		font-size: 45px;
	}
}
@media screen and (max-width: 767px){
	.service-price__monthly__value {
		font-size: 40px;
	}
}
@media screen and (min-width: 768px){
	.service-price__note  {
		font-size: 12px;
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 767px){
	.service-price__note  {
		font-size: 10px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 767px){
	.service-price__note span {
		padding-right: 1em;
	}
}
@media screen and (min-width: 768px){
	.service-price .g-cta__btn {
		width: 400px;
		margin-top: 60px;
	}
}
@media screen and (max-width: 767px){
	.service-price .g-cta__btn {
		width: 300px;
		margin-top: 30px;
	}
}
/* 導入までの流れ */
@media screen and (min-width: 768px){
	.sec-flow {
		padding-block: 130px;
	}
}
@media screen and (max-width: 767px){
	.sec-flow {
		padding-block: 77px;
	}
}
.service-flow {
	position: relative;
}
@media screen and (min-width: 768px){
	.service-flow {
		border-radius: 30px;
		padding-block: 70px;
	}
}
@media screen and (max-width: 767px){
	.service-flow {
		width: 100vw;
		margin-inline: calc(50% - 50vw);
		padding-top: 36px;
		padding-bottom: 50px;
	}
}
@media screen and (min-width: 768px){
	.service-flow__list {
		width: 75%;
		margin-inline: auto;
	}
}
@media screen and (max-width: 767px){
	.service-flow__list {
		padding-inline: 5%;
	}
}
.service-flow__item {
	display: flex;
	align-items: center;
	column-gap: 5%;
	position: relative;
}
@media screen and (min-width: 768px){
	.service-flow__item {
		margin-bottom: 70px;
	}
}
@media screen and (max-width: 767px){
	.service-flow__item {
		margin-bottom: 44px;
	}
}
.service-flow__item.__arrow .service-flow__img::before,
.service-flow__item.__arrow .service-flow__img::after {
	display: block;
	position: absolute;
	content: '';
}
.service-flow__item.__arrow .service-flow__img::before {
	width: 2px;
	background-color: var(--theme-c-main);
	left: calc(50% - 1px);
}
@media screen and (min-width: 768px){
	.service-flow__item.__arrow .service-flow__img::before {
		height: 30px;
		top: calc(100% + 20px);
	}
}
@media screen and (max-width: 767px){
	.service-flow__item.__arrow .service-flow__img::before {
		height: 24px;
		top: calc(100% + 10px);
	}
}
.service-flow__item.__arrow .service-flow__img::after {
	width: 12px;
	height: 12px;
	border-left: 2px solid var(--theme-c-main);
	border-bottom: 2px solid var(--theme-c-main);
	left: 50%;
	transform: rotate(-45deg);
	transform-origin: left bottom;
}
@media screen and (min-width: 768px){
	.service-flow__item.__arrow .service-flow__img::after {
		bottom: -50px;
	}
}
@media screen and (max-width: 767px){
	.service-flow__item.__arrow .service-flow__img::after {
		bottom: -34px;
	}
}
.service-flow__img {
	flex-shrink: 0;
	position: relative;
}
@media screen and (min-width: 768px){
	.service-flow__img {
		flex-basis: 150px;
	}
}
@media screen and (max-width: 767px){
	.service-flow__img {
		flex-basis: 130px;
	}
}
.service-flow__body {
	flex-grow: 1;
}
.service-flow__ttl {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.service-flow__ttl {
		font-size: var(--fz-20);
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.service-flow__ttl {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.service-flow__body {
		font-size: 12px;
	}
	.service-flow__note {
		font-size: 10px;
	}
}
@media screen and (min-width: 768px){
	.service-flow .g-cta__btn{
		width: 400px;
	}
}
@media screen and (max-width: 767px){
	.service-flow .g-cta__btn{
		width: 300px;
	}
}
/* よくある質問 */
@media screen and (min-width: 768px){
	.sec-faq {
		padding-block: 100px;
	}
}
@media screen and (max-width: 767px){
	.sec-faq {
		padding-block: 55px;
	}
}
@media screen and (min-width: 768px){
	.faq {
		width: 100%;
		max-width: 800px;
		margin-inline: auto;
	}
}
@media screen and (max-width: 767px){
	.faq {
		width: 100%;
	}
}
.faq__block {
	border-bottom: 1px solid var(--c-gray-200);
	padding-inline: 10px;
}
.faq__q {
	font-weight: 700;
	position: relative;
	cursor: pointer;
}
@media screen and (min-width: 768px){
	.faq__q {
		font-size: 20px;
		padding-block: 20px;
		padding-right: 40px;
	}
}
@media screen and (max-width: 767px){
	.faq__q {
		font-size: 15px;
		padding-block: 16px;
		padding-right: 30px;
	}
}
@media (hover: hover) {
	.faq__q:hover {
		color: var(--theme-c-main);
	}
}
.faq__a {
	display: none;
	padding-left: 1em;
}
@media screen and (min-width: 768px){
	.faq__a {
		padding-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.faq__a {
		padding-bottom: 16px;
	}
}
.faq__spin {
	display: block;
	background-color: var(--c-white);
	border-radius: 50%;
	position: absolute;
	right: 0;
}
@media screen and (min-width: 768px){
	.faq__spin {
		width: 30px;
		height: 30px;
		top: calc(50% - 15px);
	}
}
@media screen and (max-width: 767px){
	.faq__spin {
		width: 25px;
		height: 25px;
		top: calc(50% - 12.5px);
	}
}
.faq__spin::before, .faq__spin::after {
	display: block;
	height: 3px;
	background-color: var(--theme-c-main);
	position: absolute;
	top: calc(50% - 1.5px);
	content: '';
	transition: transform linear .4s;
}
@media screen and (min-width: 768px){
	.faq__spin::before, .faq__spin::after {
		width: 14px;
		left: calc(50% - 7px);
	}
}
@media screen and (max-width: 767px){
	.faq__spin::before, .faq__spin::after {
		width: 11px;
		left: calc(50% - 5.5px);
	}
}
.faq__block:not(.is-open) .faq__spin::after {
	transform: rotate(90deg);
}
.faq__block.is-open .faq__spin::after {
	transform: rotate(0deg);
}
/* ソレプロ */
@media screen and (min-width: 768px){
	.sec-solepro {
		padding-block: 100px;
	}
}
@media screen and (max-width: 767px){
	.sec-solepro {
		padding-top: 50px;
	}
}
@media screen and (min-width: 768px){
	.solepro-service {
		padding-bottom: 50px;
	}
}
@media screen and (max-width: 767px){
	.solepro-service {
		padding-bottom: 50px;
	}
}
.solepro-service__wrap {
	display: flex;
}
@media screen and (min-width: 768px){
	.solepro-service__wrap {
		align-items: flex-start;
		column-gap: 20px;
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.solepro-service__wrap {
		flex-wrap: wrap;
		row-gap: 10px;
		justify-content: center;
		margin-bottom: 30px;
	}
}
@media screen and (min-width: 768px){
	.solepro-service__img {
		flex-basis: 34.7%;
		flex-shrink: 0;
	}
}
@media screen and (max-width: 767px){
	.solepro-service__img {
		flex-basis: 100%;
	}
}
.solepro-service__body {
	flex-grow: 1;
}
.solepro-service__lead {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.solepro-service__lead {
		font-size: 18px;
		margin-bottom: 0.5em;
	}
}
@media screen and (max-width: 767px){
	.solepro-service__lead {
		font-size: 14px;
		margin-bottom: 10px;
	}
}
.solepro-service__ttl {
	font-weight: 700;
}
@media screen and (min-width: 768px){
	.solepro-service__ttl {
		font-size: var(--fz-24);
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 767px){
	.solepro-service__ttl {
		font-size: 20px;
		margin-bottom: 10px;
	}
}
.solepro-service__txt {
	line-height: 1.7;
}
@media screen and (min-width: 768px){
	.solepro-service__txt {
		font-size: 14px;
	}
}
@media screen and (max-width: 767px){
	.solepro-service__txt {
		font-size: 12px;
	}
}
.solepro-service .g-cta__btn {
	width: 200px;
	height: 50px;
}
.solepro-service .g-cta__btn__txt {
	font-size: 18px;
}
/* フェードアニメーション */
.fadeup {
    animation: fadeUp forwards 1s ease normal;
}
.fadeup__abs {
    animation: fadeUpAbs forwards 1s ease normal;
}
.fadeupTriggerAbsolute,
.fadeupTrigger {
    opacity: 0;
}
@keyframes fadeUp {
	0% {
			opacity: 0;
			transform: translateY(10px);
	}
	100% {
			opacity: 1;
			transform: translateY(0px);
	}
}
@keyframes fadeUpAbs {
	0% {
			opacity: 0;
			transform: translate(-50%, calc(-50% + 10px));
	}
	100% {
			opacity: 1;
			transform: translate(-50%, -50%);
	}
}

@keyframes underline {
  0% {
    background-size: 0% 100%;
  }
 
  100% {
    background-size: 100% 100%;
  }
}
 
@keyframes move {
  0% {
    bottom: calc(-1em * 1.7);
  }
 
  100% {
    bottom: 0;
  }
}
.underline__fade {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.underline__txt {
  overflow: hidden;
  position: relative;
}
.underline__move {
  position: relative;
	bottom: calc(-1em * 1.8);
}
.underline__fade.in-sight .underline__move {
  animation: move .4s .8s linear both;
}
.underline__txt::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--theme-c-main) 0%, var(--theme-c-main) 100%);
  background-size:0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: absolute;
  bottom: 0px;
	left: 0;
}
.underline__fade.in-sight .underline__txt::after {
  animation: underline .4s linear both;
}