@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "MillerBanner";
  src: url("./Miller-Banner-Roman.woff2");
}
@font-face {
  font-family: "A-OTF Ryumin Pro R-KL", serif;
  src: url("./A-OTF-Ryumin-Pro-R-KL.woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "kings-caslon-display", serif;
  src: url("https://use.typekit.net/uvr3icy.css");
  font-weight: 400;
  font-style: normal;
}
html {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  color: #2E374B;
  font-size: 10px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 100%;
  }
}

html,
body,
main,
section {
  background-color: #fff;
}

section:not(.lp__mv, .lp__about) {
  position: relative;
  margin-top: -5px;
  scroll-margin-top: 80px;
}
@media screen and (max-width: 767px) {
  section:not(.lp__mv, .lp__about) {
    scroll-margin-top: 40px;
  }
}

.lp {
  position: relative;
  -webkit-transition: 2s ease 1s;
  transition: 2s ease 1s;
}
.lp.splash {
  opacity: 0;
  visibility: hidden;
}
.lp__splash {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  isolation: isolate;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 2s ease;
  transition: 2s ease;
}
.lp__splash.hide {
  z-index: -999;
  opacity: 0;
  visibility: hidden;
}
.lp__splash-white {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  -webkit-transition: 2s ease;
  transition: 2s ease;
}
.lp__splash-white.hide {
  z-index: -999;
  opacity: 0;
  visibility: hidden;
}
.lp__splash-content {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #2E374B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp__splash-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.lp__splash-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./img/splash-bg.jpg") no-repeat center/cover;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.lp__splash-bg.show::before {
  opacity: 0.2;
  visibility: visible;
}
.lp__splash-logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.lp__splash-logo.show {
  opacity: 1;
  visibility: visible;
}
.lp__fab {
  position: fixed;
  bottom: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  right: 20px;
  width: 240px;
  height: 60px;
  background-color: #B48B3F;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 1;
  visibility: visible;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__fab {
    width: 220px;
    height: 50px;
  }
}
.lp__fab:hover {
  background-color: #2E374B;
}
.lp__fab.splash {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.lp__fab.toggle {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
.lp__fab-text {
  position: relative;
  padding-right: 15px;
  font-family: "A-OTF Ryumin Pro R-KL", serif;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp__fab-text--en {
  font-family: "kings-caslon-display", serif;
}
.lp__fab-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10.5px;
  height: 10.5px;
  background: url("./img/icons/fab-arrow.svg") no-repeat center/contain;
}

.lp-header {
  position: relative;
  z-index: 999;
  width: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 2s ease 1s;
  transition: 2s ease 1s;
}
.lp-header.splash {
  opacity: 0;
  visibility: hidden;
}
.lp-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 262px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav {
    gap: unset;
    height: 220px;
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .lp-header__nav.toggle {
    position: fixed;
    top: 0;
    left: 0;
  }
}
.lp-header__logo {
  position: absolute;
  top: 80px;
  left: 50px;
  z-index: 1;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .lp-header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0;
  }
}
.lp-header__logo-image {
  width: 78px;
}
@media screen and (max-width: 1024px) {
  .lp-header__logo-image {
    width: 55px;
  }
}
.lp-header__nav-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-btns {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
}
.lp-header__hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lp-header__hamburger {
    position: fixed;
    top: 20px;
    z-index: 999;
    display: block;
    width: 28px;
    height: 10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    cursor: pointer;
  }
}
@media screen and (max-width: 1024px) {
  .lp-header__hamburger.toggle {
    position: relative;
    top: unset;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.lp-header__hamburger.toggle .lp-header__hamburger-line {
  background-color: #fff;
}
.lp-header__hamburger.toggle .lp-header__hamburger-line:first-child {
  -webkit-transform: rotate(150deg) translate(10px, -50%);
          transform: rotate(150deg) translate(10px, -50%);
}
.lp-header__hamburger.toggle .lp-header__hamburger-line:nth-child(2) {
  -webkit-transform: rotate(-150deg) translate(10px, -50%);
          transform: rotate(-150deg) translate(10px, -50%);
}
.lp-header__hamburger.scroll .lp-header__hamburger-line {
  background-color: #fff;
}
.lp-header__hamburger-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #111;
  border-radius: 1px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.lp-header__hamburger-line:nth-child(2) {
  top: 10px;
}
.lp-header__lang {
  position: absolute;
  top: 17px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 5px;
  font-family: "kings-caslon-display", serif;
  font-size: 1rem;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .lp-header__lang {
    position: relative;
    top: unset;
    margin-right: 25px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .lp-header__lang.toggle {
    opacity: 1;
    visibility: visible;
  }
}
.lp-header__lang-label {
  color: #2E374B;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1024px) {
  .lp-header__lang-label {
    color: #fff;
  }
}
.lp-header__lang-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.lp-header__lang-btn {
  color: #BBBBBB;
}
.lp-header__lang-btn.active {
  color: #2E374B;
}
@media screen and (max-width: 1024px) {
  .lp-header__lang-btn.active {
    color: #fff;
  }
}
.lp-header__nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 0;
    padding: 0 6% 25px;
    opacity: 0;
    visibility: hidden;
    background-color: #2E374B;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-menu.toggle {
    height: 0;
    opacity: 1;
    visibility: visible;
  }
}
.lp-header__nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 23px;
  margin-left: auto;
  padding: 23px 52px 0 0;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-links {
    position: relative;
    top: unset;
    right: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
    width: 100%;
    height: 100%;
    margin: unset;
    padding-top: 80px;
    padding-right: 0;
  }
}
.lp-header__nav-links--en {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 40px;
  gap: 26px;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-links--en {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 35px;
    padding-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-links--en .lp-header__nav-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    line-height: unset;
  }
}
.lp-header__nav-links--en .lp-header__nav-item:nth-child(6) {
  line-height: unset;
}
.lp-header__nav-links--en .lp-header__nav-link {
  font-family: "kings-caslon-display", serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-links--en .lp-header__nav-link {
    width: auto;
    height: auto;
    font-size: 2.2em;
    text-align: center;
  }
}
.lp-header__nav-links--en .lp-header__nav-link:hover {
  -webkit-transform: none;
          transform: none;
}
.lp-header__nav-links--en .lp-header__nav-link--reserve {
  padding: 13px 12px 11px;
}
.lp-header__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.0714285714em;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 16.6666666667%;
    height: 100%;
  }
}
.lp-header__nav-link {
  color: #2E374B;
  font-size: 1.4rem;
  font-weight: lighter;
  text-align: center;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-link {
    font-size: 1.8rem;
    width: 20px;
    height: auto;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    color: #fff;
    line-height: 1.0714285714em;
  }
}
.lp-header__nav-link:hover {
  color: #B48B3F;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-link:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.lp-header__nav-link--reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 10px;
  border: 1px solid #B48B3F;
  color: #B48B3F;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-link--reserve {
    position: relative;
    width: 100%;
    height: 70px;
    margin-top: auto;
    margin-bottom: 50px;
    padding: unset;
    background-color: #A79679;
    color: #fff;
    letter-spacing: unset;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.lp-header__nav-link--reserve span {
  position: relative;
  padding-right: 20px;
}
.lp-header__nav-link--reserve span::before {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 14px;
  background: url("./img/icons/caret-right.svg") no-repeat center/contain;
}
.lp-header__nav-link--reserve:hover {
  background-color: #B48B3F;
  color: #fff;
  -webkit-transform: none;
          transform: none;
}
.lp-header__nav-link--insta {
  padding: 0 8px 0 30px;
  border-left: 1px solid #2E374B;
}
@media screen and (max-width: 1024px) {
  .lp-header__nav-link--insta {
    padding: 0;
    border: none;
  }
}

.lp__mv {
  position: relative;
  isolation: isolate;
  width: 100%;
  -webkit-transition: 3s ease;
  transition: 3s ease;
  overflow: hidden;
}
.lp__mv-splide {
  -webkit-transition: 2s ease;
  transition: 2s ease;
}
.lp__mv-slide {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 3s ease !important;
  transition: opacity 3s ease !important;
}
.lp__mv-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.lp__mv-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, #000 0, rgba(0, 0, 0, 0) 100%);
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .lp__mv-image::before {
    width: 100%;
  }
}
.lp__mv-text {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: calc(100svh - 262px);
  max-height: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .lp__mv-text {
    height: 100%;
    max-height: unset;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-text {
    padding: 0 20px;
  }
}
.lp__mv-slide-heading {
  color: #fff;
  font-size: 2.8rem;
  font-weight: lighter;
  line-height: 1.4285714286em;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .lp__mv-slide-heading {
    font-size: 26px;
    line-height: 1.3846153846em;
  }
}
@media screen and (max-width: 350px) {
  .lp__mv-slide-heading {
    font-size: 23px;
  }
}
.lp__mv-slide-heading--en {
  font-family: "kings-caslon-display", serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.2352941176em;
  letter-spacing: 0.02em;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .lp__mv-slide-heading--en {
    font-size: 26px;
    padding-bottom: 20px;
  }
}
.lp__mv-slide-text {
  font-family: "kings-caslon-display", serif;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .lp__mv-slide-text {
    font-size: 10px;
    padding: 0 30px 20px 0;
  }
}
.lp__mv-slide-label {
  font-family: "kings-caslon-display", serif;
  color: #fff;
  font-size: 2rem;
  line-height: 2em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .lp__mv-slide-label {
    font-size: 12px;
  }
}
.lp__mv-scroll-btn {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 45px;
  height: 45px;
  background: url("./img/icons/scroll-button.svg") no-repeat center/contain;
  -webkit-animation: bounce 0.6s infinite alternate;
          animation: bounce 0.6s infinite alternate;
}
@media screen and (max-width: 767px) {
  .lp__mv-scroll-btn {
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
}
.lp__about {
  position: relative;
  padding: 130px 0;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .lp__about {
    padding: 50px 0 100px;
  }
}
.lp__about-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 30px;
  max-width: 1160px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp__about-wrapper {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 1024px) {
  .lp__about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    padding: 0 6%;
  }
}
.lp__about-heading {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .lp__about-heading {
    position: relative;
    top: unset;
  }
}
.lp__about-heading-img {
  max-width: 188px;
}
@media screen and (max-width: 1024px) {
  .lp__about-heading-img {
    max-width: 160px;
  }
}
.lp__about-heading-text {
  width: 490px;
  font-family: "kings-caslon-display", serif;
  font-size: 1.6rem;
  line-height: 1.75em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .lp__about-heading-text {
    width: 100%;
  }
}
.lp__about-content {
  width: calc(100% - 200px);
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .lp__about-content {
    width: 100%;
    margin-left: unset;
  }
}
.lp__about-image-group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp__about-image {
  max-width: 295px;
  height: 180px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .lp__about-image {
    max-width: 150px;
    height: 91px;
  }
}
.lp__about-image.first {
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .lp__about-image.first {
    z-index: 1;
  }
}
.lp__about-image.second {
  max-width: 455px;
  height: 274px;
  margin-top: -20px;
  margin-left: -30px;
}
@media screen and (max-width: 1024px) {
  .lp__about-image.second {
    max-width: 200px;
    height: 120px;
    margin-left: unset;
  }
}
.lp__about-image.third {
  max-width: 456px;
  height: 275px;
  margin-top: 50px;
  margin-left: 100px;
}
@media screen and (max-width: 1024px) {
  .lp__about-image.third {
    max-width: 200px;
    height: 120px;
    margin-left: -50px;
  }
}
.lp__about-image.fourth {
  margin-top: -80px;
  margin-left: -100px;
}
@media screen and (max-width: 1024px) {
  .lp__about-image.fourth {
    margin-top: -25px;
    margin-left: -50px;
  }
}
.lp__about-image-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lp__about-text p {
  width: 380px;
  margin-top: -30px;
  margin-left: -30px;
  font-family: "kings-caslon-display", serif;
  font-size: 1.3rem;
  line-height: 1.6923076923em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1024px) {
  .lp__about-text p {
    width: 100%;
    margin-top: 25px;
    margin-left: 0;
  }
}
.lp__about-text p--jp {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  font-size: 1.2rem;
  font-weight: lighter;
  line-height: 1.8333333333em;
  letter-spacing: 0.03em;
}
.lp__sample {
  position: relative;
  background-color: #fff;
}
.lp__sample-content {
  padding: 500px 0;
  max-width: 1160px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp__sample-content {
    max-width: 100%;
    padding: 0 6%;
  }
}

.lp__chef-wrapper, .lp__menu-wrapper {
  padding: 100px 0;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .lp__chef-wrapper, .lp__menu-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 63px 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__chef-wrapper--en, .lp__menu-wrapper--en {
    padding: 40px 0;
  }
}
.lp__chef-text-wrapper, .lp__menu-text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 580px;
  padding: 0 30px;
}
@media screen and (max-width: 1200px) {
  .lp__chef-text-wrapper, .lp__menu-text-wrapper {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .lp__chef-text-wrapper, .lp__menu-text-wrapper {
    width: 100%;
    min-width: auto;
    padding: 0 6%;
  }
}
.lp__chef-title-container {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .lp__chef-title-container {
    margin: 0 0 0 auto;
    height: 76vw;
  }
}
.lp__menu-title-container {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .lp__menu-title-container {
    margin: 0 auto 0 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    height: 75vw;
  }
}
.lp__chef-title-en, .lp__menu-title-en, .lp__access-title-en {
  color: #B48B3F;
  font-size: 1.2rem;
  font-family: "kings-caslon-display", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .lp__chef-title-en, .lp__menu-title-en, .lp__access-title-en {
    font-size: 12px;
  }
}
.lp__chef-title-en--en, .lp__menu-title-en--en, .lp__access-title-en--en {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .lp__chef-title-en--en, .lp__menu-title-en--en, .lp__access-title-en--en {
    font-size: 14px;
  }
}
.lp__chef-title-en::before, .lp__menu-title-en::before, .lp__access-title-en::before {
  content: "";
  display: inline-block;
  background-color: #B48B3F;
  width: 1px;
  height: 30px;
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .lp__chef-title-en::before, .lp__menu-title-en::before, .lp__access-title-en::before {
    height: 16px;
    margin-bottom: 6px;
  }
}
.lp__chef-title-jap, .lp__access-title-jap {
  font-size: 2.8rem;
  font-weight: lighter;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 767px) {
  .lp__chef-title-jap, .lp__access-title-jap {
    font-size: 24px;
  }
}
.lp__menu-title-jap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2.8rem;
  font-weight: lighter;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .lp__menu-title-jap {
    margin-left: 8px;
    font-size: 24px;
  }
}
.lp__menu-title-jap span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1.8em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp__chef-text-container, .lp__menu-text-container {
  margin-top: 88px;
}
@media screen and (max-width: 767px) {
  .lp__chef-text-container, .lp__menu-text-container {
    margin-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lp__chef-text-container {
    padding-right: 0;
  }
}
.lp__chef-heading, .lp__menu-heading {
  text-align: center;
  font-weight: lighter;
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .lp__chef-heading, .lp__menu-heading {
    text-align: left;
    margin-top: 28px;
    font-size: 24px;
  }
}
.lp__chef-heading--en, .lp__menu-heading--en {
  font-family: "kings-caslon-display", serif;
  font-size: 3rem;
  line-height: 1.2em;
  margin-bottom: 24px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .lp__chef-heading--en, .lp__menu-heading--en {
    font-size: 26px;
    line-height: 1.1538461538em;
    margin: 35px 0 12px;
  }
}
.lp__chef-heading {
  text-align: center;
  font-weight: lighter;
  margin-bottom: 39px;
}
@media screen and (max-width: 767px) {
  .lp__chef-heading {
    text-align: left;
    margin-bottom: 18px;
  }
}
.lp__chef-heading--en {
  text-align: left;
  margin: 0 auto 60px 35px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__chef-heading--en {
    margin: 35px 23px 38px;
    max-width: 100%;
  }
}
.lp__chef-heading--en::before {
  content: "“";
  position: absolute;
  top: 15px;
  left: -36px;
  font-size: 7rem;
  font-family: "MillerBanner", serif;
}
@media screen and (max-width: 767px) {
  .lp__chef-heading--en::before {
    font-size: 50px;
    top: 10px;
    left: -25px;
  }
}
.lp__chef-heading--en::after {
  content: "”";
  position: absolute;
  right: -29px;
  bottom: -18px;
  font-size: 7rem;
  font-family: "MillerBanner", serif;
}
@media screen and (max-width: 767px) {
  .lp__chef-heading--en::after {
    font-size: 50px;
    right: -25px;
  }
}
.lp__chef-subheading {
  text-align: center;
  margin: 2px 0 12px;
  font-weight: lighter;
}
@media screen and (max-width: 767px) {
  .lp__chef-subheading {
    text-align: left;
  }
}
.lp__chef-subheading--en {
  font-family: "kings-caslon-display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .lp__chef-subheading--en {
    font-size: 12px;
  }
}
.lp__chef-subheading-large {
  font-size: 1.7rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .lp__chef-subheading-large {
    font-size: 17px;
    display: inline-block;
    margin-left: 5px;
  }
}
.lp__chef-subheading-large--en {
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin: 6px 0 18px;
}
@media screen and (max-width: 767px) {
  .lp__chef-subheading-large--en {
    display: block;
    margin-left: 0;
    font-size: 20px;
    margin: 8px 0 0;
  }
}
.lp__chef-paragraph {
  font-size: 1.2rem;
  font-weight: lighter;
  line-height: 1.6666666667em;
  letter-spacing: 0.1em;
  max-width: 440px;
}
@media screen and (max-width: 767px) {
  .lp__chef-paragraph {
    font-size: 12px;
    letter-spacing: 0.04em;
    max-width: 100%;
  }
}
.lp__chef-paragraph--en {
  font-family: "kings-caslon-display", serif;
  font-size: 1.3rem;
  line-height: 1.5384615385em;
  letter-spacing: 0.04em;
  margin-top: 10px;
  max-width: 400px;
}
@media screen and (max-width: 767px) {
  .lp__chef-paragraph--en {
    font-size: 11px;
    line-height: 1.7272727273em;
  }
}
.lp__menu-paragraph {
  text-align: center;
  font-weight: lighter;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.9333333333em;
  max-width: 440px;
}
@media screen and (max-width: 767px) {
  .lp__menu-paragraph {
    text-align: left;
    font-size: 14px;
    line-height: 1.8571428571em;
    margin-bottom: 22px;
    max-width: 100%;
  }
}
.lp__menu-paragraph--en {
  font-family: "kings-caslon-display", serif;
  text-align: left;
  line-height: 1.6666666667em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .lp__menu-paragraph--en {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.4666666667em;
  }
}
.lp__chef-image-wrapper {
  width: 700px;
  margin-top: -83px;
}
@media screen and (max-width: 767px) {
  .lp__chef-image-wrapper {
    position: absolute;
    left: 0;
    width: 75vw;
    height: 82vw;
    margin-top: -6%;
  }
}
.lp__menu-image-wrapper {
  width: 700px;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .lp__menu-image-wrapper {
    position: absolute;
    width: 75vw;
    height: 75vw;
  }
}
@media screen and (max-width: 767px) {
  .lp__facilities {
    scroll-margin-top: 60px !important;
  }
}
.lp__facilities-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .lp__facilities-wrapper {
    padding: 25px 0 50px;
  }
}
.lp__facilities-text {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: lighter;
  width: 100%;
  z-index: 1;
  padding: 6px 12px;
}
@media screen and (max-width: 767px) {
  .lp__facilities-text {
    font-size: 10px;
    font-weight: 300;
    padding: 5px 10px;
  }
}
.lp__facilities-text--en {
  font-family: "kings-caslon-display", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .lp__access {
    margin-bottom: 20px;
  }
}
.lp__access-top-container {
  max-width: 1160px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 92px;
  padding: 40px 0 0 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .lp__access-top-container {
    max-width: 100%;
    padding: 0 6%;
  }
}
@media screen and (max-width: 1024px) {
  .lp__access-top-container {
    margin: 0 auto 47px;
    padding: 40px 3% 0 3%;
  }
}
@media screen and (max-width: 1200px) {
  .lp__access-top-container {
    padding: 20px 3% 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .lp__access-top-container {
    padding: 40px 6% 0 6%;
  }
}
.lp__access-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .lp__access-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.lp__access-info-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .lp__access-info-col {
    width: 100%;
  }
}
.lp__access-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .lp__access-info-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .lp__access-info-item--en {
    gap: 3px;
  }
}
.lp__access-info-heading {
  font-size: 1.4rem;
  font-weight: lighter;
  letter-spacing: 0.04em;
  line-height: 1.7142857143em;
  color: #BBBBBB;
  margin-right: 20px;
  width: 60px;
}
@media screen and (max-width: 1024px) {
  .lp__access-info-heading {
    font-size: 14px;
    letter-spacing: 0.03em;
  }
}
.lp__access-info-heading--en {
  font-family: "kings-caslon-display", serif;
  line-height: 1.8571428571em;
}
.lp__access-info-heading--en-long {
  font-family: "kings-caslon-display", serif;
  line-height: 1.8571428571em;
  width: 125px;
}
.lp__access-info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.4rem;
  font-weight: lighter;
  letter-spacing: 0.04em;
  line-height: 1.7142857143em;
}
@media screen and (max-width: 1024px) {
  .lp__access-info-text {
    font-size: 14px;
    line-height: 1.8571428571em;
  }
}
.lp__access-info-text--en {
  font-family: "kings-caslon-display", serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .lp__access-info-text--en {
    line-height: 1.5714285714em;
  }
}
.lp__access-info-text span {
  font-size: 1.4rem;
  font-weight: lighter;
  letter-spacing: 0.04em;
  line-height: 1.7142857143em;
}
.lp__access-info-link {
  color: #B48B3F;
}
.lp__access-info-link-text {
  position: relative;
  padding-right: 15px;
  text-decoration: underline;
}
.lp__access-info-link-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 12px;
  background: url("./img/icons/loc-icon.svg") no-repeat center/contain;
}
.lp__access-info-link-text:hover {
  text-decoration: none;
}
.lp__access-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lp__access-map iframe {
  width: 100%;
  height: 550px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .lp__access-map iframe {
    height: 300px;
    padding: 0;
  }
}
.lp__access-rights {
  display: block;
  width: 100%;
  height: 58px;
  padding: 18px 0;
  font-family: "kings-caslon-display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__access-rights {
    font-size: 11px;
    height: 85px;
    padding: 16px 0;
  }
}

.white {
  color: #fff;
}

.white-bg {
  background: #fff;
}

.black {
  color: #000;
}

.black-bg {
  background: #000;
}

.primary {
  color: #2E374B;
}

.primary-bg {
  background: #2E374B;
}

.overflow {
  overflow: hidden;
}

.image-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

.tablet {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tablet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tablet-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tablet-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.lp__facilities .splide .splide__track .splide__slide {
  height: 334.33px !important;
  width: 500px !important;
  cursor: -webkit-grab;
  cursor: grab;
}
@media screen and (max-width: 767px) {
  .lp__facilities .splide .splide__track .splide__slide {
    width: 342px !important;
    height: 228.54px !important;
  }
}
.lp__facilities .splide .splide__track .splide__slide img {
  border-right: 1px solid #fff;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
/* override default aos settings */
[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
}

/*# sourceMappingURL=/main.css.map */