@charset "utf-8";



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


/*------------------------------
font-weight設定について
--------------------------------
〇Noto Serif JP（日本語）
通常　　　：font-weight: 300;
見出しなど：font-weight: 400;
太字　　　：font-weight: 700;
--
〇Mrs Saint Delafield（英語）
font-weight: 400;
（他の太さは使用していません）
------------------------------*/


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

/*================================
メインビジュアル
===============================*/
.mv {
	/*background-image: url(img/mv_img.jpg);*/
}

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

/*アクセスマップ*/
/*-----------------------------*/
.u-access_map {
	width: fit-content;
	margin-inline: auto;
	margin-top: -9.6rem;
	padding: 6px;
	background: #fff;
	border: 1px solid #dae0cd;
}

/*見出し*/
/*-----------------------------*/
/*u-heading01*/
.u-heading01 {
	position: relative;
	z-index: 1;
	margin-bottom: 2rem;
	padding-top: 7.4rem;
	padding-bottom: 1rem;
	background-position: top center;
	background-size: 6.7rem;
	font-size: 2.6rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.6;
}
.u-heading01::before {
	position: absolute;
	z-index: 1;
	content: "";
	bottom: 0;
	left: 50%;
	translate: -50%;
	width: 38rem;
	height: 1px;
	background: #dedede;
}
.u-heading01:first-letter {
	color: var(--theme-color01);
}
.u-heading01.-train {
	background-image: url(img/access_icon01.png);
}
.u-heading01.-bus {
	background-image: url(img/access_icon02.png);
}
.u-heading01.-train02 {
	background-image: url(img/access_icon03.png);
}
/*u-heading02*/
.u-heading02 {
	margin-bottom: 2rem;
	padding: 2px 2rem;
	background: #fff;
	border-radius: 4px;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 1.6;
}

/*frame*/
/*-----------------------------*/
.u-frame01 {
	position: relative;
	z-index: 1;
	max-width: 74rem;
	margin-inline: auto;
	padding: 2rem;
	background: linear-gradient(#fff 30%,#c8c8c8);
	border-radius: 4px;
}
.u-frame01::before {
	position: absolute;
	z-index: -1;
	content: "";
	left: 1px;
	top: 1px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	background: #fff;
	border-radius: 4px;
}


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


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

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

	/*アクセスマップ*/
	/*-----------------------------*/
	.u-access_map {}

	/*見出し*/
	/*-----------------------------*/
	/*u-heading01*/
	.u-heading01 {}
	.u-heading01::before {}
	/*u-heading02*/
	.u-heading02 {}

	/*frame*/
	/*-----------------------------*/
	.u-frame01 {}
	.u-frame01::before {}
	
	
}


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

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

	/*アクセスマップ*/
	/*-----------------------------*/
	.u-access_map {}

	/*見出し*/
	/*-----------------------------*/
	/*u-heading01*/
	.u-heading01 {
		padding-top: 5.5rem;
		background-size: 5rem;
		font-size: 2.4rem;
	}
	.u-heading01::before {}
	/*u-heading02*/
	.u-heading02 {
		padding: 2px 10px;
		font-size: 2rem;
	}

	/*frame*/
	/*-----------------------------*/
	.u-frame01 {}
	.u-frame01::before {}

}

















