body {
  position: relative;
}

.wrapper {
  background: #ECE6DC;
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (min-width: 1000px) {
  .wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
  }
}
@media (min-width: 1200px) {
  .wrapper {
    grid-template-columns: 300px 1fr 300px;
  }
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: background-color 0.3s ease;
}
.page-header.is-scrolled {
  background: rgba(166, 147, 124, 0.9);
}
.page-header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.page-header__logo {
  z-index: 100;
}
.page-header__hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(245, 242, 237, 0.95);
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-header__hamburger-menu.is-active {
  transform: translateX(0);
}
.page-header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-size: 20px;
}

.instagram {
  display: flex;
  gap: 10px;
}

.hamburger-btn {
  position: relative;
  z-index: 100;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.hamburger-btn__line {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #5D4037;
  transition: all 0.3s ease;
}
.hamburger-btn__line:nth-child(1) {
  top: 10px;
}
.hamburger-btn__line:nth-child(2) {
  top: 19px;
}
.hamburger-btn__line:nth-child(3) {
  top: 28px;
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}
@media (min-width: 1200px) {
  .hamburger-btn {
    display: none;
  }
}

.reserve-btn {
  position: fixed;
  top: 100px;
  right: 0;
  text-align: center;
  padding: 28px 12px;
  border-radius: 10px 0px 0 10px;
  color: #fff;
  background: #C6A86E;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: -8px 8px 10px rgba(0, 0, 0, 0.2);
}
.reserve-btn:hover {
  background: #ff9900;
}
.reserve-btn.is-scrolled {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 1200px) {
  .reserve-btn {
    margin-right: 300px;
  }
}
.reserve-btn__text {
  font-size: 10px;
}
.reserve-btn__icon {
  margin-top: 8px;
}

.hero-area {
  position: relative;
  width: 100%;
  min-height: 800px;
  overflow: hidden;
}
.hero-area-text {
  position: absolute;
  top: 100px;
  right: 20px;
  z-index: 20;
  text-align: right;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .hero-area-text {
    top: 60px;
  }
}
.hero-area-text__copy {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .hero-area-text__copy {
    font-size: 20px;
  }
}
.hero-area-text__logo {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  width: 246px;
  height: auto;
}
@media screen and (min-width: 600px) and (max-width: 999px) {
  .hero-area-text__logo {
    width: 360px;
  }
}
.hero-area-image {
  position: absolute;
  top: 250px;
  right: 0;
  width: 90%;
  height: auto;
  z-index: 10;
  overflow: hidden;
}
.hero-area-image__img {
  width: 100%;
  height: auto;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media (min-width: 1200px) {
  .hero-area-image__img {
    margin-top: -300px;
  }
}
.hero-area-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 400px;
  background-color: #A6937C;
  z-index: 1;
}
.hero-area-deco {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 70%;
  z-index: 15;
}
.hero-area-deco__img {
  width: 100%;
  height: auto;
}

.news-area {
  margin-left: 30px;
  border-radius: 20px;
  padding: 50px 21px;
  background: rgba(248, 246, 240, 0.8);
}
.news-area__title {
  font-size: 30px;
  font-weight: 600;
}
.news-area__list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.news-area__list::-webkit-scrollbar {
  display: none;
}
.news-area__no-news {
  margin-top: 10px;
}
.news-area .news-card {
  margin-top: 20px;
  width: 200px;
  height: auto;
}
.news-area .news-card__image {
  width: 200px;
  height: 120px;
}
.news-area .news-card__date {
  margin-top: 10px;
  font-size: 16px;
}
.news-area .news-card__title {
  font-size: 16px;
}
.news-area .view-more-link {
  margin-top: 25px;
  text-align: right;
  font-weight: 600;
}
.news-area .view-more-link a {
  background: #5D4037;
  padding: 6px 12px;
  color: #fff;
  border-radius: 10px;
}

#about {
  scroll-margin-top: 100px;
}

.about-area {
  text-align: center;
  margin-top: 50px;
  border-radius: 20px;
  padding: 50px 0;
  background: #fff;
}
.about-area__title {
  font-size: 25px;
  font-weight: 500;
  width: 90%;
  margin: 0 auto;
}
.about-area-wrapper {
  width: 90%;
  margin: 30px auto 0;
}
.about-area__text {
  text-align: left;
  margin-top: 20px;
  line-height: 200%;
}

.worries-list {
  margin-top: 60px;
}
.worries-list__title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.worries-list__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  border-radius: 20px;
  width: 90%;
  padding: 40px;
  background: #fff;
}
.worries-list__item {
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
}
.worries-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 20px;
  height: 20px;
  background-image: url(../img/top/checkmark.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.message-card {
  text-align: center;
  margin: 60px auto 0;
  border-radius: 20px;
  padding: 60px 0;
  height: auto;
  background: #F8F6F0;
}
.message-card__logo {
  margin: 0 auto;
  width: 90%;
  height: auto;
}
.message-card__logo img {
  width: 80%;
  height: auto;
}
.message-card__image {
  margin-top: 30px;
  width: 90%;
  height: auto;
}
.message-card__text {
  margin: 30px auto 0;
  width: 90%;
  line-height: 2;
}

.features-area {
  margin-top: 60px;
}
.features-area__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 50px;
}
.features-area__title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
.features-area__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 90%;
}
.features-area__item-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.features-area__item-title {
  text-align: left;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 20%;
}
.features-area__item-text {
  margin-top: 15px;
  text-align: left;
  line-height: 200%;
}

.stylist-profile-wrapper {
  margin-top: 60px;
  border-radius: 20px;
  padding: 60px 0;
  background: #C6A86E;
}

.stylist-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 90%;
}
.stylist-profile__title {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.stylist-profile__image {
  margin-top: 30px;
  width: 100%;
  height: auto;
}
.stylist-profile__name {
  text-align: left;
  margin-top: 30px;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
.stylist-profile__text {
  margin-top: 20px;
  line-height: 200%;
  color: #fff;
}

.menu-area-wrapper {
  margin-top: 60px;
  border-radius: 20px;
  padding: 60px 0;
  background-color: #fff;
}

.menu-section {
  width: 90%;
  margin: 100px auto 0;
}
.menu-section__title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}
.menu-section__description {
  margin-top: 30px;
  line-height: 200%;
}
.menu-section__item-image {
  margin-top: 30px;
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.menu-section__button {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  width: 100%;
  height: auto;
  background: #C6A86E;
  color: #fff;
}

#access {
  scroll-margin-top: 100px;
}

.access-area-wrapper {
  margin-top: 60px;
}

.access-area {
  width: 90%;
  margin: 0 auto;
}
.access-area__title {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}
.access-area__map {
  margin-top: 30px;
  width: 100%;
  height: 30vh;
}
.access-area__info-group {
  position: relative;
  padding-bottom: 20px;
  margin-top: 20px;
}
.access-area__info-group:first-of-type {
  margin-top: 30px;
}
.access-area__info-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0;
  border-bottom: 2px dashed #5D4037;
}
.access-area__info-title {
  font-weight: 500;
}
.access-area__info-text {
  margin-top: 10px;
  line-height: 160%;
}
.access-area__reservation-title {
  margin-top: 50px;
  text-align: center;
}
.access-area .line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  width: 80%;
  max-width: 500px;
  padding: 30px 0;
  font-size: 25px;
  color: #fff;
  background: #D2AA5E;
}
.access-area .line-button::after {
  content: "";
  display: inline-block;
  width: 33px;
  height: 33px;
  background-image: url(../img/top/bottom-reserve-deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
}

.page-footer {
  margin-top: 100px;
  padding-bottom: 30px;
  text-align: center;
}

.tab-decoration-wrapper {
  display: none;
  background: #F8F6F0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1000px) {
  .tab-decoration-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.tab-decoration {
  text-align: center;
  width: 100%;
  padding: 20px;
  align-items: center;
}
.tab-decoration__image {
  width: 80%;
  margin: 30px auto;
  height: auto;
}
.tab-decoration__logo {
  font-size: 50px;
  font-weight: bold;
}
.tab-decoration__text {
  line-height: 150%;
}

.grid-right {
  display: none;
  background: #ECE6DC;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1200px) {
  .grid-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
  }
  .grid-right .pc-nav {
    display: grid;
    place-items: center;
    gap: 20px;
    width: 100%;
  }
  .grid-right .pc-nav li {
    font-size: 20px;
    padding: 10px 20px;
    cursor: pointer;
  }
  .grid-right .pc-nav li:hover {
    border-radius: 5px;
    background: #5D4037;
    color: #fff;
    transition: 0.3s ease;
  }
}

.menu {
  width: 80%;
  margin: 0 auto;
}
.menu-title {
  padding-top: 200px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}
.menu__btnwrapper {
  display: flex;
  column-gap: 30px;
  text-align: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 100px;
}
.menu__btn {
  width: 200px;
  background: #fff;
  border: 1px solid #D2AA5E;
  color: #D2AA5E;
  padding: 10px 0;
  cursor: pointer;
  transition: 0.3s;
}
.menu__btn.is-active {
  background: #D2AA5E;
  color: #fff;
}

.menu-area {
  display: none;
}
.menu-area.is-active {
  display: flex;
  flex-direction: column;
  gap: 50px;
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-area__container {
  width: 100%;
}
.menu-area__titlebox {
  margin-right: 50px;
  margin-bottom: 30px;
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: bold;
}
.menu-area__title {
  font-size: 20px;
}
.menu-area__feecontainer {
  width: 100%;
  flex-grow: 1;
  font-size: 20px;
}
.menu-area__feebox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 2px dashed #5A4337;
}
.menu-area__feebox p {
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-area__fee-spetext {
  line-height: 200%;
}
.menu-area__fee-spefew {
  margin-top: 10px;
  text-align: right;
}
.menu-area__rectitle {
  font-size: 20px;
  font-weight: 500;
}
.menu-area__rectext {
  margin-top: 15px;
  line-height: 200%;
}
.menu-area__recfee-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.menu-area__recfewtitle {
  font-size: 20px;
  font-weight: 500;
}
.menu-area__rectime {
  margin-top: 30px;
  line-height: 200%;
}
.menu-area__recfee-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dashed #5A4337;
  padding-bottom: 20px;
}

.menu-area__recommend.is-active {
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: fadeIn 0.5s ease forwards;
}

.menu-area__reccontainer {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.news {
  margin: 0 auto;
  width: 90%;
}
.news__title {
  padding-top: 200px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}
.news__container {
  margin-top: 80px;
}
.news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
@media (min-width: 1000px) {
  .news__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news__image-box {
  width: 100%;
}
.news__image-box a {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news__textbox {
  margin-top: 10px;
}
.news__text {
  margin-top: 5px;
}

.comment {
  width: 90%;
  margin: 0 auto;
}
.comment__title {
  padding-top: 200px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}
.comment__title-text {
  margin-top: 50px;
  font-size: 20px;
  text-align: center;
}
.comment__container {
  margin-top: 50px;
}
.comment__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.comment__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1000px) {
  .comment__item {
    flex-direction: row;
    align-items: stretch;
  }
}
.comment__image-box {
  margin: 0 auto;
  width: 60%;
  height: auto;
}
@media (min-width: 1000px) {
  .comment__image-box {
    width: 160px;
    height: auto;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
  }
}
.comment__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.comment__text-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comment__title-box {
  display: flex;
  align-items: baseline;
}
.comment__subtitle {
  font-size: 20px;
}
.comment__age {
  font-size: 14px;
}
.comment__text {
  margin-top: 15px;
  line-height: 160%;
}

.single-article #news-single {
  margin-top: -200px;
}

.view-more-link {
  text-align: center;
}

.news-backbtn {
  border-radius: 10px;
  padding: 10px 20px;
  color: #fff;
  background: #5A4337;
}/*# sourceMappingURL=style.css.map */