@charset "utf-8";

.header {
  position: sticky;
  box-shadow: 0 2px 10px rgba(67, 67, 67, 0.15);
  top: 0;
  z-index: 2;
  background-color: var(--primary-white, #fff);
}

.header-sp {
  display: block;
  width: 100%;
}

.header-sp__inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-white, #fff);
  padding: 10px 5.3%;

  position: relative;
  z-index: 10;
}

.header-sp__logo {
  width: 160px;
}

.header-sp__btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  position: relative;
  width: 30px;
  height: 26px;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-brown, #43311f);
  border-radius: 4px;
}

.menu-toggle,
.menu-toggle span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.menu-toggle span:nth-of-type(1) {
  top: 0;
}
.menu-toggle span:nth-of-type(2) {
  top: 12px;
}
.menu-toggle span:nth-of-type(3) {
  bottom: 0;
}

#hamburger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
#hamburger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-hamburger-bar02 0.8s forwards;
}

@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
#hamburger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.nav-sp {
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-white, #fff);
  transition: transform 0.6s;
  padding-top: 60px;
  margin-top: 70px;
}

.nav-sp.active {
  transform: translateX(0);
}

body:has(.nav-sp.active) {
  overflow: hidden;
}

.nav-sp__list {
  text-align: center;
}

.nav-sp__item {
  margin-top: 32px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
}
.nav-sp__item a:hover {
  opacity: 0.7;
}
.nav-sp__item:first-of-type {
  margin-top: 0;
}

.nav-sp__reserve {
  margin-top: 60px;
  text-align: center;
}

.nav-sp__reserve p {
  color: var(--primary-darkGreen, #365c3b);
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-sp__reserve p::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  margin: 0 10px -3px 0;
  background-image: url(../images/tell_green.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.nav-sp__reserve a {
  margin: 20px auto 0;
}

/* ======================================
header-pc
====================================== */

.header-pc {
  display: none;
  width: 100%;
  padding-inline: 30px;
}

.header-pc__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1160px;
  margin: 0 auto;
}
.header-pc__logo {
  width: 200px;
}
.nav-pc,
.nav-pc__list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-pc__item a {
  display: block;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  position: relative;

  text-decoration: none;
}

.nav-pc__item a::after {
  content: "";

  background-color: var(--primary-brown, #43311f);

  bottom: -4px;

  height: 0.5px;

  left: 0;

  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  width: 100%;
}

.nav-pc__item a:hover::after {
  transform: scale(1, 1);
}
/* ======================================
headerのPC
====================================== */

@media screen and (max-width: 920px) {
  .header-pc__logo {
    width: 160px;
  }
  .nav-pc__list {
    gap: 20px;
  }
}

@media screen and (min-width: 769px) {
  .header-sp {
    display: none;
  }

  .header-pc {
    display: block;
  }
}
/* ======================================
mainVisual
====================================== */
.mainVisual {
  width: 100%;
  height: calc(100svh - 70px);
}

.mainVisual__item {
  height: 100%;
}

.mainVisual__item:first-child {
  background-image: url(../images/mainvisual_01_sp.jpg);
  background-size: cover;
  background-position: center;
}
.mainVisual__item:nth-child(2) {
  background-image: url(../images/mainvisual_02_sp.jpg);
  background-size: cover;
  background-position: center;
}
.mainVisual__item:nth-child(3) {
  background-image: url(../images/mainvisual_03_sp.jpg);
  background-size: cover;
  background-position: center;
}
.mainVisual__item:nth-child(4) {
  background-image: url(../images/mainvisual_04_sp.jpg);
  background-size: cover;
  background-position: center;
}
.mainVisual__item:nth-child(5) {
  background-image: url(../images/mainvisual_05_sp.jpg);
  background-size: cover;
  background-position: center;
}
.mainVisual__item:nth-child(6) {
  background-image: url(../images/mainvisual_06_sp.jpg);
  background-size: cover;
  background-position: center;
}

/* slick */
.add-animation {
  animation: mainVisual 10s both;
}

@keyframes mainVisual {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.slick-list,
.slick-track {
  height: 100%;
}

@media screen and (min-width: 569px) {
  .mainVisual {
    height: 700px;
  }

  .mainVisual__item:first-child {
    background-image: url(../images/mainvisual_01_pc.jpg);
    background-size: cover;
    background-position: 40%;
  }
  .mainVisual__item:nth-child(2) {
    background-image: url(../images/mainvisual_02_pc.jpg);
    background-size: cover;
    background-position: center;
  }
  .mainVisual__item:nth-child(3) {
    background-image: url(../images/mainvisual_03_pc.jpg);
    background-size: cover;
    background-position: center;
  }
  .mainVisual__item:nth-child(4) {
    background-image: url(../images/mainvisual_04_pc.jpg);
    background-size: cover;
    background-position: center;
  }
  .mainVisual__item:nth-child(5) {
    background-image: url(../images/mainvisual_05_pc.jpg);
    background-size: cover;
    background-position: center;
  }
  .mainVisual__item:nth-child(6) {
    background-image: url(../images/mainvisual_06_pc.jpg);
    background-size: cover;
    background-position: center;
  }
}
/* ======================================
concept
====================================== */
.concept__main {
  margin-top: 80px;
}

.concept__main__text {
  margin-top: 16px;
  background-color: var(--primary-white, #fff);
  box-shadow: 0 8px 3px 0 rgba(67, 67, 67, 0.15);
  padding: 24px 20px;
}

.concept__main__text h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
}

.concept__main__text p {
  margin-top: 20px;
  font-weight: 500;
  line-height: 1.8;
}

.concept__img {
  width: 90%;
  margin-left: auto;
}

/* ======================================
concept
====================================== */
@media screen and (min-width: 769px) {
  .concept__main {
    margin-top: 120px;
  }

  .concept__main__content {
    position: relative;
    z-index: 2;
    margin-right: -80px;
  }
  .concept__main__text {
    width: 60%;
    padding: 32px 40px;
  }

  .concept__main__text h3 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.8;
  }

  .concept__main__text p {
    font-size: 1.5rem;
    line-height: 2;
  }
  .concept__img {
    width: 50%;
    position: relative;
    z-index: 1;
    margin-top: -360px;
  }

  .section--concept .concept__img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .br--sp {
    display: none;
  }
}

/* ======================================
point
====================================== */
.point__list {
  margin-top: 100px;
}

.point__item {
  padding: 32px;
  color: var(--primary-brown, #43311f);
  background-color: var(--primary-ivory, #fff8f1);
  margin-top: 20px;
}
.point__head {
  text-align: center;
}
.point__item img {
  width: 100px;
}

.point__topic {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.point__text {
  text-align: left;
}
.point__item p {
  margin-top: 12px;
}

/* ======================================
pointのPC
====================================== */
@media screen and (min-width: 769px) {
  .point__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    margin-top: 120px;
  }
  .point__text {
    font-size: 1.5rem;
  }
}
/* ======================================
menu
====================================== */
.section--menu {
  margin-top: 100px;
  padding-block: 28px;
  background-color: var(--primary-ivory, #fff8f1);
}

.section__topic--menu {
  margin: 0 auto;
}

.menu__container {
  margin-top: 32px;
}

.menu-columns {
  margin-top: 40px;
}

.menu-columns:first-of-type {
  margin-top: 0;
}
.menu-columns h3 {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.menu-columns dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.menu-columns dt {
  width: 80%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid var(--primary-brown, #43311f);
  margin-top: 16px;
}

.menu-columns dd.price {
  width: 20%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  border-bottom: 1px solid var(--primary-brown, #43311f);
  margin-top: 16px;
}

.menu-columns dd.note {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
  border-bottom: none;
}

/* menu補足 */
.menu-text {
  margin-top: 32px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}

/* リンク部分 */
.menu__link {
  margin-top: 32px;
  padding-block: 20px;
  background-color: var(--primary-white, #fff);
  border-radius: 5px;
}

.menu__link p {
  color: var(--primary-darkGreen, #365c3b);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
}

.link__btn__inner {
  margin-top: 16px;
}
.link__btn__inner a {
  margin: 12px auto 0;
}
.link__btn__inner a:first-of-type {
  margin: 0 auto;
}
/* ======================================
menuのPC
====================================== */
@media screen and (min-width: 769px) {
  .section--menu {
    margin-top: 120px;
    padding-block: 56px;
  }
  .menu__container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .menu-columns {
    margin-top: 0;
  }
  .menu-columns h3 {
    font-size: 2rem;
  }

  /* menu補足 */
  .menu-text {
    margin-top: 40px;
    font-size: 1.4rem;
  }

  /* リンク部分 */
  .menu__link {
    margin-top: 40px;
    padding-block: 32px;
  }

  .menu__link p {
    font-size: 2rem;
    font-weight: 700;
  }
  .link__btn__inner {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .link__btn__inner a {
    margin: 0;
  }
  .link__btn__inner a:first-of-type {
    margin: 0;
  }
}
/* ======================================
gallery
====================================== */
.section__topic--gallery {
  margin: 100px 0 0 auto;
}

.gallery__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
/* ======================================
galleryのPC
====================================== */
@media screen and (min-width: 769px) {
  .section__topic--gallery {
    margin: 110px 0 0 auto;
  }
  .gallery__list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* ======================================
Access
====================================== */
.section__topic--access {
  margin: 100px auto 0;
}

.iframe__content {
  margin-top: 32px;
  height: 250px;
}

.section--access h3 {
  margin-top: 40px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
}

.access-list dt {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 2;
  margin-top: 10px;
}
.access-list dt .dt-first {
  margin-top: 0;
}
.access-list dd {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2;
  border-bottom: 1px solid var(--primary-brown, #43311f);
}

/* ======================================
galleryのPC
====================================== */
@media screen and (min-width: 769px) {
  .iframe__content {
    height: 500px;
  }
  .section--access h3 {
    margin-top: 40px;
    font-size: 2rem;
  }

  .access-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  .access-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .access-list dt {
    width: 20%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2;
    margin-top: 16px;
    border-bottom: 1px solid var(--primary-brown, #43311f);
  }

  .access-list dd {
    width: 80%;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--primary-brown, #43311f);
    margin-top: 16px;
  }
}
/* ======================================
Reserve
====================================== */
.section--reserve {
  margin-top: 80px;
  padding: 100px 5.3%;
  background-image: url(../images/reserve_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.reserve__content {
  text-align: center;
}

.reserve__logo img {
  width: 200px;
}

.reserve__tell {
  margin-top: 20px;
}

.reserve__tell p {
  color: var(--primary-white, #fff);
}
.reserve__tell span {
  color: var(--primary-white, #fff);
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
}
.reserve__tell span::before {
  content: "";
  display: inline-block;
  background-image: url(../images/tell_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin: 0 4px -2px 4px;
}

.reserve__tell .day {
  margin-top: 8px;
  font-size: 1.2rem;
}
/* ======================================
reserveのPC
====================================== */
@media screen and (min-width: 769px) {
  .section--reserve {
    background-image: url(../images/reserve_pc.jpg);
  }

  .reserve__logo img {
    width: 300px;
  }

  .reserve__tell {
    margin-top: 40px;
  }
  .reserve__tell .tell {
    font-size: 2rem;
  }
  .reserve__tell span {
    font-size: 2.4rem;
  }
  .reserve__tell span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 12px 0 12px;
  }
  .reserve__tell .day {
    font-size: 1.4rem;
  }
  .br--sp {
    display: none;
  }
}
/* ======================================
Aesthetic
====================================== */
.section--aesthetic {
  padding-bottom: 110px;
}

.aesthetic__container {
  margin-top: 80px;
}

.aesthetic__text {
  margin-top: 16px;
  background-color: var(--primary-white, #fff);
  box-shadow: 0 8px 3px 0 rgba(67, 67, 67, 0.15);
  padding: 24px 20px;
}

.aesthetic__text p {
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
}

.aesthetic__btn__area {
  margin-top: 16px;
}

.section--aesthetic .btn-link--hotpepper,
.section--aesthetic .btn-link--instagram {
  width: 200px;
  height: 45px;
  padding: 12px 0;
}

/* Instagramボタン */
.btn-link--instagram {
  color: var(--primary-purple, #962fbf);
  background-color: var(--primary-white, #fff);
  border: 1px solid var(--primary-purple, #962fbf);
  margin-top: 12px;
}

.btn-link--instagram::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background-image: url(../images/arrow_instagram.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 12px;
}

.btn-link--instagram:hover {
  color: var(--primary-white, #fff);
  background-color: var(--primary-purple, #962fbf);
}

.aesthetic__img {
  width: 90%;
  margin-left: auto;
}
/* ======================================
AestheticのPC
====================================== */
@media screen and (min-width: 769px) {
  .aesthetic__container {
    margin-top: 100px;
  }
  .aesthetic__content {
    position: relative;
    z-index: 2;
    margin-right: -80px;
  }
  .aesthetic__text {
    width: 60%;
    padding: 32px 40px;
  }

  .aesthetic__text p {
    font-size: 1.5rem;
    line-height: 2;
  }
  .aesthetic__img {
    width: 50%;
    position: relative;
    z-index: 1;
    margin-top: -360px;
  }

  .aesthetic__img img {
    width: 100%;
    height: auto;
    display: block;
  }
  .aesthetic__btn__area {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }

  .btn-link--instagram {
    margin-top: 0;
  }
}

/* ======================================
footer
====================================== */
.footer {
  background-color: var(--primary-brown, #43311f);
  color: var(--primary-white, #fff);
  text-align: center;
  padding-inline: 5.3%;
}

.footer__logo img {
  margin-top: 30px;
  width: 160px;
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 40px;
}

.footer__item a {
  color: var(--primary-white, #fff);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  position: relative;

  text-decoration: none;
}
.footer__item a::after {
  content: "";

  background-color: var(--primary-white, #fff);

  bottom: -4px;

  height: 0.5px;

  left: 0;

  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  width: 100%;
}

.footer a:hover::after {
  transform: scale(1, 1);
}
.copy {
  margin-top: 40px;
  text-align: center;
  color: var(--primary-white, #fff);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ======================================
footerのPC
====================================== */
@media screen and (min-width: 769px) {
  .footer {
    margin-top: 110px;
  }

  .footer__logo img {
    margin-top: 30px;
  }

  .footer__list {
    gap: 40px;
  }

  .footer__item a {
    color: var(--primary-white, #fff);
    font-size: 1.5rem;
  }
}
