/* CSS Document */


.top_main{
  margin: -70px auto auto;
	position: relative;
	
}
.top_main .mv {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}
.top_main .mv video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	z-index: -10;
}
.top_main div.main01 ,
.top_main div.main02,
.top_main div.main03,
.top_main div.main04,
.top_main div.main05{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.top_main div.main01 {
  background-image: url("../img/top/main01.png");
}
.top_main div.main02 {
  background-image: url("../img/top/main02.png");
}
.top_main div.main03 {
  background-image: url("../img/top/main03.png");
}
.top_main div.main04 {
  background-image: url("../img/top/main04.png");
}
.top_main div.main05 {
  background-image: url("../img/top/main05.png");
}


.top_main .catch {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	margin: auto;
	max-width: 720px;
	width: 60%;
	z-index: 5;
}
.top_main .catch .pc-only{
	display: block;
}
.top_main .catch .sp-only{
	display: none;
}

.floating-board {
	position: absolute;
	top: calc(100vh - 10rem);
	left: 50%;
	transform: translate(-50%,0);
}
.floating-board p {
	background: rgba(255,255,255,.7);
	padding: 2rem;
	border-radius: 4rem;
	width: 80vw;
	text-align: center;
}
.floating-board p a {
	display: block;
}

h3.catch{
	margin: 8% auto 6%;
	padding-bottom: 6%;
	line-height: 2.2em;
	background: url("../img/top/catch_back.png") center bottom no-repeat;
	background-size: 100% auto;
	font-family: 'Shippori Mincho', serif;
}

h4.line{
	margin: 8% auto 5%;
    display: flex;
    align-items: center;
	justify-content: center;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-family: 'Hind', sans-serif;
	font-size: 2.0rem;
	font-weight: 500;
}
h4.line:before,h4.line:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}
h4.line:before {
    margin-right: 2rem;
}
h4.line:after {
    margin-left:2rem;
}

.news{
	width: 33.3333%;
	padding: 20px;
}
.news p{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	padding: 5px;
}

.news a{
	display: block;
 width:100%;
	height: auto;
 margin:0 auto;
 overflow:hidden;
  background: #000;/*これを追加！*/
}
.news a img{
 transition:1s all;
}
.news a img:hover{
  transform:scale(1.1,1.1);
  transition:1s all;
  opacity: 0.6;/*これを追加！*/
}



.btn_list{
	margin: 5% auto 8%;
}
.top_btn{
	width: 46%;
	margin: 3% 2%;
	padding: 0;
	position: relative;
}
.top_btn a{
	display: block;
}

.top_btn .txt{
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin: auto;
	color: #fff;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.05em;
	font-size: 2.0rem;    
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-family: 'Hind', sans-serif;
}


.top_btn a{
	display: block;
	width:100%;
	height: auto;
	margin:0 auto;
	overflow:hidden;
	background: #000;/*これを追加！*/
}
.top_btn a img{
 transition:1s all;
}
.top_btn a img:hover{
  transform:scale(1.1,1.1);
  transition:1s all;
  opacity: 0.6;/*これを追加！*/
}
.brand_contents{
	background: #f6f8f8;
	border-bottom:1px solid #fff;
	margin: 5% auto 0;
	padding: 10px 10px 50px;
}
.brand_contents h4.line{
	font-size: 1.8rem;
	color: #959595;
}
.brand_contents h4.line:before,.brand_contents h4.line:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #959595;
}
.brand_contents .brand_list{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.brand_contents .brand_list div{
	width: 25%;
	padding: 20px 30px;
}
.brand_contents .brand_list div.logo-vertical{
	width: 12.5%;
}
.brand_contents .brand_list div:hover{
	opacity: 0.7;
	text-decoration: none;
}

@media only screen and (min-width:1px) and (max-width: 960px) {

}
@media only screen and (min-width:1px) and (max-width: 768px) {

	.top_main .mv {
		height: 56.25vw;
		margin-top: 130px;
	}
	.top_main .mv video {
		width: 100vw;
	}

	.top_main .catch .pc-only{
		display: none;
	}
	.top_main .catch .sp-only{
		display: block;
	}
	.floating-board {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
	}
	.floating-board p {
		background: rgba(0,0,0,.04);
		border-radius: 0;
		width: 100vw;
	}
		
	h4.line{
		font-size: 1.8rem;
	}
	.news{
		width: 33.3333%;
		padding: 10px;
	}
	.news p{
		font-size: 1.3rem;
	}
		
	.top_btn{
		width: 46%;
		margin: 2% 2%;
		padding: 0;
		position: relative;
	}
	.top_btn a{
		display: block;
	}

	.top_btn .txt{
		font-size: 1.8rem;
	}
	.brand_contents .brand_list div{
		width: 25%;
		padding: 20px 10px;
	}

	
}
@media only screen and (min-width:1px) and (max-width: 480px) {
	
h4.line{
	font-size: 1.6rem;
}
.news{
	width: 50%;
	padding: 5px;
}
	
.news:nth-child(3){
	display: none;
}
	
.top_btn .txt{
	font-size: 1.6rem;
}
.brand_contents .brand_list div{
	width: 33.3333%;
	padding: 20px 20px;
}
.brand_contents .brand_list div.logo-vertical{
	width: 20%;
}


}