@charset "UTF-8";
@import url(/Users/kj-rin/Desktop/しょーごさん課題/コーディング課題中級EX/flatpickr/dist/flatpickr.min.css);
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.2rem;
  font-family: 游明朝体;
  color: #333333;
  margin: 0 auto;
  width: 100%;
}

table, td, th {
  border: 1px solid #E5E5E5;
  padding: 20px 10px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.header {
  height: 70px;
  align-items: center;
  display: flex;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
}

.header-wrapper {
  padding: 10px 0;
  position: fixed;
  display: flex;
  align-items: center;
  z-index: 9999;
  margin-top: 20px;
  height: 74px;
  width: 100%;
}

.header-wrapper.black {
  background: #ffffff;
}

.header-inner {
  width: 100%;
  max-width: 100%;
  backface-visibility: hidden;
}

@media (min-width: 740px) {
  .header-flex {
    width: 1026px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.header-left {
  display: flex;
}

@media (min-width: 740px) {
  .header-left {
    font-size: 1.6rem;
    margin-left: 60px;
  }
}

.header-logo {
  background-image: url(image/top-header-logo.png);
  background-repeat: no-repeat;
  background-size: 180px;
  width: 180px;
  height: 60px;
  margin-top: 20px;
  align-items: center;
}

.header-logo.black {
  background-image: url(image/sub-header-logo.png);
  background-repeat: no-repeat;
  width: 180px;
  height: 60px;
  font-size: 1.6rem;
  color: #000;
  align-items: center;
  display: flex;
  margin-top: 20px;
}

.header-calender {
  display: block;
  display: flex;
}

@media (min-width: 740px) {
  .header-calender {
    padding-left: 30px;
  }
}

.header-reserve {
  position: absolute;
  top: 15px;
  left: 40px;
  display: block;
  background: #978F10;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 12px;
  font-weight: 800;
  font-family: 游明朝体;
  font-size: 1.6rem;
}

@media (min-width: 740px) {
  .header-reserve {
    top: 22px;
    left: 70px;
  }
}

.header-nav {
  font-weight: bold;
  font-size: 2rem;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 50vw;
  text-align: center;
  padding: 120px 0 0;
  background-color: rgba(34, 34, 34, 0.95);
  z-index: 9999;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .3s,opacity .3s;
}

@media (min-width: 740px) {
  .header-nav {
    transition: none;
    opacity: 1;
    transform: inherit;
    background: none;
    top: -90px;
    left: 300px;
    height: 100px;
  }
}

@media (min-width: 1040px) {
  .header-nav {
    left: 500px;
  }
}

@media (min-width: 1200px) {
  .header-nav {
    left: 650px;
  }
}

.header-nav.open {
  transform: translateX(0);
  opacity: 1;
  transition: transform .3s,opacity .3s;
}

@media (min-width: 740px) {
  .header-nav.open {
    display: none;
  }
}

.burger-musk {
  display: none;
  height: 200vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.header-list {
  height: 80px;
  font-family: 游明朝体;
  font-size: 1.6rem;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.header-list a {
  text-decoration: none;
  color: #ffffff;
}

@media (min-width: 740px) {
  .header-list a {
    color: #333333;
  }
}

@media (min-width: 740px) {
  .header-list {
    display: flex;
    width: 200px;
    font-size: 1.6rem;
    font-weight: bold;
    flex-direction: row;
    height: 22px;
  }
}

@media (min-width: 740px) and (min-width: 1040px) {
  .header-list {
    width: 300px;
  }
}

.header-item {
  margin-bottom: 50px;
}

@media (min-width: 740px) {
  .header-item {
    margin: 0 auto;
  }
}

.header-item:last-of-type {
  padding-bottom: 30px;
}

@media (min-width: 740px) {
  .header-item:last-of-type {
    padding-bottom: 0px;
  }
}

.burger-btn {
  display: block;
  position: absolute;
  top: 30px;
  left: 88vw;
  z-index: 5;
}

@media (min-width: 740px) {
  .burger-btn {
    display: none;
  }
}

.burger-btn .bar {
  display: block;
  height: 3px;
  width: 30px;
  background-color: #ffffff;
}

.bar_top {
  margin-bottom: 8px;
}

.bar_mid {
  margin-bottom: 8px;
}

/* ハンバーガーメニューが開いたとき */
.burger-btn.cross {
  z-index: 9999;
}

.burger-btn.cross .bar_top {
  transform: rotate(45deg) translate(8px, 8px);
  transition: .3s;
}

.burger-btn.cross .bar_mid {
  opacity: 0;
  transition: .3s;
}

.burger-btn.cross .bar_bottom {
  transform: rotate(-45deg) translate(8px, -8px);
  transition: .3s;
}

.burger-btn.black .bar {
  background-color: #333;
  transition: background-color .3s;
}

.burger-btn.black .menu {
  color: #333;
  transition: color .3s;
}

.burger-btn.cross .bar {
  background: #ffffff;
}

body.noscroll {
  overflow: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 2px;
  appearance: none;
}

.top {
  background-image: url(image/onsen-top.jpg);
  background-position: center;
  background-size: cover;
  height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.top-content {
  font-size: 3.4rem;
  color: #FFFFFF;
}

#modal-1 {
  display: none;
}

#modal-1.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  margin: 0 auto;
  margin-top: 150px;
  width: 550px;
  max-width: 100%;
  height: 600px;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header .modal__close::before {
  content: "\2715";
}

.modal__content {
  line-height: 1.5;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.modal__open {
  display: block;
  margin: 100px auto;
}

.modal__btn {
  position: absolute;
  left: 55vw;
  width: 120px;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  background: #978F10;
  color: white;
  align-items: center;
  z-index: 2;
}

@media (min-width: 740px) {
  .modal__btn {
    left: 70vw;
    width: 170px;
    height: 56px;
  }
}

@media (min-width: 1040px) {
  .modal__btn {
    left: 80vw;
  }
}

.wrapper {
  width: 100%;
  height: 500px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.modal-flex {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  font-family: 游明朝体;
  font-weight: Extrabold;
  font-size: 1.7rem;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.modal-close {
  display: block;
  position: absolute;
  top: -20px;
  right: 1vw;
  font-size: 4rem;
  font-weight: 100;
  color: #707070;
}

.request-name {
  font-family: 游明朝体;
  font-size: 1.6rem;
  display: block;
  padding: 10px 0;
}

#name {
  padding: 5px;
  width: 95%;
  outline: none;
  border: 1px solid #E7E7E7;
}

#mail {
  padding: 5px;
  width: 95%;
  outline: none;
  border: 1px solid #E7E7E7;
}

#text {
  padding: 5px;
  width: 95%;
  outline: none;
  border: 1px solid #E7E7E7;
}

::placeholder {
  color: #797878;
  font-size: 1.2rem;
}

.select {
  display: block;
  padding: 5px;
  width: 98%;
  outline: none;
  border: 1px solid #E7E7E7;
  color: #797878;
  font-size: 1.2rem;
  appearance: none;
}

.request-submit {
  background: #FFFFFF;
  width: 155px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 30px;
  border: 1px solid #707070;
}

@media (min-width: 740px) {
  .request-submit {
    margin-bottom: 50px;
  }
}

.submit-text {
  font-family: 游明朝体;
  font-size: 1.6rem;
  color: #707070;
}

.submit-button {
  font-family: 游明朝体;
  font-size: 1.6rem;
  color: #000000;
}

.breadcrumb {
  margin-top: 36px;
  margin-bottom: 98px;
  display: block;
  list-style: none;
}

.breadcrumb-list {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
  text-decoration: none;
}

.breadcrumb li::after {
  /* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #333333;
  font-weight: bold;
}

.breadcrumb-list:last-child:after {
  content: '';
}

.breadcrumb-item {
  color: #555;
  /*色*/
}

.breadcrumb-item:hover {
  text-decoration: underline;
}

.introduction-inner {
  margin: 0 auto;
  width: 1180px;
  max-width: 100%;
  height: auto;
}

.introduction-text {
  width: 98%;
  text-align: center;
  line-height: 2;
  font-size: 1.6rem;
  margin-bottom: 135px;
}

@media (min-width: 740px) {
  .introduction-text {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}

.spa-introduction {
  background-image: url(image/onsen01.jpg);
  background-position: center;
  background-size: cover;
  width: 525px;
  max-width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  margin: 0 auto;
  z-index: 2;
}

@media (min-width: 1040px) {
  .spa-introduction {
    width: 525px;
    max-width: 100%;
    position: absolute;
    left: 0%;
    top: -50px;
  }
}

.image-spa {
  background-image: url(image/bg.jpg);
  width: 525px;
  max-width: 100%;
  height: 381px;
  margin-left: auto;
  background-position: center;
  background-size: cover;
  margin-bottom: 50px;
  margin-right: auto;
}

@media (min-width: 1040px) {
  .image-spa {
    margin-right: 0;
    margin-left: auto;
    width: 813px;
    max-width: 100%;
    margin-bottom: 141px;
    text-align: right;
  }
}

@media (min-width: 1040px) {
  .spa-inner {
    display: flex;
    position: relative;
  }
}

.spatype {
  text-align: center;
  width: 503px;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 1040px) {
  .spatype {
    width: 70%;
    margin-left: 230px;
  }
}

.spatype-title {
  font-size: 2.4rem;
  padding-top: 60px;
  margin-bottom: 52px;
  display: inline-block;
  text-align: left;
  font-weight: 500;
}

@media (min-width: 1040px) {
  .spatype-title {
    width: 75%;
    text-align: left;
  }
}

.spatype-about {
  width: 75%;
  font-size: 1.6rem;
  line-height: 2;
  display: inline-block;
  text-align: left;
  margin-bottom: 52px;
}

.spatype-caution {
  width: 70%;
  font-size: 1.4rem;
  line-height: 1.5;
  display: inline-block;
  text-align: left;
}

@media (min-width: 1040px) {
  .spatype-caution {
    margin-left: 70px;
    width: 100%;
  }
}

.spa-introduction-right {
  background-image: url(image/onsen02.jpg);
  background-position: center;
  background-size: cover;
  width: 525px;
  max-width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  margin: 0 auto;
  z-index: 2;
}

@media (min-width: 1040px) {
  .spa-introduction-right {
    width: 525px;
    max-width: 100%;
    position: absolute;
    right: 0%;
    top: -50px;
  }
}

.image-spa-right {
  background-image: url(image/bg.jpg);
  width: 525px;
  max-width: 100%;
  height: 381px;
  margin: 0 auto;
  text-align: center;
  background-position: center;
  background-size: cover;
  margin-bottom: 50px;
}

@media (min-width: 1040px) {
  .image-spa-right {
    margin-left: 0;
    width: 813px;
    max-width: 100%;
    margin-bottom: 141px;
  }
}

@media (min-width: 1040px) {
  .spa-inner-right {
    display: flex;
    position: relative;
  }
}

.spatype-right {
  text-align: center;
  width: 503px;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 1040px) {
  .spatype-right {
    margin-left: 0;
    text-align: left;
    margin-left: 61px;
  }
}

.spatype-title {
  font-size: 2.4rem;
  padding-top: 60px;
  margin-bottom: 52px;
  display: inline-block;
  text-align: left;
  font-weight: 500;
}

.spatype-about-right {
  width: 98%;
  font-size: 1.6rem;
  line-height: 2;
  display: inline-block;
  text-align: left;
  margin-bottom: 52px;
}

.spatype-caution-right {
  width: 70%;
  font-size: 1.4rem;
  line-height: 1.5;
  display: inline-block;
  text-align: left;
}

@media (min-width: 1040px) {
  .spatype-caution-right {
    width: 100%;
  }
}

.image-spa-last {
  background-image: url(image/onsen02.jpg);
  background-position: center;
  background-size: cover;
  width: 525px;
  max-width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  margin: 0 auto;
  z-index: 2;
}

@media (min-width: 1040px) {
  .image-spa-last {
    width: 525px;
    max-width: 100%;
    position: absolute;
    left: 0%;
    top: -50px;
  }
}

.efficacy-border {
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 97px;
}

.efficacy {
  font-size: 2.6rem;
  margin-top: 96px;
  margin-bottom: 52px;
}

table {
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 74px;
  font-size: 1.5rem;
}

table th {
  text-align: left;
  width: 25%;
}

table td {
  text-align: left;
  width: 85%;
}

table, tr, th, td {
  border: none;
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
}

.footer {
  background-image: url(image/bg3.jpg);
  background-size: cover;
  width: 100%;
  height: auto;
  text-align: center;
}

.footer {
  background-image: url(image/bg3.jpg);
  background-size: cover;
  width: 100%;
  height: auto;
  text-align: center;
}

.footer-container {
  display: block;
}

.footer-inner {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  margin: 0 auto;
  margin-bottom: 100px;
  width: 205px;
}

.footer-inner a {
  margin-bottom: 0;
  color: #000000;
  width: 40px;
  display: block;
  height: auto;
}

.footer-inner a:hover {
  color: #707070;
}

.footer-about:first-of-type {
  letter-spacing: 0.5em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  /* すべて縦方向に表示 */
  line-height: 1.5;
  font-family: 游明朝体;
  font-size: 1.8rem;
  margin-top: 87px;
  text-align: center;
  z-index: 9999;
}

.footer-about {
  letter-spacing: 0.5em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  /* すべて縦方向に表示 */
  line-height: 1.5;
  font-family: 游明朝体;
  font-size: 1.8rem;
  margin-top: 87px;
  margin-right: 20px;
  text-align: center;
  z-index: 9999;
}

.footer-about:last-of-type {
  letter-spacing: 0.5em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  /* すべて縦方向に表示 */
  line-height: 1.5;
  font-family: 游明朝体;
  font-size: 1.8rem;
  margin-top: 65px;
  margin-right: 20px;
  text-align: center;
  z-index: 9999;
}

.footer-title {
  width: 100%;
  text-align: center;
}

.footer-logo {
  padding-top: 60px;
  padding-bottom: 20px;
}

.footer-recommend {
  font-size: 3.6rem;
  margin-bottom: 96px;
}

.footer-wrapper {
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
}

.footer-postcode {
  margin-right: 21px;
}

.footer-telephonenumber {
  margin-right: 21px;
  padding-bottom: 61px;
}

.footer-place {
  display: flex;
  margin-bottom: 23px;
}

.footer-phone {
  display: flex;
}

.footer-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #000000;
}

.copy-text {
  color: #ffffff;
  font-size: 1.2rem;
}
/*# sourceMappingURL=spa.css.map */