@charset "utf-8";
/* ================================================================ */
/* VR */
/* ================================================================ */
#vriframe {
	position:fixed;
	left:0;
	top:0;
	right:0;
	bottom:0;
	margin:auto;
	width:100%;
	height:100%;
	display:block;
	transition:all ease 1.8s;
	z-index:-1;
}
#vriframe.fixed {
	opacity:0;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
}
/* ================================================================ */
/* FV */
/* ================================================================ */
#Fv {
    display: block;
    width: 100%;
    height: 100vh;
    max-height: 85vh;
    min-height: 85vh;
    position: relative;
    z-index: 100;
}
#Fv .vr_trigger {
	position:absolute;
	left:0;
	bottom:30%;
}
/*#Fv::before {
    background: center/cover no-repeat url(./fv_bg_001.jpg);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    filter: grayscale(100%) blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.5);
    transition: all 1.5s ease;
}
#Fv.on::before {
    filter: grayscale(0) blur(0);
    transform: scale(1);
}*/
#Fv > .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 100;
}
.fvImage {
    width: 50%;
    min-width: 300px;
    max-width: 500px;
    padding-top: 2em;
}
.fvScrollOut {
    display: block;
    position: absolute;
    bottom: -1.75em;
    right: 0;
    transform: rotate(90deg);
    transform-origin: right;
    line-height: 1;
}
.fvScrollOut::before, .fvScrollOut::after {
    background: #ffffff;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
}
.fvScrollOut::before {
    width: 100%;
    opacity: .5;
}
.fvScrollOut::after {
    width: 50%;
}
.fvScrollOut > button {
    appearance: none;
    background: none;
    border: none;
}
.fvScrollOut > button > span {
    color: #ffffff;
    font-size: 1.1em;
    font-weight: bold;
    font-style: italic;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
.fvScrollOut {
    right: 7%;
}
}
/* ================================================================ */
/* 新着記事 */
/* ================================================================ */
#News {
    position: relative;
    z-index: 90;
}
#News::before {
    background: #000000;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: .85;
}
#News > .inner {
    padding: 6em 0;
    position: relative;
    z-index: 200;
}
#News > .inner > .headline001 {
    opacity: 0;
    transition: all .6s ease;
}
#News > .inner > .headline001::before {
    width: 0;
    transition: all .6s ease;
    transition-delay: 1s;
}
#News > .inner > .newsLink {
    opacity: 0;
    transition: all .6s ease;
    transition-delay: 2s;
}
#News > .inner.on > .headline001 {
    opacity: 1;
}
#News > .inner.on > .headline001::before {
    width: 5em;
}
#News > .inner.on > .newsLink {
    opacity: 1;
}
.news {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin: 2em 0;
}
.news_item {
    width: calc(25% - 1em);
    opacity: 0;
    transform: translateX(-4em);
    transition: all .6s ease;
}
.news_item:nth-child(1) {
    transition-delay: 0.6s;
}
.news_item:nth-child(2) {
    transition-delay: 0.8s;
}
.news_item:nth-child(3) {
    transition-delay: 1.0s;
}
.news_item:nth-child(4) {
    transition-delay: 1.2s;
}
.on > .news > .news_item {
    opacity: 1;
    transform: translateX(0);
}
.news_item > a {
    color: #ffffff;
    display: block;
    width: 100%;
}
.news_item_thumbnail {
    padding-top: 60%;
    width: 100%;
    position: relative;
    margin-bottom: 0.5em;
}
.news_item_thumbnail > div {
    background: center/cover no-repeat;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.news_item_date {
    font-size: 0.8em;
    font-weight: bolder;
    line-height: 1;
}
.news_item_title {
    font-size: 1.2em;
    font-weight: bolder;
    padding: .35em 0;
    border-bottom: 1px solid #00AFCC;
    line-height: 1.5;
}
.news_item_excerpt {
    font-size: 0.85em;
    padding: .45em 0;
}
.newsLink {
    text-align: center;
    margin-top: 4em;
}
@media screen and (max-width:1024px) {
.news_item_title {
    font-size: 1em;
}
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
.news {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}
.news_item {
	width: calc(50% - 1em);
}
.news_item:not(:nth-child(1)),
.news_item:not(:nth-child(2)) {
	margin-top:2em;
}
}
/* ================================================================ */
/* イベント */
/* ================================================================ */
#Event {
    position: relative;
	background-color:#fff;
}
#Event::before {
    background: center/cover no-repeat url(./events_bg_001.jpg);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: .05;
}
#Event .headline001 {
    color: #4B4948;
}
#Event > .inner {
    padding: 6em 0;
    position: relative;
    z-index: 200;
}
#Event > .inner > .headline001 {
    opacity: 0;
    transition: all .6s ease;
}
#Event > .inner > .headline001::before {
    width: 0;
    transition: all .6s ease;
    transition-delay: 1s;
}
#Event > .inner > .eventLink {
    opacity: 0;
    transition: all .6s ease;
    transition-delay: 2s;
}
#Event > .inner.on > .headline001 {
    opacity: 1;
}
#Event > .inner.on > .headline001::before {
    width: 5em;
}
#Event > .inner.on > .eventLink {
    opacity: 1;
}
.events {
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin: 2em 0;
}
.events_item {
    width: calc(25% - 1em);
    opacity: 0;
    transform: translateX(-4em);
    transition: all .6s ease;
}
.events_item:nth-child(1) {
    transition-delay: 0.6s;
}
.events_item:nth-child(2) {
    transition-delay: 0.8s;
}
.events_item:nth-child(3) {
    transition-delay: 1.0s;
}
.events_item:nth-child(4) {
    transition-delay: 1.2s;
}
.on > .events > .events_item {
    opacity: 1;
    transform: translateX(0);
}
.events_item > a {
    display: block;
    width: 100%;
    position: relative;
}
.events_item_thumbnail {
    padding-top: 60%;
    width: 100%;
    position: relative;
    margin-bottom: 0.5em;
}
.events_item_thumbnail > div {
    background: center/cover no-repeat;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.events_item_date {
    font-size: 0.8em;
    font-weight: bolder;
    line-height: 1;
}
.events_item_day {
    background: linear-gradient(90deg, #005261, #00AFCC);
    color: #ffffff;
    display: block;
    width: 120px;
    font-size: 0.95em;
    font-weight: bold;
    line-height: 1.5;
    position: absolute;
    top: 0;
    left: 0;
    padding: .5em;
}
.events_item_day_label {
    font-size: 0.85em;
}
.events_item_day_date {
    font-style: italic;
}
.events_item_title {
    font-size: 1.2em;
    font-weight: bolder;
    padding: .35em 0;
    border-bottom: 1px solid #00AFCC;
    line-height: 1.5;
}
.events_item_excerpt {
    font-size: 0.85em;
    padding: .45em 0;
}
.eventLink {
    text-align: center;
    margin-top: 4em;
}
@media screen and (max-width:1024px) {
.events_item > a {
	padding: 48px 0 0;
}
.events_item_day {
	width:100%;
	line-height:1.25;
	padding:5px 10px;
}
.events_item_title {
	font-size: 1em;
}
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
.events {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}
.events_item {
	width: calc(50% - 1em);
}
.events_item:not(:nth-child(1)),
.events_item:not(:nth-child(2)) {
	margin-top:2em;
}
.events_item > a {
	padding: 46px 0 0;
}
}
/* カレンダー系 */
.btnToggleVisibleEventsCalenderWrap {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    z-index: 1000;
}
.btnToggleVisibleEventsCalender {
    appearance: none;
    border: none;
    background: #D24E4E;
    display: flex;
    align-content: center;
    justify-content: center;
    height: 80px;
    width: 100px;
    position: sticky;
    top: 16em;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    padding: 0 20% 0 0;
}
.btnToggleVisibleEventsCalender > img {
    display: block;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -50%);
}
.eventsCalender {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,.85);
    opacity: 0;
    pointer-events: none;
    z-index: -1000;
}
.eventsCalender.__open {
    opacity: 1;
    pointer-events: none;
    z-index: 10000;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
}
/* ================================================================ */
/* AFC */
/* ================================================================ */
#afc {
	position:relative;
	padding:200px 0;
}
#afc .inner {
	position:relative;
	width:1400px;
	max-width:90%;
	margin:0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	z-index:1;
}
#afc .inner .textbox {
	width:50%;
	padding:0 2.5% 0 0;
}
#afc .inner .textbox h2 {
	margin:0 auto 70px;
	font-weight:600;
}
#afc .inner .textbox h2 .jp_text,
#afc .inner .textbox h2 .en_text {
	display:block;
}
#afc .inner .textbox h2 .jp_text {
	color:#005261;
	font-size:34px;
	letter-spacing:0.05em;
	margin:0 auto 10px;
}
#afc .inner .textbox h2 .en_text {
	color:#000000;
	font-size:48px;
	font-style: italic;
	font-weight:700;
	letter-spacing:0.05em;
	line-height:1.25;
}
#afc .inner .textbox p {
	font-weight:600;
}
#afc .inner .textbox p:not(:last-child) {
	margin-bottom:1em;
}
#afc .inner .textbox p span {
	color:#00AFCC;
	text-decoration:underline;
}
#afc .inner .phobox {
	width:50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width:1200px) {
#afc .inner .textbox h2 .en_text {
	font-size:42px;
}
#afc .inner .textbox h2 .jp_text {
	font-size:30px;
}
}
@media screen and (max-width:1024px) {
#afc {
	padding: 100px 0;
	background-attachment: inherit;
}
#afc .inner .textbox {
	width:100%;
	padding:0;
	order: 2;
}
#afc .inner .phobox {
	width:100%;
	order: 1;
	margin:0 auto 30px;
}
#afc .inner .phobox span {
}
#afc .inner .phobox span img {
	width:600px;
	max-width:100%;
	margin:0 auto;
}
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
#afc {
	padding: 60px 0;
}
#afc .inner .textbox h2 {
	margin: 0 auto 30px;
}
#afc .inner .textbox h2 .jp_text {
	font-size: 20px;
}
#afc .inner .textbox h2 .en_text {
	font-size: 26px;
}
}
/* ================================================================ */
/* pickup */
/* ================================================================ */
#pickup {
}
#pickup > ul {
}
#pickup > ul >li {
	position:relative;
	z-index:1;
}
#pickup > ul >li::before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:60%;
	height:100%;
	z-index:-1;
}
#pickup > ul >li:nth-child(odd)::before {
	background-color:#171717;
	clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
#pickup > ul >li:nth-child(even)::before {
	background-color:#00AFCC;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}
#pickup > ul >li .inner {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}
#pickup > ul >li .inner .textbox {
	width:50%;
	padding:50px 0;
	transform: translate(0, 30px);
	-webkit-transform: translate(0, 30px);
	opacity:0;
	transition:all ease 0.8s 0.0s;
}
#pickup > ul >li .inner.on .textbox {
	transform: translate(0, 0px);
	-webkit-transform: translate(0, 0px);
	opacity:1;
}
#pickup > ul >li .inner .textbox h3 {
	position:relative;
	padding:0 0 15px;
	margin:0 auto 35px;
	font-weight:600;
	border-bottom:1px solid #fff;
}
#pickup > ul >li .inner .textbox h3::before {
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	width:70px;
	height:1px;
	background-color:#171717;
}
#pickup > ul >li:nth-child(odd) .inner .textbox h3::before {
	background-color:#171717;
}
#pickup > ul >li:nth-child(even) .inner .textbox h3::before {
	background-color:#00AFCC;
}
#pickup > ul >li .inner .textbox h3 .jp_text,
#pickup > ul >li .inner .textbox h3 .en_text {
	display:block;
}
#pickup > ul >li .inner .textbox h3 .jp_text {
	color:#00AFCC;
	font-size:14px;
	letter-spacing:0.05em;
	margin:0 auto 10px;
}
#pickup > ul >li:nth-child(odd) .inner .textbox h3 .jp_text {
	color:#00AFCC;
}
#pickup > ul >li:nth-child(even) .inner .textbox h3 .jp_text {
	color:#171717;
}
#pickup > ul >li .inner .textbox h3 .en_text {
	color:#ffffff;
	font-size:32px;
	font-style: italic;
	font-weight:700;
	letter-spacing:0.05em;
	line-height:1.25;
}
#pickup > ul >li .inner .textbox .inbox {
	padding:0 2.5% 0 0;
}
#pickup > ul >li .inner .textbox p {
	color:#fff;
	font-weight:600;
}
#pickup > ul >li .inner .textbox .linkbox {
	margin:35px auto 0;
}
#pickup > ul >li .inner .textbox .linkbox a {
	position:relative;
	display:block;
	width:260px;
	max-width:100%;
	border:1px solid #fff;
	padding:15px 1%;
	text-align:center;
	font-size:16px;
	font-weight:500;
	color:#fff;
}
#pickup > ul >li .inner .textbox .linkbox a::before {
	content:"";
	position:absolute;
	bottom:20px;
	right:-10px;
	/* right:0; */
	transform: translate(50%, 0%);
	-webkit-transform: translate(50%, 0%);
	width:62px;
	height:8px;
	background-image:url("./link_arrow01.png");
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
}
#pickup > ul >li .inner .phobox {
	width:50%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding:50px 0;
	transform: translate(-30px, 0);
	-webkit-transform: translate(-30px, 0);
	opacity:0;
	transition:all ease 0.8s 0.5s;
}
#pickup > ul >li .inner.on .phobox {
	transform: translate(0px, 0);
	-webkit-transform: translate(0px, 0);
	opacity:1;
}
#pickup > ul >li .inner .phobox span {
	position:relative;
	padding:0 25px 0 0;
	z-index:1;
}
#pickup > ul >li .inner .phobox span::before {
	content:"";
	position:absolute;
	right:0px;
	bottom:-25px;
	width:200px;
	max-width:30vw;
	height:200px;
	max-height:30vw;
	background-color:#171717;
	z-index:-1;
}
#pickup > ul >li:nth-child(odd) .inner .phobox span::before {
	background-color:#00AFCC;
}
#pickup > ul >li:nth-child(even) .inner .phobox span::before {
	background-color:#171717;
}
#pickup > ul >li .inner .phobox span img {
}
.pickup_app_links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 400px;
    max-width: 100%;
    margin: 3em auto 0 0;
}
.pickup_app_links > li {
    margin: .5em 1em;
}
.pickup_app_links > li > a > img {
    display: block;
    height: 45px;
    width: auto;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
#pickup {
	position:relative;
}
#pickup::before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: #000;
	opacity:0.85;
}
#pickup > ul >li .inner .textbox {
	width:100%;
}
#pickup > ul >li .inner .textbox h3 .en_text {
	font-size: 20px;
	letter-spacing: 0;
}
#pickup > ul >li .inner .textbox h3 .jp_text {
	font-size: 12px;
	margin: 0 auto 5px;
}
#pickup > ul >li .inner .phobox {
	width: 100%;
	padding: 0 0 50px 0;
}
#pickup > ul > li:nth-child(even) .inner .textbox h3 .jp_text.blue_text {
    color: #5163a9;
}
}
/* ================================================================ */
/* ストアコンセプト */
/* ================================================================ */
#Concept {
    background: rgba(0,0,0,.65);
    color: #ffffff;
    padding: 6em 0;
}
#Concept > .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.conceptHeadLine {
    margin: 0 0 2em;
    width: 100%;
}
.conceptText {
    margin: 2em 0;
    width: 45%;
    font-size: 0.95em;
    font-weight: bolder;
    line-height: 2;
}
.conceptText a {
    color: #00AFCC;
    text-decoration: underline;
}
.conceptText a:hover {
    color: #005261;
    text-decoration: underline;
}
.conceptText_read {
    display: block;
    font-weight: bold;
    padding-bottom: .25em;
    margin-bottom: 1em;
    position: relative;
}
.conceptText_read::before {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: linear-gradient(-90deg, #005261, #00AFCC);
    position: absolute;
    bottom: 0;
    left: 0;
}
.conceptText_read > span {
    display: block;
    line-height: 1.2;
}
.conceptText_read > span:nth-child(2) {
    font-style: italic;
    font-size: 3em;
}
.conceptImage {
    margin: 2em 0;
    width: 50%;
    position: relative;
}
.conceptImage > div {
    background: center/cover no-repeat;
    display: block;
    width: 100%;
    height: 100%;
}
.conceptImage > span {
    color: transparent;
    font-size: 3.6em;
    font-style: italic;
    -webkit-text-stroke: 2px #ffffff;
    display: block;
    width: 100%;
    position: absolute;
    bottom: -.25em;
    left: 0;
    line-height: 1;
}
.otherConcepts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2em 0;
    width: 100%;
}
.otherConcept {
    background: #ffffff;
    color: #171717;
    margin: 1.5em 0;
    position: relative;
    width: calc(50% - 1.5em);
}
.otherConcept > div {
    display: flex;
    justify-content: flex-start;
    flex-flow: row;
    flex-wrap: wrap;
    font-weight: bold;
    height: 100%;
    width: 100%;
    padding: 3em 2em;
}
.otherConcept_text {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: bold;
}
.otherConcept_text > span {
    display: block;
    line-height: 1.2;
    padding-left: 10px;
    position: relative;
    width: 100%;
}
.otherConcept_text > span:nth-child(1) {
    font-size: 1.5em;
    font-style: italic;
}
.otherConcept_text > span::before {
    background: #00AFCC;
    content: '';
    display: block;
    height: 100%;
    width: 5px;
    position: absolute;
    top: 0;
    left: 0;
}
.otherConcept_text > p {
    display: block;
    padding: 1.5em 0;
}
.otherConcept_text > p > span {
    display: inline-block;
}
.otherConcept_text > p a {
    color: #00AFCC;
    transition: all .4s ease;
}
.otherConcept_text > p a:hover {
    color: #005261;
}
.otherConcept_image {
    margin: auto 0 0 0;
    width: 100%;
}
.otherConcept_image > div {
    background: center/cover no-repeat;
    display: block;
    padding-top: 60%;
    position: relative;
    width: 100%;
}
.otherConcept_image > div::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: .25;
    position: absolute;
    top: 0;
    left: 0;
}
.otherConcept_image > span {
    color: transparent;
    font-size: 2.2em;
    font-style: italic;
    -webkit-text-stroke: 2px #ffffff;
    display: block;
    width: 100%;
    position: absolute;
    bottom: -.25em;
    left: 0;
    line-height: 1;
}
.otherConcept > span {
    color: transparent;
    font-size: 3.75em;
    font-style: italic;
    -webkit-text-stroke: 1px #ffffff;
    display: block;
    width: 100%;
    position: absolute;
    bottom: -.25em;
    left: 0;
    text-align: center;
    line-height: 1;
}
.conceptLink {
    text-align: center;
    margin-top: 4em;
    width: 100%;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
}
/* ================================================================ */
/* 取扱い商品会社 */
/* ================================================================ */
#Product {
	position:relative;
    padding: 6em 0;
	overflow:hidden;
	color:#fff;
}
#Product video {
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	min-width:100%;
	min-height:100%;
	z-index:-2;
}
#Product .headline001 {
    color: #ffffff;
}
.productText {
    padding: 4em 0;
    width: 100%;
}
.products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.products > li {
    margin: 2em auto;
    width: 26%;
    padding:10px;
    box-shadow: 2px 4px 12px 12px rgba(255, 255, 255, 0.6), 10px 10px 0px 0px rgba(0, 0, 0, 0.3), 15px 15px 0px 0px rgba(0, 0, 0, 0.2), 20px 20px 0px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
    top: 2em;
    opacity: 0.01;
    transform: scale(0.85);
    transition: all .4s ease;
}
.products > li:nth-child(1) {
    transition-delay: 0s;
}
.products > li:nth-child(2) {
    transition-delay: .05s;
}
.products > li:nth-child(3) {
    transition-delay: .1s;
}
.products > li:nth-child(4) {
    transition-delay: .15s;
}
.products > li:nth-child(5) {
    transition-delay: .2s;
}
.products > li:nth-child(6) {
    transition-delay: .25s;
}
.products.on > li {
    top: 0;
    opacity: 1;
    transform: scale(1);
}
.productLink {
    margin-top: 4em;
    text-align: center;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
.productText {
    padding: 20px 0;
}
.products {
	justify-content: space-between;
}
.products > li {
    width: 40%;
    margin:1em auto;
}
}
/* ================================================================ */
/* レンタルバイク */
/* ================================================================ */
#RentalBike {
    padding: 6em 0 0;
	overflow:hidden;
}
#RentalBike .headline001 {
    color: #4B4948;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
}
/* レンタルバイク一覧 */
.rentalBikesWrap {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}
.rentalBikesWrap {
    display: flex;
    margin-top: 1em;
}
.btnRentalBikesPrevWrap, .btnRentalBikesNetWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    position: relative;
}
.btnRentalBikesPrev, .btnRentalBikesNext {
    appearance: none;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0;
}
.btnRentalBikesPrev > img, .btnRentalBikesNext > img {
    display: block;
    height: 30px;
    width: 30px;
    position: relative;
}
.rentalBikes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.rentalBike {
    cursor: pointer;
    width: 30%;
}
.rentalBike_text {
    margin-bottom: 1em;
}
.rentalBike_text > span {
    display: block;
    line-height: 1.2;
}
.rentalBikes_read {
    font-size: 0.8em;
}
.rentalBikes_name {
    font-size: 1.1em;
    font-weight: bold;
}
.rentalBike_image {
    padding-top: 60%;
    width: 100%;
    position: relative;
    opacity: 0.35;
    transition: all .4s ease;
}
.rentalBike.__visible > .rentalBike_image,
.rentalBike:hover > .rentalBike_image {
    opacity: 1;
}
.rentalBike_image > div {
    background: center/contain no-repeat;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
.rentalBikesWrap {
	width: 100%;
}
.btnRentalBikesPrevWrap, .btnRentalBikesNetWrap {
	width: 35px;
}
.rentalBike {
	width: 31%;
}
.rentalBike_text > span.rentalBikes_read {
	font-size: 0.5em;
	display:none;
}
.rentalBikes_name {
	font-size: 0.8em;
}
}
/* レンタルバイク詳細 */
.rentalBikesDetailWrap {
    display: block;
    width: 100%;
}
.rentalBikesDetail {
    width: 100%;
    position: relative;
}
.rentalBikeDetail {
    display: none;
    padding: 5em 0;
}
.rentalBikeDetail.__visible {
    display: block;
}
.rentalBikeDetail > .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
}
.rentalBikeDetail_bg {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.rentalBikeDetail_bg::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: #000000;
    opacity: .75;
}
.rentalBikeDetail_bg > div {
    background: 65% top/contain no-repeat #ffffff;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: rotateY(180deg);
}
.rentalBikeDetail_image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 47.5%;
    position: relative;
    z-index: 10;
}
.rentalBikeDetail_image > div {
    display: block;
    width: 100%;
    height: 75%;
    position: relative;
}
.rentalBikeDetail_image > div > div {
    background: center/contain no-repeat;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.rentalBikeDetail_text {
    color: #ffffff;
    display: block;
    width: 47.5%;
    position: relative;
    z-index: 10;
}
.rentalBikeDetail_text_title > span {
    display: block;
    line-height: 1.5;
}
.rentalBikeDetail_text_title > span:nth-child(1) {
    font-size: 1.1em;
}
.rentalBikeDetail_text_title > span:nth-child(2) {
    font-size: 1.5em;
    font-weight: bold;
}
.rentalBikeDetail_text_read {
    margin: 1em 0 2em;
}
.rentalBikeDetail_text_specs {
    display: block;
    width: 80%;
    max-width: 460px;
    min-width: 320px;
    font-size: 0.85em;
    margin: 4em 0;
}
.rentalBikeDetail_text_spec {
    display: flex;
    justify-content: space-between;
    padding: .3em 0;
}
.rentalBikeDetail_text_spec + .rentalBikeDetail_text_spec {
    border-top: 1px solid #ffffff;
}
.rentalBikeDetail_text_spec > dt {
    width: 40%;
}
.rentalBikeDetail_text_spec > dd {
    width: 60%;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
.rentalBikeDetail_text {
	width: 100%;
	order: 1;
}
.rentalBikeDetail_image {
	width: 100%;
	order: 2;
	height: 80vw;
	margin:20px auto 0;
}
.rentalBikeDetail_image > div:nth-child(1) {
	height: 72%;
}
.rentalBikeDetail_image > div {
	height: 28%;
}
}
/* ================================================================ */
/* オンラインストア */
/* ================================================================ */
#OnlineStore {
    display: block;
    position: relative;
}
#OnlineStore::after {
    background: center/cover no-repeat url(./online_store_gb_001.jpg);
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
#OnlineStore > a {
    display: block;
    width: 100%;
    position: relative;
    padding: 5em 5% 5em 55%;
}
#OnlineStore > a::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.8));
    content: '';
    display: block;
    height: 100%;
    width: 30%;
    position: absolute;
    top: 0;
    left: 20%;
    z-index: 1;
}
#OnlineStore > a::after {
    background: rgba(255,255,255,.8);
    content: '';
    display: block;
    height: 100%;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}
#OnlineStore > a > img {
    display: block;
    width: 700px;
    max-width: 100%;
    position: relative;
    z-index: 1000;
    margin: 0 auto;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
    #OnlineStore > a {
        padding: 5em 5% 5em 35%;
    }
}
@media screen and (max-width:640px) {
    #OnlineStore > a {
        padding: 5em 5% 5em 15%;
    }
    #OnlineStore > a::before {
        left: 5%;
    }
    #OnlineStore > a::after {
        width: 65%;
    }
}
/* ================================================================ */
/* サービス紹介 */
/* ================================================================ */
#Service {
    background: #171717;
    padding: 6em 0;
}
#Service > .inner {
    width: 90%;
}
.services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 4em auto;
    width: 100%;
    min-height: 400px;
}
.service {
    border: 1px solid #00AFCC;
    width: 25%;
    background: center/cover no-repeat #ffffff;
    transform: skew(5deg);
    position: relative;
}
.service::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000000;
    opacity: .65;
    z-index: 0;
}
.service + .service {
    border-left: none;
}
.service:nth-child(1) {
    background-image: url(./service_001.jpg);
}
.service:nth-child(2) {
    background-image: url(./service_002.jpg);
}
.service:nth-child(3) {
    background-image: url(./service_003.jpg);
}
.service:nth-child(4) {
    background-image: url(./service_004.png);
    background-size: contain;
}
.service > a {
    display: block;
    height: 100%;
    width: 100%;
    padding: 1em;
    position: relative;
    z-index: 1;
}
.service_text {
    color: #ffffff;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid #ffffff;
    width: 100%;
    height: 100%;
}
.service_text > span {
    display: block;
    width: 100%;
    transform: skew(-5deg);
    line-height: 1;
    text-align: center;
    font-weight: bold;
}
.service_text > span:nth-child(1) {
    font-size: 1.8em;
    font-style: italic;
}
.serviceLink {
    margin-top: 1em;
    text-align: center;
}
@media screen and (max-width:1024px) {
}
@media screen and (max-width:840px) {
}
@media screen and (max-width:640px) {
.service {
	width: 50%;
}
.service > a {
	padding: 0.5em;
}
.service_text > span:nth-child(1) {
	font-size: 1.2em;
}
}

/* ================================================================ */
/* 「ONLINE STORE」セクション専用：RAKUTEN STORE ボタン調整 */
/* ================================================================ */

/* ONLINE STORE セクションのみ適用 */
#pickup > ul > li:nth-of-type(2) .inner .textbox .linkbox {
  margin: 35px 0 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
}

/* ボタン共通 */
#pickup > ul > li:nth-of-type(2) .inner .textbox .linkbox a {
  position: relative;
  display: inline-block;
  width: 260px;
  max-width: 100%;
  border: 1px solid #fff;
  padding: 15px 1%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

/* 矢印（右側の白い→） */
#pickup > ul > li:nth-of-type(2) .inner .textbox .linkbox a::before {
  content: "";
  position: absolute;
  bottom: 18px;
  right: -5px;
  width: 40px;
  height: 8px;
  background-image: url(./link_arrow01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}

/* スマホ表示（縦並び） */
@media (max-width: 680px) {
  #pickup > ul > li:nth-of-type(2) .inner .textbox .linkbox {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

