@charset "utf-8";
/*================================
ここから全サイズ適用
================================*/



/*------------------------------
.u-〇〇 …… 下層ページ固有のclass名

lower.cssにあるclass名と被らないよう
接頭文字として "u-" を付けてます。
uniqueの略。
------------------------------*/




/*-------------------------------
ページタイトル
-------------------------------*/
.page-title {
	background-image: url(img/page_icon.png);
}

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

/*タイトル*/
/*-----------------------------*/
.u-title01 {
	padding: 0.6rem 1rem;
	background: #cce198;
	font-size: 2.4rem;
	text-align: center;
	line-height: 1.4;
}

/*テキスト*/
/*-----------------------------*/
.u-text01 {
	font-size: 3.4rem;
	text-align: center;
	line-height: 1.4;
	color: var(--theme-color01);
}
.u-text02 {
	font-size: 2.2rem;
	text-align: center;
	line-height: 1.4;
}

/*フレーム*/
/*-----------------------------*/
.u-frame-01 {
	padding: 2rem;
	background: #fff;
	border: 1px solid #cce198;
}


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


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

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

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

	/*テキスト*/
	/*-----------------------------*/
	.u-text01 {}
	.u-text02 {}

	/*フレーム*/
	/*-----------------------------*/
	.u-frame-01 {}

	
	
}


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

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

	/*タイトル*/
	/*-----------------------------*/
	.u-title01 {
		font-size: 2.2rem;
	}

	/*テキスト*/
	/*-----------------------------*/
	.u-text01 {
		font-size: 2.4rem;
	}
	.u-text02 {
		font-size: 2rem;
	}

	/*フレーム*/
	/*-----------------------------*/
	.u-frame-01 {}


}

















