@charset "UTF-8";

/*-------------------------------

# p-accueil

-------------------------------*/
.p-accueil-fv {
  background: var(--black);
  height: 100svh;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-accueil-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    image-set(
        url("../img/page/accueil/bg_fv_pc.jpg.webp") type("image/webp"),
        url("../img/page/accueil/bg_fv_pc.jpg") type("image/jpeg")
      )
      center / cover repeat;
  opacity: 0;
  transition: opacity 3s 0.5s ease;
}
.p-accueil-fv.is-visible::before {
  opacity: 1;
}
.p-accueil-fv > * {
  position: relative;
  z-index: 1;
}
.p-accueil-fv__logo {
  width: 250px;
  opacity: 0;
  transition: opacity 2s;
}
.p-accueil-fv__logo.is-visible {
  opacity: 1;
}
.p-accueil-lead {
  padding-bottom: 50vh;
}
.p-accueil-lead__txt {
  max-width: 460px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-left: auto;
  margin-right: auto;
}
.p-accueil-acces {
  padding-top: 0;
  padding-bottom: calc(50vh - 254px);
}
.p-accueil-fv .c-actualites-link {
  position: absolute;
  bottom: 40px;
  left: 26px;
  opacity: 0;
  transition: opacity 2s;
  pointer-events: none;
}
.p-accueil-fv .c-actualites-link.is-visible {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 768px) {
  .p-accueil-fv::before {
    background:
      linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      image-set(
          url("../img/page/accueil/bg_fv_sp.jpg.webp") type("image/webp"),
          url("../img/page/accueil/bg_fv_sp.jpg") type("image/jpeg")
        )
        center / cover repeat;
  }
  .p-accueil-fv__logo {
    width: 180px;
    width: 210px;
  }
  .p-accueil-acces {
    padding-bottom: 150px;
  }
  .p-accueil-fv .c-actualites-link {
    bottom: 24px;
    left: 16px;
    max-width: calc(100vw - 32px);
  }
}

/*-------------------------------

# p-concept

-------------------------------*/
/* ## p-concept-fv */
.p-concept-fv__heading {
  font-size: 3rem;
  letter-spacing: 0.1em;
}
.p-concept-fv__txt {
  letter-spacing: 0.04em;
  line-height: 2.2;
  margin-top: 72px;
}
@media (min-width: 769px) {
  .p-concept-fv {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .p-concept-fv {
    padding-top: calc(50vh - var(--concept-fv-height) / 2);
  }
  .p-concept-fv__heading {
    font-size: 2.4rem;
  }
  .p-concept-fv__txt {
    margin-top: 56px;
  }
}

/* ## yakiniku */
@media (min-width: 769px) {
  .p-concept-yakiniku {
    padding-top: 200px;
    padding-bottom: 50vh;
  }
}
/* ## wagyu */
@media (min-width: 769px) {
  .p-concept-wagyu {
    padding-top: 0;
    padding-bottom: 50vh;
  }
}

/* joshu */
@media (min-width: 769px) {
  .p-concept-joshu {
    min-height: 100vh;
    padding: 50vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ## omotenashi */
@media (min-width: 769px) {
  .p-concept-omotenashi {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media (max-width: 768px) {
  .p-concept-omotenashi {
    padding-bottom: 150px;
  }
}
/* ## acces */
.p-concept-acces {
  background: var(--brown);
  padding: 142px 0;
}

/*-------------------------------

# p-acces

-------------------------------*/
.p-acces-fv {
  position: relative;
  height: 100svh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    image-set(
      url("../img/page/acces/mv_fv.jpg.webp") type("image/webp"),
      url("../img/page/acces/mv_fv.jpg") type("image/jpeg")
    );
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-acces-fv__heading {
  font-size: 3rem;
  letter-spacing: 0.1em;
}
.p-acces-fv__txt {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-top: 72px;
}

@media (max-width: 1536px) {
  .p-acces-fv__wrap {
    left: 5vw;
    right: 5vw;
  }
}
@media (max-width: 768px) {
  .p-acces-fv__heading {
    font-size: 2.4rem;
  }
}

/* ## acces */
.p-acces-acces {
  /* background: image-set(
    url("../img/common/bg.jpg.webp") type("image/webp"),
    url("../img/common/bg.jpg") type("image/jpeg")
  ); */
  padding: 200px 0;
}
@media (max-width: 768px) {
  .p-acces-acces {
    padding: 100px 0;
  }
}

/*-------------------------------

# p-reservation

-------------------------------*/
/* ## lead */

.p-reservation-lead__inner {
  margin: 56px auto 0;
}
.p-reservation-lead__inner > * + * {
  margin-top: 40px;
}
.p-reservation-lead__btn-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 64px;
}
.p-reservation-lead__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
  width: 300px;
  height: 56px;
  cursor: pointer;
  transition: background-color 0.4s;
  letter-spacing: 0.04em;
}
.p-reservation-lead__btn:hover,
.p-reservation-lead__btn.is-active {
  background-color: rgba(255, 255, 255, 0.1);
}
.lang-ja .p-reservation-lead__btn {
  width: 190px;
}

@media (max-width: 768px) {
  .p-reservation-lead__btn-wrap {
    gap: 24px;
  }
  .p-reservation-lead__btn {
    height: 48px;
  }
}

/* ## form */
.p-reservation-form__inner {
  display: none;
  margin-top: 110px;
}
.p-reservation-form__inner.is-visible {
  display: block;
}
@media (max-width: 768px) {
  .p-reservation-form__inner {
    margin-top: 72px;
  }
}

/*-------------------------------

# p-contact

-------------------------------*/
/* ## form */

.p-contact-form .c-cf7 {
  margin-top: 64px;
}

/* ## information */
.p-access-information {
  padding: 100px 0 312px;
}
.p-access-information__wrap {
  max-width: 376px;
  margin: 0 auto;
}
.p-access-information__heading {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.p-access-information__outer {
  margin-top: 64px;
}
.p-access-information__outer > * + * {
  margin-top: 64px;
}
.p-access-information__subheading {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.p-access-information__txt {
  letter-spacing: 0.04em;
  line-height: 2;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .p-access-information {
    padding: 100px 0 100px;
  }
  .p-access-information__heading {
    font-size: 2rem;
  }
}

/*-------------------------------

# p-archive-posts

-------------------------------*/
.p-archive-posts {
  padding: 165px 0 320px;
}
.p-archive-posts::before {
  content: "";
  position: fixed;
  inset: 0;
  height: 100vh;
  /* background: image-set(
      url("../img/common/bg.jpg.webp") type("image/webp"),
      url("../img/common/bg.jpg") type("image/jpeg")
    )
    center / cover no-repeat; */
  z-index: -1;
}
.p-archive-posts .c-posts-list {
  margin-top: 120px;
}
.p-archive-posts .c-archive-pager {
  margin-top: 136px;
}
@media (max-width: 768px) {
  .p-archive-posts {
    padding: 165px 0;
  }
  .p-archive-posts .c-posts-list {
    margin-top: 64px;
  }
  .p-archive-posts .c-archive-pager {
    margin-top: 80px;
  }
}
/*-------------------------------

# p-single-posts

-------------------------------*/
.p-single-posts {
  padding: 165px 0 320px;
  min-height: 100vh;
}
.p-single-posts::before {
  content: "";
  position: fixed;
  inset: 0;
  height: 100vh;
  /* background: image-set(
      url("../img/common/bg.jpg.webp") type("image/webp"),
      url("../img/common/bg.jpg") type("image/jpeg")
    )
    center / cover no-repeat; */
  z-index: -1;
}
.p-single-posts .c-article {
  margin-top: 120px;
}
.p-single-posts .c-single-pager {
  margin-top: 136px;
}
.p-single-posts .c-posts-list {
  margin-top: 142px;
}
@media (max-width: 768px) {
  .p-single-posts {
    padding: 165px 0;
  }
  .p-single-posts .c-single-pager {
    margin-top: 80px;
  }
  .p-single-posts .c-article {
    margin-top: 64px;
  }
  .p-single-posts .c-posts-list {
    margin-top: 96px;
  }
}

/*-------------------------------

# simple

-------------------------------*/
.p-simple-page {
  padding: 288px 0 100px;
}
@media (max-width: 768px) {
  .p-simple-page {
    padding: 150px 0 150px;
  }
}

/*-------------------------------

# p-politique

-------------------------------*/
.p-politique-main__inner {
  margin-top: 56px;
}
.p-politique-main__inner > * + * {
  margin-top: 56px;
}
.p-politique-main__lead {
  line-height: 2;
  letter-spacing: 0.04em;
}
.p-politique-main__heading {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--beige);
}
.p-politique-main__txt,
.p-politique-main__ol {
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 24px;
}
.p-politique-main__ol {
  list-style: decimal;
}
.p-politique-main__ol > * + * {
  margin-top: 8px;
}
.p-politique-main__li {
  margin-left: 32px;
}
.p-politique-main__txt + .p-politique-main__ol {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .p-politique-main__inner {
    margin-top: 32px;
  }
}
