@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-heading01*/
.u-heading01 {
	padding: 1rem 2rem;
	background: var(--theme-color01);
	border-radius: 4px;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.6;
	color: #fff;
}
/*u-heading02*/
.u-heading02 {
	margin-bottom: 2rem;
	padding: 0 2rem;
	background: var(--theme-color02);
	font-size: 2.2rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.6;
	color: #fff;
}
/*u-heading03*/
.u-heading03 {
	margin-bottom: 3rem;
	font-family: "Mrs Saint Delafield", cursive;
	font-size: 2.6rem;
	font-weight: 400;
	text-align: left;
	letter-spacing: 0;
	line-height: 1.2;
}

/*-----------------------------*/
.u-border01 {
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid #c9c2bd;
}




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


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


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

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

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


	

}

















