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

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/* For modern browsers */
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
	zoom: 1;
}
/*/ LP /////////////////////////////////////////////////////*/

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	color: #333;
	line-height: 1.7;
	letter-spacing: 0.8pt;
}
.container {
	width: 100%;
	margin: 0;
	padding: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
a {
	text-decoration: none;
	color: #333;
}
img {
	width: 100%;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

/* ------------------------------------------------------------

	PC	
============================================================ */

/*--------main--------*/
#main {
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	text-align: center;
	background: url(../../2017aw_xmas/images/main_bg.jpg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	position :relative;
}
#main h1 {
	width: 50%;
	margin: 0 0 0 -25%;
	position: absolute;
	top: 7%;
	left: 50%;
}
#main p {
	font-size: 16px;
	line-height: 2;
	margin: 0;
	padding: 35% 20% 0;
	color: #fff;
	font-weight: bold;
}

#main p span {
	background: rgba(0,0,0,0.6);
	display: block;
}

/*--------lead--------*/

#lead p {
	font-size: 16px;
	line-height: 2;
	margin: 40px auto;
	font-weight: bold;
	text-align: center;
	color: #333;
}
/*--------itemBox--------*/
#itemBox {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
#itemBox h2 {
	font-size: 46px;
	margin: 0 0 20px;
	font-family: 'Century Gothic', 'Questrial', sans-serif;
	font-weight: normal;
}

#itemBox p {
	margin: 0 0 40px;
}
#itemBox ul {
	margin: 40px 0;
	display: flex;
	flex-wrap: wrap;
}
#itemBox ul li {
	width: calc(100% / 3 - 6px);
	box-sizing: border-box;
	background: rgba(0,0,0,0.3);
	margin-bottom: 9px;
}

#itemBox ul li:nth-child(2n), #itemBox ul li:nth-child(3n) {
	margin-left: 9px;
}
#itemBox ul li img {
	display: block;
}
#itemBox ul li h3 {
	font-size: 16px;
	margin: 0 0 8px;
	padding-bottom: 10px;
	line-height: 1.5em;
	border-bottom: dashed 1px #fff;
}
#itemBox ul li h3 span {
	font-size: 12px;
}
#itemBox ul li p {
	font-size: 12px;
	text-align: left;
}

/*--------link--------*/
#link {
	max-width: 950px;
	margin: 0 auto;
	padding: 0;
}
#link li {
	width: 47.5%;
	margin: 0 5% 0 0;
	padding: 0;
	border: solid 1px #CDD6DC;
	background: #EAF0F5;
	text-align: center;
	float: left;
	display: block;
}
#link li:nth-child(even) {
	margin: 0;
}
#link li a {
	margin: 0;
	padding: 30px 0;
	color: #585752;
	font-size: 14px;
	font-weight: bold;
	display: block;
	text-decoration: none;
}

#link li a:hover {
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
/*--------footer--------*/
footer {
	width: 100%;
	margin: 80px 0 20px 0;
	text-align: center;
}
footer #footer_logo {
	max-width: 140px;
	height: auto;
}
footer #copyright {
	width: 100%;
	margin: 20px 0 0 0;
	padding: 20px 0 0 0;
	border-top: solid 1px #ccc;
	font-size: 13px;
}

footer a:hover {
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

/*--------animation--------*/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
/*/////////// ホバーエフェクト ///////////*/
figure {

	overflow: hidden;
	margin: 0;
}
figcaption {
	z-index: 2;
	width: 100%;
	color: #FFF;
	padding: 5%;
	box-sizing: border-box;
}

figure a {
	color: #fff;
	background: rgba(0,0,0,0.5);
	padding: 5px;
}
figure a:hover {
	background: rgba(0,0,0,0.3);
}

@-webkit-keyframes fadeIn {
 0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
 @keyframes fadeIn {
 0% {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animation01 {
	/* --秒待ってからアニメーションする */
	-webkit-animation-duration: 0.8s;
	animation-delay: 0.8s;
	-khtml-animation-delay: 0.8s;
	-ms-animation-delay: 0.8s;
}
.animation02 {
	/* --秒待ってからアニメーションする */
	-webkit-animation-duration: 1.5s;
	animation-delay: 1.5s;
	-khtml-animation-delay: 1.5s;
	-ms-animation-delay: 1.5s;
}

/* ------------------------------------------------------------

	SP
============================================================ */
@media screen and (max-width: 580px) {
/*--------main--------*/
#main {
	height: auto;
	height: 500px;
	margin: 0 auto;
	text-align: center;
	background: url(../../2017aw_xmas/images/main_bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}
#main h1 {
	width: 90%;
	margin: 0 auto;
	padding: 50px 0;
	position: inherit;
	top: 0;
	left: 0;
}
#main p {
	width: 90%;
	margin: 0 auto;
	padding: 0;
	text-align: left;
	font-size: 14px;
}
	
/*--------lead--------*/
	#lead p {
		width: 90%;
	}	
/*--------itemBox--------*/
#itemBox h2 {
	font-size: 30px;
	letter-spacing: 0.5pt;
}
#itemBox p {
	margin: 0 25px;
	text-align: left;
	}
#itemBox ul {
	width: 90%;
	margin: 0 auto;
}
#itemBox ul li {
	width: 100%;
	padding: 0;
	margin: 20px auto;
}
#itemBox ul li:nth-child(2n), #itemBox ul li:nth-child(3n) {
	margin-left: 0;
}	
#itemBox ul li p {
	font-size: 14px;
	text-align: left;
	margin: 0;

}
	
#itemBox p.attention {
	width: 90%;
	margin: 0 auto 40px;
	font-size: 10px;
}

/*--------link--------*/
#link {
	width: 90%;
	margin: 20px auto 0;
	padding: 0;
}
#link li {
	width: 100%;
	margin: 0 0 20px 0;
}
#link li:nth-child(even) {
	margin: 0;
}
#link li a {
	width: 100%;
	margin: 0;
	font-size: 12px;
}
/*--------footer--------*/
footer #copyright {
	font-size: 11px;
}
/*/////////// ホバーエフェクト ///////////*/
/*
figcaption {
	display: none;
}
*/

figure {
	overflow: hidden;
}
figcaption {
	z-index: 2;
	width: 100%;
	padding: 10px;
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
	
figcaption p {
	padding: 20px 0;
		
	}	
#itemBox ul li h3 {
	margin: 15px 0 0;
}

}
