@charset "utf-8";



/*------------------------------
.u-〇〇 …… 下層ページ固有のclass名
--
lower.cssにあるclass名と被らないよう
接頭文字として "u-" を付けてます。
uniqueの略。
------------------------------*/


/*================================
ここから全サイズ適用
================================*/

/*================================
共通パーツ
================================*/

/*タイトル*/
/*-----------------------------*/
.u-heading01 {}

/*u-text01*/
/*-----------------------------*/
.u-text01 {
	font-family: "Zen Old Mincho", serif;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: var(--theme-color01);
}
.u-text02 {
	position: relative;
	z-index: 1;
	padding-left: 1.2em;
	text-align: left;
	font-size: 1.8rem;
	font-weight: 700;
}
.u-text02::before {
	position: absolute;
	z-index: 1;
	content: "";
	left: 0;
	top: 0.6em;
	width: 0.8em;
	height: 0.8em;
	background: var(--theme-color02);
	border-radius: 50%;
}

/*step*/
/*-----------------------------*/
.u-step_wrap {
	margin-bottom: 2rem;
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	flex-flow: row wrap;
	gap: 1rem;
}
.u-step_en {
	width: 9.4rem;
	padding: 0 1rem;
	background: var(--theme-color01);
	border-radius: 6px;
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
	color: #fff;
}
.u-step_title {
	width: calc(100% - (9.4rem + 1rem));
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.5;
	color: var(--theme-color02);
}

/*tel*/
/*-----------------------------*/
.u-tel .ft_tel_link {
	font-size: 4.8rem;
	
	/*↓スマホサイズ*/
	/*font-size: 3.4rem;*/
}

/*キャッシュレス決済*/
/*-----------------------------*/
.u-payment_group {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 2rem 0;
}
.u-payment_head {
	width: 24rem;
	padding: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1rem 2rem;
}
.u-payment_hd_icon {}
.u-payment_hd_title {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	color: var(--theme-color01);
}
.u-payment_body {
	/*width: calc(100% - 24rem);*/
	padding: 3rem;
	border-left: 3px solid #ccc;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

/*border*/
/*-----------------------------*/
.u-border {
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 3px solid var(--theme-color01);
}


/*================================
TABLET横 1080px～0px
================================*/
@media (max-width: 1080px) {}


/*================================
TABLET縦 834px～0px
================================*/
@media (max-width: 834px) {

	/*タイトル*/
	/*-----------------------------*/
	.u-heading01 {}

	/*u-text01*/
	/*-----------------------------*/
	.u-text01 {}
	.u-text02 {}
	.u-text02::before {}

	/*step*/
	/*-----------------------------*/
	.u-step_wrap {}
	.u-step_en {}
	.u-step_title {}

	/*tel*/
	/*-----------------------------*/
	.u-tel .ft_tel_link {}

	/*キャッシュレス決済*/
	/*-----------------------------*/
	.u-payment_group {}
	.u-payment_head {}
	.u-payment_hd_icon {}
	.u-payment_hd_title {}
	.u-payment_body {}

	/*border*/
	/*-----------------------------*/
	.u-border {}

}


/*================================
SP表示 667px～0px
================================*/
@media (max-width: 667px) {

	/*タイトル*/
	/*-----------------------------*/
	.u-heading01 {}

	/*u-text01*/
	/*-----------------------------*/
	.u-text01 {
		font-size: 2.2rem;
		text-align: left;
	}
	.u-text02 {}
	.u-text02::before {}

	/*step*/
	/*-----------------------------*/
	.u-step_wrap {}
	.u-step_en {}
	.u-step_title {
		width: 100%;
	}

	/*tel*/
	/*-----------------------------*/
	.u-tel .ft_tel_link {
		font-size: 3.4rem;
	}

	/*キャッシュレス決済*/
	/*-----------------------------*/
	.u-payment_group {
		align-items: center;
		flex-direction: column;
	}
	.u-payment_head {
		width: auto;
		padding: 0;
		flex-direction: revert;
		justify-content: flex-start;
	}
	.u-payment_hd_icon {
		width: 70px;
	}
	.u-payment_hd_title {
		text-align: left;
	}
	.u-payment_body {
		padding: 20px 0 0;
		border-left: none;
	}

	/*border*/
	/*-----------------------------*/
	.u-border {}

}

















