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

*{
    padding: 0;
	box-sizing: border-box;
}
*, body{
	margin: 0;
}
html{
	height: 100%;
	color: #232323;
	font-size:62.5%;
	font-family: din-condensed, sans-serif;
	font-weight: 400;
	font-style: normal;
}
a:hover,.bikes .category li:hover,
.bike_list .pop_list:hover, .sns_btn li a:hover{
	opacity: 0.5;
	transition: .5s;
}
#loading{
  /* 画面一杯にローディング画面を広げる */
  height: 100%;
  width: 100%;
  background: #3F4979;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
  /* flexboxを使ってローディングアイコンを画面の中央に寄せる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fa-bicycle{
	width: 10rem;
}
.header_inner{
	display: flex;
	position: fixed;
	z-index: 100;
	width: 100%;
	padding: .9rem 1rem .9rem 1.5rem;
	background-color: #3F4979;
	justify-content: space-between;
}
.header_inner .space{
	width: 20px;
}
.logo{
	width: 87.6px;
	height: 16.93px;
	overflow: hidden;
	background: url("/images/rabbit_logo.png") no-repeat;
	background-size: contain;
	text-indent: 100%;
	white-space: nowrap;
}
.logo:hover, #open_nav:hover, .bikes .category li:hover,
.bike_list .pop_list:hover{
	cursor: pointer;
}
.logo a{
	display: block;
	width: 100%;
	height: 100%;
}
/*ハンバーガーメニュー*/
.menu_top{
	display: block;
	position: relative;
	top: 2px;
    right: 0px;
	width: 20px;
	height: 2px;
	border: 1px solid #fff;
    border-radius: 3px;
	background-color: #fff;
	transition: 0.3s;
}
.menu_mid{
	display: block;
	position: relative;
    top: 7px;
    right: 3px;
    width: 20px;
	border: 1px solid #fff;
    border-radius: 3px;
	background-color: #fff;
	transition: 0.3s;
}
.menu_btm{
	display: block;
	position: relative;
    top: 13px;
    right: 6px;
    width: 20px;
	border: 1px solid #fff;
    border-radius: 3px;
	background-color: #fff;
	transition: 0.3s;
}
/*メニュー閉じるボタン*/
.close_btn .menu_top{
	width: 30px;
	-webkit-transform: translateY(8px) translateX(-12px) rotate(-45deg);
	transform: translateY(8px) translateX(-6px) rotate(-45deg);
}
.close_btn .menu_mid{
	opacity: 0;
	left: -200%;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
}
.close_btn .menu_btm{
	width: 30px;
	-webkit-transform: translateY(-12px) rotate(45deg);
  	transform: translateY(-7px) rotate(45deg);
}
/*ナビゲーションの位置*/
#open_nav{
	position: relative;
	width: 20px;
	height: 20px;
	top: 0;
}
/*ナビゲーション出現時*/
#nav ul{
	position: fixed;
	top: 45px;
	z-index: 98;
	width: 100%;
	height: calc(100vh - 45px);
	padding-top: 2rem;
	background-image: url("/images/nav.jpg");
	background-size: cover;
	background-position: center;
	text-align: justify;
}
#nav ul li{
	height: calc(100% / 7);
	font-size: 1.3rem;
    text-align: center;
}
#nav ul li:last-child{
	margin-bottom: 0;
}
#nav ul li a{
	color: #f7f7f7;
	text-decoration: none;
}
#nav span{
	font-size: .65rem;
}
.hidden{
	display: none;
}
/*sns*/
.sns_btn{
	position: fixed;
	top: 35vh;
    left: 4%;
	z-index: 97;
	width: 20px;
	font-size: 1.3rem;
	mix-blend-mode: exclusion;
}
.sns_btn li{
	margin-bottom: 50px;
}
.sns_btn li:last-child{
	margin-bottom: 0;
}
.sns_btn li a{
	color: #f7f7f7;
	transition: .3s;
}
/*nav以下*/
main{
	background-color: #f9fcfe;
}
/*slide*/
.slide_wrapper{
	position: relative;
	height: 100vh;
	overflow: hidden;
}
.slide_wrapper > p{
	position: absolute;
	top: 35vh;
	z-index: 96;
    width: 100%;
    color: #fff;
    font-size: 3.5rem;
    font-style: italic;
	text-align: center;
	text-shadow: 0 0 5px #0f0c229e;
}
#slide_img_rgt{
	position: relative;
}
/*scroll down*/
.scroll_down{
	display: inline-block;
	position: absolute;
	left: 48%;
	bottom: 0;
	z-index: 2;
	padding: 10px 10px 110px;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: .2em;
	text-transform: uppercase;
	text-decoration: none;
	writing-mode: vertical-lr;
	text-shadow: 0 0 5px #0f0c229e;
}
.scroll_down:link, .scroll_down:visited{
	color: #fff;
}
.scroll_down::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	background: #fff;
}
.scroll_down::after{
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.about{
	display: table-cell;
	position: relative;
	height: 100vh;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 70%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 70%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	vertical-align: middle;
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}
.btn{
	text-decoration: none;
	border: 1px solid;
    border-radius: .1rem;
    width: 7rem;
	height: 50px;
    margin: 2rem auto;
	text-align: center;
	line-height: 50px;
}
.btn:hover{
	background-color: rgba(255,255,255,.2);
}
.btn a, .btn a:link, .btn a:visited{
	display: block;
	color: #f7f7f7;
	text-decoration: none;
}
.bikes .btn a, .bikes .btn a:link, .bikes .btn a:visited{
	color: #232323;
}
.build{
	position: relative;
	background-image: url("/images/build_img.jpg");
	background-position: center;
	background-size: cover;
}
.build .inner{
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 70%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 70%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 70%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}
.build .top_desc_wrapper{
	display: table-cell;
	height: 100vh;
	width: 100vw;
    vertical-align: middle;
}
.tit_about, .tit_build, .tit_repair{
	margin-top: 2rem;
}
.tit_location{
	margin: 2rem;
}
.tit_about, .tit_build, .tit_news, .tit_bikes, .tit_location, .tit_repair, .tit_blog{
	display: inline-block;
	position: relative;
	color: #f7f7f7;
	font-size: 2rem;
	font-style: italic;
	text-align: center;
}
.tit_build::before, .sec_tit .tit_repair::before, .tit_news::before, .tit_bikes::before, .tit_about::before, .tit_blog::before, .tit_location::before{
	display: inline-block;
	content: '';
	position: relative;
	transform: skewX(-20deg);
	left: -0.85rem;
	width: 9px;
	height: 17px;
	background-color: #3F4979;
}
.about .tit, .build .tit, .news .tit, .bikes .tit, .location .tit, .sec_wrap .tit{
	display: inline-block;
	content: '';
	position: relative;
	left: 0.5rem;
	transform: skewX(-20deg);
	width: 8px;
	height: 23px;
	background-color: #b4caeb;
}
.location .tit{
	left: 2.5rem;
}
.tit_news, .tit_bikes, .tit_location{
	color: #232323;
}
.tit_wrapper{
	margin: 0 auto 2rem;
	text-align: center;
}
.top_desc_wrapper{
    position: relative;
    width: 100%;
    color: #fff;
}
.top_desc_wrapper > h2{
	margin: 2rem 0;
    letter-spacing: 0.15rem;
    text-align: center;
    line-height: 1.5;
	font-size: 1.05rem;
}
.top_desc_wrapper > a{
	display: block;
	margin: 2rem;
    text-align: center;
}
.about .top_desc_wrapper > a, .about .top_desc_wrapper > a:link, .about .top_desc_wrapper > a:visited, .build .top_desc_wrapper > a, .build .top_desc_wrapper > a:link, .build .top_desc_wrapper > a:visited{
	color: #fff;
}
.top_desc, .desc_table, .top_desc b, .top_desc strong, .bikes .category, .staff_desc, .staff_desc2, .my_bike, .my_bike_txt, .my_bike_intro, .my_bike_intro2, .breaking_news{
	/* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; */
	font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", sans-serif;
}
.top_desc, .desc_table{
	margin: 0 auto;
	padding: 0 15%;
	letter-spacing: 0.08rem;
}
.top_desc{
	line-height: 2;
}
.bikes .category_wrapper{
	width: 80%;
	margin: 0 auto 2rem;
}
.bikes .category_wrapper p{
	text-align: center;
}
.bikes .category{
	font-size: .9rem;
	text-align: center;
}
.bikes .category li{
	display: inline-block;
	margin: .3rem 0;
	padding-right: 5px;
	line-height: 1.5;
	text-decoration: underline;
}
/* .bikes .category li:last-child{
	padding: 0;
} セールがなければ戻す*/

/* news */
.news_l-s{
	letter-spacing: 0.05rem;
}
.news_section{
	position: relative;
}
.news{
	width: 100%;
	background-color: #F7F7F7;
	padding: 5rem 0 1rem;
}
.news_list{
	margin: 0 auto;
}
.news a{
	display: flex;
	text-decoration: none;
}
.news_list li{
	margin-bottom: 1rem;
}
.news_list time{
	width: 10%;
}
.news_list .news_tit{
	width: 90%;
	font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", sans-serif;
}
.news .btn a, .news .btn a:link, .news .btn a:visited{
	color: #232323;
}

.product{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.repair{
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}
.tit_repair{
	margin-bottom: 2rem;
}
.sec_wrap .repair{
	background: #f9fcfe;
}
.repair_inner > p{
	margin: 2rem 0;
	padding-top: 2rem;
	font-weight: bold;
	letter-spacing: 0.01rem;
	text-align: center;
}
.repair .desc_table{
	width: 80%;
	border-collapse: collapse;
	line-height: 1.5;
}
.location .desc_table{
    margin: 3rem auto;
    line-height: 2;
}
.location .desc_table ul, .location .desc_table table, .location .desc_table p{
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}
.desc_table .small{
	font-size: .7rem;
	text-align: center;
}
.desc_table th{
	padding-top: 1rem;
	border-top: 1px dashed #23232347;
}
.repair_inner ul{
	list-style-type: square;
	margin: 2rem auto 3rem;
	line-height: 1.5;
}
.desc_td{
	padding-bottom: 1rem;
}
.repair .td_lft{
	width: 50%;
	text-align: center;
	white-space: nowrap;
}
.repair .td_rgt{
	width: 50%;
	text-align: center;
	white-space: nowrap;
}
.repair .att{
    padding: 2rem 0;
	text-align: center;
    line-height: 1.5;
    letter-spacing: 0.04rem;
}
.repair_inner ul li{
	list-style-position: inside;
}
.bikes, .footer{
	position: relative;
}
.bikes{
	background-color: #f9fcfe;
}
.bikes{
	padding-top: 5rem;
}
.sec_bikes{
	padding: 7rem 0 6rem;
}
.bike_list{
	display: flex;
	width: 90%;
	margin: 0 auto;
    flex-wrap: wrap;
}
.bike_list .pop_up, .bike_list .pop_up_sd{
	width: calc(100% / 2.08);
	margin-top: 1rem;
}
.bike_list .wrap{
	position: relative;
	width: 100%;
	padding: 0.5rem;
}
.bike_list .bike_list_wrapper2 .wrap{
	position: relative;
	width: 80%;
	margin: 0 auto;
	padding: 1rem 1rem 2rem;
}
.bike_list .bike_list_wrapper img{
	width: 100%;
	vertical-align: bottom;/*隙間*/
}
.bike_list .cat, .bike_list .price, .bike_list .price span{
	font-family: monospace;
}
.bike_list .price{
	margin-top: 0.3rem;
}
.bike_list .price span{
	font-size: .7rem;
}
.bike_list .cat{
	position: relative;
	top: 0;
	left: -0.5rem;
	padding: 0.2rem 1em;
	background-color: #232323;
	color: #f7f7f7;
	white-space: nowrap;
}
li.sale_items{
	color: #ffffff;
  background-color: #db2b18;
  padding: 0 5px;
}
.bike_list h3, .bike_list_wrapper2 .desc{
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
    font-weight: normal;
}
.bike_list_wrapper2 .desc, .sec_staff .pos{
	font-size: 0.8rem;
}

/* top bikes sale */
.sale_container {
  position: relative;
  background: #ffffff;
	padding: 5rem 0 10rem;
	margin-top: 5rem;
}
.sale_color {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  background: #a11c0e;
}
.contents {
  position: relative;
}
.price{
	position: relative;
	display: inline-block;
}
.sale_price::before{
	display: block;
	content: "";
	width: 50px;
	border-top: 1px solid #232323;
	transform: rotate(-10deg);
	position: absolute;
	top: 5px;
	left: -2px;
}
.new_price{
	color: #db2b18;
	font-size: 1rem;
	display: inline-block;
	padding-left: .5rem;
}

/* sold out */
.sd_wrapper{
	display: block;
	position: relative;
	overflow: hidden;
	background: #000;
}
.sd_content{
	width: 100%;
	height: 100%;
}
.sd{
	position: absolute;
	top: 50%;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 1.2rem;
	color: #fff;
	font-weight: bold;
	letter-spacing: .05rem;
	z-index: 1;
}
.sd_img{
	opacity: .5;
}
.bike a{
	display: inherit;
	padding: 3rem;
	text-align: center;
}
.location{
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
	background-color: #f7f7f7;
}
.location .logo_marks img, .bike_list_wrapper2 .logo_marks img{
	width: 40px;
	height: 40px;
}
.bike_list_wrapper2 .logo_marks img{
	margin-right: 2rem;
}
.location .logo_marks{
	display: flex;
  justify-content: space-between;
}
.bike_list_wrapper2 .logo_marks{
	display: flex;
}
.location iframe{
	width: 100%;
}
.desc_table address{
	font-style: normal;
	white-space: nowrap;
}
.location .desc_table .lcn_pc > p:nth-child(odd){
	margin: 1rem auto .5rem;
	text-align: center;
}
.location .desc_table .sns_links{
	font-family: din-condensed, sans-serif;
    font-size: 1.3rem;
    font-style: italic;
	text-align: center;
}
.location .td_rgt{
	padding-left: 5%;
}
.maker{
	position: relative;
	padding: 5rem 0;
	background-color: #fff;
}
.maker ul, .footer ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.maker ul{
	width: 82%;
	margin: 0 auto;
	justify-content: space-between
}
.maker ul li{
	width: calc(90% / 2);
	margin-bottom: 1rem;
}
.maker ul li img{
	width: 100%;
}
.maker p{
	width: 91%;
	text-align: right;
}
.copyright{
	position: relative;
	padding: 1rem 0;
	font-family: monospace;
	text-align: center;
}
.footer{
	background-color: #3F4979;
}
.footer, .fotter li a, .footer li a:link, .footer li a:visited{
	color: #f7f7f7;
	text-decoration: none;
}
.footer .inner{
	width: 80%;
    margin: 0 auto;
    padding: 2.5rem 0 .5rem;
}
.footer .inner img{
	width: 35%;
	max-width: 150px;
	margin-bottom: 2rem;
}
.footer ul{
	margin-bottom: 1rem;
}
.footer .inner ul li{
	width: calc(100% / 2);
	margin-bottom: 1rem;
}
.error{
	padding: 11rem 10rem 10rem 10rem;
	font-family: sans-serif;
	text-align: center;
}


/*second*/
.sec_wrap{
	width: 100%;
	padding: 45px 0 4rem;
}
.sec_wrap .img{
	width: 100%;
	height: 12rem;
	max-height: 200px;
}
#sec_repair .sec_wrap{
	background-color: #f9fcfe;
}
.img-animation {
  animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  position: relative;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #f9fcfe;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  0% {
    opacity: 0;
  }
}

@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}

#sec_aboutus .sec_wrap .img{
	background-image: url("/images/sec_about.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
#sec_build .sec_wrap .img{
	background-image: url("/images/sec_build.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
#sec_repair .sec_wrap .img{
	background-image: url("/images/chain.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
#sec_staff .sec_tit{
	margin-bottom: 2rem;
}
#sec_staff .sec_wrap .img{
	background-image: url("/images/sec_staff.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.sec_wrap .top_desc_wrapper{
	color: #232323;
}
.sec_tit{
	position: relative;
}
.sec_tit .tit_wrapper{
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.sec_tit .tit_about, .sec_tit .tit_build, .sec_tit .tit_repair, .sec_tit .tit_blog{
	margin: 0;
	text-shadow: 0 0 5px #0f0c222b;
}
.sec_wrap .sec_2img{
	width: 100%;
	margin: 3rem 0 0;
	padding: 0 15%;
	animation: SlideIn 1.6s;
}
.sec_staff .sec_2img{
	margin: 1rem 0 0;
}
@keyframes SlideIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sec_wrap .bnr{
	margin: 3rem auto;
    padding: 0 15%;
}
.sec_wrap .bnr img{
    width: 100%;
}
.sec_wrap .top_desc_wrapper .repair_p_desc{
	padding-top: 3rem;
	text-align: center;
}
.js_fadein {
	visibility: hidden;
  	opacity: 0;
  	transform: translateY(40px);
  	transition: all .5s;
}
.js_fadein.is_show {
	visibility: visible;
  	opacity: 1;
  	transform: translateY(0px);
}
.bike_list_wrapper2{
	display: none;
	width: 100%;
	height: 100vh;
    overflow: scroll;
	padding: 2rem 0 4rem;
	position: fixed;
	top: 45px;
	left: 0;
	z-index: 97;
	background: rgba(0,0,0,0.9);
}
.bike_list_wrapper2 .bikes_slide{
	position: relative;
}
.bike_list_wrapper2 .bikes_slide img {
    width: 100%;
}
.bike_list_wrapper2 .bikes_slide .prev{
	position: absolute;
    top: 45%;
    left: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 22px;
    color: #0f0c22;
    background-color: #f9fcfe;
    border-radius: 50%;
}
.bike_list_wrapper2 .bikes_slide .next{
	position: absolute;
	top: 45%;
    right: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 22px;
    color: #0f0c22;
    background-color: #f9fcfe;
    border-radius: 50%;
}
.bike_list_wrapper2 .wrap{
	color: #f7f7f7;
}
.hide_btn{
	position: relative;
	height: 40px;
}
.hide_btn .close_l{
	display: block;
	position: absolute;
	top: 20px;
	left: 10px;
	z-index: 97;
	-webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
	width: 30px;
    border: 1px solid #fff;
	border-radius: 3px;
    background-color: #fff;
}
.hide_btn .close_r{
	display: block;
	position: absolute;
	top: 20px;
	left: 10px;
	z-index: 97;
	-webkit-transform: rotate(45deg);
    transform: rotate(45deg);
	width: 30px;
	border: 1px solid #fff;
	border-radius: 3px;
    background-color: #fff;
}
/*sec_staff*/
.top_desc_wrapper .staff_name{
	padding: 0 15%;
	text-align: left;
}
.license{
	position: relative;
	margin-left: 3rem;
	font-size: .8rem;
}
.license::before{
	position: absolute;
	top: 4px;
	left: -2rem;
	content: "";
	width: 15px;
	border-top: 3px solid;
	border-radius: 1rem;
	color: #3F4979;
}
.sec_staff .center, .my_bike{
	text-align: center;
}
.swiper{
	width: 50%;
	margin: 3rem auto 0;
}
.swiper-image{
	width: 100%;
}
.staff_desc{
	padding: 0 15%;
	letter-spacing: 0.08rem;
	line-height: 2;
	margin: 3rem auto;
}
.staff_desc2{
	padding: 0 15%;
	letter-spacing: 0.08rem;
	line-height: 2;
	margin: 1rem auto 7rem;
}
.sec_staff .top_desc_wrapper > h2{
	margin: 5rem auto 0;
}
.my_bike{
	width: 80%;
	padding: 1rem 0;
	margin: 0 auto;
}
.my_bike_txt{
	text-align: center;
	padding: 1rem 0;
}
.my_bike_wrapper{
	position: relative;
}
.my_bike_intro{
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.my_bike_intro2{
	position: absolute;
	top: -33px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.swiper-scrollbar{
	background: none !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
	color: #232323;
	font-size: 1.5rem !important;
}
.swiper-button-next, .swiper-button-prev{
	top: 40% !important;
}
#manager.anchor, #owner.anchor{
	display: block;
	padding-top: 40px;
	margin-top: -40px;
}


/*sp*/
@media screen and (max-width: 560px) {
	.slide_inner{
		position: fixed;
		transition: .5s;
		width: 100vw;
		height: calc(100vh + 7%);
		overflow: hidden;
		justify-content: space-between;
	}
	.slide_imgs{
		display: flex;
		width:140vw;
		margin-left: -20vw;
		background-color: #000;
	}
	.slide_lft, .slide_rgt{
		width: 100vw;
		height: 100vh;
		overflow: hidden;
		transform: skewX(-10deg);
	}
	.slide_lft img, .slide_rgt img{
		position: relative;
		z-index: 5;
		transform: skewX(10deg);
		transform-origin: top center;
		transition: .3s;
	}
	.sp_br{
		display: block;
	}
	.sec_wrap .bnr img{
		width: 100%;
	}
	.bike_list{
		justify-content: space-between;
	}
	.tit_wrapper{
	width: 100%;
	}
	.swiper{
		width: 70%;
	}
	.my_bike{
		width: 50%;
	}
	.bike_list_wrapper2 .logo_marks img{
		margin-right: 0;
	}
	.bike_list_wrapper2 .logo_marks{
		justify-content: space-between;
	}
	.repair_inner {
    width: 80%;
		margin: 0 auto;
	}
	.staff_desc2{
		margin: 1rem auto 5rem;
	}
	.sec_staff .top_desc_wrapper > h2 {
    margin: 7rem auto 0;
	}
	.license {
    display: inline-block;
		margin-left: 0;
}
.license::before{
	display: none;
}
.product{
	flex-direction: column;
}
.bike_list .cat{
	margin-bottom: 0.3rem;
}
.bike_list .wrap{
	padding: 0 0.5rem 1rem;
}
.news a{
	flex-direction: column;
}
.news_list{
	width: 90%;
	padding: 3rem;
}
.news_list li{
	width: 100%;
}
.news_list time, .news_list .news_tit{
	width: 100%;
}
}

/*pc,tablet*/
@media screen and (min-width: 560px) {
	.slide_inner{
	position: fixed;
	top: 85px;
    transition: .5s;
	width: 100%;
	transform: scale(1.3);
    height: 100vh;
	margin-left: 1%;
    overflow: hidden;
    justify-content: space-between;
	}
	.slide_imgs{
		display: flex;
		width: 100%;
		margin-left: -2.5%;
		background-color: #000;
	}
	.slide_lft, .slide_rgt{
		width: 100%;
		overflow: hidden;
		transform: skewX(-10deg);
	}
	.slide_lft img, .slide_rgt img{
		position: relative;
		z-index: 5;
		height: 100%;
		transform: skewX(10deg);
		transform-origin: top center;
		transition: .3s;
	}
	.br{
		display: block;
	}
	.news_list .news_tit{
		padding-left: 1rem;
	}
	.top_desc, .staff_desc, .staff_desc2, .top_desc_wrapper .staff_name{
	width: 80%;
	}
	.bike_list{
		/* justify-content: space-around; */
		justify-content: space-evenly;
	}
	.bike_list .pop_up,	.bike_list .pop_up_sd{
		width: calc(100% / 3.17);
		margin-left: 0;
	}
	.sale_container .bike_list .pop_up, .sale_container .bike_list .pop_up_sd{
		/* width: calc(100% / 4.15); */
		width: calc(100% / 3.15);
		margin-left: 0;
	}
	.location iframe{
		display: block;
		width: 80%;
		margin: 0 auto;
	}
	.maker ul li{
		width: calc(80% / 4);
		margin: 0 0 1rem 1rem;
	}
	.footer .inner ul li {
		width: calc(100% / 4);
	}
	.sec_wrap .sec_2img {
	display: block;
	width: 80%;
	margin: 1rem auto 0;
	padding: 0 15%;
	}
	.sec_wrap .bnr{
	width: 80%;
	margin: 3rem auto;
    padding: 0 15%;
	}
	.sec_wrap .bnr a{
		width: 100%;
		display: block;
		margin: 0 auto;
	}
	.top_desc_wrapper{
		margin: 0 auto;
	}
	.bike_list_wrapper2 .bikes_slide img {
    display: block;
	width: 50%;
    margin: 0 auto;
	}
	.hide_btn {
    position: relative;
    height: 40px;
    width: 50%;
    margin: 0 auto;
	}
	.bike_list .bike_list_wrapper2 .wrap {
    position: relative;
    width: 50%;
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
}
}

/*pc*/
@media screen and (min-width: 860px) {
	.maker ul li{
		width: calc(80% / 6);
		margin: 0 0 1rem 1rem;
	}
	.location .desc_table{
		display: flex;
		justify-content: center;
	}
	.location .lcn_pc{
		width: 40%;
	}
	.location .desc_table .lcn_pc > p:nth-child(odd) {
    margin: 0 auto 0.5rem;
	}
	.repair_inner ul{
		width: 55%;
	}
	.news_list {
		width: 50%;
		padding: 5rem 0;
	}
}