@charset "UTF-8";
/* CSS Document */
body {
	margin: 0;
	background-color: #fbfbf6;
}
header {
	width: 100%;
	height: 200px;
	position: fixed;
	z-index: 999;/* 重なり上に */
}
.header_container {
	text-align: center;
	width: 50%;
	border-bottom: solid 1px;
	margin: 0 auto;
}
.header_logo {
	width: 16%;
	height: 16%;
	padding-top: 70px;
}
/* ヘッダーコンテンツ */	
.header_container ul {
	text-align: center;
	padding: 0;
	margin-top: 70px;
}
.header_container ul li {
	display: inline-block;
	list-style: none;
}
.header_container ul li a {
	padding-left: 20px;
	padding-right: 20px;
	font-size: 1.0rem;
	text-decoration: none;
	color: black;
	font-family: serif;
}
.header_container ul li a:hover {
	opacity: 0.5;
}
section {
	width: 50%;
	margin: 0 auto;
}
.message {
	padding-top: 400px;
	padding-bottom: 80px;
	font-family: Hiragino Kaku Gothic ProN ;
	color: #333333;
	font-size: 0.9rem;
	line-height: 1.6rem;
}
/* ヨコの写真 */
.pic_a {
	width: 100%;
	margin-bottom: 100px;
}
/* タテの写真に文字 */
.box {
	cursor: pointer;
	position: relative;
	width: 70%;
	margin: 0 auto;
	margin-bottom: 100px;
}
.pic_b {
	width: 100%;
}
/* ヨコの写真に文字 */
.box_2 {
	cursor: pointer;
	position: relative;
	width: 100%;
	margin-bottom: 100px;
}
.pic_c {
	width: 100%;
}
/* タテの写真 */
.box_3 {
	width: 70%;
	margin: 0 auto;
	margin-bottom: 100px;
}
.pic_d {
	width: 100%;
}
.hover-mask {
	align-items: center; /* テキストの中央揃え */
	background: #fbfbf6; /* マスクの色 */
	bottom: 0;
	color: #333333; /* テキストの色 */
	display: flex; /* テキストの中央揃え */
	height: auto;
	justify-content: center; /* テキストの中央揃え */
	left: 0;
	opacity: 0; /* 最初は透明(非表示) */
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}
.hover-mask:hover {
	opacity: 1; /* hoverしたら透過しない(表示させる) */
}
.hover-mask p {
	margin: 0 auto;
	font-size: 0.8rem;
}
.hover-mask a {
	color:blue;
}
/* フッター */
footer {
	height: 200px;
	text-align: center;
}
footer p {
	font-size: 0.9rem;
	padding-top: 160px;
	margin: 0;
	font-family: serif;
}