@charset "UTF-8";
/*******************************
 
TopCss
 
*******************************/
.hero{margin-bottom: 100px;}
section{margin-bottom: 150px;}
.btn-more{
	font-size: 87%;
    display: inline-block;
    margin: 40px auto 0;
    border: solid 1px #2f2f2f;
    width: 170px;
    border-radius: 30px;
    height: 45px;
    line-height: 45px;
	text-align: center;
    transition: all 300ms 0s ease;
}
.btn-more-wht{
	font-size: 87%;
    display: inline-block;
    margin: 40px auto 0;
    border: solid 1px #fff;
    width: 170px;
    border-radius: 30px;
    height: 45px;
    line-height: 45px;
	text-align: center;
	color: #fff;
}

.btn-more:hover, .btn-more-wht:hover{
	background-color: #000;
	color: #fff;
}
.btn-txt{
	font-size: 87%;
    text-decoration: underline;
	display: inline-block;
}
.btn-txt:after{
	content: "\f105";
    font-family: FontAwesome;
    margin-left: 10px;
    display: inline-block;
}
.block-main-ttl{
	font-size: 175%;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 40px;
}
.block-main-ttl span{
	display: block;
    font-size: 55%;
	letter-spacing: normal;
    color: #929292;
    font-weight: normal;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
	
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.hero {
		margin-bottom: 80px;
	}
	section {
		margin-bottom: 80px;
	}
	.btn-more {
		margin: 0 auto;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.hero {
		margin-bottom: 60px;
	}
	section {
		margin-bottom: 60px;
	}
	.block-main-ttl {
		font-size: 167%;
		margin-bottom: 20px;
	}
}

/*-----------------------------
Slide
-----------------------------*/

/*MainSlide*/
.main-slide .item img{
	width: 100%;
}

/*pickup-Slide*/
.pickup-slide{
	padding: 0 60px;
}
.pickup-slide .item .inner{
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    transition: all 300ms 0s ease;
}
.pickup-slide .item .inner:hover{
	opacity: 0.6;
}
.pickup-slide .item .inner img{
	width: 100%;
}
.pickup-arrow{
	position: absolute;
    z-index: 1;
    cursor: pointer;
    transition: all 300ms 0s ease;
    top: 0;
    bottom: 0;
    margin: auto;
}
.pickup-arrow:hover{
    background-color: #fff;	
    color: #313132;
}
.arrow{
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.prev-arrow{left: 0;}
.prev-arrow::before{
	content: '';
    width: 60px;
    height: 60px;
    border: 0px;
    border-left: solid 2px #a0a0a0;
    border-bottom: solid 2px #a0a0a0;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.next-arrow{right: 0;}
.next-arrow::before{
	content: '';
    width: 60px;
    height: 60px;
    border: 0px;
    border-top: solid 2px #a0a0a0;
    border-right: solid 2px #a0a0a0;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.pickup-slide {
		padding: 0 30px;
		margin-bottom: 30px;
	}
	.prev-arrow::before {
		width: 30px;
		height: 30px;
	}
	.next-arrow::before {
		width: 30px;
		height: 30px;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
}

/*-----------------------------
News tab
-----------------------------*/
.tab-wrap {
	justify-content: center;
	align-items: center;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #bfbfbf;
  display: block;
  order: -1;
}
.tab-label {
	color: #bfbfbf;
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	padding: 10px .5em;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	width: 15%;
	position: relative;
	letter-spacing: 2px;
    transition: all 300ms 0s ease;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-label:hover{
    color: #000;
}
.tab-content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
	color: #2f2f2f;
}

.tab-switch:checked+.tab-label:after{
	content: "";
	width: 100%;
	height: 3px;
	background-color: #2f2f2f;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: auto;
}
.tab-switch:checked+.tab-label+.tab-content {
	height: auto;
	overflow: auto;
	padding: 30px 0;
	opacity: 1;
    transition: all 300ms 0s ease;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

.news-list li a{
	justify-content: flex-start;
    align-items: center;
    font-size: 93%;
    border-bottom: solid 1px #bfbfbf;
    padding: 15px 10px;
}
.news-list li a:hover{
	background-color: rgba(0,0,0,0.2);
}
.news-list li .date{
	margin-right: 20px;
    font-weight: bold;
}
.news-list li .tag{
    width: 100px;
	font-size: 75%;
	color: #fff;
	background-color: #2f2f2f;
    margin-right: 20px;
	padding: 2px 0;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.tab-label {
		width: auto;
		letter-spacing: 0;
	}
}



/*-----------------------------
Product
-----------------------------*/
.product-list{
	margin-right: -20px;
	padding: 40px 0 0;
}
.product-list .item{
	width: 33.3333%;
	padding-right: 20px;
	margin-bottom: 60px;
}
.product-list .item .img{
	width: 100%;
	margin-bottom: 10px;
}
.product-list .item .img img{width: 100%;}
.product-list .item .txt{
	width: 100%;
	margin-bottom: 10px;
}
.product-list .item .txt .brand-ttl{
	font-size: 115%;
    font-weight: 600;
    text-align: center;
    letter-spacing: .03em;
    margin-bottom: 10px;
}
.product-list .item .txt .brand-ttl span{
	display: block;
    font-size: 70%;
    font-weight: normal;
    color: #929292;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.product-list .item {
    	width: 100%;
		margin-bottom: 40px;
	}
}

/*-----------------------------
Bnr-blcok
-----------------------------*/
.bnr-block{margin-bottom: 80px;}
.bnr-block .bnr-item{
	position: relative;
}
.bnr-block .bnr-bg{
	width: 100%;
	height: 450px;
    margin-bottom: 40px;
	display: block;
	position: relative;
    overflow: hidden;
    transition: all 300ms 0s ease;
}
.bnr-block .bnr-bg:before{
	content: "";
    display: block;
    padding-top: 100%;
}
.bnr-block .bnr-bg img{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    vertical-align: top;
    object-position: center;
    font-family: 'object-fit: cover; object-position: bottom;';
    transition: all 1s 0s ease;
}
.bnr-block a:hover .bnr-bg img{
	transform: scale(1.05,1.05);
}
.bnr-block a:hover .btn-more-wht{
	background-color: #fff;
	color: #2f2f2f;
}
.bnr-block .bnr-inner{
	position: absolute;
    top: 120px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
	text-align: left;
}
.bnr-block .bnr-inner .bnr-ttl{
	font-size: 230%;
	letter-spacing: .05em;
    margin-bottom: 10px;
}
.bnr-block .bnr-inner .bnr-ttl.f-italy{
	font-size: 280%;
	letter-spacing: normal;
}
.bnr02 .bnr-inner{
	text-align: center;
}
.bnr-list{
    justify-content: center;
    align-items: center;	
}
.bnr-list .box{
	position: relative;
	width: 45%;
	margin: 0 10px;
}
.bnr-list .box .bnr-bg{
	height: 140px;
	margin-bottom: 0;
}
.bnr-list .box .bnr-inner{
	top: 55px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
	text-align: center;
}
.bnr-list .box .bnr-inner .bnr-sub-ttl{
	text-align: center;
    font-size: 120%;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
	.bnr-block .bnr-bg {
		height: 300px;
	}
	.bnr-block .bnr-inner {
    	top: 50px;
	}
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){	
	.bnr-block .bnr-inner {
    	top: 35px;
	}
	.bnr-block .bnr-inner .bnr-ttl {
		font-size: 200%;
	}
	.bnr-block .bnr-inner .bnr-ttl.f-italy {
		font-size: 260%;
	}
	.bnr-block .bnr-inner .btn-more-wht{
		margin-top: 15px;
	}
	.bnr-list .box .bnr-bg {
		height: 80px;
		margin-bottom: 0;
	}
	.bnr-list .box .bnr-inner {
    	top: 25px;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.bnr-block {
		margin-bottom: 20px;
	}
	.bnr-block .bnr-bg {
		height: 230px;
		margin-bottom: 20px;
	}
	.bnr-block .bnr-inner .bnr-ttl {
		font-size: 180%;
	}
	.bnr-block .bnr-inner .bnr-ttl.f-italy {
		font-size: 240%;
	}
	.bnr-block .bnr-inner {
		top: 20px;
		text-align: center;
	}
	.bnr-block .bnr-inner p {
		text-align: center;
	}
	.bnr-list .box {
		width: 100%;
		margin: 0 10px 20px;
	}
}

/*-----------------------------
sec08 協賛企業
-----------------------------*/
	.sec08{
		padding: 55px 0;
	}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.sec08{
		padding: 30px 0;
	}
}

/*-----------------------------
youtube
-----------------------------*/
#youtube-area {
	width: 100%;
    height: 150%;
    position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
    background: #444444;
}
#youtube-area:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(42,48,51,0.5);
}