@charset "UTF-8";
/* CSS Document */


/*Safariでヒラギノ角ゴシックをきれいに表示させるCSS*/
@font-face {
font-family: sans-serif;
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: sans-serif;
src: local(HiraginoSans-W6);
font-weight: bold;
}
/*↓2017.02.14追加*/
@font-face {
font-family: 'Hiragino Kaku Gothic Pro W3';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'Hiragino Kaku Gothic Pro W3';
src: local(HiraginoSans-W6);
font-weight: bold;
}
/*↑2017.02.14追加*/
@font-face {
font-family: 'ヒラギノ角ゴ Pro W3';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'ヒラギノ角ゴ Pro W3';
src: local(HiraginoSans-W6);
font-weight: bold;
}
@font-face {
font-family: 'ヒラギノ角ゴ ProN W3';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'ヒラギノ角ゴ ProN W3';
src: local(HiraginoSans-W6);
font-weight: bold;
}
@font-face {
font-family: 'ＭＳ Ｐゴシック';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'ＭＳ Ｐゴシック';
src: local(HiraginoSans-W6);
font-weight: bold;
}
@font-face {
font-family: 'MS P Gothic';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'MS P Gothic';
src: local(HiraginoSans-W6);
font-weight: bold;
}
@font-face {
font-family: 'MS PGothic';
src: local(HiraginoSans-W3);
font-weight: normal;
}
@font-face {
font-family: 'MS PGothic';
src: local(HiraginoSans-W6);
font-weight: bold;
}


* {
	font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	
}






html {
    scroll-behavior: smooth;
}









/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　header　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/



.logoCompany{
	display : block;
	position: fixed;
	z-index: 20
}
.logoCompany img{
	width: 13vw;
	min-width: 180px;
	max-width: 270px;
	margin: 20px 0 0 20px;
}

.logoIzakaya_top{
	display : block;
	position: fixed;
	right: 1%;
	opacity: 0;
}

.logoIzakaya{
	display : block;
	position: fixed;
	right: 1%;
	opacity: 1;
}
.logoIzakaya_top img,
.logoIzakaya img{
	width: 10vw;
	min-width: 90px;
	max-width: 120px;
	margin: 20px 0 0 20px;
}



.globalMenuPc{
	position: relative;
	width: 100%;
	text-align: center;
}

.navPC{
	position: fixed;
    display: none;
	top: 30px;
	left: 50%;
	width: auto;
	white-space: nowrap;
	transform: translateX(-50%);
    color: #fff;
}

.navPC li a{
    display: block;
    padding:10px 30px;
	border-left: 1px #fff solid;
}
.navPC li:nth-child(1) a,
.navPC_child li a{
	border: none;
}










.navPC_child{
	position: relative;
}

.navPC ul ul{
	display: block;
}

.nav ul li li a{
	padding: 10px 35px;
}

nav ul li.navPC_child::before{
	content:'';
	position: absolute;
	left:15px;
	top:15px;
	width:6px;
	height:6px;
	border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(135deg);
}

nav ul ul li.navPC_child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}


nav li.navPC_child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background:rgba(0,0,0,0.3);
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.navPC_child:hover > ul,
nav li.navPC_child ul li:hover > ul,
nav li.navPC_child:active > ul,
nav li.navPC_child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}


nav li.navPC_child ul li a:hover,
nav li.navPC_child ul li a:active{
	background:rgba(0,0,0,0.15);
}

.headerOtherPage .logoCompany,
.headerOtherPage .logoIzakaya{
	margin-top: -190px;
}




.headerOtherPage div p{
	color: #fff;
	background: #000028;
	font-size: 12px;
	padding: 5px 0 2px 20px;
}

@media screen and (max-width:990px){
	.headerOtherPage .logoCompany,
	.headerOtherPage .logoIzakaya{
		margin-top: -90px;
}
	
}

.menuBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px; /* ヘッダーの高さに合わせる */
	background-color: transparent; /* 最初は透明 */
	transition: 0.6s ease;
	z-index: 1; /* `.globalMenuPc` より後ろに配置 */
}
.menuBg_sp{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px; /* ヘッダーの高さに合わせる */
	background-color: rgba(0,0,0,0.50); /* 最初は透明 */
	transition: 0.6s ease;
	z-index: 1; /* `.globalMenuPc` より後ろに配置 */
}



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　header　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　mainVisual　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.mainVisual{
	height: 100svh;
	background: #ccc;
	padding:  0vh 0 0 0;
}





video{
	pointer-events: none;
}

.mainView_movie{
	height: 100vh;
	overflow: hidden;
}
.mainView_movie_wrap{
	position: absolute;
	min-width: 100%;
	min-height: 100svh;
	overflow: hidden;
	filter: brightness(80%);
	z-index: 2
}
.mainView_movie_wrap video{
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100svh;
	transform: translate(-50%,-50%);
}








h1{
	position: relative;
	top: 40vh;
	
	text-align: center;
	font-size: clamp(16px, 6vw, 64px);
	color: #fff;
	line-height: 1.5;
	z-index: 3
}
h1 span{
	display: block;
	font-size: clamp(14px, 2vw, 16px);
	
}


.logoIzakaya_fixed{
	position: absolute;
	display: block;
	top: 20px;
	right: 2%;
	width: 9%;
	max-width: 200px;
	z-index: 2
}
.logoIzakaya_fixed a{
	display: block;
	width: 100%;
	height: auto;
}
.logoIzakaya_fixed img{
	width: 100%;
}
.logoIzakaya_fixed p{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	
	position: relative;
	top: 30px;
	left: 35%;
	
	color: #fff;
	line-height: 2;
}







/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　mainVisual　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



h2{
	font-size: clamp(12px, 2.8vw, 16px);
}


/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　topAbout　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.topAbout{
	max-width: 1200px;
	width: 85%;
	margin: 100px auto;
}



.topAbout > div{
	display: flex;
	padding: 100px 0 0 0;
}

.topAbout_contents1{
	width: 55%;
	margin: 0 5% 0 0;
}
.topAbout_contents1 h3{
	font-size: clamp(12px, 6vw, 54px);
	margin: 0px auto 50px auto;
}
.topAbout_contents1 p{
	line-height: 1.8;
}
.topAbout_contents1 a{
	display: block;
	width: 50%;
	margin-top: 30px;
}




.topAbout_contents2{
	display: flex;
	width: 50%;
	color: #fff;
	text-align: center;
}
.topAbout_contents2 > div:nth-child(1){
	width: 48%;
	margin: 0 4% 0 0;
}
.topAbout_contents2 > div:nth-child(2){
	width: 48%;
}
.topAbout_contents2 > div img{
	width: 100%;
}
.topAbout_contents2 > div a{
	position: relative;
	top: -20px;
	margin: 0 auto;
}





@media screen and (max-width:990px){
	.topAbout{
		width: 90%;
	}
	.topAbout > div{
		display: block;
	}
	.topAbout_contents1,
	.topAbout_contents2{
		width: 100%;
	}
	.topAbout_contents2{
		display: block;
	}
	.topAbout_contents2 > div{
		width: 100%!important;
	}
	.topAbout_contents2 > div a{
		width: 80%;
	}
	
	.topAbout_contents1 a{
		display: block;
		width: 100%;
		margin-bottom: 30px;
	}
}



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　topAbout　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/








/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　topBusiness　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/


.topBusiness_text .verticalWriting{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.topBusiness{
	background: url("../images/topBusiness_bg.jpg") no-repeat center / cover;
	
	
	background-attachment: fixed;
	
	height: 850px;
	
}



.topBusiness h2{
	position: relative;
	top: 100px;
}




.topBusiness > section{
	background: linear-gradient(0deg, #fff 0%, #fff 20%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 80%, #fff 80%, #fff 100%);
}
.topBusiness > section > div{
	max-width: 1200px;
	width: 85%;
	margin: 0 auto;
}

.topBusiness .topBusiness_text{
	height: 860px;
}

.topBusiness .topBusiness_text .verticalWriting{
	position: relative;
	margin: 0 0 0 auto;
	height: 800px;
}

.topBusiness .topBusiness_text .verticalWriting_B{
	position: absolute;
	right: 0%;
	color: #000;
	height: 19.5%;
	width: 50%;
	white-space: nowrap;
	overflow: hidden;
	font-size: clamp(38px, 5.2vw, 48px);
}
.topBusiness .topBusiness_text .verticalWriting_B span{
	
}
.topBusiness .topBusiness_text .verticalWriting_W{
	position: absolute;
	top: 19.5%;
	right: 0%;
	color: #fff;
	height: 100%;
	width: 50%;
	white-space: nowrap;
	overflow: hidden;
	font-size: clamp(38px, 5.2vw, 48px);
}
.topBusiness .topBusiness_text .verticalWriting_W span{
	position: absolute;
	top: -19.5%;
}



@media screen and (max-width:990px){
	.topBusiness .topBusiness_text .verticalWriting h3{
		right: 10%;
	}
}

.topBusiness .topBusiness_text .verticalWriting p{
	height: 400px;
	margin: 30% 20% 0 0;
	color: #fff;
	font-size: clamp(14px, 1.8vw, 16px);
	line-height: 2;
}

@media screen and (max-width:510px){
	.topBusiness .topBusiness_text .verticalWriting h3{
		right: 5%;
	}
	.topBusiness .topBusiness_text .verticalWriting p{
		height: 380px;
		margin: 30% 15% 0 0;
		line-height: 1.6;
	}
}


.topBusiness_map{
	position: relative;
	top: -65%;
}
.topBusiness_map_B{
	position: absolute;
	width: 45%;
	height: 50%;
	overflow: hidden;
}
.topBusiness_map_W{
	position: absolute;
	width: 45%;
	overflow: hidden;
}
.topBusiness_map img{
	width: 100%;
}



.topBusiness_btn{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	margin: -70px 0 0 auto;
	width: 50%;
}


@media screen and (max-width:990px){
	.topBusiness_btn{
		grid-template-columns: 1fr;
		row-gap: 1em;
		width: 90%;
		text-align: center;
	}
}


/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　topBusiness　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/


















/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　scroll-infinity　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/


.scroll-infinity li{
	padding-right: calc(5px + 2vw);
}

.scroll-infinity li:nth-child(1) img{
	margin: 30px 0 0 0;
}
.scroll-infinity li:nth-child(2) img{
	margin: 120px 0 0 0;
}
.scroll-infinity li:nth-child(3) img{
	margin: 40px 0 0 0;
}
.scroll-infinity li:nth-child(4) img{
	margin: 90px 0 0 0;
}
.scroll-infinity li:nth-child(5) img{
	margin: 00px 0 0 0;
}

@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--right{
  animation :infinity-scroll-right 80s infinite linear 0.1s both;
}
.scroll-infinity__item {
  /*width: calc(100vw / 4);*/
	height: 475px;
}
.scroll-infinity__item > img {
	width: 100%;
}


@media screen and (max-width:990px){
	.scroll-infinity{
		margin-top: 100px;
	}
	.scroll-infinity li{
		height: 250px;
		padding-right: calc(5px + 1vw);
	}
	.scroll-infinity img{
		width: auto;
		height: 250px;
	}
	.bbs3 img{
		height: 200px;
	}
	.scroll-infinity li:nth-child(1) img,
	.scroll-infinity li:nth-child(2) img,
	.scroll-infinity li:nth-child(3) img,
	.scroll-infinity li:nth-child(4) img,
	.scroll-infinity li:nth-child(5) img{
		margin: 0;
	}
}

/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　scroll-infinity　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/








/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　topProducts　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.topProducts{
	margin: 200px auto;
	text-align: center;
}

.topProducts h2{
	
}
.topProducts h3{
	margin: 30px auto 10px auto;
	font-size: clamp(32px, 4.5vw, 40px);
	line-height: 1.3;
}
.topProducts h4{
	margin: 0px auto 50px auto;
	font-size: clamp(14px, 1.8vw, 18px);
	
}


.topProducts .topProducts_btn{
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 10px;
	width: 700px;
	margin: 50px auto;
}



@media screen and (max-width:990px){
	.topProducts .topProducts_btn{
		grid-template-columns: 1fr;
		row-gap: 1em;
		width: 90%;
		text-align: center;
	}
}



@media screen and (max-width:990px){
	.topProducts{
		margin: 100px auto;
	}
}



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　topProducts　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/

/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　swiper　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/


.swiper-slide img {
	height: auto;
	width: 100%;
}

/*ページネーション*/
.swiper-pagination{
	
}

/*前後の矢印*/
.swiper-button-prev,
.swiper-button-next{
	color: #fff;
}





/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　swiper　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/


.micchaku iframe{
	display: block;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
}

@media screen and (max-width:990px){
	.micchaku iframe{
		width: 90%;
		height: auto;
	}
}


/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　topIzakaya　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.topIzakaya{
	height: 70vh;
	min-height: 720px;
	max-height: 800px;
	width: 100%;
	background: url("../images/topIzakaya_bg.jpg") no-repeat center / cover;
	margin: 100px auto;
	padding: 100px 0 0 0;
}
.topIzakaya .verticalWriting{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	
	width: 85%;
	max-width: 1600px;
	margin: 0 auto;
	color: #fff;
}
.topIzakaya .verticalWriting p{
	margin: 0 20% 0 0;
	font-size: 1.1em;
	line-height: 2.7;
}

.topIzakaya div:nth-child(2){
	position: relative;
	width: 85%;
	max-width: 1600px;
	margin: 100px auto 0 auto;
}
.topIzakaya div:nth-child(2) img{
	display: block;
	width: 80%;
	max-width: 1000px;
	margin: 0 0 0 auto;
}
.topIzakaya div:nth-child(2) a{
	position: absolute;
	bottom: 0;
	border-color: #fff;
	padding: 15px 0px;
	
	width: 17.7%;
	max-width: 275px;
}
.topIzakaya div:nth-child(2) a:hover{
	border: none;
}
.topIzakaya div:nth-child(2) a span{
	color: #fff;
}


@media screen and (max-width:1400px){
	.topIzakaya{
		height: 60vh;
		min-height: 620px;
		padding: 65px 0 0 0;
	}
	.topIzakaya div:nth-child(2){
		margin: 65px auto 0 auto;
	}
}
@media screen and (max-width:990px){
	.topIzakaya{
		height: auto;
		min-height: 0;
		min-width: 0;
		margin: 100px auto 0 auto;
		padding: 50px 0 75px 0;
	}
	.topIzakaya .verticalWriting{
		writing-mode: horizontal-tb;
		text-align: right;
	}
	.topIzakaya .verticalWriting img{
		display: block;
		width: 180px;
		margin: 0 0 0 auto;
	}
	.topIzakaya .verticalWriting p{
		margin: 35px 0 0 0;
		line-height: 1.7;
	}
	.topIzakaya div:nth-child(2){
		width: 100%;
		margin: 0;
	}
}

.topIzakaya + img{
	display: block;
	position: relative;
	top: -45px;
	width: 95%;
	margin: 0 auto;
}
.topIzakaya + img + a{
	display: block;
	width: 90%;
	margin:  -30px auto 100px auto;
}



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　topIzakaya　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/



/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　banner　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/

.bannerWrap{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 4%;
	width: 85%;
	max-width: 1400px;
	margin: 0px auto 200px auto;
}
.bannerWrap a{
	
}
.bannerWrap a img{
	width: 100%;
}

@media screen and (max-width:990px){
	.bannerWrap{
		display: block;
		width: 95%;
		margin: 0px auto 100px auto;
	}
	.bannerWrap a{
		display: block;
		margin: 10px auto;
	}
}


/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　banner　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/




.micchaku iframe{
	display: block;
	margin: 0 auto;
}

@media screen and (max-width:990px){
	.micchaku iframe{
		width: 90%;
		height: auto;
	}
}




/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　footer　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/



.footer {
	padding: 80px 5% 20px 8%;
	font-size: 15px;
	color: #fff;
	background: #000028;
}


.footer_logo {
	display: block;
	margin-bottom: 10px;
	width: 250px;
}
.footer_logo_Izakaya {
	width: 150px;
}
.footer_logo img{
	width: 100%;
}


.footer_address {
	margin-bottom: 1rem;
	line-height: 1.5;
}
.footer_address a {
	font-size: 1.5em;
}

.footer_icon {
	margin-bottom: 3rem;
}

.footer_icon{
	width: 90px;
}
.footer_icon a{
	
}
.footer_icon img{
	width: 40px;
}
.footer_icon a:nth-child(2) img{
	margin: 0 0 0 0px;
}
.footer_icon_Izakaya{
	width: 40px;
}


.footer hr{
	display: none;
}


.footerNav{
	width: 30%;
}

.footerNav li {
	margin-bottom: 0.75rem;
	line-height: 2;
}

.copyright{
	display: block;
	width: 100%;
	text-align: center;
}
.copyright a{
	font-size: 1.2em;
	line-height: 2.5;
}


@media screen and (max-width:650px){
	.footer {
		padding: 80px 5% 20px 8%;
		font-size: 16px;
	}
	.footer_logo{
		width: 220px;
		margin: 0 auto 10px auto;
	}
	.footer_logo_Izakaya{
		width: 150px;
	}
	.footer_address{
		text-align: center;
	}
	.footer_icon{
		margin: 0 auto 3rem auto;
	}
	.footerNav{
		width: 100%;
	}
	.footerNav li{
		line-height: 1.4;
	}
	.footer hr{
		display: block;
		margin:50px auto 20px auto;
	}
}






@media (min-width: 650px) {
	.lg-flex {
		display: flex;
	}

  .md-justify-between {
    justify-content: space-between;
  }

  
  .footer_address a {
    text-decoration: none;
    pointer-events: none;
  }
}



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　footer　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/








/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　btn　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/




/*== ボタン共通設定 */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #555;/* ボーダーの色と太さ */
    padding: 15px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn > span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#333;
}

.btn:hover > span{
	color:#fff;
}

/*== 背景が流れる（斜め） */
.bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#000028;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}

/*hoverした時のアニメーション*/
.bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
	100% {
		left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
	}
}





/*== ボタン共通設定 */
.btn2{
   	border: none;/* ボーダーの色と太さ */
    padding: 15px 30px;
	background: #000028;
}

/*ボタン内spanの形状*/
.btn2 > span {
	color:#fff;
}

.btn2:hover > span{
	color:#000;
}

/*== 背景が流れる（斜め） */
.bgskew2::before {
	background:#fff;
}







/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　btn　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/


/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:50%;
	bottom:10px;
    /*全体の高さ*/
	height:50px;
	z-index: 100;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}


/*↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓　　↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/



/*↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑　　↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑*/


@media screen and (max-width:990px){
}





@media screen and (max-width:990px){
.P{display: none!important;}}
@media screen and (min-width:991px){
.S{display: none!important;}}

