@charset "utf-8";



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


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

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

/*u-text01*/
/*-----------------------------*/
.u-text01 {
	margin-bottom: 2rem;
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.5;
	color: var(--theme-color02);
}

/*Googleマップ*/
/*-----------------------------*/
.u-googlemaps {
	position: relative;
	z-index: 1;
	height: 42rem;
}
.u-googlemaps iframe {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 50%;
	translate: -50%;
	display: block;
	width: 100vw;
	height: 100%;
}

/*-----------------------------*/
.u-flow_text {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 1rem;
	text-align: left;
}
.u-flow_text_head {
	font-family: "Zen Old Mincho", serif;
	min-width: 1em;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}
.u-flow_text_p {}


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


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


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

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

	/*u-text01*/
	/*-----------------------------*/
	.u-text01 {}

	/*Googleマップ*/
	/*-----------------------------*/
	.u-googlemaps {}
	.u-googlemaps iframe {}

	/*-----------------------------*/
	.u-flow_text {}
	.u-flow_text_head {}
	.u-flow_text_p {}


}

















