@charset "utf-8";

/**
 *
 *  トップ
 *
 */

/*--------------------------------------------------------------------------
   overwrite  - 共通CSSの上書き -
---------------------------------------------------------------------------*/
#Header .header-inner{
	background-color: transparent;
}
#Header .logo{
	position: absolute;
	top: 14px;
	left: -10px;
	width: 236px;
	height: 62px;
	padding: 0;
	background: url(../../img/common/img_logo_index.png) no-repeat;
	background-size: 236px auto;
}
#Header.fixed .logo{
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	background: none;
}
#Header .logo img{
	display: none;
}
#Header.fixed .logo img{
	display: block;
}
#Gnav .menu li a{
	color: #fff;
	text-shadow: 0 0 .5em rgba(0,0,0,1.0);
}
#Header.fixed #Gnav .menu li a{
	color: #3c1f19;
	text-shadow: none;
}
#Content{
	padding-top: 0;
}
/* sp
=================================================================*/
@media screen and (max-width: 767px){
	#Header .header-inner{
		background-color: inherit;
	}
	#Header .logo{
		top: 7px;
		left: 16px;
		width: 142px;
		height: 36px;
		background: url(../../img/common/img_logo_index.png) no-repeat;
		background-size: 142px auto;
	}
	#Header .gnav-logo{
		display: block;
	}
	#nav-toggle span{
		background: #fff;
	}
	#Header.fixed #nav-toggle span{
		background: #3c1f19;
	}
	.open #nav-toggle span{
		background: #3c1f19;
	}
	#Header .gnav-area{
		top: inherit;
		right: inherit;
	}
	#Header.fixed.open{
		background-color: transparent;
	}
	#Header.fixed .gnav-overlay{
		background-color: rgba(251,251,251,0.85);
	}
	#Gnav .menu li a{
		color: #3c1f19;
		text-shadow: none;
	}
	#Content{
		padding-top: 0;
	}
}


/*--------------------------------------------------------------------------
		Mv
---------------------------------------------------------------------------*/
#Mv{
	position: relative;
}

/* テキスト */
#Mv h2 {
	position: absolute;
	z-index: 8888;
	width: 100%;
	height: 1px;
	overflow: visible;
	top: 50%;
	opacity: 0;
}
#Mv h2 span {
	display: block;
	width: 1000px;
	margin: 0 auto;
	text-align: right;
}
#Mv h2 img {
	position: relative;
	top: -180px;
}

/* 横向きの場合はサイズと一を調整 */
#Mv.landscape {

}
#Mv.landscape h1 {

}
#Mv.landscape h1 img {
	width: 460px;
	top: -230px;
}

/* スクロール */
#Mv .scroll {
	position: absolute;
	bottom: 120px;
	left: 50%;
	z-index: 9999;
	opacity: 0;
	height: 1px;
	overflow: visible;
}
#Mv .scroll p {
	position: relative;
	left: -35px;
}
#Mv .scroll a {
	padding-bottom: 30px;
	color: #FFF;
	font-size: 16px;
	letter-spacing: .1em;
}
#Mv .scroll a span {
	position: absolute;
	top: 25px;
	left: 50%;
	width: 16px;
	height: 16px;
	margin-left: -8px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes sdb {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
	}
	20% {
		-webkit-transform: rotate(-45deg) translate(-5px, 5px);
	}
	40% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
	}
}
@keyframes sdb {
	0% {
		transform: rotate(-45deg) translate(0, 0);
	}
	20% {
		transform: rotate(-45deg) translate(-5px, 5px);
	}
	40% {
		transform: rotate(-45deg) translate(0, 0);
	}
}


/* main_slide
--------------------------- */
#Mv {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 99;
}

#Mv .slick-track {
	background-color: #000;
}

#Mv li {

}

#Mv li span {
	display: block;
	overflow: hidden;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
#Mv li:first-child span {
	height: auto;
}

/*左右ナビ*/
#Mv .slide .nav {
	position: absolute;
	width: 100%;
	height: 1px;
	overflow: visible;
	top: 50%;
	z-index: 200;
	opacity: 0;
}
#Mv .slide .nav button{
	border: none;
	width: 80px;
	height: 200px;
	position: absolute;
	top: -100px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: 27px 60px;
	text-indent: -9999px;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
#Mv .slide .nav button.slick-prev{
	left: 0;
	background-image :url(../../img/index/btn_prev.png);
	background-position: center center;
}
#Mv .slide .nav button.slick-next{
	right: 0;
	background-image :url(../../img/index/btn_next.png);
	background-position: center center;
}

#Mv .slide .nav button.slick-prev:hover {
	left: -10px;
}
#Mv .slide .nav button.slick-next:hover {
	right: -10px;
}

/* dotナビ */
#Mv .slide .slick-dots {
	width: 100%;
	text-align: center;
	margin-top: 5px;
}
#Mv .slide .slick-dots li {
	display: inline;
	padding: 0 5px;
}
#Mv .slide .slick-dots li button {
	padding: 0;
	border: 1px solid #3c1f19;
	background-color: transparent;
	width: 10px;
	height: 10px;
	border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
	text-indent: -9999px;
	vertical-align: bottom;
	box-sizing: border-box;
}
#Mv .slide .slick-dots li button:last-of-type {
	display: none;
}
#Mv .slick-dots li.slick-active button {
	background: #3c1f19;
	border: none;
}


/* sp
=================================================================*/
@media screen and (max-width: 767px){
	/* テキスト */
	#Mv h2 {

	}
	#Mv h2 span {
		display: block;
		width: 100%;
		margin: 0 auto;
		text-align: right;
	}
	#Mv h2 img {
		position: relative;
		top: -100px;
		right: 20px;
		width: 270px;
		height: auto;
	}

	/* スクロール */
	#Mv .scroll {
		bottom: 80px;
	}
	#Mv .scroll p {
		position: relative;
		left: -30px;
	}
	#Mv .scroll a {
		padding-bottom: 20px;
		font-size: 14px;
	}
	#Mv .scroll a span {
		position: absolute;
		top: 25px;
		left: 50%;
		width: 14px;
		height: 14px;
		margin-left: -7px;
		border-left: 1px solid #fff;
		border-bottom: 1px solid #fff;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-webkit-animation: sdb 2s infinite;
		animation: sdb 2s infinite;
		box-sizing: border-box;
	}

	#Mv .slide .slick-dots li {
		padding: 0 6px;
	}
	#Mv .slide .nav button{
		display: none !important;
	}


}


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

---------------------------------------------------------------------------*/
#Main {
	padding-top: 55px;
}
#Main .contents{
	padding-bottom: 120px;
}
#Main .contents ul li{
	float: left;
	width: 33.3%;
	box-sizing: border-box;
	text-align: center;
}
#Main .contents ul li .ico{
	width: 150px;
	margin: 0 auto 20px auto;
}
#Main .contents ul li .ico img{
	width: 100%;
	height: auto;
}
#Main .contents ul li .ttl{
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 13px;
	font-size: 23px;
	line-height: 1.4;
}
#Main .contents ul li .ttl span{
	display: block;
	font-size: 10px;
	font-family: 'ヒラギノ角ゴ ProN W3',"Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-weight: normal;
}
#Main .contents ul li .ttl:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -25px;
	width: 50px;
	height: 3px;
	background-color: #3c1f19;
}
#Main .contents ul li .txt{
	margin-bottom: 20px;
	font-weight: bold;
}
#Main .contents ul li .btn{
	width: 130px;
	margin: 0 auto;
	padding: 5px 0;
	background-color: #3c1f19;
	border: 1px solid #3c1f19;
	font-size: 12px;
	text-align: center;
	color: #fff;
	box-sizing: border-box;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
#Main .contents ul li .ico,
#Main .contents ul li .ttl,
#Main .contents ul li .txt {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* hover */
.mode-pc #Main .contents ul li a:hover .ico,
.mode-pc #Main .contents ul li a:hover .ttl,
.mode-pc #Main .contents ul li a:hover .txt {
	opacity: .6;
}
.mode-pc #Main .contents ul li a:hover .btn{
	background-color: #fff;
	color: #3c1f19;
}

#Main .news{
	padding: 80px 0;
	background-color: #eee7e0;
}
#Main .news h2{
	margin-bottom: 25px;
	padding-left: 10px;
	border-left: 3px solid #3c1f19;
	font-size: 22px;
	line-height: 1.1;
}
#Main .news h2 span{
	display: table-cell;
	vertical-align: middle;
}
#Main .news h2 span.sub{
	padding-left: 15px;
	font-size: 11px;
}
#Main .news ul li{
	font-weight: bold;
}
#Main .news ul li:nth-child(odd){
	background-color: #fff;
}
#Main .news ul li a{
	display: block;
	padding: 15px 12px 10px 12px;
}
#Main .news dl dt{
	position: relative;
	line-height: 1;
	z-index: 3;
}
#Main .news dl dd{
	margin: -1.5em 0 0 158px;
	line-height: 1.8;
}
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, #Main .topics dl dd {
		margin: -1.3em 0 24px 120px;
	}
}
#Main .news dl dd.em{
	color: #c92200;
}
#Main .news .btn{
	float: right;
	width: 130px;
	margin-top: 30px;
}
#Main .news .btn a{
	display: block;
	padding: 5px 0;
	background-color: #3c1f19;
	border: 1px solid #3c1f19;
	font-size: 12px;
	text-align: center;
	color: #fff;
	box-sizing: border-box;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* hover */
.mode-pc #Main .news ul li a:hover{
	/*opacity: .5;*/
}
.mode-pc #Main .news ul li a:hover dl dd{
	text-decoration: underline;
}
.mode-pc #Main .news .btn a:hover{
	background-color: rgba(0,0,0,0);
	color: #3c1f19;
}
/* sp
=================================================================*/
@media screen and (max-width: 767px){
	#Main {
		padding-top: 25px;
	}
	#Main .contents{
		padding-bottom: 35px;
	}
	#Main .contents ul li{
		float: none;
		width: auto;
		margin-bottom: 40px;
	}
	#Main .contents ul li .ico{
		width: 177px;
		margin: 0 auto 16px auto;
	}
	#Main .contents ul li .ttl{
		margin-bottom: 23px;
		padding-bottom: 15px;
		font-size: 25px;
		line-height: 1.3;
	}
	#Main .contents ul li .ttl span{
		font-size: 11px;
	}
	#Main .contents ul li .ttl:after{
		margin-left: -28px;
		width: 56px;
		height: 3px;
	}
	#Main .contents ul li .txt{
		margin-bottom: 18px;
	}
	#Main .contents ul li .btn{
		width: 180px;
		padding: 10px 0;
		font-size: 17px;
	}

	#Main .news{
		padding: 20px 0;
	}
	#Main .news h2{
		margin-bottom: 21px;
		padding-left: 13px;
		font-size: 21px;
	}
	#Main .news h2 span.sub{
		padding-left: 16px;
	}
	#Main .news ul{
		margin: 0 -20px;
	}
	#Main .news ul li{
		padding: 15px 20px 10px 20px;
	}
	#Main .news dl dd{
		margin: .5em 0 0 0;
		line-height: 1.6;
	}
	#Main .news .btn{
		float: none;
		width: 108px;
		margin-top: 16px;
	}
	#Main .news .btn a{
		padding: 6px 0;
		font-size: 11px;
	}
}
