@charset "utf-8";
/* CSS Document */

/*共通*/

.l-wrapper {
	width:100%;
	padding:0 3%;
	max-width:calc( 1100px + 6% );
	margin:0 auto 0;
	position: relative;
	box-sizing: border-box;
}

/*メディアクエリ*/

/*二段階*/

@media screen and (min-width:961px) { /*PC*/
}
@media screen and (max-width:960px) { /*MB*/
}

/*三段階*/

@media screen and (min-width:1201px) { /*PC-LARGE*/
}
@media screen and (max-width:1200px) { /*PC-MIDDLE*/
}
@media screen and (max-width:960px) { /*MB*/
}

/*レイアウト全体*/

body {
	text-align:center;
	min-height: 100vh;
	font-size: 1.0rem;
	color:rgba(50,50,50,1.00);
}

#l-Wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	position: relative;
	width:100%;
}

/*グランドフォント*/

p {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	transform: rotate(0.03deg);
	font-weight: 400;
}

a {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
	transform: rotate(0.03deg);
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	text-decoration: underline;
}

/*ヘッダー*/

header {}


@media screen and (min-width:961px) { /*PC*/
	#l-header {
		padding: 16px 0;
	}
}
@media screen and (max-width:960px) { /*MB*/
	#l-header {
		height: 60px;
	}
}

/*メインビジュアル*/

#l-MainVisual {
	width:100%;
	position: relative;
	background-size: cover;
	box-sizing: border-box;
}

@media screen and (min-width:961px) { /*PC*/
	#l-MainVisual {
		padding: 48px 0;
	}
}
@media screen and (max-width:960px) { /*MB*/
	#l-MainVisual {
		padding: 32px 0;
	}
}

/*ワイドバナー*/

#l-Widebanner {
	background-color: #f6f6f6;
	margin-bottom: 32px;
	box-sizing: border-box;
	padding: 32px 0;
}

/*コンテンツ*/

@media screen and (min-width:961px) { /*PC*/
	#l-Contents {
		display: flex;
		justify-content: center;
		gap:32px;
		padding-bottom: 96px;
	}
	.l-sub-padding {
		padding-top: 32px;
	}
	#l-Left {
		width: calc(100% -832px);
	}

	#l-Right {
		width: 100%;
		max-width: 800px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	#l-Contents {
		display: flex;
		justify-content: center;
		gap:24px;
		padding-bottom: 60px;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.l-sub-padding {
		padding-top: 32px;
	}
	#l-Left {
		width: 100%;
	}

	#l-Right {
		width: 100%;
	}
}



/*フッター*/

footer {
	background-color: #262626;
	padding: 60px 0;
	box-sizing: border-box;
}