/* header */
#top-head {
  width: 100%;
  top: 0;
  position: fixed;
  margin-top: 0;
  z-index: 9999;
  height: 70px;
}
.top-head_wrap {
  position: relative;
  width: 95%;
  margin: 10px auto 0;
  padding: 5px;
  height: 70px;
  background: #fff;
  border-radius: 50px;
}
#top-head .logo {
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translate(0%, -50%);
  border-radius: 50px;
  width: 160px;
  height: 75px;
  z-index: 3;
  background: #0086CC;
  display: grid;
  place-items: center;
  place-content: center;
}
#top-head .logo img {
  width: 120px;
}
.top-head_wrap h1 {
  position: absolute;
  top: 53%;
  left: 180px;
  transform: translate(0%, -50%);
  text-align: left;
  width: 200px;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 2px;
}
.top-head_wrap h1 span {
  display: block;
  font-size: 1.6rem;
  color: #0086CC;
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.top-head_wrap h1 a{
	color: #333;
}

.h_nav {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0%, -50%);
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: flex-end;
  align-items: center;
  text-align: left;
  font-weight: 600;
}
.h_nav p {
  display: inline-block;
  position: relative;
}
.h_nav p::before {
  position: absolute;
  top: 55%;
  left: -20px;
  transform: translate(0%, -50%);
  content: '\f111';
  font-family: FontAwesome;
  font-weight: 400;
  color: #0086CC;
  font-size: 1.2rem;
}
.h_nav div {
  margin: 0 0 0 30px;
  width: 280px;
}
.h_nav div a {
  display: block;
  position: relative;
  background: #E4F5FA;
  border-radius: 50px;
  box-sizing: border-box;
  padding: 20px 0 20px 70px;
}
.h_nav div a::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 10px;
  transform: translate(0%, -50%);
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("/cruise/img/common/logo_hamanko.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.h_nav div a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #0086CC;
  transition: all .5s ease;
}
.h_nav div a:hover::after {
  right: 10px;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  display: none;
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 70%;
  right: 35px;
  transform: translate(0%, -50%);
  cursor: pointer;
  width: 55px;
  height: 22px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  right: 25%;
  height: 2px;
  background-color: #0086CC;
  width: 100%;
}
.openbtn span:nth-of-type(1) {
  top: 0;
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: 100%;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active {}
.openbtn.active span {
  background-color: #fff;
}
.openbtn.active span:nth-of-type(1) {
  top: 45%;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  display: none;
}
.openbtn.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}
/*========= ナビゲーションのためのCSS ===============*/
#gnav {
  position: fixed;
  z-index: 9998;
  /*ナビのスタート位置と形状*/
  top: -220%;
  right: 0%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.6s;
}
#gnav::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/*アクティブクラスがついたら位置を0に*/
#gnav.panelactive {
  top: 0;
}
/*ナビゲーションの縦スクロール*/
#gnav.panelactive #gnav-inner {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 450px;
  height: 100vh;
  right: 0;
  background: #0086CC;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.gnav_wrap {
  width: 100%;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gnav_logo {
  width: 330px;
  margin: 0 auto 2em;
}
.gnav_logo img {
  width: 200px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.gnav_nav {
  position: relative;
  width: 330px;
  margin: auto;
  border-top: 0.5px solid #fff;
}
.gnav_nav li {
  padding: 20px 0;
  position: relative;
  text-align: left;
  font-weight: 600;
  font-size: 1.7rem;
  border-bottom: 0.5px solid #fff;
}
.gnav_nav li::before {
  position: absolute;
  display: block;
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #fff;
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  transition: all .4s;
}
.gnav_nav li:hover::before {
  right: -5px;
}
.gnav_nav li a {
  display: block;
  color: #fff;
}
.gnav_link {
  width: 330px;
  margin: 4em auto 0;
  text-align: left;
}
.gnav_link a {
  display: block;
  position: relative;
  background: #E4F5FA;
  border-radius: 50px;
  box-sizing: border-box;
  font-weight: 600;
  padding: 20px 0 20px 70px;
}
.gnav_link a::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 10px;
  transform: translate(0%, -50%);
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("/cruise/img/common/logo_hamanko.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.gnav_link a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #0086CC;
  transition: all .5s ease;
}
.gnav_link a:hover::after {
  right: 10px;
}
@media screen and (max-width: 1100px) {}
@media screen and (max-width: 768px) {
  #top-head {
    position: fixed;
    min-width: 200px;
    height: 60px;
  }
  .top-head_wrap {
    height: 60px;
  }
  #top-head .logo {
    width: 100px;
    height: 65px;
  }
  #top-head .logo img {
    width: 70px;
  }
  .top-head_wrap h1 {
    top: 53%;
    left: 115px;
    width: 150px;
    font-size: 1.6rem;
  }
  .top-head_wrap h1 span {
    font-size: 1.2rem;
  }
  .h_nav {
    display: none;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    display: block;
    top: 75%;
    right: 15px;
    width: 40px;
    height: 22px;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #gnav {
    top: -500%;
  }
  #gnav.panelactive #gnav-inner {
    width: 100%;
  }
  .gnav_wrap {
    margin: 5em auto 10em !important;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
  }
  .gnav_logo {
    width: 80%;
    margin: 0 auto 4em;
  }
  .gnav_logo img {
    width: 100px;
  }
  .gnav_nav {
    width: 75%;
  }
  .gnav_nav li {
    padding: 20px 0;
    font-size: 1.5rem;
  }
  .gnav_link {
    width: 75%;
    margin: 3em auto 0;
  }
}
@media (max-height: 970px) {
  /* 高さ970px以下の場合 */
  .gnav_wrap {
    margin: 5em auto 5em;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
  }
}