@charset "utf-8";

/*-----------------------------------------------
	index
-----------------------------------------------*/
/* firstview */
body{
	overflow: hidden;
	min-width: 0;
}
body.loaded{
	overflow: auto;
}
#firstview{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #FFF;
	z-index: 99999;
}
#firstview .wrapper{
	position: absolute;
	top: calc(50% - 71.5px);
	left: calc(50% - 113.5px);
	width: 227px;
	height: 143px;
}
#firstview .img{
	width: 84px;
	margin: 0 auto;
	opacity: 0;
}
#firstview.loading .img{
	opacity: 1;
	transition: opacity 0.5s ease-in-out 0.9s;
	-webkit-transition: opacity 0.5s ease-in-out 0.9s;
}
#firstview .tit{
	font-size: 24px;
	color: #000;
	text-align: center;
	font-weight: bold;
	letter-spacing: 3.7px;
	margin-top: 27px;
	white-space: nowrap;
}
#firstview .txt{
	margin: 4px 0 0 8px;
	font-size: 10px;
	color: #000;
	text-align: center;
	letter-spacing: 0.8px;
}
#firstview .char{
	opacity: 0;
}
#firstview.loading .char{
	opacity: 1;
	transition: opacity 0.1s ease-in-out 0s;
	-webkit-transition: opacity 0.1s ease-in-out 0s;
}
#firstview.loading .char02{
	transition-delay: 0.05s;
	-webkit-transition-delay: 0.05s;
}
#firstview.loading .char03{
	transition-delay: 0.1s;
	-webkit-transition-delay: 0.1s;
}
#firstview.loading .char04{
	transition-delay: 0.15s;
	-webkit-transition-delay: 0.15s;
}
#firstview.loading .char05{
	transition-delay: 0.2s;
	-webkit-transition-delay: 0.2s;
}
#firstview.loading .char06{
	transition-delay: 0.25s;
	-webkit-transition-delay: 0.25s;
}
#firstview.loading .char07{
	transition-delay: 0.3s;
	-webkit-transition-delay: 0.3s;
}
#firstview.loading .char08{
	transition-delay: 0.35s;
	-webkit-transition-delay: 0.35s;
}
#firstview.loading .char09{
	transition-delay: 0.4s;
	-webkit-transition-delay: 0.4s;
}
#firstview.loading .char10{
	transition-delay: 0.45s;
	-webkit-transition-delay: 0.45s;
}
#firstview.loading .char11{
	transition-delay: 0.5s;
	-webkit-transition-delay: 0.5s;
}
#firstview.loading .char12{
	transition-delay: 0.55s;
	-webkit-transition-delay: 0.55s;
}
#firstview.loading .char13{
	transition-delay: 0.6s;
	-webkit-transition-delay: 0.6s;
}
#firstview.loading .char14{
	transition-delay: 0.65s;
	-webkit-transition-delay: 0.65s;
}
#firstview.loading .char15{
	transition-delay: 0.7s;
	-webkit-transition-delay: 0.7s;
}
#firstview.loading .char16{
	transition-delay: 0.75s;
	-webkit-transition-delay: 0.75s;
}
#firstview.loading .char17{
	transition-delay: 0.8s;
	-webkit-transition-delay: 0.8s;
}
#firstview.loading .char18{
	transition-delay: 0.85s;
	-webkit-transition-delay: 0.85s;
}
@media only screen and (max-width:1023px){
	#firstview .img{
		width: 67px;
	}
	#firstview .tit{
		font-size: 20px;
		letter-spacing: 2.25px;
		margin-top: 20px;
	}
	#firstview .txt{
		margin: 2px 0 0 0;
		letter-spacing: 1.25px;
		transform: scale(0.75);
		transform-origin:center center;
	}
}

/* secIndexSlider */
.secIndexSlider{
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.secIndexSlider .slide{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-duration: 3s;
	transition-duration: 3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.secIndexSlider .slide .img{
	display: block;
	width: 100%;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	background-position: center center;
	background-size: cover;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}
.secIndexSlider .slide:first-child .img{
	background: url(../img/index/imgIndexSlider01.jpg) center top / cover no-repeat;
}
.secIndexSlider .slide:nth-child(2) .img{
	background: url(../img/index/imgIndexSlider02.jpg) center top / cover no-repeat;
}
.secIndexSlider .slide:nth-child(3) .img{
	background: url(../img/index/imgIndexSlider03.jpg) center top / cover no-repeat;
}
.secIndexSlider .slide:nth-child(4) .img{
	background: url(../img/index/imgIndexSlider04.jpg) center top / cover no-repeat;
}
.secIndexSlider .slide.current{
	z-index: 5;
	opacity: 1;
}
.secIndexSlider .slide.current .img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 11s;
	transition-duration: 11s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear
}
.secIndexSlider .slide.pre{
	z-index: 10;
	opacity: 0;
}
.secIndexSlider .slide.pre .img{
	-webkit-transform: scale(1);
	transform: scale(1)
}
@media only screen and (max-width:1023px){
	.secIndexSlider .slide:first-child .img{
		background-image: url(../img/index/imgIndexSlider01_sp.jpg);
	}
	.secIndexSlider .slide:nth-child(2) .img{
		background-image: url(../img/index/imgIndexSlider02_sp.jpg);
	}
	.secIndexSlider .slide:nth-child(3) .img{
		background-image: url(../img/index/imgIndexSlider03_sp.jpg);
	}
	.secIndexSlider .slide:nth-child(4) .img{
		background-image: url(../img/index/imgIndexSlider04_sp.jpg);
	}
}

/* secIndexConcept */
.secIndexConcept{
	background: #C0BEA1;
	position: relative;
	z-index: 10;
}
.secIndexConcept .txt{
	width: 495px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 43px;
	color: #FFF;
	padding: 131px 0 144px;
	letter-spacing: 0.5px;
	font-weight: 500;
}
.secIndexConcept .noBr{
	white-space: nowrap;
}
@media only screen and (max-width:1023px){
	.secIndexConcept .txt{
		width: 85.33%;
		font-size: 11px;
		line-height: 25px;
		letter-spacing: -0.25px;
		padding: 62px 0 60px;
		font-weight: 500;
	}
}

/* secLineupTit */
.secLineupTit{
	height: 380px;
	position: relative;
	overflow: hidden;
	background: url(../img/index/bgLineupTit01.jpg) center top / cover no-repeat;
}
.secLineupTit .bg,
.secLineupTit .wrapper{
	display: block;
	width: 2000px;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: calc(50% - 1000px);
}
.secLineupTit .bg::before,
.secLineupTit .bg::after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	bottom: 0;
	z-index: 1000;
}
.secLineupTit .bg::before{
	border-width: 144px 0 0 1000px;
	border-color: transparent transparent transparent #FFF;
	left: 0;
}
.secLineupTit .bg::after{
	border-width: 0 0 144px 1000px;
	border-color: transparent transparent #FFF transparent;
	right: 0;
}
.secLineupTit .wrapper::before{
	content: "";
	display: block;
	width: 100%;
	height: 0;
	background: #000;
	position: absolute;
	top: 0;
	left: 0;
	transition: height 0.25s ease-in-out;
	-webkit-transition: height 0.25s ease-in-out;
	z-index: 10;
}
.secLineupTit .wrapper:hover::before{
	height: 100%;
}
.secLineupTit .wrapper .boxTxt{
	height: 100%;
	text-align: center;
	z-index: 1000;
	color: #FFF;
	position: relative;
	padding-top: 75px;
}
.secLineupTit .wrapper .boxTxt .tit{
	font-size: 45px;
	font-weight: bold;
	letter-spacing: 4px;
}
.secLineupTit .wrapper .boxTxt .txt01{
	font-size: 14px;
	margin-top: 5px;
	letter-spacing: 0.25px;
}
.secLineupTit .wrapper .boxTxt .txt02{
	font-size: 14px;
	letter-spacing: 0.5px;
	margin-top: 40px;
	padding-right: 32px;
}
.secLineupTit .wrapper .boxTxt .txt02 .num{
	font-size: 56px;
	margin: 0 4px;
	font-weight: bold;
}
.secLineupTit .wrapper .boxTxt .txt03{
	width: 300px;
	height: 71px;
	line-height: 71px;
	background: url(../img/index/bgLineupTit03.png) center top / cover no-repeat;
	margin: 10px auto 0;
	font-size: 14px;
	letter-spacing: 1px;
}
@media only screen and (max-width:1024px){
	.secLineupTit .wrapper::before{
		display: none;
	}
}
@media only screen and (max-width:1023px){
	.secLineupTit{
		height: 302px;
		position: relative;
		overflow: hidden;
		background: url(../img/index/bgLineupTit01_sp.jpg) center bottom / cover no-repeat;
	}
	.secLineupTit .wrapper .boxTxt{
		padding-top: 53px;
	}
	.secLineupTit .wrapper .boxTxt .tit{
		font-size: 22px;
		letter-spacing: 1.5px;
	}
	.secLineupTit .wrapper .boxTxt .txt01{
		font-size: 11px;
		line-height: 20px;
		margin-top: 26px;
		letter-spacing: 0.5px;
	}
	.secLineupTit .wrapper .boxTxt .txt02{
		font-size: 11px;
		letter-spacing: 0.5px;
		margin-top: 7px;
		padding-right: 12px;
	}
	.secLineupTit .wrapper .boxTxt .txt02 .num{
		font-size: 33px;
		vertical-align: middle;
		margin: 0 2px;
	}
	.secLineupTit .wrapper .boxTxt .txt03{
		width: 220px;
		height: 53px;
		line-height: 53px;
		background: url(../img/index/bgLineupTit03_sp.png) center top / cover no-repeat;
		margin: 20px auto 0;
		font-size: 11px;
		letter-spacing: 1px;
	}
}

/* secLineupTop */
.secLineupTop{
	width: 1040px;
	margin: 98px auto 99px;
}
.secLineupTop .boxTit{
	border-bottom: 2px solid #B8B597;
	position: relative;
}
.secLineupTop .boxTit .tit{
	color: #000;
	font-weight: bold;
	text-align: center;
	letter-spacing: 2px;
	margin-bottom: 11px;
}
.secLineupTop .boxNew .boxTit .tit{
	font-size: 22px;
}
.secLineupTop .boxRecommend .boxTit .tit{
	font-size: 20px;
}
.secLineupTop .boxTit .btn{
	width: 94px;
	height: 15px;
	background: #FFF;
	position: absolute;
	right: 0;
	bottom: -10px;
	text-align: right;
}
.secLineupTop .boxTit .btn a{
	color: #B8B597;
	font-size: 12px;
	letter-spacing: 1px;
}
.secLineupTop .boxTit .btn a img{
	vertical-align: -3px;
	margin-right: 2px;
}
.secLineupTop .boxList{
	font-size: 0;
	margin-top: 19px;
}
.secLineupTop .boxList .item{
	display: inline-block;
	vertical-align: top;
	width: 340px;
	background: #E7E6DB;
	margin-right: 10px;
}
.secLineupTop .boxList .item:last-child{
	margin-right: 0;
}
.secLineupTop .boxList .item a{
	display: block;
	color: #000;
	padding: 32px 16px 32px 28px;
}
.secLineupTop .boxList .item .img{
	float: left;
	width: 145px;
}
.secLineupTop .boxList .item .img img{
	width: 145px;
	height: 97px;
}
.secLineupTop .boxList .item .boxTxt{
	float: right;
	width: 151px;
	padding-left: 15px;
}
.secLineupTop .boxList .item .boxTxt .tit{
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
	letter-spacing: 0.5px;
	height: 42px;
	overflow: hidden;
}
.secLineupTop .boxList .item .boxTxt .txt{
	color: #000;
	margin-top: 34px;
	font-weight: 500;
	width: 136px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.secLineupTop .boxList .item .boxTxt .txt .txt01{
	font-size: 10px;
	margin-right: 10px;
}
.secLineupTop .boxList .item .boxTxt .txt .txt02{
	font-size: 20px;
	letter-spacing: 1px;
}
.secLineupTop .boxList .item .boxTxt .txt .txt03{
	font-size: 12px;
	margin-left: 2px;
}
.secLineupTop .boxList .item .txtPrepared{
	height: 160px;
	line-height: 160px;
	font-size: 16px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 1.5px;
	color: #9C9C9D;
}
.secLineupTop .boxRecommend{
	margin-top: 43px;
}
.secLineupTop.newOnly{
	margin: 148px auto 149px;
}
.secLineupTop.newOnly .boxRecommend{
	display: none;
}
.secLineupTop.newOnly .boxTit{
	border-bottom: none;
}
.secLineupTop.newOnly .boxTit .tit{
	font-size: 20px;
}
.secLineupTop.newOnly .boxTit .btn{
	display: none;
}
@media only screen and (min-width:1024px) and (max-width:1024px){
	.secLineupTop{
		width: 100%;
	}
	.secLineupTop .boxList .item{
		width: 334px;
	}
	.secLineupTop .boxList .item:last-child{
		width: 336px;
	}
	.secLineupTop .boxList .item a{
		padding: 32px 13px 32px 25px;
	}
}
@media only screen and (max-width:1023px){
	.secLineupTop{
		width: 86.67%;
		margin: 74px auto;
	}
	.secLineupTop .boxTit{
		border-bottom: none;
		position: relative;
	}
	.secLineupTop .boxTit .tit{
		letter-spacing: 1.5px;
		margin-bottom: 14px;
	}
	.secLineupTop .boxNew .boxTit .tit,
	.secLineupTop .boxRecommend .boxTit .tit{
		font-size: 13px;
	}
	.secLineupTop .boxTit .btn{
		display: none;
	}
	.secLineupTop .boxList{
		font-size: 0;
		margin-top: 15px;
	}
	.secLineupTop .boxList .item{
		display: block;
		width: 100%;
		margin: 0 0 4px 0;
	}
	.secLineupTop .boxList .item:last-child{
		margin: 0;
	}
	.secLineupTop .boxList .item a{
		padding: 18px 20px 15px;
	}
	.secLineupTop .boxList .item .img{
		width: 105px;
	}
	.secLineupTop .boxList .item .img img{
		width: 105px;
		height: 70px;
	}
	.secLineupTop .boxList .item .boxTxt{
		width: calc(100% - 105px);
		padding-left: 12px;
	}
	.secLineupTop .boxList .item .boxTxt .tit{
		font-size: 12px;
		line-height: 15px;
		height: 30px;
		margin-top: 6px;
	}
	.secLineupTop .boxList .item .boxTxt .txt{
		margin-top: 14px;
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.secLineupTop .boxList .item .boxTxt .txt .txt01{
		font-size: 10px;
		margin-right: 12px;
	}
	.secLineupTop .boxList .item .boxTxt .txt .txt02{
		font-size: 25px;
		vertical-align: -4px;
		letter-spacing: 2px;
	}
	.secLineupTop .boxList .item .boxTxt .txt .txt03{
		font-size: 10px;
		margin-left: 6px;
	}
	.secLineupTop .boxList .item .txtPrepared{
		height: 111px;
		line-height: 111px;
		font-size: 12px;
		font-weight: normal;
	}
	.secLineupTop .btnAll a{
		display: block;
		width: 325px;
		height: 41px;
		line-height: 39px;
		border: 1px solid #B8B597;
		margin: 9px auto 0;
		text-align: center;
		color: #B8B597;
	}
	.secLineupTop .btnAll a img{
		vertical-align: -3px;
		margin-right: 2px;
	}
	.secLineupTop .boxRecommend{
		margin-top: 51px;
	}
	.secLineupTop.newOnly{
		margin: 71px auto 49px;
	}
	.secLineupTop.newOnly .boxTit .tit{
		font-size: 13px;
	}
	.secLineupTop.newOnly .btnAll a{
		display: none;
	}
}

/* secLineupBottom */
.secLineupBottom{
	background: #E7E6DB;
	padding: 100px 0;
}
.secLineupBottom .boxList{
	width: 1040px;
	margin: 0 auto;
	font-size: 0;
}
.secLineupBottom .boxList .item{
	display: inline-block;
	vertical-align: top;
	width: 340px;
	background: #FFF;
	margin-right: 10px;
	padding-bottom: 31px;
}
.secLineupBottom .boxList .item:last-child{
	margin-right: 0;
	padding-bottom: 28px;
}
.secLineupBottom .boxList .item .boxTit{
	padding: 30px 16px 26px 28px;
	position: relative;
}
.secLineupBottom .boxList .item .boxTit .tit{
	font-size: 16px;
	font-weight: bold;
	color: #000;
	letter-spacing: 1px;
}
.secLineupBottom .boxList .item .boxTit .btn{
	position: absolute;
	top: 30px;
	right: 16px;
}
.secLineupBottom .boxList .item .boxTit .btn a{
	color: #B8B597;
	font-size: 12px;
	letter-spacing: 1px;
}
.secLineupBottom .boxList .item .boxTit .btn a img{
	vertical-align: -3px;
	margin-right: 2px;
}
.secLineupBottom .boxList .item .wrapper{
	display: block;
	color: #000;
	padding: 0 16px 0 28px;
}
.secLineupBottom .boxList .item .img{
	float: left;
	width: 145px;
}
.secLineupBottom .boxList .item .img img{
	width: 145px;
	height: 97px;
}
.secLineupBottom .boxList .item .boxTxt{
	float: right;
	width: 151px;
	padding-left: 15px;
}
.secLineupBottom .boxList .item .boxTxt .tit{
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
	letter-spacing: 0.5px;
	height: 42px;
	overflow: hidden;
}
.secLineupBottom .boxList .item .boxTxt .txt{
	color: #000;
	margin-top: 34px;
	font-weight: 500;
	width: 136px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.secLineupBottom .boxList .item .boxTxt .txt .txt01{
	font-size: 10px;
	margin-right: 10px;
}
.secLineupBottom .boxList .item .boxTxt .txt .txt02{
	font-size: 20px;
	letter-spacing: 1px;
}
.secLineupBottom .boxList .item .boxTxt .txt .txt03{
	font-size: 12px;
	margin-left: 2px;
}
.secLineupBottom .boxList .boxCondition{
	padding: 4px 21px 0 28px;
	counter-reset: number;
}
.secLineupBottom .boxList .boxCondition .conditionItem{
	font-size: 14px;
	line-height: 32px;
	letter-spacing: 1px;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.secLineupBottom .boxList .boxCondition .conditionItem::before{
	counter-increment: number;
	content: counter(number);
	margin-right: 16px;
	font-weight: bold;
}
.secLineupBottom .boxList .item .txtUnsaved{
	height: 97px;
	font-size: 16px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 1.5px;
	color: #9C9C9D;
	padding: 25px 0 55px;
}
.secLineupBottom .conditions .unsaved,
.secLineupBottom .baseTemplate{
    display: none;
}
@media only screen and (min-width:1024px) and (max-width:1024px){
	.secLineupBottom{
		width: 100%;
	}
	.secLineupBottom .boxList .item{
		width: 334px;
	}
	.secLineupBottom .boxList .item:last-child{
		width: 336px;
	}
	.secLineupBottom .boxList .item .wrapper{
		padding: 0 12px 0 24px;
	}
}
@media only screen and (max-width:1023px){
	.secLineupBottom{
		padding: 51px 0 47px;
	}
	.secLineupBottom .boxList{
		width: 86.67%;
		margin: 0 auto;
	}
	.secLineupBottom .boxList .item{
		display: block;
		width: 100%;
		margin: 0 0 17px 0;
		background: transparent;
	}
	.secLineupBottom .boxList .item:last-child{
		margin: 0;
	}
	.secLineupBottom .boxList .item .boxTit{
		padding: 0;
		text-align: center;
	}
	.secLineupBottom .boxList .item .boxTit .tit{
		font-size: 13px;
		letter-spacing: 0.5px;
		margin-bottom: 14px;
	}
	.secLineupBottom .boxList .item .boxTit .btn{
		display: none;
	}
	.secLineupBottom .boxList .item .wrapper{
		background: #FFF;
		padding: 20px 20px 16px;
	}
	.secLineupBottom .boxList .item .img{
		width: 105px;
	}
	.secLineupBottom .boxList .item .img img{
		width: 105px;
		height: 70px;
	}
	.secLineupBottom .boxList .item .boxTxt{
		width: calc(100% - 105px);
		padding-left: 12px;
	}
	.secLineupBottom .boxList .item .boxTxt .tit{
		font-size: 12px;
		line-height: 15px;
		height: 30px;
		margin-top: 6px;
	}
	.secLineupBottom .boxList .item .boxTxt .txt{
		margin-top: 14px;
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.secLineupBottom .boxList .item .boxTxt .txt .txt01{
		font-size: 10px;
		margin-right: 12px;
	}
	.secLineupBottom .boxList .item .boxTxt .txt .txt02{
		font-size: 25px;
		vertical-align: -4px;
		letter-spacing: 2px;
	}
	.secLineupBottom .boxList .item .boxTxt .txt .txt03{
		font-size: 10px;
		margin-left: 6px;
	}
	.secLineupBottom .boxList .item .btnAll a{
		display: block;
		width: 100%;
		height: 40px;
		line-height: 38px;
		border-top: 1px solid #E6E5DB;
		text-align: center;
		background: #FFF;
		font-size: 12px;
		color: #B8B597;
	}
	.secLineupBottom .boxList .item .btnAll a img{
		vertical-align: -1px;
		margin-right: 5px;
		width: 10px;
		height: auto;
	}
	.secLineupBottom .boxList .boxCondition{
		background: #FFF;
		padding: 22px 50px;
	}
	.secLineupBottom .boxList .boxCondition .conditionItem{
		padding: 0;
		background: #FFF;
		font-size: 11px;
		line-height: 22px;
		letter-spacing: 0.75px;
	}
	.secLineupBottom .boxList .boxCondition .conditionItem::before{
		margin-right: 12px;
	}
	.secLineupBottom .boxList .item .txtUnsaved{
		height: 110px;
		line-height: 110px;
		font-size: 12px;
		letter-spacing: 1px;
		padding: 0;
		background: #FFF;
		font-weight: normal;
	}
}

/* secIndexMenu */
.secIndexMenu .item{
	width: 100%;
	height: 0;
	padding-top: 21.875%;
	float: left;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}
.secIndexMenu .item.isSearch{
	padding-top: 28.125%;
}
.secIndexMenu .col3{
	display: flex;
	gap: 0 10px;
	width: 100%;
}
.secIndexMenu .col3 .item{
	padding-top: 21.875%;
}
.secIndexMenu .item .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	padding-top: 30.47%;
}
.secIndexMenu .item .bg img{
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
.secIndexMenu .item.mouseOver .bg{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition-duration:0.25s;
	transition-duration: 0.25s;
}
.secIndexMenu .item.mouseLeave .bg{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration:0.25s;
	transition-duration: 0.25s;
}
.secIndexMenu .item .boxWrap{
	width: 93.75%;
	height: 90.6%;
	position: absolute;
	top: 4.7%;
	left: 3.125%;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.secIndexMenu .item .boxWrap .square{
	position: absolute;
	height: 0;
}
.secIndexMenu .item.mouseOver .boxWrap .square{
	-webkit-animation: squareAnimationIn 0.25s ease-in-out;
	animation: squareAnimationIn 0.25s ease-in-out;
	background: #000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.secIndexMenu .item.mouseLeave .boxWrap .square{
	-webkit-animation: squareAnimationOut 0.25s ease-in-out;
	animation: squareAnimationOut 0.25s ease-in-out;
	background: #000;
}
@keyframes squareAnimationIn {
	from{
		top: 10.94%;
		left: 10.94%;
		width: 78.12%;
		height: 78.12%;
		opacity: 0;
	}
	to{
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 1;
	}
}
@keyframes squareAnimationOut {
	from{
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 1;
	}
	to{
		top: 10.94%;
		left: 10.94%;
		width: 78.12%;
		height: 78.12%;
		opacity: 0;
	}
}
.secIndexMenu .item .boxWrap .tit{
	font-size: 45px;
	font-weight: bold;
	text-align: center;
	color: #FFF;
	letter-spacing: 0.1em;
	position: relative;
	z-index: 1;
}
.secIndexMenu .col3 .item .tit{
	font-size: 40px;
}
.secIndexMenu .item .boxWrap .titJp{
	font-size: 18px;
	text-align: center;
	color: #FFF;
	letter-spacing: 0.07em;
	position: relative;
	z-index: 1;
	padding: 8px 0 0;
}
.secIndexMenu .item .boxWrap .txt02{
	font-size: 14px;
	text-align: center;
	color: #FFF;
	padding: 22px 0 0;
	letter-spacing: 0.07em;
	position: relative;
	z-index: 1;
}
.secIndexMenu .item .boxWrap .txt02 .num{
	font-size: 56px;
	font-weight: bold;
	margin: 0px 4px;
}
.secIndexMenu .item .boxWrap .txt{
	font-size: 14px;
	text-align: center;
	color: #FFF;
	line-height: 1.7;
	padding: 17px 0 0;
	letter-spacing: 0.07em;
	position: relative;
	z-index: 1;
}
.secIndexMenu .col3 .item .boxWrap .txt{
	font-size: 13px;
}
.secIndexMenu .item .boxWrap .btn{
	font-size: 14px;
	text-align: center;
	color: #FFF;
	letter-spacing: 0.15em;
	position: relative;
	z-index: 1;
	padding: 34px 0 0;
}
@media only screen and (max-width:1200px){
	.secIndexMenu .item .boxWrap .tit{
		font-size: 30px;
	}
	.secIndexMenu .col3 .item .tit{
		font-size: 30px;
	}
	.secIndexMenu .item .boxWrap .titJp{
		font-size: 16px;
	}
}
@media only screen and (max-width:1023px){
	.secIndexMenu .item{
		width: 100% !important;
		padding-top: 41.34%;
		float: none;
		margin-bottom: 5px;
	}
	.secIndexMenu .item.isSearch{
		padding-top: 66.67%;
	}
	.secIndexMenu .col3{
		display: flex;
		width: 100%;
		flex-direction: column;
	}
	.secIndexMenu .col3 .item{
		padding-top: 41.34%;
	}
	.secIndexMenu .item .bg{
		padding-top: 53.33%;
	}
	.secIndexMenu .item .boxWrap{
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}
	.secIndexMenu .item .boxWrap .square{
		display: none;
	}
	.secIndexMenu .item .boxWrap .tit{
		font-size: 25px;
		letter-spacing: 0.1em;
	}
	.secIndexMenu .item .boxWrap .titJp{
		font-size: 10px;
		letter-spacing: 0.07em;
		padding: 3px 0 0;
	}
	.secIndexMenu .item .boxWrap .txt02{
		font-size: 11px;
		padding: 18px 0 0;
		letter-spacing: 0.07em;
	}
	.secIndexMenu .item.isSearch .boxWrap .txt02{
		padding: 21px 0 0;
	}
	.secIndexMenu .item .boxWrap .txt02 .num{
		font-size: 33px;
		margin: 0px 4px;
		vertical-align: -0.1em;
	}
	.secIndexMenu .item .boxWrap .txt{
		font-size: 11px;
		line-height: 1.36;
		padding-top: 11px;
		letter-spacing: 0.5px;
	}
	.secIndexMenu .item.isSearch .boxWrap .txt{
		padding-top: 6px;
	}
	.secIndexMenu .item .boxWrap .btn{
		padding: 10px 0 0;
		font-size: 11px;
	}
	.secIndexMenu .item.isSearch .boxWrap .btn{
		padding: 42px 0 0;
	}
	.secIndexMenu .item .bg{
		opacity: 0;
		-webkit-transform: translate3d(0, 30px, 0) scale(0.9);
		transform: translate3d(0, 30px, 0) scale(0.9);
		-webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
		transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
	}
	.secIndexMenu .item .tit,
	.secIndexMenu .item .boxWrap .titJp{
		opacity: 0;
		-webkit-transform: translate3d(0, 30px, 0) scale(0.9);
		transform: translate3d(0, 30px, 0) scale(0.9);
		-webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
		transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
	}
	.secIndexMenu .item .txt,
	.secIndexMenu .item .boxWrap .txt02{
		opacity: 0;
		-webkit-transform: translate3d(0, 30px, 0) scale(0.9);
		transform: translate3d(0, 30px, 0) scale(0.9);
		-webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
		transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
	}
	.secIndexMenu .col3 .item .boxWrap .txt{
		font-size: 11px;
	}
	.secIndexMenu .item .btn{
		opacity: 0;
		-webkit-transform: translate3d(0, 30px, 0) scale(0.9);
		transform: translate3d(0, 30px, 0) scale(0.9);
		-webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
		transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
	}
	.secIndexMenu .item .bg.jsShow,
	.secIndexMenu .item .tit.jsShow,
	.secIndexMenu .item .txt.jsShow,
	.secIndexMenu .item .btn.jsShow,
	.secIndexMenu .item .boxWrap .titJp.jsShow,
	.secIndexMenu .item .boxWrap .txt02.jsShow{
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0) scale(1);
		transform: translate3d(0, 0, 0) scale(1);
	}
}

/* secIndexNews */
.secIndexNews{
	background: #FFF;
	padding: 78px 0 100px;
}
.secIndexNews .wrapper{
	width: 900px;
	margin: 0 auto;
}
.secIndexNews .boxTit .date{
	font-size: 16px;
	text-align: center;
	color: #B8B597;
	font-weight: bold;
	letter-spacing: -0.5px;
}
.secIndexNews .boxTit .tit{
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 1.5px;
	text-align: center;
	color: #000;
	font-weight: 500;
	margin-top: 2px;
}
.secIndexNews .boxImg{
	border-top: 2px solid #B8B597;
	border-bottom: 2px solid #B8B597;
	margin-top: 14px;
	display: table;
	width: 100%;
}
.secIndexNews .boxImg .img{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 62px 0 42px;
}
.secIndexNews .boxImg .img img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.secIndexNews .btnMore a{
	display: block;
	width: 300px;
	height: 60px;
	border: 1px solid #B8B597;
	font-size: 0;
	margin: 48px auto 0;
	text-align: center;
	padding: 12px 2px 0 0;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.secIndexNews .btnMore a .img{
	display: inline-block;
	vertical-align: top;
	width: 27px;
	height: 35px;
	background: url(../img/index/btnMore.gif) center top / cover no-repeat;
	margin-right: 17px;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.secIndexNews .btnMore a .txt{
	display: inline-block;
	vertical-align: top;
	line-height: 35px;
	padding-top: 2px;
	font-size: 14px;
	color: #B8B597;
	font-weight: bold;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	letter-spacing: 1.5px;
}
.secIndexNews .btnMore a:hover{
	background: #000;
	color: #FFF;
	border-color: #000;
}
.secIndexNews .btnMore a:hover .img{
	background-image: url(../img/index/btnMore_on.gif);
}
.secIndexNews .btnMore a:hover .txt{
	color: #FFFF;
}
@media only screen and (max-width:1024px){
	.secIndexNews{
		padding-top: 20px;
	}
	.secIndexNews .wrapper{
		width: 100%;
	}
}
@media only screen and (max-width:1023px){
	.secIndexNews{
		padding: 52px 0 54px;
	}
	.secIndexNews .wrapper{
		width: 86.67%;
	}
	.secIndexNews .boxTit .date{
		font-size: 10px;
		transform: scale(0.9);
		transform-origin: center center;
		-webkit-transform: scale(0.9);
		-webkit-transform-origin: center center;
		letter-spacing: 0.25px;
	}
	.secIndexNews .boxTit .tit{
		font-size: 25px;
		letter-spacing: 1px;
	}
	.secIndexNews .boxImg{
		margin-top: 15px;
	}
	.secIndexNews .boxImg .img{
		padding: 32px 0 30px;
	}
	.secIndexNews .btnMore a{
		width: 220px;
		height: 45px;
		padding: 8px 0 0 0;
	}
	.secIndexNews .btnMore a .img{
		width: 20px;
		height: 26px;
		margin-right: 18px;
	}
	.secIndexNews .btnMore a .txt{
		line-height: 26px;
		font-size: 11px;
		letter-spacing: 1px;
	}
	.secIndexNews .btnMore a:hover{
		background: #FFF;
		color: #B8B597;
		border-color: #B8B597;
	}
	.secIndexNews .btnMore a:hover .img{
		background-image: url(../img/index/btnMore.gif);
	}
	.secIndexNews .btnMore a:hover .txt{
		color: #B8B597;
	}
}

/* secIndexBnr */
.secIndexBnr{
	background: #FFF;
}
.secIndexBnr li .inner{
	display: block;
	background: #000;
	text-align: center;
}
.secIndexBnr li:nth-child(1) .inner{
	background: url(../img/index/bnrIndex02Bg.jpg) left center / 50% auto no-repeat #333;
}
.secIndexBnr li:nth-child(3) .inner{
	background: #E7EDED;
}
.secIndexBnr li:nth-child(3) .inner:hover{
	filter:alpha(opacity=70);
	opacity:0.7;
}
.secIndexBnr .imgPc{
	display: inline !important;
}
.secIndexBnr .imgTb,
.secIndexBnr .imgSp{
	display: none !important;
}
@media only screen and (max-width:1024px){
	.secIndexBnr .imgTb{
		display: inline !important;
	}
	.secIndexBnr .imgPc,
	.secIndexBnr .imgSp{
		display: none !important;
	}
	.secIndexBnr .imgTb{
		width: 100%;
		height: auto;
	}
}
@media only screen and (max-width:1023px){
	.secIndexBnr .imgSp{
		display: inline !important;
	}
	.secIndexBnr .imgPc,
	.secIndexBnr .imgTb{
		display: none !important;
	}
	.secIndexBnr li:nth-child(3) .inner:hover{
		filter:alpha(opacity=100);
		opacity:100;
	}
}
