@charset "UTF-8";
body {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 300;
  color: #040203;
  background-color: #f5f4f0;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 1.4rem;
  }
}

.inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

.inner-s {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.sp {
  display: none;
}
@media screen and (max-width: 834px) {
  .sp {
    display: block;
  }
}

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

.ja-title {
  font-family: "Shippori Mincho", serif;
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
}

.en {
  font-family: "Figtree", sans-serif;
}

.fadein.scroll-activate {
  opacity: 0;
  filter: blur(10px);
  translate: 0 15px;
}

.fadein.scroll-activate.active {
  opacity: 1;
  filter: blur();
  transition: opacity 0.5s, translate 0.5s, filter 0.5s;
  translate: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  position: fixed;
  width: 100%;
  top: 0px;
  right: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
}
@media screen and (min-width: 835px) {
  .header {
    margin: 0 auto;
    padding: 10px 2.5% 5px;
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
}
@media screen and (max-width: 834px) {
  .header {
    padding: 10px 3% 5px;
    position: absolute;
  }
}

@media screen and (min-width: 835px) {
  .header.hidden {
    transform: none;
    opacity: 1;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
  }
  @keyframes fadein {
    0% {
      opacity: 0;
      transform: translateY(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.header-left {
  width: 54%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 834px) {
  .header-left {
    width: 80%;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
}

.company__logo {
  opacity: 1;
  transition: width 0.4s ease, opacity 0.4s ease;
}
@media screen and (max-width: 1200px) {
  .company__logo {
    max-width: 13rem;
    height: auto;
  }
}
@media screen and (max-width: 834px) {
  .company__logo {
    max-width: 9rem;
  }
}

.header__access {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__access a {
  color: #5a7da4;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #5a7da4;
  font-weight: 300;
}

.header-right {
  width: 70%;
}
@media screen and (max-width: 834px) {
  .header-right {
    width: -moz-fit-content;
    width: fit-content;
  }
}

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

.header-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 834px) {
  .header-nav ul {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}

.header-nav ul li a {
  background-color: #baa174;
  border-radius: 8px;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.9vw;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}
.header-nav ul li a span {
  font-size: 1.2rem;
  display: block;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 834px) {
  .hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background: none;
    gap: 0.7rem;
    border: none;
    position: relative;
    z-index: 1000;
    padding: unset;
  }
}

.hamburger__line {
  width: 40px;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease, background-color 0.3s ease;
  width: 30px;
  background-color: #fff;
}

.hamburger.openNav .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 9px);
}

.hamburger.openNav .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.openNav .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(1px, -5px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/top/therapist-bg.webp);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
}

.menu-overlay.openNav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0s;
}

.menu-overlay.closeNav {
  transform: translateY(-100px);
  -webkit-transform: translateY(-100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
}

.hamburger-nav {
  width: 90%;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.global-navigation__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
.global-navigation__list li {
  width: 90%;
  border-radius: 8px;
  display: block;
  background-color: #baa174;
  color: #fff;
  text-align: center;
}
.global-navigation__list a {
  display: block;
  padding: 1.5rem 0;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  color: #fff;
}
.global-navigation__list a span {
  display: block;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}

.menu-overlay.openNav .global-navigation__list li a {
  opacity: 1;
  transition: 0.8s ease 0.3s;
  -webkit-transition: 0.8s ease 0.3s;
}

/* メニューが閉じるときに上にスライドアウト */
.menu-overlay.closeNav .global-navigation__list li a {
  opacity: 0;
  transition: 0.8s ease 0.3s;
  -webkit-transition: 0.8s ease 0.3s;
}

.footer {
  padding: 10rem 0;
  background-color: #eae7df;
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 4rem 0 3rem;
  }
}
.footer__reservation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .footer__reservation {
    flex-direction: column;
    gap: 3rem;
  }
}
.footer__reservation--title {
  width: 31%;
  color: #7795b7;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .footer__reservation--title {
    width: 50%;
    text-align: center;
  }
}
.footer__reservartion--list {
  width: 67%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .footer__reservartion--list {
    width: 100%;
    gap: 2rem;
    flex-direction: column;
  }
}
.footer__reservartion--item {
  position: relative;
  z-index: 2;
  width: 46%;
}
@media screen and (max-width: 834px) {
  .footer__reservartion--item {
    width: 90%;
  }
}
.footer__reservartion--item a {
  border-radius: 8px;
  display: block;
  background: linear-gradient(135deg, #e3c07b 0%, #b99240 100%);
  color: #fff;
  text-align: center;
  padding: 3.4rem 0;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}
@media screen and (max-width: 834px) {
  .footer__reservartion--item a {
    padding: 1.5rem 0;
  }
}
.footer__reservartion--list--dec1 {
  position: absolute;
  bottom: -5rem;
  left: -5rem;
}
@media screen and (max-width: 834px) {
  .footer__reservartion--list--dec1 {
    width: 40%;
    bottom: -1rem;
    left: -1rem;
  }
}
.footer__reservartion--list--dec2 {
  position: absolute;
  top: -10rem;
  right: -5rem;
}
@media screen and (max-width: 834px) {
  .footer__reservartion--list--dec2 {
    width: 40%;
    top: -4rem;
    right: -3rem;
  }
}
.footer .copyright {
  color: #a5a5a5;
  font-size: 1.4rem;
  text-align: right;
}
@media screen and (max-width: 834px) {
  .footer .copyright {
    padding: 1rem 0 0;
  }
}/*# sourceMappingURL=style.css.map */