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



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

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




/*================================
メインビジュアル
===============================*/
.main-visual {
	background: url(img/mv_bg.jpg)center/cover no-repeat;
}

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

/*タイトル*/
/*-----------------------------*/
.u-title01 {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-flow: row wrap;
	gap: 10px 4rem;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e7e7e7;
}
.u-title01 .main-text {
	font-family: "Noto Serif JP", serif;
	font-size: 2.4rem;
	font-weight: 600;
	text-align: left;
	line-height: 1.6;
	color: #7f0707;
}
.u-title01 .sub-text {
	padding: 0 1em;
	background: #df8585;
	border-radius: 4px;
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	color: #fff;
}
/*テキスト*/
/*-----------------------------*/
.u-text01 {
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	text-align: center;
	line-height: 1.6;
}
/*flex box*/
/*-----------------------------*/
.u-flex01 {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	gap: 20px 3rem;
}
.u-flex01 .fl_item.-pic {
	width: 38%;
}
.u-flex01 .fl_item.-arrow {
	width: calc(100% - (38% + 47% + 3rem*2));
	display: flex;
	justify-content: center;
	align-items: center;
}
.u-flex01 .fl_item.-article {
	width: 47%;
}
/*吹き出し*/
/*-----------------------------*/
.u-balloon01 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	min-height: 9rem;
	margin-bottom: 30px;
	padding: 10px;
	border: 1px solid #dadada;
}
.u-balloon01::before,
.u-balloon01::after {
	position: absolute;
	z-index: 1;
	content: "";
	left: 50%;
	bottom: 0;
	transform: translate(-50%,100%);
	width: 1.8rem;
	height: 1.6rem;
	background: #dadada;
	clip-path: polygon(0% 0%,100% 0%,50% 100%);
}
.u-balloon01::after {
	bottom: 2px;
	background: #fff;
}


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


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

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

	/*タイトル*/
	/*-----------------------------*/
	.u-title01 {}
	.u-title01 .main-text {}
	.u-title01 .sub-text {}
	/*テキスト*/
	/*-----------------------------*/
	.u-text01 {}
	/*flex box*/
	/*-----------------------------*/
	.u-flex01 {
		flex-direction: column;
	}
	.u-flex01 .fl_item.-pic {
		width: 100%;
	}
	.u-flex01 .fl_item.-arrow {
		width: 100%;
	}
	.u-flex01 .fl_item.-article {
		width: 100%;
	}
	/*吹き出し*/
	/*-----------------------------*/
	.u-balloon01 {}
	.u-balloon01::before,
	.u-balloon01::after {}

}


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

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

	/*タイトル*/
	/*-----------------------------*/
	.u-title01 {
		justify-content: center;
	}
	.u-title01 .main-text {
		width: 100%;
	}
	.u-title01 .sub-text {
		padding: 0 0.6em;
		font-size: 1.8rem;
	}
	/*テキスト*/
	/*-----------------------------*/
	.u-text01 {
		text-align: left;
	}
	/*flex box*/
	/*-----------------------------*/
	.u-flex01 {}
	.u-flex01 .fl_item.-pic {}
	.u-flex01 .fl_item.-arrow {}
	.u-flex01 .fl_item.-article {}
	/*吹き出し*/
	/*-----------------------------*/
	.u-balloon01 {}
	.u-balloon01::before,
	.u-balloon01::after {}

}
	
	
	

















