@charset "UTF-8";
@import url(variable.css);
/* ===========================header===================================*/
.header {
  width: 100%;
  height: 80px;
  background-color: transparent;
  position: fixed;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo__icon {
  display: inline-block;
  background-size: contain;
  width: 40px;
  height: 40px;
}

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

.header-logo__title {
  font-size: 3.2rem;
  letter-spacing: 0.18em;
  color: #000;
}

@media screen and (max-width: 768px) {
  .header-logo__title {
    font-size: 2.4rem;
  }
}

.header-logo__title_position {
  margin-left: 15px;
}

.header a {
  font-weight: 800;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.header__nav {
  margin-left: 120px;
}

.nav__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__content_position:not(:first-child) {
  margin-left: 30px;
}

.nav__link_white {
  color: #fff;
}

.reserve-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 16.5px;
  padding-bottom: 16.5px;
  width: 170px;
  background-color: #978f10;
  font-weight: 800;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .reserve-btn {
    width: 150px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 420px) {
  .reserve-btn {
    width: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 350px) {
  .reserve-btn {
    width: 60px;
  }
}

@media screen and (max-width: 305px) {
  .reserve-btn {
    display: none;
  }
}

.reserve-btn::before {
  content: '';
  background-image: url(../img/callender.png);
  background-size: contain;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

@media screen and (max-width: 350px) {
  .reserve-btn::before {
    display: none;
  }
}

.reserve-btn .reserve-btn_text_style {
  font-size: 1.6rem;
}

@media screen and (max-width: 375px) {
  .reserve-btn .reserve-btn_text_style {
    font-size: 1.3rem;
  }
}

.reserve-btn_position {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .reserve-btn_position {
    position: relative;
    right: 50px;
  }
}

.humberger-btn {
  position: fixed;
  z-index: 1;
  right: 20px;
  top: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 40px;
  margin-left: 20px;
  vertical-align: center;
  display: none;
  font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
  .humberger-btn {
    display: block;
  }
}

@media screen and (max-width: 350px) {
  .humberger-btn {
    margin-left: auto;
  }
}

.actived {
  display: block;
}

.none {
  display: none;
}

.humberger-btn__bar {
  display: inline-block;
  height: 4px;
  width: 100%;
  background-color: #000;
  -webkit-transition: .3s;
  transition: .3s;
}

.slide {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.slide__close {
  position: absolute;
  top: 25px;
  right: 20px;
  background-image: url(../img/slide__close.png);
  background-size: cover;
  display: inline-block;
  width: 35px;
  height: 35px;
}

.slide__contents {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slide__content {
  width: 100%;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.slide__link {
  display: block;
  color: #fff;
  font-size: 4rem;
}

@media screen and (max-width: 600px) {
  .slide__link {
    font-size: 3rem;
  }
}

.op {
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

.slide-none {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: .5s;
  transition: .5s;
}

.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.text-white {
  color: #fff;
}

.text-balck {
  color: #000;
}

.noscroll {
  overflow: hidden;
}

/* ===========================header===================================*/
/* ===========================modal===================================*/
.modal__musk {
  position: fixed;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.3);
}

.modal__musk_none {
  display: none;
}

.modal {
  position: fixed;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 550px;
  height: 600px;
  background-color: white;
  opacity: 1;
  border: 1px solid #E7E7E7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal_none {
  display: none;
}

@media screen and (max-width: 768px) {
  .modal {
    width: 300px;
    height: 430px;
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: url(../img/modal-close.png) no-repeat center center/cover;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.modal-inner {
  width: 78.18%;
  margin: 0 auto;
}

.modal__title-wrapper {
  border-bottom: 1px solid #E7E7E7;
}

.modal__title-wrapper_posiion {
  margin-bottom: 35.5px;
}

@media screen and (max-width: 768px) {
  .modal__title-wrapper_posiion {
    margin-bottom: 10px;
  }
}

.modal__title {
  text-align: center;
  font-size: 2rem;
  padding: 6.8% 0;
}

@media screen and (max-width: 768px) {
  .form label {
    font-size: 1.3rem;
  }
}

.modal .form__input {
  margin-top: 14px;
  margin-bottom: 14px;
  color: #797878;
  font-size: 1.4rem;
  border: 1px solid #E7E7E7;
  height: 32px;
  line-height: 1.7em;
  padding: 0 9px;
}

@media screen and (max-width: 768px) {
  .modal .form__input {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
}

input, textarea, select, option {
  resize: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
}

.submit-wrapper {
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .submit-wrapper {
    margin-top: 15px;
  }
}

.form__submit {
  width: 198px;
  padding: 13px 0;
  border: 1px solid #707070;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .form__submit {
    width: 120px;
    padding: 6px;
  }
}

.form__submit:hover {
  cursor: pointer;
}

/* ===========================modal===================================*/
/* ===========================キービジュアル===================================*/
.kv-wrapper {
  background: url(../img/onsen-header.jpg) no-repeat center center/cover;
  background-position-y: 80px;
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #f2f2f2;
  padding-top: 80px;
}

.subpage-title {
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.23;
  font-weight: 800;
}

.subpage-title_position {
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* ===========================キービジュアル===================================*/
/* ===========================section1===================================*/
.section1 {
  padding-bottom: 150px;
}

@media screen and (max-width: 768px) {
  .section1 {
    padding-bottom: 70px;
  }
}

.bread-crumb-wrapper {
  margin-top: 28px;
}

.bread-crumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bread-crumb {
  line-height: 2;
}

.section-title {
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }
}

.section-title_position {
  margin-top: 82px;
}

@media screen and (max-width: 768px) {
  .section-title_position {
    margin-top: 50px;
  }
}

.tab-sp-onry {
  display: none;
}

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

/* ===========================contents===================================*/
.content {
  display: block;
  width: 100%;
  height: 438px;
}

.content_position {
  position: relative;
  margin-bottom: 84px;
}

@media screen and (max-width: 768px) {
  .content_position {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .content_position {
    margin-bottom: 10px;
  }
}

.content_position:first-of-type {
  margin-top: 70px;
}

.content_position:last-of-type {
  margin-bottom: 0;
}

.content__img-wrapper {
  width: 44.5%;
  height: 300px;
}

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

.content__img-wrapper.first {
  background: url(../img/onsen01.jpg) no-repeat center center/cover;
}

.content__img-wrapper.second {
  background: url(../img/onsen02.jpg) no-repeat center center/cover;
}

.content__img-wrapper_position {
  position: absolute;
  z-index: 1;
  background-color: #e2e2e2;
}

.content__img-wrapper_position.reverse {
  right: 0;
}

.introduction {
  background: url(../img/sub-page-content-bg.jpg) no-repeat center center/cover;
  width: 68.9%;
  height: 381px;
}

@media screen and (max-width: 768px) {
  .introduction {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .introduction.first {
    background: url(../img/onsen01.jpg) no-repeat center center/cover;
  }
}

@media screen and (max-width: 768px) {
  .introduction.second {
    background: url(../img/onsen02.jpg) no-repeat center center/cover;
  }
}

.introduction_position {
  position: relative;
  top: 100%;
  left: 100%;
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
}

.introduction_position.reverse {
  left: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}

.introduction-container {
  width: 65%;
}

.introduction-container_position {
  position: absolute;
  top: 56px;
  left: 29.27%;
}

@media screen and (max-width: 768px) {
  .introduction-container_position {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0;
  }
}

.introduction-container_position.reverse {
  position: absolute;
  top: 56px;
  left: 60px;
  padding-right: 125px;
}

@media screen and (max-width: 768px) {
  .introduction-container_position.reverse {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .introduction__title, .introduction__text {
    color: #fff;
    text-shadow: #efefef 1px 1px 10px, black -1px 1px 10px, #efefef 1px -1px 10px, black -1px -1px 10px;
  }
}

.introduction__title {
  font-size: 2.4rem;
  line-height: 1.33;
  margin-bottom: 40px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .introduction__title {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .introduction__title {
    margin-bottom: 40px;
  }
}

.introduction__text_up {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 40.5px;
}

@media screen and (max-width: 1024px) {
  .introduction__text_up {
    margin-bottom: 30px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 768px) {
  .introduction__text_up {
    margin-bottom: 40.5px;
  }
}

.introduction__text_bottom {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .introduction__text_bottom {
    font-size: 1.3rem;
  }
}

/* ===========================contents===================================*/
/* ===========================温泉の効能===================================*/
.efficacy {
  border-top: 1px solid #E7E7E7;
  margin-top: 6.5px;
}

.section-title-wrapper {
  margin-bottom: 92.5px;
}

@media screen and (max-width: 768px) {
  .section-title-wrapper {
    margin-bottom: 45px;
  }
}

.section__title {
  font-size: 2.6rem;
  line-height: 1.225;
  margin-bottom: 48.5px;
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section__title {
    margin-bottom: 24px;
  }
}

.efficacy__contents {
  width: 74.57%;
  padding-top: 8.75px;
  padding-bottom: 8.75px;
  font-size: 1.5rem;
  line-height: 2.133;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #E7E7E7;
  margin: 0  auto;
}

@media screen and (max-width: 768px) {
  .efficacy__contents {
    width: 90%;
  }
}

@media screen and (max-width: 375px) {
  .efficacy__contents {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.efficacy__contents:last-of-type {
  padding-top: 12.75px;
  padding-bottom: 12.75px;
}

.efficacy__content_title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 220px;
          flex: 0 1 220px;
}

@media screen and (max-width: 768px) {
  .efficacy__content_title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 80px;
            flex: 0 1 80px;
  }
}

.efficacy__content_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}

.efficacy__contents:last-of-type {
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 74px;
}

@media screen and (max-width: 768px) {
  .efficacy__contents:last-of-type {
    margin-bottom: 60px;
  }
}

.efficacy__contents:last-of-type .efficacy__content_text {
  line-height: 1.5em;
}

.efficacy__bottom_border {
  border-top: 1px solid #E7E7E7;
  margin-bottom: 96.5px;
}

@media screen and (max-width: 768px) {
  .efficacy__bottom_border {
    margin-bottom: 60px;
  }
}

/* ===========================温泉の効能===================================*/
/* ===========================section1===================================*/
/* ===========================footer===================================*/
.footer-top {
  background: url(../img/footer-bg.jpg) no-repeat center center/cover;
  padding-top: 64px;
  padding-bottom: 61px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-nav__link {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.777em;
  font-size: 1.8rem;
  height: 97px;
  margin-bottom: 82px;
}

.footer-nav__link:not(:last-of-type) {
  margin-right: 34px;
}

.footer__title_position {
  display: block;
}

.footer__title_position {
  margin-bottom: 64px;
}

.footer__title_text {
  font-weight: 800;
  font-size: 3.2rem;
  letter-spacing: 0.18em;
  line-height: 1.5em;
  margin-top: -10px;
}

.footer__access {
  text-align: center;
}

.footer__access .address {
  letter-spacing: 0.18em;
}

@media screen and (max-width: 375px) {
  .footer__access {
    font-size: 1.3rem;
  }
}

.footer__access_top {
  margin-bottom: 20px;
}

.mail-num, .tel-num {
  margin-right: 20px;
}

.footer-bottom {
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
}

/* ===========================footer===================================*/
/*# sourceMappingURL=spa.css.map */