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

/*共通*/

.l-wrapper {
	width:100%;
	padding:0 3%;
	max-width:calc( 1200px + 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);
	background: url("../img/keyvisual_bg.webp") center top no-repeat;
	background-size:cover;
}

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

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

p {
}

a {
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	text-decoration: underline;
}

/*ヘッダー*/

header {
	display: none;
	visibility: hidden;
	opacity: 0;
}

/*ティザー*/

@media screen and (min-width:961px) { /*PC*/
	#Teaser {
		width: 100%;
		max-width:1920px;
		margin:0 auto;
		position: relative;
		background: url("../img/keyvisual.webp") center top no-repeat;
		background-size: cover;
		aspect-ratio:1920 / 2100;
		min-height: 1500px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	#Teaser {
		width: 100%;
		position: relative;
		background: url("../img/keyvisual_mobile.webp") center top no-repeat;
		background-size: cover;
		aspect-ratio:10 / 19;
		min-height: auto;
	}
}

footer {
	position:relative;
	width:100%;
	box-sizing:border-box;
	padding:60px 0;
	display:flex;
	flex-direction:column;
	gap:24px;
	background:#fff;
}