body {
  font-size: 14px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  color: #333;
  font-feature-settings: "pkna";
  overflow-x: hidden;
}

@media screen and (max-width: 1120px) {
  body {
    overflow-x: auto;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 3.7333333333vw;
  }
}

a {
  opacity: 1;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

main {
  min-width: 1120px;
}

@media screen and (max-width: 768px) {
  main {
    min-width: auto;
    width: 100%;
  }
}

.header {
  width: 100%;
  height: 96px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .header {
    height: 16vw;
  }
}

.header__inner {
  max-width: 1300px;
  display: flex;
  padding: 30px;
  justify-content: space-between;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 5.3333333333vw 16.5333333333vw 4vw;
    justify-content: flex-end;
  }
}

.header__about {
  color: #8f8f8f;
}

.header__about a {
  text-decoration: underline;
}

.header__logo {
  width: 212px;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 39.2vw;
  }
}

#pageTop {
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}

#pageTop a {
  border: 1px solid #2ab5e5;
  width: 56px;
  height: 56px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
}

#pageTop a svg {
  width: 40%;
  fill: #2ab5e5;
}

#pageTop.show {
  opacity: 1;
  display: block;
  pointer-events: all;
}

/* ----------------------------------------------------
	nav
---------------------------------------------------- */
#toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  padding: 15px;
  display: none;
}

@media screen and (max-width: 768px) {
  #toggle {
    display: block !important;
  }
}

#toggle-box {
  position: relative;
  width: 46px;
  height: 26px;
  cursor: pointer;
}

#toggle-box>span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box>span:nth-child(1) {
  top: 0;
}

#toggle-box>span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box>span:nth-child(3) {
  bottom: 0;
}

#toggle {
  z-index: 1000;
}

#nav-content {
  z-index: 900;
  overflow: auto;
  width: 24%;
  height: 100%;
  /* padding-left: 20px; */
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  text-align: left;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#nav-content ul {
  list-style: none;
  padding: 40px 30px 0 20px;
  margin-top: 80px;
  margin-bottom: 15px;
}

#nav-content ul>li>ul {
  padding: 0px 30px 0 1em;
  margin-top: 0;
}

#nav-content ul li {
  /*border-bottom: #fff 1px solid;*/
  letter-spacing: 0.02em;
  font-weight: lighter;
  padding-top: 10px;
}

#nav-content .about {
  background-color: #504e4c;
  padding: 10px 0 10px 20px;
  font-feature-settings: normal;
}

#nav-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0 0 10px 0;
  transition: opacity 0.6s ease;
  font-size: 16px;
  letter-spacing: 0.05em;
}

#nav-content a:hover {
  opacity: 0.6;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box>span {
  background: #fff;
}

.is-open #toggle-box>span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box>span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box>span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

.bg.overlay {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 990;
}

@media (max-width: 1000px) {
  #nav-content {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #toggle {
    top: 2.6666666667vw;
    right: 0;
    padding: 10px;
  }

  #toggle-box {
    width: 38px;
    height: 24px;
  }

  #nav-content {
    /* width: 70vw; */
    width: 90%;
  }

  #nav-content ul {
    margin-top: 30px;
  }

  #nav-content ul {
    padding: 40px 20px 0;
  }
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
#footer {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

#footer .wrapper {
  background: #413c3c;
}

#footer .container {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 4.1rem 0 2rem;
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .container {
    width: 90%;
  }
}

@media only screen and (max-width: 767px) {
  #footer .container {
    width: 90%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .container {
    padding: 2em 0;
  }
}

@media only screen and (max-width: 767px) {
  #footer .container {
    padding: 2em 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer .container {
    align-items: center;
  }
}

@media only screen and (max-width: 768px) {
  #footer .container {
    flex-direction: column;
  }
}

#footer .container .flex_items_left {
  width: 40%;
  margin-top: 10px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {
  #footer .container .flex_items_left {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  #footer .container .flex_items_left {
    margin-left: auto;
    margin-right: auto;
  }
}

#footer .container .flex_items_left a {
  display: block;
}

#footer .container .flex_items_left a:hover {
  opacity: 0.7;
}

#footer .container .flex_items_left img {
  width: 50%;
}

#footer .container .flex_items_right {
  width: 300px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  #footer .container .flex_items_right {
    width: 100%;
  }

  #footer .container .flex_items_left img {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  #footer .container .flex_items_right {
    margin-top: 0.5rem;
  }
}

#footer .container .flex_items_right .box_contact,
#footer .container .flex_items_right .box_rsv {
  width: 140px;
}

@media only screen and (max-width: 768px) {

  #footer .container .flex_items_right .box_contact,
  #footer .container .flex_items_right .box_rsv {
    width: 47.76119%;
  }
}

#footer .container .flex_items_right .box_contact .btn,
#footer .container .flex_items_right .box_rsv .btn {
  width: 100%;
  padding: 0.5em 0;
  color: #fff;
  text-align: center;
  border: 1px #fff solid;
}

#footer .container .flex_items_right .box_contact .btn:hover,
#footer .container .flex_items_right .box_rsv .btn:hover {
  opacity: 0.7;
}

#footer .container .flex_items_right .box_contact .btn a,
#footer .container .flex_items_right .box_rsv .btn a {
  color: #fff;
  font-size: 88%;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

  #footer .container .flex_items_right .box_contact .btn a,
  #footer .container .flex_items_right .box_rsv .btn a {
    font-size: 88%;
  }
}

@media only screen and (max-width: 767px) {

  #footer .container .flex_items_right .box_contact .btn a,
  #footer .container .flex_items_right .box_rsv .btn a {
    font-size: 107%;
  }
}

#footer .container .flex_items_right .box_contact .fs10,
#footer .container .flex_items_right .box_rsv .fs10 {
  color: #fff;
  margin-top: 0.5em;
  font-size: 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {

  #footer .container .flex_items_right .box_contact .fs10,
  #footer .container .flex_items_right .box_rsv .fs10 {
    margin-top: 0.5em;
  }
}

@media only screen and (max-width: 767px) {

  #footer .container .flex_items_right .box_contact .fs10,
  #footer .container .flex_items_right .box_rsv .fs10 {
    font-size: 10px;
  }
}

#footer #copyright {
  margin: 1em 0;
  text-align: center;
  font-size: 12px;
  /* font-size: 69%; */
  color: #413c3c;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #footer #copyright {
    font-size: 69%;
  }
}

@media only screen and (max-width: 768px) {
  #footer #copyright {
    font-size: 13px;
  }
}

@media only screen and (max-width: 768px) {
  #footer #copyright {
    margin-bottom: 2rem;
  }
}

.pc-br {
  display: inline;
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

html:lang(en) {
  font-family: "Lato", "Avenir", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
}

html:lang(en) .hotels__notice {
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-size: 0.93rem;
}

@media screen and (min-width: 769px) {
  html:lang(en) .btn__wh-red__ar-sm {
    font-size: 0.9rem;
    font-weight: 600;
  }
}

@media (max-width: 600px) {
  html:lang(en) {
    font-size: 12px;
  }
}

@media screen and (min-width: 769px) {
  html:lang(en) small {
    font-size: 0.78rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
}