@charset "UTF-8";

/*---------------------------------
基本設定
----------------------------------*/

html {
  min-width: 320px;
  font-size: 62.5%;
}

main {
  margin: 0;
  line-height: 1;
  color: #ffff;
  overflow-x: clip;
  background: #71a8cb;
  font-size: 1.6rem;
  font-family: "Noto Sans Japanese",sans-serif;
}

body {
  background: #71a8cb;
  font-family: "Noto Sans Japanese",sans-serif;

}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}


h1 {
  color: #ffffff;
  text-align: center;
  padding-top: 15vh;
  font-size: 20px;
  font-family: "Noto Sans Japanese",sans-serif;

}

h2 {
  color: #333;
  text-align: center;
  padding-bottom: 5vh;
  font-size: 20px;
  font-family: "Noto Sans Japanese",sans-serif;

}
/*clearfix*/

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  zoom: 1;
}

button,
input {
  overflow: visible;
}

a {
  text-decoration: none;
}

svg a {
  width: 30%;
}

a:hover {
  display: block;
  z-index: 1000;
}

/*---------------------------------
全体の枠
----------------------------------*/

#wrapper {
  max-width: 100%;
  margin: 0 10px;
  padding-bottom: 60px;
}


.l-container {
  padding: 50px 0;
  overflow: hidden;
}

.l-inner {
  margin: 0 20px;
}


/*-----------------------
base-Smallスモールサイズ
---------------------------------*/
/*---------------------------------
ヘッダー(スモール）
----------------------------------*/

.video-container {
  margin: 0 auto;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.video-text {
  position: absolute;
  z-index: 9999;
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 12vw;
  font-weight: bolder;
  transform: translate(6.5vh, 200%);
}

/*
.video-text:before {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  width: 101%;
  height: 20vh;
  border-radius: 20px;
  position: absolute;
}
*/

video {
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 430px;
  object-fit: cover;
}

.logo {
  width: 13%;
  position: absolute;
  top: 1%;
  left: 1%;
  z-index: 5000;
}

.logo_02 {
  width: 10%;
  position: absolute;
  top: 1%;
  left: 45%;
  z-index: 5000;
}



/*---------------------------------
ハンバーガー部分
----------------------------------*/

.humburger {
  width: 15%;
  position: fixed;
  left: 1%;
  z-index: 10;
}
/*==================================================
　5-2-1 3本線が×に
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/

/*ボタン内側*/

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 30000;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: rgba(113, 168, 203, 0.98);
  /*動き*/
  transition: all 0.5s ease-in-out;
}

/*アクティブクラスがついたら位置を0に*/

#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/

#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: absolute;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  display: block;
  -webkit-overflow-scrolling: touch;
  animation-name: fadeInAnime; /*1で解説*/
  animation-fill-mode: both; /*2で解説*/
  animation-duration: 0.8s; /*3で解説*/
  /*animation-timing-function:cubic-bezier(0.1, 0.2, 0.3, 1);
    transform: .1.2s cubic-bezier(0.1, 0.2, 0.3, 1);*/
  animation-delay: 0.1s; /*6で解説*/
  animation-direction: normal; /*7で解説*/
}

/*ナビゲーション*/

#g-nav ul {
  position: absolute;
  z-index: 10000;
  top: 38%;
  left: 40%;
  font-size: 18px;
  margin-left: 55px;
  padding: 10px;
  transform: translate(-55%, -33%);
  overflow: scroll;
  white-space: nowrap;
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
  transform: translateX(0%);
  animation-name: fadeInAnime;
  animation-duration: 1.4s;
  /*animation-fill-mode: both;*/
  animation-iteration-count: 1;
  &:nth-child(1) {
    animation-delay: 0s;
  }
  &:nth-child(2) {
    animation-delay: 1s;
  }
  &:nth-child(3) {
    animation-delay: 1s;
  }
  &:nth-child(4) {
    animation-delay: 1.1s;
  }
  &:nth-child(5) {
    animation-delay: 1.1s;
  }
  &:nth-child(6) {
    animation-delay: 1.3s;
  }
}
/*1で解説*/
@keyframes fadeInAnime {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  70% {
    opacity: 0;
    transform: translateX(-20%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

#g-nav li a:hover {
  border-bottom-color: rgba(0, 0, 0, 0.3);
  transform: translateY(4px);
  border-bottom: none;
  cursor: pointer;
  animation-duration: 0.5s;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 25px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  font-family: "Noto Sans Japanese",sans-serif;
  animation-name: fadeInAnime;
}

.fadeIn {
}

/*========= ボタンのためのCSS ===============*/

.openbtn {
  background-color: #808dff;
  position: fixed;
  z-index: 40000;
  /*ボタンを最前面に*/
  top: 0px;
  right: -1px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/

.openbtn span {
  display: inline-block;
  transition: all 0.6s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
  z-index: 10000;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.l-gnav__list--icon {
  width: 30%;
}


.l-gnav__list--icon {
  width: 25px;
  padding: 6rem;
  margin: 1rem;
  transform: translate(0px, 0px);
}

.l-gnav__list--icon a {
  width: auto;
  line-height: 40px;
  color: #fff;
}

.l-gnav__list--store {
  width: 40%;
  transform: translate(27px, 0px);
}

.opaopa {
  z-index: 10000;
}

.activeBnr {
  top: 1%;
  visibility: visible;
}

.sticker {
  width: 10%;
  position: fixed;
  left: 2%;
  z-index: 10000;
  top: 0%;
}
.activeBtn {
  bottom: 30px;
  visibility: visible;
  z-index: 100000;
}

.pagetop {
  bottom: 100px;
}

.pagetop {
  position: fixed;
  right: 3%;
  bottom: 3%;
  z-index: 20000;
  width: 22%;
}

.pagetop a {
  display: block;
  width: 80px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
/*---------------------------------
メインページスモール
----------------------------------*/

.bg-slider-img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 120vh;
  background-image: url("../images/AdobeStock_621682942.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}


.bg-slider {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: -17vh;
  z-index: -1;
}

.bg {
  animation: slide-animation-01 20s infinite;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  background-image: url("../images/main_visual_0102.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.bg_02 {
  animation: slide-animation-02 20s infinite;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  background-image: url("../images/hiros_cycling_main_visual_visual0103.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.bg_03 {
  animation: slide-animation-03 20s infinite;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  background-image: url("../images/main_visual__02.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.bg::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 200vh;
  z-index: 3000;
}

.bg_02::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 200vh;
  z-index: 3000;
}

.bg_03::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 200vh;
  z-index: 3000;
}
@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.what_is {
  display: block;
  left: 50px;
  right: 50px;
  font-size: 45px;
  line-height: auto;
  font-weight: lighter;
  line-height: 40px;
  margin-top: -355px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-title {
  position: relative;
  z-index: 3000;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 50px;
  font-weight: bolder;
  transform: translate(-6%, -50%);
}

.main-title_02 {
  position: relative;
  z-index: 3000;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 50px;
  font-weight: bolder;
}

.main-title_03 {
  position: relative;
  z-index: 3000;
  font-family: "Noto Sans Japanese",sans-serif;
  color: #fff;
  font-size: 50px;
  font-weight: bolder;
  padding: 52px;
  padding-top: 20vh;
  line-height: 8vh;
}

.main-title_04 {
  position: relative;
  z-index: 3000;
  font-family: "Noto Sans Japanese",sans-serif;
  color: #fff;
  font-size: 50px;
  font-weight: bolder;
  padding-top: 8vh;
}
.img-01 {
  position: relative;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.img-02 {
  position: sticky;
  height: 2vh;
  top: 80vh;
  left: 0;
  justify-content: center;
  align-items: center;
  background-size: auto, cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.img-frame {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 200vh;
  overflow: hidden;
  margin: 0 auto;
  z-index: 2000;
  background-size: auto, cover;
  background-position: center;
}

.hello {
  display: block;
  font-size: 18px;
  font-weight: bolder;
  text-align: center;
  line-height: 2.5;
  overflow: hidden;
  word-break: break-all;
}

.explain_02 {
  display: block;
  font-size: 18px;
  font-weight: bolder;
  text-align: center;
  line-height: 2.5;
  padding: 23px;
  overflow: hidden;
  word-break: break-all;
}
  .sukima {
    padding: 10vh;
  }

  .sukima__02 {
    padding-top: 50px;
    padding-bottom: 25px;
  }

  .sukima__03 {
    padding-top: 50px;
    padding-bottom: 25px;
  }

  .c-title--head--center {
    text-align: center;
  }

  .c-title--head {
    font-family: "Noto Sans Japanese",sans-serif;
    font-size: 233%;
    padding-top: 0.3em;
    padding: 10px;
    margin-bottom: 20px;
    display: inline-block;
    font-weight: bold;
  }

  .explain_sub__03 {
    font-family: "Noto Sans Japanese";
    text-align: center;
    text-justify: inter-ideograph;
    font-weight: bolder;
    line-height: 40px;
    font-size: 17px;
  }  


  .l-gmap {
    height: 556px;
    overflow: hidden;
    margin: -20px;
    padding-top: 50px;
  }
  
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .more {
    position: relative;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 10px;
  }

  .more__02 {
    position: relative;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -10px;
  }

  .btn--white a {
    color: #000;
    background: #ffff;
    display: flex;
    width: 50%;
    position: relative;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    margin-right: 5vh;
    margin-left: 1vh;
    margin-bottom: 35px;
    padding: 10px 45px;
    font-family: "Oswald",sans-serif;
    font-size: 150%;
    font-weight: lighter;
    border-radius: 200vh;
  }

  .btn--radius,
  .btn--radius__02,
  .btn--radius__03,
  .btn--radius__04 {
    border-radius: 200vh;
  }

  /* 横スクロールセクション */
  .c-title--head__sub {
    font-family: "0swald",sans-serif;
    text-align: center;
    font-size: 20px;
    font-weight: bolder;
    line-height: 30px;
    padding-bottom: 50px;
  }
  .side-scroll-container{
    width: 100%;
  }
  
  .side-scroll-list-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

  .side-scroll-heading {
    color: #fff;
    font-size: 35px;
    padding-top: 15px;
    padding-bottom: 20px;
    font-family: "Noto Sans Japanese",sans-serif;
  }

  .side-scroll-list {
    position: absolute;
    top: 30px;
    display: flex;
    gap: 30px;
  }

  .side-scroll-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 690px;
    font-size: 25px;
    text-align: center;
    
  }

  .side-scroll-item__01 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 605px;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
  }

  .fade-text--center,
  .fade-text--center__02 {
    padding-top: 3vh;
    padding-left: 0vh;
    overflow: hidden;
    font-weight: bold;
  }

  .explain {
    display: block;
    left: 55px;
    font-size: 20px;
    line-height: auto;
    font-weight: bolder;
    text-align: center;
    line-height: 40px;
    padding: 7px;
    margin-top: -20px;
    overflow: hidden;
    word-break: break-all;
  }

  .brake_explain {
    display: block;
    left: 55px;
    font-size: 19px;
    line-height: auto;
    font-weight: bolder;
    text-align: center;
    line-height: 40px;
    padding: 10px;
    padding-top: 45px;
    margin-top: -20px;
    overflow: hidden;
    transform: translate(-1%, -10%);
    word-break: break-all;
  }


.search__explain {
  display: block;
  left: 55px;
  font-size: 18px;
  line-height: auto;
  font-weight: bolder;
  text-align: center;
  line-height: 40px;
  padding: 41px;
  margin-top: -20px;
  overflow: hidden;
  transform: translate(-1%, -10%);
  word-break: break-all;
}
  .explain_sub {
    font-family: "Noto Sans Japanese",sans-serif;
    text-align: center;
    font-weight: bolder;
    line-height: 35px;
  }
  
  .explain_05 {
    font-family: "Noto Sans Japanese",sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 17px;
    padding-bottom: 30px;
  }

  .img_block_01 {
    padding: 38vh 2.7vh;
    padding-top: 35px;
    margin: 0px auto;
    height: 200px;
    width: 88%;
    border-radius: 10px 10px 10px 10px;
    background-color: rgba(0, 0, 0, 0.1);
}

  /*.accsciblity {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2vh;
    width: 91%;
    border-radius: 0 0 10px 10px;
    margin-bottom: 15vh;
  }*/

  .accsciblity-images {
    padding: 5vh 15vh;
}
  
 .accsciblity-images_03 {
  padding: 2.5vh 12.5vh;
 }


  .kakoi {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px 35px;
    width: 80%;
    border-radius: 10px;
    height: 40vh;
  }

  .kakoi_03 {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1.5vh 4vh;
    width: 80%;
    border-radius: 10px;
    height: 39.8vh;
  }

  /*タイムライン全体の設定*/
.timeline {
  max-width: 400px;
  width: 100%;
  margin: 50px auto;
  padding: 0 30px;
}

.timeline li {
  position: relative;
  list-style: none;
  padding: 0px 0px 20px 15px;
}

.timeline dl {
  margin: 0px 0 100px -3em;
}

/*絶対配置で線を設定*/
.border-line {
  position: absolute;
  left: -9.5px;
  top: 2px;
  width: 7px;
  height: 0;
  background: #fff;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: -13px;
  width: 14px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
}

.complete {
  padding-left: 12vh;
  font-size: 8vw;
  font-weight: bolder;
}

.goriyo {
  display: block;
  background-color: #ddd;
  width: 2.3vh;
  border-radius: 200%;
  font-size: 20px;
  font-weight: bolder;
  color: #333;
}

.yon {
  margin-left: -5.5vh;
}

.check {
  color: #e40040;
}

.future_img_02 {
  padding: 16vh;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.square__01 {
  padding: 35%;
  padding-bottom: 10vh;
  margin: 30px auto;
}

.square__02 {
  padding: 25%;
  padding-bottom: 10vh;
}

.square__03 {
  padding: 40px;
  padding-top: 200px;
}

.step {
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
  font-size: 4vw;
  font-weight: bolder;
  text-align: center;
  margin-left: 11.5vh;
  margin-top: -20px;
  line-height: 32px;
  border-radius: 10px;
  word-break: break-all;
  width: 50%;
}

.step::after {
  content: "";
  position: absolute;
  display: inline-block;
  z-index: 1;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1) transparent;
  border-width: 0 10px 10px 10px;
  top: -10px;
  left: 50%;
  margin-left: -10px;
}

.step::before {
  content: "";
  position: absolute;
  display: inline-block;
  z-index: 1;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1) transparent;
  border-width: 0 10px 10px 10px;
  top: -10px;
  left: 50%;
  margin-left: -10px;
}

/*会社紹介*/

.weare {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.img-frame_03 {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  z-index: 2000;
  border-radius: 10px;
  background-size: auto, cover;
  background-position: center;
}

.img-frame_03::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 200vh;
  z-index: 3000;
}

/*アプリについて*/

.apps {
  position: absolute;
  z-index: 10000;
  padding: 340px 67px;
  padding-left: 11vh;
  line-height: 38px;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
}


.explain_sub__04 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 40px;
  font-size: 6vw;
  padding-bottom: 5vh;
}


.btn--white a {
  color: #000;
  background: #ffff;
  display: flex;
  width: 50%;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-right: 5vh;
  margin-left: 1vh;
  margin-bottom: 35px;
  padding: 10px 45px;
  font-family: "Oswald",sans-serif;
  font-size: 150%;
  font-weight: lighter;
  border-radius: 200vh;
}

.img-06 {
  padding: 17.5vh;
  height: 250px;
  position: relative;
  z-index: 10000;
}

/*レンタルステーションについて*/

.searching_area {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 24px;
  width: 87%;
  margin-bottom: 10vh;
  border-radius: 10px;
}

.slider {
  width: 100%;
}


.explain_07 {
  padding: 2vh;
  font-size: 17px;
  padding-bottom: 10px;
  font-weight: bolder;
  line-height: 40px;
  text-align: center;
}

/*お問い合わせ*/

.img-frame_04 {
  width: 100%;
  margin: 0px auto;
  border-radius: 10px;
}

.contacts {
  position: absolute;
  z-index: 10000;
  padding: 30vh 5vh 0vh;
  padding-left: 7.5vh;
  font-size: 18px;
  line-height: 4vh;
  font-weight: bold;
  text-align: center;
}

.img-frame_04::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 44.5vh;
  height: 40vh;
  z-index: 3000;
  border-radius: 10px;
}

.mail_buton {
  padding: 8vh;
  padding-top: 0vh;
}

.btn--blue__04 {
  color: #000;
  background: #fff;
  display: flex;
  width: 24vh;
  height: 2vh;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-bottom: 3vh;
  margin-top: 5vh;
  margin-left: -1vh;
  padding: 2vh 4vh;
  font-family: "Oswald",sans-serif;
  font-weight: bolder;
  font-size: 18px;
  transition: 0.3s;
}

.img-07 {
  padding: 13vh;
  position: relative;
  padding-top: 11vh;
  z-index: 10000;
}

.btn--blue__04 a {
  color: #000;
}

/*ニュース、新着情報*/
.news_field {
  background-color: rgba(0, 0, 0, 0.1);
  display: inline-block;
  text-align: center;
  padding: 8vh;
  padding-top: 10vh;
  line-height: 30px;
  font-weight: bolder;
  border-radius: 10px;
}

.c-list-news__item {
  padding-bottom: 4vh;
  font-size: 14px;
}

.c-list-news__category {
  vertical-align: sub;
  color: #e40040;
}

.c-text--center {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans Japanese",sans-serif;
  line-height: 30px;
}

.news_top {
  font-size: 16px;
  margin: 1vh -1vh;
}

.circle {
  width: 100%;
}

.circle-in {
  display: flex;
  width: 100%;
  padding-top: 15%;
  border-radius: 50%;
  background-color: #808dff;
  overflow: hidden;
}

.sassoku {
  padding: 30px;
  padding-bottom: 30px;
  margin-bottom: 60px;
  z-index: 10000;
}

.download {
  text-align: center;
  font-weight: bolder;
  padding-top: 10px;
  line-height: 3vh;
  font-size: 18px;
}


.store {
  display: flex;
  padding: 50px;
  padding-bottom: 15vh;
  justify-content: center;
  gap: 3rem;
}


.store a {
  width: 50%;
}

.link {
  display: flex;
  gap: 9vh;
  font-size: 11px;
  font-weight: bolder;
  padding-left: 8.5vh;
}


.link a {
  color: #fff;
}

/*---------------------------------
フッター(スモール）
----------------------------------*/
.l-footer {
  text-align: left;
  overflow: hidden;
}

.l-footer--inner {
  overflow: hidden;
}

.l-footer__logo {
  width: 40px;
  margin: 50px auto;
  padding-top: 140px;
  padding-left: 6px;
  position: absolute;
  align-items: center;
  z-index: 10000;
  display: flex;
}

.l-footer__adress {
  position: absolute;
  text-align: justify;
  z-index: 10000;
  font-size: 10px;
  padding-left: 128px;
  padding-top: 20px;
  font-weight: bolder;
  line-height: 20px;
  color: #fff;
}

.footer-about-social {
  position: absolute;
  width: 15px;
  height: 50px;
  display: flex;
  text-align: right;
  padding: 1rem;
  gap: 1rem;
  z-index: 10000;
}

.p-footer_small {
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  z-index: 10000;
  padding-top: 220px;
  padding-left: 52px;
  color: #fff;
}

.p-gf__info__local__link.c-pagelink {
  padding: 2em;
}


.footer-info {
  text-align: right;
  justify-content: space-around;
  font-size: 1.1rem;
}

.link__02 {
  display: none
}

.img-08 {
  position: absolute;
}

.img-frame_05::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 33vh;
  z-index: 3000;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
}


/*画面サイズが変わっても常に動画の中央が表示されるようにする*/
.btn--yellow,
.btn--yellow__02 {
  color: #000;
  background: #fff;
  display: flex;
  width: 58%;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px grey;
  margin: 0 auto;
  margin-bottom: 35px;
  margin-top: 55px;
  padding: 20px 20px;
  font-family: "Oswald",sans-serif;
  font-size: 117%;
  transition: 3s;
}

.btn--yellow,
.btn--yellow__02,
.btn--yellow__03,
.btn--yellow__04 a {
  color: #000;
}

/*---------------------------------
introduce(スモール）
----------------------------------*/
.future_explain {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 5%;
  display: table-cell;
  border-radius: 5px;
  margin: 50px auto;
  position: relative;
  text-align: center;
}

.explain_06 {
  font-size: 20px;
  padding-bottom: 30px;
  font-weight: bolder;
}

.explain_sub__02 {
  font-family: "Noto Sans Japanese", sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 50px;
  font-size: 4vw;
  margin: 5vh -1vh 0vh;
  padding-bottom: 5vh;
}

/*---------------------------------
service(スモール）
----------------------------------*/
.circle__02 {
  width: 35%;
  margin: 50px auto;
  margin-left: 38px;
}

.circle-in__02 {
  display: inline-block;
  width: 60%;
  margin-left: 3vh;
  padding: 40px;
  padding-top: 30%;
  padding-right: 80px;
  padding-left: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.circle__03 {
  width: 37%;
  margin: 50px auto;
  margin-left: 2vh;
}

.circle-in__03 {
  display: inline-block;
  width: 60%;
  margin-left: 3.5vh;
  padding: 40px;
  padding-top: 50%;
  padding-right: 95px;
  padding-left: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.circle__04 {
  width: 40%;
  margin: 50px auto;
  margin-left: 35px;
}

.circle-in__04 {
  display: inline-block;
  width: 65%;
  margin-left: 2vh;
  padding: 40px;
  padding-top: 55%;
  padding-right: 80px;
  padding-left: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.circle__05 {
  width: 40%;
  margin: 50px auto;
  margin-left: 39px;
}

.circle-in__05 {
  display: inline-block;
  width: 60%;
  margin-left: 2vh;
  padding: 80px;
  padding-top: 60%;
  padding-right: 80px;
  padding-left: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.dli-chevron-down {

  margin: 100px auto;
  display: inline-block;
  vertical-align: middle;
  color: #ffff;
  line-height: 1;
  width: 16px;
  height: 16px;
  border: 0.2em solid currentColor;
  border-left: 0;
  margin-left: 7vh;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(15vh, 300%) rotate(135deg);
}

.musimegane {
  width: 140%;
  margin-bottom: 1vh;
}

.bouningen {
  width: 100%;
  margin-left: -5px;
  padding-bottom: 30px;
}

.search {
  text-align: center;
  font-weight: bolder;
  padding-top: 10px;
  line-height: 30px;
  font-size: 18px;
}

.rental {
  text-align: center;
  font-weight: bolder;
  padding-top: 10px;
  line-height: 30px;
  font-size: 18px;
}

.return {
  text-align: center;
  font-weight: bolder;
  padding-top: 0px;
  line-height: 30px;
}

.henkyaku {
  text-align: center;
  font-weight: bolder;
  padding-top: 30px;
  line-height: 30px;
  font-size: 18px;
}

.moyori {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}

.explain_sub__05 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 45px;
  font-size: 16px;
  padding: 30px;
  padding-bottom: 10vh;
}

.pay_explain {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  border-radius: 25px;
  width: 41vh;
  display: block;
  align-items: end;
  padding: 16px;
  margin-left: 20px;
}

.pay_expalain__02 {
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
  line-height: 35px;
  padding-bottom: 5vh;
  display: block;
}

.pay_no_explain {
  text-align: center;
  font-size: 16px;
  font-weight: bolder;
  line-height: 30px;
  padding-top: 8vh;
}

.coupon_explain {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  border-radius: 25px;
  width: 41vh;
  align-items: end;
  padding: 16px;
  margin-left: 20px;
  margin-bottom: 15vh;
  display: block;
}

.coupon_explain__02 {
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
  line-height: 35px;
  padding-bottom: 5vh;
}

.coupon_photo {
  padding: 8vh;
}

.coupon_no_explain {
  text-align: center;
  font-size: 16px;
  font-weight: bolder;
  line-height: 30px;
}

.btn--yellow__03 {
  color: #000;
  background: #fff;
  display: flex;
  width: 58%;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-bottom: 35px;
  margin-top: 18px;
  margin-left: 60px;
  padding: 20px 20px;
  font-family: "Oswald",sans-serif;
  font-size: 105%;
  transition: 0.3s;
}

.btn--yellow,
.btn--yellow__02,
.btn--yellow__03,
.btn--yellow__04 {
  color: #000;
  background-color: #fff;
  font-weight: bolder;
  transition: 3s;
}


/*---------------------------------
search(スモール）
----------------------------------*/
.kensaku {
  padding-top: 100px;
}

.search_kakoi {
  display: block;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.search__explain_02 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 40px;
  font-size: 18px;
  padding: 70px;
  padding-bottom: 10vh;
}

.search__explain_03 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 40px;
  font-size: 15px;
  padding-bottom: 5vh;
}

.important {
  color: #c00;
  font-size: 12px;
}

.kochirakara__02 {
  padding: 35px;
  margin-top: 80px;
}

/*---------------------------------
apps(スモール）
----------------------------------*/

.dli-chevron-down__02 {
  margin: 100px auto;
  display: inline-block;
  vertical-align: middle;
  color: #ffff;
  line-height: 1;
  width: 16px;
  height: 16px;
  border: 0.2em solid currentColor;
  border-left: 0;
  margin-left: 4vh;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(20vh, 300%) rotate(135deg);
}

.app_explain {
  background-color: rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding-bottom: 30px;
  border-radius: 25px;
  text-align: right;
  margin: 10px;
  line-height: 5vh;
}

.app_photo {
  padding-top: 60px;
  padding: 0px;
  width: 20%;
  margin: 50px auto;
}

.app_no_explain {
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  padding-bottom: 10px;
  margin: 50px;
}

.app_no_explain__02 {
  text-align: center;
  font-size: 16px;
  font-weight: bolder;
  line-height: 30px;
}

.card_explain {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  border-radius: 25px;
  text-align: right;
  margin: 10px;
}

.card_photo {
  padding-top: 30px;
  width: 50%;
  margin: 50px auto;
}

.card_no_explain {
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  padding-bottom: 45px;
}

.card_no_explain__02 {
  text-align: center;
  font-size: 16px;
  font-weight: bolder;
  line-height: 30px;
}

.explain_nav {
  font-size: 28px;
  color: #fff;
  text-align: center;
  font-weight: bolder;
}

.cycling_roads__02 {
  display: inline-block;
  background-color: #ffd900;
  width: 46.5vh;
  height: 8vh;
  font-weight: bolder;
  color: #333;
  font-size: 5.5vw;
  padding-top: 6vh;
  padding-left: 10.5vh;
  margin-top: 6vh;
}

.hiros_cycling_guide {
  margin-bottom: -110px;
  padding: 120px;
}

.enoshima_01 {
  padding: 50px;
  margin-bottom: -30px;
}

.enoshima_02,
.enoshima_03,
.enoshima_04,
.enoshima_05 {
  padding: 50px;
}

.suizokukan {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.arrows {
  margin-top: -5vh;
  margin-left: 0vh;
  margin-bottom: 10vh;
  width: 20%;
}

.bridge {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.shrine {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.shirasudon {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.afternoon {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.cycling_roads {
  display: inline-block;
  background-color: #ffd900;
  width: 50.5vh;
  height: 22vh;
  box-shadow: 0 0 8px grey;
}

.cycling_road {
  padding: 3vh;
  padding-top: 5vh;
}

.cycling-space {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
}

.cycling-text {
  width: 39vh;
  margin: auto;
  padding: 3vh 8vh 2vh;
  font-size: 1.4rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  font-weight: bolder;
}

.kamakura_01 {
  padding: 50px;
  margin-bottom: -30px;
}

.kamakura_02,
.kamakura_03,
.kamakura_04,
.kamakura_05 {
  padding: 50px;
}
.jingu {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.daibutsu,
.takebayashi,
.komachidouri,
.yuigahama {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 67px;
  margin-top: -30px;
}

.img-frame_06::before {
  content: "";
  display: block;
  background-color: rgba(113, 168, 203, 1);
  position: absolute;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  width: 100%;
  height: 30vh;
  z-index: 3000;
}

/*---------------------------------
feature(スモール）
----------------------------------*/
.explain_sub__06 {
  font-family: "Noto Sans Japanese",sans-serif;
  border-radius: 0 0 10px 10px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 45px;
  font-size: 15px;
  padding: 30px;
  /*padding-bottom: 8vh;*/
}

.feature_explain {
  text-align: center;
  font-size: 25px;
  font-weight: bolder;
  line-height: 30px;
  padding-top: 8vh;
  padding-bottom: 3vh;
}

.feature_image_05 {
  padding: 20px;
  margin: 15px;
}

.assist_mode_explain {
  background-color: #ffd900;
  color: #000;
  font-size: 14px;
  font-weight: bolder;
  line-height: 30px;
  display: inline-block;
  margin: 3vh 8vh;
  /* padding-left: 10px; */
  width: 30vh;
  /* padding: 0px; */
  text-align: center;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 0 8px gray;
  text-align: center;
}

.geer_explain {
  font-size: 25px;
  color: #fff;
  font-weight: bolder;
  text-align: center;
  line-height: 30px;
  padding-top: 8vh;
  padding-bottom: 6vh;
}

.explain_sub__08 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 45px;
  font-size: 18px;
}

.explain_sub__07 {
  font-family: "Noto Sans Japanese",sans-serif;
  border-radius: 0 0 10px 10px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 45px;
  font-size: 14px;
  padding: 30px;
}

.assist_error {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  width: 25vh;
  margin: 10vh;
  border-radius: 10px;
  margin-bottom: 4vh;
}

.feature_image_07 {
  padding-left: 1vh;
}

.manners_explain {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  width: 46vh;
  font-weight: bolder;
  border-radius: 10px;
  text-align: center;
  line-height: 20px;
  margin-bottom: 8vh;
}

.rule_01,
.rule_02,
.rule_03,
.rule_04 {
  position: absolute;
  z-index: 10000;
  margin: 8vh 8vh;
  margin-left: 10vh;
  margin-top: 60px;
  text-align: center;
  font-weight: bolder;
  line-height: 35px;
  font-size: 3.5vw;
}

.manners__01 {
  position: relative;
}

.NG {
  color: #e40040;
  font-size: 25px;
}


/*---------------------------------
FAQ(スモール）
----------------------------------*/
.accordion-007 {
  max-width: 500px;
  margin-bottom: 7px;
}

.accordion-007 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border: 2px solid #808dff;
  border-radius: 5px;
  font-size: 14px;
  color: #333;
  line-height: 25px;
  background-color: #fff;
  font-weight: bolder;
  cursor: pointer;
}

.accordion-007 summary::-webkit-details-marker {
  display: none;
}

.accordion-007 summary::before,
.accordion-007 summary::after {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: #808dff;
  content: "";
}

.accordion-007 summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion-007 summary::after {
  transition: rotate 0.3s;
  transform: rotate(90deg);
}

.accordion-007[open] summary::after {
  rotate: 90deg;
}

.accordion-007 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin-top: 20px;
  padding: 1.8em 1.2em;
  text-align: center;
  border: 2px solid #808dff;
  border-radius: 5px;
  background-color: #fff;
  line-height: 30px;
  font-size: 14px;
  font-weight: bolder;
  color: #333333;
}

.accordion-007[open] p {
  opacity: 1;
}

.accordion-007 p::before,
.accordion-007 p::after {
  position: absolute;
  top: -15px;
  left: 1.2em;
  width: 30px;
  height: 15px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: "";
}

.accordion-007 p::before {
  background-color: #808dff;
}

.accordion-007 p::after {
  top: -12px;
  background-color: #fff;
}

.question {
  display: inline-block;
  background-color: #808dff;
  color: #fff;
  padding: 3px;
  margin-left: -10px;
}

.answer {
  display: inline-block;
  color: #808dff;
  font-size: 18px;
  padding: 5px 8px 10px;
}

/*---------------------------------
PRICE(スモール）
----------------------------------*/
.price_explain {
  color: #000;
  text-align: center;
  font-weight: bolder;
  font-size: 10px;
  line-height: 25px;
}

.important__02 {
  color: #c05a24;
  font-size: 14px;
}

.price_lineup {
  background-color: rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding-bottom: 30px;
  border-radius: 25px;
  width: 320px;
  align-items: end;
  padding: 16px;
  padding-top: 6vh;
  padding-bottom: 10vh;
  text-align: center;
  font-weight: bolder;
}

.price_table {
  width: 109%;
  text-align: center;
  border-collapse: separate;
  border-spacing: 0px 25px;
  padding-right: 3.5vh;
}

.price_top {
  border-collapse: collapse;
}

.price_table__02 {
  width: 100%;
  text-align: center;
  border-collapse: separate;
}

.price_table tr {
  border-collapse: collapse;
  font-size: 10px;
}

.price_table__02 tr {
  border-collapse: collapse;
  font-size: 10px;
}

.price_table th {
  padding: 9px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #fff;
  font-size: 10px;
  width: 28px;
}

.price_table__02 th {
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #fff;
  font-size: 10px;
}

.price_table td {
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #fff;
}

.price_table__02 td {
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #fff;
  width: 40px;
}

/*---------------------------------
CONTACTS(スモール）
----------------------------------*/
h3 {
  color: #000;
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  padding-left: 1rem;
  line-height: 2rem;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.Form-Item {
  width: 70%;
  margin-left: 3px;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.Form-Item-Label {
  max-width: inherit;
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-bottom: 2rem;
  font-size: 15px;
  font-weight: bolder;
}

.Form-Item-Label__02 {
  width: 52%;
  letter-spacing: 0.05em;
  padding-left: 53px;
  font-weight: bold;
  font-size: 15px;
  line-height: 50px;
  text-indent: -41px;
}

.Form-Item-Label__03 {
  width: 62%;
  letter-spacing: 0.05em;
  padding-left: 53px;
  font-weight: bold;
  font-size: 15px;
  line-height: 50px;
  text-indent: -40px;
}


.Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-right: 170px;
    margin-left: 12px;
    width: 125%;
    padding: 0.05em;
    padding-left: 1rem;
    height: 37px;
    flex: 1;
    max-width: 410px;
    font-size: 18px;
  }

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-left: 15px;
  margin-right: 175px;
  padding: 1.3em;
  height: 216px;
  flex: 1;
  width: 107%;
  max-width: 410px;
  font-size: 18px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.box_privacy {
  margin-top: 30px;
  margin-left: 19.5px;
  border-radius: 10px;
  line-height: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 30.5vh;
  height: 170px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px grey;
}

.privacy-text {
  color: #000;
  font-size: 12px;
  padding: 10px 20px 0px;
  margin-bottom: 30px;
}

.privacy_information {
  text-align: center;
  line-height: 25px;
  padding-top: 15px;
  font-weight: bolder;
  color: #333;
}

.btn--yellow__04 {
  color: #000;
  background: #fff;
  display: flex;
  width: 58%;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  box-shadow: 0 0 8px grey;
  margin-bottom: 35px;
  margin-top: 18px;
  margin-left: 50px;
  padding: 20px 20px;
  font-family: "Oswald",sans-serif;
  font-size: 105%;
  transition: 0.3s;
}


/*---------------------------------
PRIVACI POLICY(スモール）
----------------------------------*/
.privacy_policy a {
  color: #fff;
}

/*---------------------------------
利用規約(スモール）
----------------------------------*/
.privacy_policy a {
  color: #fff;
}

/*---------------------------------
TERMS OF USE
----------------------------------*/
.termsofuse {
  color: #000;
  font-size: 12px;
  font-family: "Noto Sans Japanese",sans-serif;
  font-weight: lighter;
}
/*スモール終了点*/





  /*---------------------------------
未
----------------------------------*/
/*
.img-frame_02 {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  z-index: 2000;
  background-size: auto, cover;
  background-position: center;
}

@media screen and (max-width: 500px) {
  .img-frame_02 {
    width: 100%;
  }
}

.img-frame_02::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 3000;
}


.img-04,
.img-05 {
  position: relative;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.introduce {
  position: absolute;
  margin: auto;
  z-index: auto;
  font-family: "Oswald";
  color: #ffff;
  top: -350px;
  left: 750px;
  font-size: 80px;
  font-weight: bold;
  line-height: 100px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 500px) {
  .introduce {
    display: flex;
    justify-content: center;
    top: -900px;
    left: 50px;
    right: 50px;
    font-size: 35px;
    line-height: auto;
    font-weight: lighter;
    line-height: 40px;
    padding-left: 40px;
    padding-top: 20px;
    position: absolute;
    align-items: center;
  }
}

@media screen and (min-width: 1080px) {
  .introduce {
    top: -900px;
    left: 25px;
    font-size: 95px;
    line-height: auto;
    font-weight: lighter;
    padding-top: 150px;
    padding-left: 260px;
    display: flex;
    align-items: center;
  }
}

.c-title--head__sub__02 {
  font-family: "0swald";
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  line-height: 30px;
}

@media screen and (max-width: 500px) {
  .kakoi_04 {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0px 25px;
    width: 80%;
    border-radius: 10px;
    height: 200px;
  }
}


.square_block {
  display: grid;
  justify-content: center;
  align-items: center;
}

.container-fade {
  text-align: center;
  z-index: 10000;
}

.howtouse {
  position: absolute;
  z-index: 10000;
  padding: 31px;
  padding-top: 130px;
  font-size: 18px;
  font-weight: bold;
}

.feature {
  position: absolute;
  z-index: 10000;
  padding: 40px;
  padding-top: 110px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 35px;
}

.l-gmap iframe {
  width: 100%;
  height: 550px;
}

.detail {
  color: #333;
  font-size: 12px;
  display: -webkit-inline-box;
}

@media screen and (max-width: 500px) {
  .detail {
    color: #333;
    font-size: 12px;
    display: -webkit-inline-box;
  }
}

.sukima__04 {
  padding-bottom: 10vh;
}

@media screen and (max-width: 500px) {
  .sukima__04 {
    padding-bottom: 10vh;
  }
}
  /*---------------------------------
未
----------------------------------*/










/*---------------------------------
タブレット-size(ミディアム）
----------------------------------*/
@media screen and (min-width: 769px) {
  .main {
    max-width: 377px;
    margin: auto;
    color: #ffff;
    overflow-x: clip;
    background: #71a8cb;
    font-size: 1.6rem;
    font-family: "Noto Sans Japanese",sans-serif;
  }
  .openbtn {
    display: none;
  }

  .link {
    display: none;
  }

  .l-footer__logo {
    display: none;
  }
  .link__02 {
    display: none;
  }

  .header-contact-bg {
    width: 90px;
    height: 90px;
    right: 2.125vw;
    top: 4.5625vw;
    background-color: #808dff;
  }

  .header-contact-mail {
    width: 100px;
    height: 18px;
  }

  .header-contact-plane {
    width: 50px;
    margin-left: 18.9px;
    margin-top: 7.35px;
  }
  }
  
/*---------------------------------
 PCサイズ（サイドコンテンツ）
----------------------------------*/
  @media screen and (max-width: 1080px) {
    .side-content {
      display: none;
    }

    .side-container.--right {
      display: none;
    }
    
    .side-container {
      display: none;
    }
    }

  @media screen and (min-width: 1050px) {
    .side-container.--left {
      padding: 48px 0 48px 50px;
    }

      .side-container.--right {
    padding: 48px 48px 48px 0;
  }

  .side-content .nav-lists {
    margin-top: 450px;
  }
  }
  

/*---------------------------------
Large-size　PCサイズ
----------------------------------*/
@media screen and (min-width:1080px) {
/*---------------------------------
ヘッダー
----------------------------------*/
.logo,
.logo_02 {
  width: 100px;
  position: absolute;
  top:  15px;
  left: 30px;
  z-index: 5000;
  background-size: 140px;
  position: fixed;
}

video {
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: -5;
  width: 430px;
  object-fit: cover;
}

.video-container {
  margin: 0 auto;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.video-text {
  position: absolute;
  z-index: 9999;
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  height: 17vh;
  font-size: 55px;
  font-weight: bolder;
  transform: translate(17.5px, 190%);
}

/*
.video-text:before {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  width: 101%;
  height: 18vh;
  border-radius: 20px;
  position: absolute;
}
*/

.sticker {
  width: 70%;
  position: fixed;
  left: 1%;
  z-index: 10000;
  top: 0%;
}
.main-title {
  position: relative;
  z-index: 3000;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 50px;
  font-weight: bolder;
}
.main-title_02 {
  position: sticky;
  z-index: 3000;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 50px;
  font-weight: bolder;
}
.main-title_03 {
  position: relative;
  z-index: 3000;
  font-family: "Noto Sans Japanese",sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: bolder;
  height: 52vh;
  padding: 53px;
  align-items: center;
  padding-top: 20vh;
  line-height: 15vh;
}
.main-title_04 {
  position: relative;
  z-index: 3000;
  font-family: "Noto Sans Japanese",sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: bolder;
  height: 60vh;
  align-items: center;
  padding-top: 22vh;
  line-height: 8vh;
}

.bg {
  animation: slide-animation-01 20s infinite;
  position: fixed;
  top: -110px;
  left: 35%;
  width: 500px;
  height: 111vh;
  background-image: url(../images/main_visual_0102.png);
  background-size: cover;
  background-position: center;
}

.bg_02 {
  animation: slide-animation-02 20s infinite;
  position: fixed;
  top: -110px;
  left: 35%;
  width: 500px;
  height: 111vh;
  background-image: url(../images/hiros_cycling_main_visual_visual0103.png);
  background-size: cover;
  background-position: center;
}

.bg_03 {
  animation: slide-animation-03 20s infinite;
  position: fixed;
  top: -110px;
  left: 36%;
  width: 500px;
  height: 111vh;
  background-image: url(../images/main_visual__02.png);
  background-size: cover;
  background-position: center;
}

/* 
.bg-slider {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: -17vh;
  z-index: -1; */
}


/* .bg-slider-img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 120vh;
  background-image: url("../images/AdobeStock_621682942.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
} */

.img-frame {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 1400px;
  overflow: hidden;
  margin: 0 auto;
  z-index: 2000;
  background-size: auto, cover;
  background-position: center;
}

.hello {
  display: block;
  font-size: 17px;
  font-weight: bolder;
  text-align: center;
  line-height: 3;
  overflow: hidden;
  word-break: break-all;
}
.explain_02 {
  position: relative;
  z-index: 3000;
  font-family: "Noto Sans Japanese",sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: bolder;
  padding: 50px;
  align-items: center;
  line-height: 3;
}
.sukima {
  padding: 80px;
}

.sukima__02 {
  padding-top: 50px;
  padding-bottom: 25px;
}

.sukima__03 {
  padding-top: 50px;
  padding-bottom: 25px;
}

.c-title--head--center {
  text-align: center;
}

.c-title--head {
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 220%;
  margin-top: 6vh;
  padding: 10px;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: bold;
}

.explain_sub__03 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 40px;
  font-size: 18px;
}

.l-gmap {
  height: 550px;
  overflow: hidden;
  margin: -20px;
  padding-top: 50px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.more {
  position: relative;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}

.more__02 {
  position: relative;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -10px;
}

.btn--white a {
  color: #000;
  background: #ffff;
  display: flex;
  width: 50%;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-right: 5vh;
  margin-left: 1vh;
  margin-bottom: 35px;
  padding: 10px 45px;
  font-family: "Oswald",sans-serif;
  font-size: 150%;
  font-weight: lighter;
  border-radius: 200vh;
}
.btn--radius,
.btn--radius__02,
.btn--radius__03,
.btn--radius__04 {
  border-radius: 200vh;
}
.c-title--head__sub {
  font-family: "0swald",sans-serif;
  text-align: center;
  font-size: 20px;
  font-weight: bolder;
  line-height: 30px;
  padding-bottom: 50px;
}

@media screen and (min-width:1080px) {
/* 横スクロールセクション */
.side-scroll-container{
  width: 500%;
}

.side-scroll-list-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.side-scroll,
.side-scroll__02 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-scroll-heading {
  color: #fff;
  font-size: 44px;
  font-weight: bolder;
  padding-bottom: 6vh;
  padding-top: 6vh;
  font-family: "Noto Sans Japanese";
}


.side-scroll-list {
  position: absolute;
  top: 60px;
  width: 900px;
  left: 30px;
  display: flex;
  gap: 80px;
  z-index: -10;
}

.side-scroll-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30vh;
  height: 60vh;
  font-size: 2vw;
  font-weight: 700;
}

.side-scroll-item__01 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29vh;
  height: 51vh;
  font-size: 2vw;
  font-weight: 700;
}

.fade-text--center {
  padding-top: 1vh;
  overflow: hidden;
  font-size: 17px;
  text-align: center;
}

.fade-text--center__02 {
  padding-top: 2vh;
  margin-bottom: 6vh;
  overflow: hidden;
  font-size: 17px;
  text-align: center;
}

.what_is {
  position: absolute;
  display: block;
  margin: auto;
  z-index: auto;
  font-family: "Oswald";
  color: #ffff;
  top: -315px;
  left: 500px;
  font-size: 80px;
  font-weight: lighter;
  line-height: 100px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}

.explain {
  display: inline-block;
  margin: auto;
  z-index: auto;
  font-family: "Noto Sans Japanese";
  color: #ffff;
  top: 200px;
  left: 500px;
  font-size: 1.4rem;
  font-weight: bolder;
  line-height: 4vh;
  text-align: center;
  justify-content: center;
  padding: 20px;
  padding-left: 33px;
  overflow: hidden;
}

.brake_explain {
  display: inline-block;
  margin: auto;
  z-index: auto;
  font-family: "Noto Sans Japanese";
  color: #ffff;
  top: 200px;
  left: 500px;
  font-size: 15px;
  line-height: 25px;
  font-weight: bolder;
  text-align: center;
  justify-content: center;
  padding: 7px;
  overflow: hidden;
}

.search__explain {
  display: block;
  left: 55px;
  font-size: 18px;
  line-height: auto;
  font-weight: bolder;
  text-align: center;
  line-height: 40px;
  padding: 41px;
  margin-top: -20px;
  overflow: hidden;
  transform: translate(-1%, -10%);
  word-break: break-all;
}

.explain_sub {
  font-family: "Noto Sans Japanese";
  text-align: center;
  font-weight: bolder;
  line-height: 35px;
}

.explain_05 {
  font-family: "Noto Sans Japanese";
  font-weight: bold;
  text-align: center;
  font-size: 17px;
  padding-bottom: 30px;
}

.img_block_01 {
  padding: 60px 15px 300px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px 10px 10px 10px;
  width: 90%;
}
/*.accsciblity {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 0px 0px 10px 10px;
}*/

.accsciblity-images {
  padding: 10vh 2vh;
  margin-left: 7vh;
}

.accsciblity-images_03 {
    padding: 8.5vh 4vh;
}

.kakoi {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  width: 110%;
  border-radius: 30px;
  height: 260px;
}

.kakoi_03 {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0px 30px;
  width: 90%;
  border-radius: 30px;
  height: 280px;
}

  /*タイムライン全体の設定*/
  .timeline {
    max-width: 400px;
    width: 100%;
    margin: 50px auto;
    padding: 0 30px;
  }
  
  .timeline li {
    position: relative;
    list-style: none;
    padding: 0px 0px 20px 15px;
  }
  
  .timeline dl {
    margin: 0px 0 100px -3em;
  }
  
  /*絶対配置で線を設定*/
  .border-line {
    position: absolute;
    left: -9.5px;
    top: 2px;
    width: 7px;
    height: 0;
    background: #fff;
  }
  
  /*タイムラインの見出し横の丸の位置と形状*/
  .timeline li::after {
    content: "";
    position: absolute;
    top: 0;
    left: -13px;
    width: 14px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
  }

.complete {
  padding-left: 100px;
  font-size: 25px;
  font-weight: bolder;
}

.check {
  color: #e40040;
}

.goriyo {
  display: block;
  background-color: #ddd;
  width: 2.5;
  border-radius: 10px;
  font-weight: bolder;
  color: #333;
}
.future_img_02 {
  padding: 130px;
  padding-bottom: 50px;
}

.weare {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.img-frame_03 {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  z-index: 2000;
  background-size: auto, cover;
  background-position: center;
}

.img-frame_03::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 200vh;
  z-index: 3000;
}

.square__01 {
  padding: 135px;
  margin: 50px auto;
}


.square__02 {
  padding: 100px;
}

.square__03 {
  padding: 70px;
  padding-top: 200px;
}

.yon {
  margin-left: -4.5vh;
}

.step {
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: bolder;
  text-align: center;
  margin-left: 85px;
  margin-top: 40px;
  line-height: 62px;
  border-radius: 10px;
  word-break: break-all;
  width: 56%;
}

.step::after {
  content: "";
  position: absolute;
  display: inline-block;
  z-index: 1;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1) transparent;
  border-width: 0 10px 10px 10px;
  top: -10px;
  left: 50%;
  margin-left: -10px;
}

.step::before {
  content: "";
  position: absolute;
  display: inline-block;
  z-index: 1;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1) transparent;
  border-width: 0 10px 10px 10px;
  top: -10px;
  left: 50%;
  margin-left: -10px;
}

.apps {
  position: absolute;
  z-index: 10000;
  padding: 280px 10px;
  padding-left: 65px;
  line-height: 27px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.explain_sub__04 {
  font-family: "Noto Sans Japanese";
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 40px;
  font-size: 18px;
  padding-bottom: 5vh;
}

.btn--white a {
  color: #000;
  background: #ffff;
  display: flex;
  width: 50%;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-right: 5vh;
  margin-left: 1vh;
  margin-bottom: 35px;
  padding: 10px 45px;
  font-family: "Oswald";
  font-size: 150%;
  font-weight: lighter;
  border-radius: 200vh;
}

.img-06 {
  padding: 140px;
  height: 200px;
  position: relative;
  z-index: 10000;
}

.slider {
  width: 100%;
}

.searching_area {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 24px;
  width: 87%;
  margin-bottom: 10vh;
  border-radius: 30px;
}

.explain_07 {
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: bolder;
  line-height: 35px;
  text-align: center;
}

.mail_buton {
  padding: 70px;
  padding-top: 0px;
}

.img-frame_04 {
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  z-index: 2000;
  border-radius: 10px;
  background-size: auto, cover;
  background-position: center;
}


.img-frame_04::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 300px;
  z-index: 3000;
  border-radius: 10px;
}

.contacts {
  position: absolute;
  z-index: 10000;
  padding: 230px 50px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 33px;
}


.img-07 {
  padding: 110px;
  padding-top: 80px;
  position: relative;
  z-index: 10000;
}

.btn--blue__04 {
  color: #000;
  background: #fff;
  display: flex;
  width: 200px;
  height: 10px;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-bottom: 3px;
  margin-top: 14px;
  margin-left: -40px;
  padding: 22px 40px;
  font-family: "Oswald";
  font-weight: bolder;
  font-size: 105%;
  transition: 0.3s;
}

.btn--blue__04 a {
  color: #000;
}

.news_field {
  background-color: rgba(0, 0, 0, 0.1);
  display: inline-block;
  text-align: center;
  padding: 50px;
  padding-top: 10vh;
  line-height: 30px;
  font-weight: bolder;
  border-radius: 10px;
}

.c-list-news__item {
  padding-bottom: 4vh;
  font-size: 14px;
}

.c-list-news__category {
  vertical-align: sub;
  color: #e40040;
}

.c-text--center {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans Japanese";
  line-height: 30px;
}

.news_top {
  font-size: 16px;
  margin: 1vh -1vh;
}

.circle {
  width: 100%;
}

.circle-in {
  display: flex;
  width: 100%;
  padding-top: 15%;
  border-radius: 50%;
  background-color: #808dff;
  overflow: hidden;
}

.sassoku {
  padding: 30px;
  padding-bottom: 30px;
  margin-bottom: 60px;
  z-index: 10000;
}


.download {
  text-align: center;
  font-weight: bolder;
  padding-top: 10px;
  line-height: 3vh;
  font-size: 18px;
}

.store {
  display: flex;
  padding: 50px;
  padding-bottom: 15vh;
  justify-content: center;
  gap: 3rem;
}


.store a {
  width: 50%;
}

.link {
  display: flex;
  gap: 70px;
  font-size: 10px;
  font-weight: bolder;
  padding-left: 72px;
}

.link a {
  color: #fff;
}

.l-footer__adress {
  position: absolute;
  text-align: justify;
  z-index: 10000;
  font-size: 10px;
  padding-left: 30px;
  padding-top: 150px;
  font-weight: bolder;
  line-height: 20px;
  color: #fff;
}

.footer-about-social {
  position: absolute;
  width: 1.5%;
  height: 67px;
  left: 4%;
  display: flex;
  text-align: right;
  padding: 1rem;
  gap: 3rem;
  flex-direction: row;
}

.p-gf__info__local__link.c-pagelink {
  padding: 2em;
}

.p-footer_small {
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  padding-left: 38px;
  padding-top: 200px;
  color: #fff;
}

.footer-info {
  text-align: right;
  justify-content: space-around;
  font-size: 1.1rem;
}

.img-08 {
  display: none;
}

.img-frame_05::before {
  content: "";
  display: block;
  background-color: rgba(113, 168, 203, 0.8);
  position: absolute;
  width: 100%;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  height: 30vh;
}
}

@media screen and (min-width:1080px) {
  /* デスクトップサイドコンテンツ */

  .side-container.--left {
    left: 0px;
    z-index: 2000;
  }

.side-container.--left a {
  color: #fff;
}

.side-container.--right {
  right: 60px;
  top: -30%;
  width: 1.5%;
  z-index: 10000;
}

.header-contact-bg {
  top: 0;
  border-radius: 50%;
  z-index: 0;
}

.side-container {
  width: calc((100% - 375px) / 2);
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 0;
}

.side-container.--left .side-content {
  max-width: 242px;
}

.side-container.--right .side-content {
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.side-content {
  height: 65%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;

}


.nav-lists {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: bolder;
  gap: 16px;
  width: 279px;
  margin: 72px auto 0;
  font-family: "Noto Sans Japanese";
}

.side-content .nav-lists {
  gap: 40px;
}

.mdl-button-wrapper,
.mdl-button-wrapper__02 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.nav-buttons {
  margin-top: -60px;
  padding: 140px;
  padding-left: 0px;
}

.nav-item {
  z-index: 100000;
  position: relative;
}

.side-sns {
  padding: 110px;
}

.nav-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #fff;
  position: absolute;
  left: -17px;
  top: 4px;
}
}

@media screen and (min-width:1080px) {
/*---------------------------------
introduce(Large）
----------------------------------*/
.future_explain {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 5%;
  display: table-cell;
  border-radius: 5px;
  margin: 50px auto;
  position: relative;
  text-align: center;
}

.explain_06 {
  font-size: 20px;
  padding-bottom: 30px;
  font-weight: bolder;
}

.explain_sub__02 {
  font-family: "Noto Sans Japanese";
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 50px;
  font-size: 16px;
  margin: 5vh 1vh 0vh;
  padding-bottom: 5vh;
}
}

@media screen and (min-width:1080px) {
/*---------------------------------
service(Large）
----------------------------------*/
.circle__02 {
  width: 35%;
  margin: 50px auto;
  margin-left: 40px;
}

.circle-in__02 {
  display: inline-block;
  width: 60%;
  margin-left: 10px;
  padding: 40px;
  padding-top: 40%;
  padding-right: 80px;
  padding-left: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.circle__03 {
  width: 37%;
  margin: 50px auto;
  margin-left: 0vh;
}

.circle-in__03 {
  display: inline-block;
  width: 65%;
  padding: 40px;
  padding-top: 40%;
  padding-right: 80px;
  padding-left: 70px;
  border-radius: 50%;
  margin-left: 50px;
  background-color: rgba(0, 0, 0, 0.05);
}
.circle__04 {
  width: 40%;
  margin: 50px auto;
  margin-left: 30px;
}

.circle-in__04 {
  display: inline-block;
  width: 60%;
  margin-left: 19px;
  padding: 30px;
  padding-top: 70%;
  padding-right: 80px;
  padding-left: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.circle__05 {
  width: 40%;
  margin: 50px auto;
  margin-left: 39px;
}

.circle-in__05 {
  display: inline-block;
  width: 60%;
  margin-left: 10px;
  padding: 80px;
  padding-top: 60%;
  padding-right: 80px;
  padding-left: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
}

.dli-chevron-down {
  margin: 40px auto;
  display: inline-block;
  vertical-align: middle;
  color: #ffff;
  line-height: 1;
  width: 16px;
  height: 16px;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(160px, 300%) rotate(135deg);
}

.musimegane {
  width: 140%;
  margin-bottom: 1vh;
}

.bouningen {
  width: 100%;
  margin-left: -5px;
  padding-bottom: 50px;
}

.search {
  text-align: center;
  font-weight: bolder;
  padding-top: 10px;
  line-height: 30px;
}

.rental {
  text-align: center;
  font-weight: bolder;
  padding-top: 10px;
  line-height: 30px;
}

.return {
  text-align: center;
  font-weight: bolder;
  padding-top: 25px;
  line-height: 30px;
}

.henkyaku {
  text-align: center;
  font-weight: bolder;
  padding-top: 30px;
  line-height: 30px;
}

.moyori {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}

.explain_sub__05 {
  font-family: "Noto Sans Japanese";
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 45px;
  font-size: 17px;
  padding: 30px;
  padding-bottom: 10vh;
}

.pay_explain {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  border-radius: 25px;
  width: 300px;
  align-items: end;
  display: block;
  padding: 16px;
  margin-left: 20px;
}

.pay_expalain__02 {
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
  line-height: 35px;
  padding-bottom: 5vh;
  display: block;
}

.pay_no_explain {
  text-align: center;
  font-size: 15px;
  font-weight: bolder;
  line-height: 40px;
  padding-top: 50px;
  margin: 20px auto;
}

.coupon_explain__02 {
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
  line-height: 35px;
  padding-bottom: 5vh;
}

.coupon_photo {
  padding: 8vh;
}

.coupon_explain {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  border-radius: 25px;
  width: 300px;
  align-items: end;
  padding: 16px;
  margin-left: 22px;
  margin-bottom: 15vh;
  display: block;
}

.coupon_no_explain {
  text-align: center;
  font-size: 16px;
  font-weight: bolder;
  line-height: 30px;
}

.btn--yellow,
.btn--yellow__02,
.btn--yellow__03,
.btn--yellow__04 {
  color: #000;
  background-color: #fff;
  font-weight: bolder;
  transition: 3s;
}

.btn--yellow__03 {
  color: #000;
  background: #fff;
  display: flex;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  margin-bottom: 35px;
  margin-top: 18px;
  margin-left: 50px;
  width: 60%;
  padding: 20px 20px;
  font-family: "Oswald";
  font-size: 105%;
  transition: 0.3s;
}
}

@media screen and (min-width:1080px) {
/*---------------------------------
  introduce(Large）
----------------------------------*/
.kensaku {
  padding-top: 100px;
}

.search_kakoi {
  display: block;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.search__explain_02 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 40px;
  font-size: 18px;
  padding: 69px;
  padding-bottom: 10vh;
}

.search__explain_03 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 40px;
  font-size: 15px;
  padding-bottom: 5vh;
}

.important {
  color: #c00;
  font-size: 12px;
}

.kochirakara__02 {
  padding: 35px;
  margin-top: 80px;
}

.btn--yellow,
.btn--yellow__02 {
  color: #000;
  background: #fff;
  display: flex;
  width: 60%;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px grey;
  margin: 0 auto;
  margin-bottom: 35px;
  margin-top: 55px;
  padding: 20px 20px;
  font-family: "Oswald",sans-serif;
  font-size: 117%;
  transition: 3s;
}
}

@media screen and (min-width:1080px) {
/*---------------------------------
  apps(Large）
----------------------------------*/
.dli-chevron-down__02 {
  margin: 100px auto;
  display: inline-block;
  vertical-align: middle;
  color: #ffff;
  line-height: 1;
  width: 16px;
  height: 14px;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 20px;
  box-sizing: border-box;
  transform: translate(153px, 200%) rotate(135deg);
}
  .app_explain {
    background-color: rgba(0, 0, 0, 0.1);
    display: inline-block;
    padding-bottom: 30px;
    border-radius: 25px;
    text-align: right;
    margin: 10px;
  }

  .app_photo {
    padding-top: 60px;
    padding: 0px;
    width: 20%;
    margin: 50px auto;
  }

  .app_no_explain {
    text-align: center;
    font-size: 18px;
    font-weight: bolder;
    padding-bottom: 10px;
    margin: 50px;
  }

  .app_no_explain__02 {
    text-align: center;
    font-size: 16px;
    font-weight: bolder;
    line-height: 30px;
  }

  .card_explain {
    background-color: rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    border-radius: 25px;
    text-align: right;
    margin: 10px;
  }

  .card_photo {
    padding-top: 30px;
    width: 50%;
    margin: 50px auto;
  }

  .card_no_explain {
    text-align: center;
    font-size: 20px;
    font-weight: bolder;
    padding-bottom: 45px;
  }

  .card_no_explain__02 {
    text-align: center;
    font-size: 16px;
    font-weight: bolder;
    line-height: 30px;
  }

  .explain_nav {
    font-size: 28px;
    color: #fff;
    text-align: center;
    font-weight: bolder;
  }
  
  .cycling_roads__02 {
    display: inline-block;
    background-color: #ffd900;
    width: 46.5vh;
    height: 8vh;
    font-weight: bolder;
    font-size: 20px;
    color: #333;
    padding-top: 6vh;
    padding-left: 95px;
    margin-top: 6vh;
  }

  .hiros_cycling_guide {
    margin-bottom: -50px;
    padding: 80px;
  }

  .enoshima_01 {
    padding: 50px;
    margin-bottom: -30px;
  }

.enoshima_02,
.enoshima_03,
.enoshima_04,
.enoshima_05 {
  padding: 50px;
  margin-top: -100px;
}

.suizokukan {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.arrows {
  margin-top: -3vh;
  margin-left: 3vh;
  margin-bottom: 8vh;
  width: 30%;
}

.bridge {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.shrine {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.shirasudon {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.afternoon {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.cycling_roads {
  display: inline-block;
  background-color: #ffd900;
  width: 400px;
  height: 190px;
  box-shadow: 0 0 8px grey;
}

.cycling_road {
  padding: 80px;
  padding-top: 75px;
  padding-right: 76px;
  margin-right: 27px;
}

.cycling-space {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
}

.cycling-text {
  width: 390px;
  margin: auto;
  padding: 30px 60px 20px;
  font-size: 1.4rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  font-weight: bolder;
}

.kamakura_01 {
  padding: 50px;
  margin-bottom: -30px;
}

.jingu {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 50px;
}

.kamakura_02,
.kamakura_03,
.kamakura_04,
.kamakura_05 {
  padding: 50px;
  margin-top: -100px;
}

.daibutsu,
.takebayashi,
.komachidouri,
.yuigahama {
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-size: 18px;
  padding-bottom: 67px;
  margin-top: -30px;
}

.img-frame_06::before {
  content: "";
  display: block;
  background-color: rgba(113, 168, 203, 0.8);
  position: absolute;
  width: 100%;
  border-top: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  height: 30vh;
}
}

@media screen and (min-width:1080px) {
/*---------------------------------
  feature(Large）
----------------------------------*/
.explain_sub__06 {
    font-family: "Noto Sans Japanese",sans-serif;
    border-radius: 0 0 10px 10px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    text-justify: inter-ideograph;
    font-weight: bolder;
    line-height: 45px;
    font-size: 15px;
    padding: 30px;
    /*padding-bottom: 8vh;*/
  }


.feature_explain {
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
  line-height: 30px;
  padding-top: 8vh;
  padding-bottom: 6vh;
}

.feature_image_05 {
  padding: 20px;
  margin: 15px;
}

.assist_mode_explain {
  background-color: #ffd900;
  color: #000;
  font-size: 14px;
  font-weight: bolder;
  line-height: 30px;
  display: inline-block;
  margin: 30px 44px;
  padding-left: 10px;
  width: 250px;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 0 8px gray;
  text-align: center;
}

.geer_explain {
  font-size: 18px;
  color: #fff;
  font-weight: bolder;
  text-align: center;
  line-height: 30px;
  padding-top: 8vh;
  padding-bottom: 6vh;
}

.explain_sub__07 {
  font-family: "Noto Sans Japanese",sans-serif;
  border-radius: 0 0 10px 10px;
  background-color: rgba(0, 0, 0, 0.1);
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 45px;
  font-size: 14px;
  padding: 30px;
}

.explain_sub__08 {
  font-family: "Noto Sans Japanese",sans-serif;
  text-align: center;
  text-justify: inter-ideograph;
  font-weight: bolder;
  line-height: 45px;
  font-size: 18px;
}

.assist_error {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  width: 200px;
  margin: 65px;
  border-radius: 10px;
  margin-bottom: 10vh;
}

/* .feature_image_07 {
  padding-left: 40px;
} */

.manners_explain {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  width: 335px;
  font-weight: bolder;
  border-radius: 10px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 10vh;
}

.rule_01,
.rule_02,
.rule_03,
.rule_04 {
  position: absolute;
  z-index: 10000;
  margin: 70px 73px;
  margin-left: 70px;
  margin-top: 60px;
  text-align: center;
  font-weight: bolder;
  line-height: 32px;
  font-size: 16px;
}

.manners__01 {
  position: relative;
}

.NG {
  color: #e40040;
  font-size: 25px;
}

}

@media screen and (min-width:1080px) {
  /*---------------------------------
  FAQ(Large）
  ----------------------------------*/
  .accordion-007 {
    max-width: 500px;
    margin-bottom: 7px;
  }
  
  .accordion-007 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border: 2px solid #808dff;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    line-height: 25px;
    background-color: #fff;
    font-weight: bolder;
    cursor: pointer;
  }
  
  .accordion-007 summary::-webkit-details-marker {
    display: none;
  }
  
  .accordion-007 summary::before,
  .accordion-007 summary::after {
    width: 3px;
    height: 0.9em;
    border-radius: 5px;
    background-color: #808dff;
    content: "";
  }
  
  .accordion-007 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
  }
  
  .accordion-007 summary::after {
    transition: rotate 0.3s;
    transform: rotate(90deg);
  }
  
  .accordion-007[open] summary::after {
    rotate: 90deg;
  }
  
  .accordion-007 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin-top: 20px;
    padding: 1.8em 1.2em;
    text-align: center;
    border: 2px solid #808dff;
    border-radius: 5px;
    background-color: #fff;
    line-height: 30px;
    font-size: 14px;
    font-weight: bolder;
    color: #333333;
  }
  
  .accordion-007[open] p {
    opacity: 1;
  }
  
  .accordion-007 p::before,
  .accordion-007 p::after {
    position: absolute;
    top: -15px;
    left: 1.2em;
    width: 30px;
    height: 15px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: "";
  }
  
  .accordion-007 p::before {
    background-color: #808dff;
  }
  
  .accordion-007 p::after {
    top: -12px;
    background-color: #fff;
  }
  
  .question {
    display: inline-block;
    background-color: #808dff;
    color: #fff;
    padding: 3px;
    margin-left: -10px;
  }
  
  .answer {
    display: inline-block;
    color: #808dff;
    font-size: 18px;
    padding: 5px 8px 10px;
  }
}

@media screen and (min-width:1080px) {
/*---------------------------------
  PRICE(Large）
----------------------------------*/
.price_explain {
  color: #000;
  text-align: center;
  font-weight: bolder;
  font-size: 10px;
  line-height: 25px;
}

.important__02 {
  color: #c05a24;
  font-size: 14px;
}

.price_lineup {
  background-color: rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding-bottom: 30px;
  border-radius: 25px;
  width: 303px;
  align-items: end;
  padding: 16px;
  padding-top: 60px;
  padding-bottom: 100px;
  text-align: center;
  font-weight: bolder;
}

.price_table {
  width: 112%;
  text-align: center;
  border-collapse: separate;
  border-spacing: 0px 25px;
  padding-right: 32px;
}

.price_top {
  border-collapse: collapse;
}

.price_table__02 {
  width: 102%;
  text-align: center;
  border-collapse: separate;
}

.price_table tr {
  border-collapse: collapse;
  font-size: 10px;
}


.price_table__02 tr {
  border-collapse: collapse;
  font-size: 10px;
}

.price_table th {
  padding: 9px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #fff;
  font-size: 10px;
  width: 28px;
}

.price_table__02 th {
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #fff;
  font-size: 10px;
}

.price_table td {
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #fff;
}

.price_table__02 td {
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
  border: solid 1px #fff;
  width: 40px;
}
}


@media screen and (min-width:1080px) {
  /*---------------------------------
    CONTACTS(Large）
  ----------------------------------*/

h3 {
  color: #000;
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  padding-left: 1rem;
  line-height: 2rem;
  }

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  }


.Form-Item {
  width: 70%;
  margin-left: 3px;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.Form-Item-Label {
  max-width: inherit;
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-bottom: 2rem;
  font-size: 15px;
  font-weight: bolder;
}

.Form-Item-Label__02 {
  width: 52%;
  letter-spacing: 0.05em;
  padding-left: 53px;
  font-weight: bold;
  font-size: 15px;
  line-height: 50px;
  text-indent: -41px;
}

.Form-Item-Label__03 {
  width: 62%;
  letter-spacing: 0.05em;
  padding-left: 53px;
  font-weight: bold;
  font-size: 15px;
  line-height: 50px;
  text-indent: -40px;
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-right: 170px;
  margin-left: 12px;
  padding: 0.3em;
  height: 37px;
  flex: 1;
  width: 120%;
  max-width: 410px;
  font-size: 18px;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-left: 15px;
  margin-right: 175px;
  padding: 1.3em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  font-size: 18px;
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.box_privacy {
  margin-top: 30px;
  margin-left: 18px;
  border-radius: 10px;
  line-height: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 214px;
  height: 170px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px grey;
}


.privacy-text {
  color: #000;
  font-size: 12px;
  padding: 10px 20px 0px;
  margin-bottom: 30px;
}

.privacy_information {
  text-align: center;
  line-height: 25px;
  padding-top: 15px;
  font-weight: bolder;
  color: #333;
}

.btn--yellow__04 {
  color: #000;
  background: #fff;
  display: flex;
  width: 58%;
  position: relative;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  box-shadow: 0 0 8px grey;
  margin-bottom: 35px;
  margin-top: 18px;
  margin-left: 40px;
  padding: 20px 20px;
  font-family: "Oswald";
  font-size: 105%;
  transition: 0.3s;
}

.pagetop {
  bottom: 100px;
}

.pagetop {
  position: fixed;
  right: -13%;
  bottom: 3%;
  z-index: 20000;
  width: 22%;
}

.pagetop a {
  display: block;
  width: 80px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
}