@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');


*{margin:0;padding:0;text-decoration:none}fieldset{border:0}body{line-height:1.8}body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,select,ul{margin:0;padding:0}img{border:0;vertical-align:top}a{text-decoration:none}em{font-style:normal}ul li{list-style-type:none;list-style-image:none}address{font-style:normal}
html{font-size: 62.5%;}
body{font-size: 1.4em;}


/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 共通項目 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */



/* マージン */
.margin02 {	margin-bottom: 2px; }
.margin05 {	margin-bottom: 5px; }
.margin06 {	margin-bottom: 6px; }
.margin08 {	margin-bottom: 8px; }
.margin10 {	margin-bottom: 10px; }
.margin15 {	margin-bottom: 15px; }
.margin20 {	margin-bottom: 20px; }
.margin30 {	margin-bottom: 30px; }
.margin40 {	margin-bottom: 40px; }


/* 文字装飾 */
strong {
	font-weight: bold;
}

ul {
}
ul li {
	list-style:none;	
}


/* float解除 */
.cbox { 
}
* html .cbox {
	zoom: 100%;
}
*:first-child+html .cbox {
	display: inline-block;
}
.cbox:after {
	content: "."; 
	clear: both; 
	height: 0; 
	display: block; 
	visibility: hidden;
}

input[type="button"],input[type="text"],input[type="submit"],input[type="image"],textarea{
    -webkit-appearance: none;
    border-radius: 0;
}

/* box-sizing */ 
* {
	box-sizing: border-box;
}




/* リンク */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
a {
	color: #000;
	transition: 0.3s;
	-webkit−transition: 0.3s;
}
a:hover {
	/*opacity: 0.5;*/
}


/* テキスト装飾 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 小文字 */
.cap {
	line-height: 1.5;
	font-size: 86%;
}


.pc {
	display: block;
}
.sp {
	display: none;
}
table {
	width: 100%;
	border-collapse: collapse;
}
	table th {
	}
	table td {
	}





/* 横幅 */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
body {
	position: relative;
	font-family: "Noto Sans JP";
	background-size: contain;
	color: #000;
	padding: 0;
	margin: 0;
	letter-spacing: 0.1em;
	line-height: 2.4;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	/*text-align: justify;*/
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	width: 100%;
	top: 0;
	padding: 0px;
	z-index: 200;
	position: absolute;
}
	* html #header {
		zoom: 100%;
	}
	*:first-child+html #header {
		display: inline-block;
	}
	#header:after {
		content: "."; 
		clear: both; 
		height: 0; 
		display: block; 
		visibility: hidden;
	}
	#header h1 {
		position: fixed;
		top: 20px;
		left: 60px;
		width: 310px;
	}


nav{
	float: right;
	text-align: center;
	margin-right: 80px;
	margin-top: 30px;
	font-size: 1.2rem;
	font-weight: 500;
}
/*ナビゲーションを横並びに*/
nav ul{
    display: flex;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
    margin:0 0 50px 0;
    list-style: none;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}
nav ul li:nth-child(1) a{
	padding:10px 3em;
}
nav ul li:nth-child(2) a{
	padding:10px 7em;
}
nav ul li:nth-child(3) a{
	padding:10px 5em;
}
nav ul li:nth-child(4) a{
	padding:10px 8em;
}
nav ul li:nth-child(5) a{
	padding:10px 5em;
}
nav ul li:nth-child(6) a{
	padding:10px 3.5em;
}
nav ul li:nth-child(7) a{
	padding:10px 4.5em;
}






nav ul li span{
    /*絶対配置でテキストの位置を決める*/
	position: absolute;
	left: 50%;
	top:0;
    /*アニメーションの指定*/
	transition: all .5s;
	transform: translate(-50%, 0);/*X方向に-50% ※中央寄せにするため*/
  /*ブロック要素にして透過なし、テキスト折り返しなし*/  
	display: block;
	opacity:1;
	white-space: nowrap;
}

/*差し替わるテキストの設定*/
nav ul li span:nth-child(2){
	opacity:0;/*透過0に*/
    transform: translate(-50%,100%);/*X方向に-50% Y方向に100%*/
}

/*hoverするとテキストが入れ替わる設定*/
nav ul li:hover span:nth-child(1){
	opacity:0;/*透過0に*/
    transform: translate(-50%,-100%);/*X方向に-50% Y方向に-100%*/
}

nav ul li:hover span:nth-child(2){
	opacity:1;/*不透明に*/
	transform: translate(-50%, 0);/*X方向に-50% Y方向に0*/
}






/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.inner {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}

.article {
	margin-bottom: 180px;
}



.set {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: left;
	
	-webkit-flex-wrap: wrap; 
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}




/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}

.modaal-wrapper {
	z-index: 200000 !important;
}




#EVENT {
	position: relative;
	margin-bottom: 80px;
}
	#EVENT h3 {
		max-width: 1200px;
		width: 90%;
		margin: 0 auto;
		margin-bottom: 30px;
		font-weight: 900;
		font-size: 3rem;
	}
#EVENT .slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:100%;
    margin:0 auto;
	position: relative;
	z-index: 1;
}

#EVENT .slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

#EVENT .slider .slick-slide {
    margin:0px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
#EVENT .slick-prev, 
#EVENT .slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 1px solid #666;/*矢印の色*/
    border-right: 1px solid #666;/*矢印の色*/
    height: 60px;
    width: 60px;
	z-index: 100;
}

#EVENT .slick-prev {/*戻る矢印の位置と形状*/
    left: 3%;
    transform: rotate(-135deg);
}

#EVENT .slick-next {/*次へ矢印の位置と形状*/
    right: 3%;
    transform: rotate(45deg);
}
#EVENT .btn {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: 300px;
	font-size: 2rem;
	border: solid 1px #000;
	width: 300px;
	text-align: center;
}
	#EVENT .btn a {
		display: block;
		color: #B90101;
		font-weight: 500;
		padding: 10px 20px;
	}
#EVENT .btn:hover {
	border: solid 1px #B90101;
	background: #B90101;
}
	#EVENT .btn:hover a {
		color: #FFF;
	}




#Blog {
	margin-bottom: 80px;
}
#Blog .inner {
	position: relative;
}
	#Blog h3 {
		margin-bottom: 30px;
		font-weight: 900;
		font-size: 3rem;
	}
	#Blog .set {
		padding-left: 150px;
		border-left: solid 1px #000;
	}
		#Blog .set div {
			width: 45%;
			margin-left: 5%;
			margin-bottom: 5%;
		}
			#Blog .set div img {
				width: 100%;
				height: auto;
			}
		#Blog .set div dl {
		}
			#Blog .set div dl dt {
				margin-bottom: 10px;
			}
#Blog .btn {
	position: absolute;
	bottom: -50px;
	right: 0;
	font-size: 2rem;
	border: solid 1px #000;
	width: 300px;
	text-align: center;
}
	#Blog .btn a {
		display: block;
		color: #B90101;
		font-weight: 500;
		padding: 10px 20px;
	}
#Blog .btn:hover {
	border: solid 1px #B90101;
	background: #B90101;
}
	#Blog .btn:hover a {
		color: #FFF;
	}







#Pager {
}
	#Pager ul {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;

		-webkit-flex-wrap: wrap; 
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#Pager ul li {
		margin: 0 0.5%;
	}
		#Pager ul li a {
			display: block;
			background: #f3ded3;
			text-align: center;
			border-radius: 3px;
			padding: 5px 15px;
		}
		#Pager ul li a.active {
			background: #af0c11;
			color: #FFF;
		}





/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

#footer {
	font-size: 1.2rem;
	text-align: center;
	padding: 100px 0;
}
	#footer .inner {
		position: relative;
		margin-bottom: 60px;
	}
	#footer .logo {
		width: 314px;
		float: left;
		margin-right: 250px;
	}
	#footer ul.sns {
	}
	#footer ul.sns li {
		display: inline-block;
		margin-left: 20px;
	}



#footer ul.me {
	text-align: left;
	float: left;
	margin-left: 60px;
}

/*ナビゲーションのリンク設定*/
#footer ul.me li a{
	display: block;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	padding: 20px 150px 20px 0px;
}


#footer ul.me li span{
    /*絶対配置でテキストの位置を決める*/
	position: absolute;
	left: 0%;
	top:0;
    /*アニメーションの指定*/
	transition: all .5s;
	transform: translate(0%, 0);/*X方向に-50% ※中央寄せにするため*/
  /*ブロック要素にして透過なし、テキスト折り返しなし*/  
	display: block;
	opacity:1;
	white-space: nowrap;
}

/*差し替わるテキストの設定*/
#footer ul.me li span:nth-child(2){
	opacity:0;/*透過0に*/
    transform: translate(0%,100%);/*X方向に-50% Y方向に100%*/
}

/*hoverするとテキストが入れ替わる設定*/
#footer ul.me li:hover span:nth-child(1){
	opacity:0;/*透過0に*/
    transform: translate(0%,-100%);/*X方向に-50% Y方向に-100%*/
}

#footer ul li:hover span:nth-child(2){
	opacity:1;/*不透明に*/
	transform: translate(0%, 0);/*X方向に-50% Y方向に0*/
}








/* max 1023px */
@media screen and (max-width: 1023px) {
.pc {
	display: none;
}
.sp {
	display: block;
}

	
	
body {
	background: #FFF;
}
	
	
	
table {
}
	table th {
		display: block;
		width: 100%;
	}
	table td {
		display: block;
		width: 100%;
	}
	
	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* ヘッダー */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
#header {
	padding: 3% 3% 3% 3%;
	background: #FFF;
	width: 100%;
	height: 80px;
	position: fixed;
}
	#header h1 {
		top: 20px;
		left: 20px;
		width: 32%;
	}

	nav{
		display: none;
	}
	
	#header .sns {
		float: right;
		margin-right: 45px;
		margin-top: 8px;

	}
		#header .sns li {
			width: 20px;
			display: inline-block;
			margin: 0 5px;
		}
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* 基本レイアウト */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
.inner {
}
	
.article {
	margin-top: 0%;
	margin-bottom: 10%;
}
	
	
	
	
	
	

#EVENT {
	margin-bottom: 10%;
}
	#EVENT h3 {
		font-size: 2rem;
	}

/*戻る、次へ矢印の位置*/
#EVENT .slick-prev, 
#EVENT .slick-next {
	display: none !important;
}
#EVENT .btn {
	position: absolute;
	top: 0;
	left: auto;
	right: 5%;
	margin-left: 0;
	font-size: 1.6rem;
	border: solid 1px #000;
	width: 150px;
	text-align: center;
}
	#EVENT .btn a {
		display: block;
		color: #B90101;
		font-weight: 500;
		padding: 10px;
	}
#EVENT .btn:hover {
	border: solid 1px #B90101;
	background: #B90101;
}
	#EVENT .btn:hover a {
		color: #FFF;
	}
	
	
	
	
#Blog {
	margin-bottom: 80px;
}
	#Blog h3 {
		margin-bottom: 5%;
		font-weight: 900;
		font-size: 2rem;
	}
	#Blog .set {
		padding-left: 0;
		border-left: none;
	}
		#Blog .set div {
			width: 100%;
			margin-left: 0%;
			margin-bottom: 5%;
		}
			#Blog .set div img {
				width: 100%;
				height: auto;
			}
		#Blog .set div dl {
		}
			#Blog .set div dl dt {
				margin-bottom: 10px;
			}
#Blog .btn {
	position: absolute;
	bottom: -50px;
	right: 0;
	font-size: 1.6rem;
	border: solid 1px #000;
	width: 150px;
	text-align: center;
}
	#Blog .btn a {
		display: block;
		color: #B90101;
		font-weight: 500;
		padding: 10px;
	}
#Blog .btn:hover {
	border: solid 1px #B90101;
	background: #B90101;
}
	#Blog .btn:hover a {
		color: #FFF;
	}

	
	
	
/* ++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++ */

#footer {
	font-size: 1.2rem;
	text-align: center;
	padding: 10% 0;
}
	#footer .inner {
		position: relative;
		margin-bottom: 60px;
	}
	#footer .logo {
		width: 40%;
		margin: 0 auto;
		float: none;
		margin-bottom: 5%;
	}
	#footer ul.me {
		text-align: center;
		float: none;
		margin-left: 0px;
	}
	#footer ul.sns {
		text-align: center;
		margin-top: 5%;
	}
	#footer ul.sns li {
		display: inline-block;
		margin-left: 20px;
	}














