@charset "UTF-8";

/* 回遊バナー配置用 */
#wrap {
  padding-top: 116px;
}
header {
  top: 44px;
  transition: ease all 0.5s;
}
header.scroll-1 {
  top: 0px;
}

@media screen and (max-width: 1200px) {
  #wrap {
    padding-top: 114px;
  }
  .hamburger {
    top: 60px;
  }
  .hamburger.scroll-1 {
    top: 10px;
  }
}
@media screen and (max-width: 599px) {
  header {
    top: 65px;
        display: flex;
        justify-content: center;
  }
  header.scroll-1 {
    top: 0px;
  }
  #wrap {
    padding-top: 129px;
  }
  .hamburger {
    top: 75px;
  }
  .hamburger.scroll-1 {
    top: 10px;
  }
}

/* ORANGEシリーズ回遊バナー ***********************************************/
.excursion {
  top: 0;
  background: rgb(23, 23, 23);
  background: linear-gradient(90deg, rgba(23, 23, 23, 1) 0%, rgba(43, 43, 43, 1) 50%, rgba(23, 23, 23, 1) 100%);
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 998;
}
.excursion > p {
  font-size: 12px;
  color: #f7f7f7;
  margin-right: 5px;
  margin-left: -210px;
}
.excursion > nav {
  display: flex;
}
.excursion > nav > a {
  background: #0d0d0d;
  border: solid 1px #0d0d0d;
  display: block;
  border-radius: 3px;
  display: flex;
  align-items: center;
  position: relative;
  width: 140px;
  height: 30px;
  margin: 0 5px;
  justify-content: center;
  transition: ease all 0.3;
}
.excursion > nav > a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #e0e0e0;
  margin-right: 10px;
}
.excursion > nav > a:hover:not(.excursion > nav > a.on:hover) {
  border: 1px solid #666;
}
.excursion > nav > a.on::before {
  background: #f96625;
}

.excursion > nav > a > img {
  display: block;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .excursion {
    padding: 0 10px;
  }
  .excursion > p {
    margin-left: 0px;
  }
}
@media screen and (max-width: 599px) {
  .excursion {
    flex-direction: column;
    height: 65px;
    padding: 0 10px;
  }
  .excursion > p {
    margin-bottom: 5px;
  }
  .excursion > nav > a {
    width: auto;
    padding: 0 10px;
  }
  .excursion > nav > a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #e0e0e0;
    margin-right: 5px;
  }
  .excursion > nav > a > img {
    height: 13px;
    width: auto;
  }
}
