/* -----------------------------------
  pc
----------------------------------- */

#home {
	width: 100%;
	overflow: hidden;
	margin-top: 0;
}

.main-content {
	max-width: 1000px;
	width: 100%;
	background: #ffffffcc;
	border-radius: 6px;
}

.mv {
	overflow: hidden;
	width: 100%;
	height: 100vh;
	max-height: 800px;
	background: url(../images/main_bg.jpg) no-repeat center center;
	/* 背景画像 */
	background-size: cover;
	background-position: center;
	position: relative;
}

.mv_message {
	background-color: #503c2899;
	/* 茶色の半透明背景 */
	color: white;
	padding: 2rem 2rem 2rem 3rem;
	font-size: 3.2rem;
	text-align: center;
	position: absolute;
	top: 20%;
	left: 0%;
	right: 30%;
}

.mv_message_b {
	padding: 2rem 3rem;
	background-color: #f5c100cc;
	margin: 0.5rem auto 0;
	position: absolute;
	top: 27%;
	left: 0%;
	right: 38%;
}

.yellow-box {
	background-color: #f5c100;
	color: #333;
	padding: 2rem 2rem 2rem 5rem;
	width: 100%;
	font-size: 2.0rem;
	line-height: 1.6;
	position: absolute;
	bottom: 10%;
	right: 0;
	left: 40%;
}

@media (max-width: 768px) {
	.message {
		font-size: 1.2rem;
		padding: 1rem;
	}

	.yellow-box {
		width: 90%;
		font-size: 0.9rem;
		right: 5%;
		left: 5%;
	}
}

@media (max-width: 480px) {
	.message {
		font-size: 1rem;
	}

	.yellow-box {
		font-size: 0.8rem;
		padding: 1rem;
	}
}

.headwrapper {
	background-size: cover;
	min-height: 480px;
}

.headwrapper h1 {
	max-width: 900px;
	width: 100%;
	min-height: 480px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.mv-sns {
	width: 50px;
	position: absolute;
	top: 80px;
	right: 20px;

}

.mv-sns li {
	margin: 15px auto;
	position: relative;
}

.mv-sns li::before {
	content: "公式SNS";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	min-height: 40px;
	padding: 5px;
	background: #89c3ebaa;
	color: #fff;
	text-align: center;
	opacity: 0;
	position: absolute;
	top: calc(50% - 20px);
	left: -90px;
}

.mv-sns li.mv-sns_x::before {
	content: "公式X";
}

.mv-sns li.mv-sns_i::before {
	content: "公式Instagram";
}

.mv-sns li.mv-sns_y::before {
	/* 改行に<br>は使えない */
	content: " Youtube チャンネル";
}

.mv-sns li.mv-sns_f::before {
	/* 改行に<br>は使えない */
	content: "公式facebook";
}

.mv-sns li.mv-sns_l::before {
	/* 改行に<br>は使えない */
	content: "公式line";
}

.mv-sns li:hover::before {
	opacity: 1;
}


/* -----------------------------------
	tablet
----------------------------------- */

@media screen and (max-width: 1279px) {
	/* tabletこの上に記述 */
}


/* -----------------------------------
  sp
----------------------------------- */

@media screen and (max-width: 767px) {
	/* spこの上に記述 */
}


/* 見出しデザイン */

.contents-ttl {
	font-size: 14px;
	text-align: center;
	margin-bottom: 20px;
}

.contents-ttl strong {
	display: block;
	font-size: 160%;
	font-weight: bold;
}

.contents-txt {
	width: 100%;
	max-width: 980px;
	display: block;
	line-height: 2.4;
}