@charset "UTF-8";
.btn-menu {
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.3s;
  z-index: 1000;
  font-size: 0;
}
@media screen and (min-width: 1000px) {
  .btn-menu {
    border-radius: 50%;
    top: 35px;
    right: 35px;
  }
}
.btn-menu__inner {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #D6C58D;
  transition: 0.3s;
  position: absolute;
  top: 23px;
  left: calc(50% - 15px);
  transition: 0.3s;
}
@media screen and (min-width: 1000px) {
  .btn-menu__inner {
    left: calc(50% - 17px);
    width: 34px;
  }
}
.btn-menu::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #D6C58D;
  transition: 0.3s;
  position: absolute;
  top: 30px;
  left: calc(50% - 15px);
  transition: 0.3s;
}
@media screen and (min-width: 1000px) {
  .btn-menu::before {
    left: calc(50% - 17px);
    width: 34px;
  }
}
.btn-menu::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #D6C58D;
  transition: 0.3s;
  position: absolute;
  top: 37px;
  left: calc(50% - 15px);
  transition: 0.3s;
}
@media screen and (min-width: 1000px) {
  .btn-menu::after {
    left: calc(50% - 17px);
    width: 34px;
  }
}
@media screen and (min-width: 1000px) {
  .btn-menu.open {
    width: 80px;
    height: 80px;
    top: 30px;
    right: 30px;
    line-height: 80px;
  }
}
.btn-menu.open .btn-menu__inner {
  transform: rotate(40deg);
}
@media screen and (min-width: 1000px) {
  .btn-menu.open .btn-menu__inner {
    top: 34px;
  }
}
.btn-menu.open::before {
  transform: rotate(140deg);
  top: 23px;
}
@media screen and (min-width: 1000px) {
  .btn-menu.open::before {
    top: 34px;
  }
}
.btn-menu.open::after {
  display: none;
}

.nav-slide {
  top: 0;
  right: 0;
  z-index: 998;
  width: 100%;
  height: 100vh;
  position: fixed;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
  right: -200px;
}
.nav-slide.open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.nav-slide__inner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(14, 81, 89, 0.8);
  width: 60%;
  height: 100vh;
  transition: 0.4s;
  overflow-y: scroll;
  padding: 80px 30px 60px 60px;
}
@media screen and (min-width: 1000px) {
  .nav-slide__inner {
    width: 600px;
    display: flex;
    justify-content: space-between;
    padding: 250px 60px 0 200px;
  }
}
.nav-slide__inner .nav {
  position: relative;
}
.nav-slide__inner .nav-logo {
  width: 46px;
  position: absolute;
  top: 15px;
  left: 20px;
}
@media screen and (min-width: 1000px) {
  .nav-slide__inner .nav-logo {
    position: static;
    width: 140px;
  }
}
.nav-slide__inner .nav-logo a {
  transition: 0.3s;
}
.nav-slide__inner .nav-logo a:hover {
  opacity: 0.6;
}
.nav-slide__inner .nav-slide__list {
  display: grid;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .nav-slide__inner .nav-slide__list {
    max-height: 260px;
  }
}
.nav-slide__inner .nav-slide__list li a {
  color: #fff;
  position: relative;
  font-family: A-OTF リュウミン Pr5, Hiragino Mincho Pro, ヒラギノ明朝 Pro W3, serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(12px, 33 / 1000 * 100 * 1vw, 22px);
  transition: 0.3s;
}
@media screen and (min-width: 1000px) {
  .nav-slide__inner .nav-slide__list li a {
    font-size: 22px;
  }
}
.nav-slide__inner .nav-slide__list li a:hover {
  opacity: 0.8;
}
.nav-slide__inner .nav-slide__list li a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #D6C58D;
  border-radius: 100px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1000px) {
  .nav-slide__inner .nav-slide__list li a::before {
    width: 10px;
    height: 10px;
    left: -40px;
  }
}
.nav-slide__inner .nav-slide__list li a span {
  display: block;
  color: #D6C58D;
  font-size: clamp(10px, 18 / 1000 * 100 * 1vw, 12px);
}
@media screen and (min-width: 1000px) {
  .nav-slide__inner .nav-slide__list li a span {
    font-size: 12px;
  }
}

body.nav_active {
  overflow-y: hidden;
}

.footer {
  background-color: #08505E;
  padding: 10px 0;
}
.footer .copryright {
  color: #fff;
  text-align: center;
  font-size: 0.8em;
}


.sec-business .btn {
  margin-top: 40px;
}
.sec-business .btn a {
  color: #d7c58f;
  max-width: 160px;
  height: 40px;
  border: 1px solid #d7c58f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.sec-business .btn a:hover {
  background-color: #d7c58f;
  color: #fff;
}