@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 22px 20px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 80;
}
.header.hidden {
  -webkit-transform: translate(-50%, -100px);
          transform: translate(-50%, -100px); /* ヘッダの高さだけ上に移動 */
}
.header > .container > .box-logo {
  position: absolute;
  top: 22px;
  left: 37px;
}
@media screen and (max-width: 640px) {
  .header > .container > .box-logo {
    top: 20px;
    left: 20px;
  }
}
.header > .container > .box-logo > .link > .logo {
  width: 68px;
}
@media screen and (max-width: 480px) {
  .header > .container > .box-logo > .link > .logo {
    width: 56px;
  }
}
.header > .container > .box-logo > .link > .logo.black {
  display: none;
}
.header > .container > .box-reservation {
  position: absolute;
  top: 22px;
  right: 114px;
}
@media screen and (max-width: 640px) {
  .header > .container > .box-reservation {
    top: 19px;
    right: 90px;
  }
}
.header > .container > .box-reservation > .link {
  position: relative;
  display: inline-block;
  border: 1px solid #ffffff;
  border-radius: 50px;
  color: white;
  letter-spacing: 0.1em;
  padding: 10px 20px 12px 37px;
}
.header > .container > .box-reservation > .link:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 20px;
  background-color: #ffffff;
  width: 1px;
  height: 15px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.header > .container > .hamburger-menu {
  position: absolute;
  top: 38px;
  right: 32px;
  width: 50px;
  height: 12px;
  cursor: pointer;
  z-index: 1100;
}
@media screen and (max-width: 640px) {
  .header > .container > .hamburger-menu {
    top: 30px;
    right: 20px;
  }
}
.header > .container > .hamburger-menu > .line {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  height: 1px;
}
.header > .container > .hamburger-menu > .line:first-child {
  width: 100%;
  top: 0;
}
.header > .container > .hamburger-menu > .line:last-child {
  width: 80%;
  bottom: 0;
}
@media screen and (max-width: 480px) {
  .header > .container > .hamburger-menu > .line {
    height: 1px;
  }
}
.header > .container > .hamburger-menu > .line.active:first-child {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 8px;
}
@media screen and (max-width: 480px) {
  .header > .container > .hamburger-menu > .line.active:first-child {
    top: 6px;
  }
}
.header > .container > .hamburger-menu > .line.active:last-child {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  width: 100%;
  bottom: 5px;
}
.header > .container > .menu-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  height: 100vh;
  padding: 88px;
  z-index: 1000;
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp {
    padding: 50px 20px;
  }
}
.header > .container > .menu-sp > .box-menu-content {
  position: absolute;
  width: 80%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content {
    width: 90%;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu {
  padding-bottom: 64px;
  margin-bottom: 64px;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu {
    padding-bottom: 28px;
    margin-bottom: 38px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu {
  min-width: 290px;
  margin-bottom: 40px;
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu:nth-child(odd) {
  margin-right: 40px;
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu {
    margin-bottom: 20px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link {
  color: #b3a35c;
  font-size: 16px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link {
    font-size: 13px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link > .english-cormorant {
  display: block;
  color: #ffffff;
  font-size: 47px;
  margin-bottom: 8px;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link > .english-cormorant {
    font-size: 37px;
  }
}
.header > .container > .menu-sp.active {
  display: block;
}
.header.scroll-nav > .container > .box-logo > .link > .image.black {
  display: block;
}
.header.scroll-nav > .container > .box-logo > .link > .image.white {
  display: none;
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  position: relative;
  overflow: hidden;
}
.footer > .container {
  max-width: 100%;
}
@media screen and (max-width: 820px) {
  .footer > .container {
    padding: 0 20px 170px;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container {
    display: block;
  }
}
.footer > .container > .box-logo {
  margin-right: 66px;
  padding: 52px 0 23px 20px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-logo {
    margin-right: 5%;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-logo {
    margin-right: 0;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-logo {
    padding: 52px 20px 23px 20px;
  }
}
.footer > .container > .box-logo > .link {
  text-align: center;
}
.footer > .container > .box-logo > .link > .logo {
  width: 63px;
}
.footer > .container > .box-menu {
  padding: 52px 0 23px;
}
@media screen and (max-width: 820px) {
  .footer > .container > .box-menu {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-menu {
    padding: 31px 0 23px;
  }
}
.footer > .container > .box-menu > .list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #585858;
  padding-bottom: 63px;
  margin-bottom: 76px;
}
@media screen and (max-width: 820px) {
  .footer > .container > .box-menu > .list-menu {
    padding-bottom: 43px;
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-menu > .list-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 33px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-menu {
    display: block;
    text-align: center;
  }
}
.footer > .container > .box-menu > .list-menu > .menu {
  margin-right: 26px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-menu > .list-menu > .menu {
    margin-right: 30px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-menu > .menu {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.footer > .container > .box-menu > .list-menu > .menu:last-child {
  margin-right: 0;
}
.footer > .container > .box-menu > .list-menu > .menu > .link {
  color: #b3a35c;
  font-size: 12px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-menu > .list-menu > .menu > .link {
    font-size: 11px;
  }
}
.footer > .container > .box-menu > .list-menu > .menu > .link > .english-cormorant {
  display: block;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-menu > .list-menu > .menu > .link > .english-cormorant {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-menu > .menu > .link > .english-cormorant {
    margin-bottom: 0;
  }
}
.footer > .container > .box-menu > .box-credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer > .container > .box-menu > .box-credit > .instagram > .link {
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-menu > .box-credit > .instagram > .link {
    font-size: 12px;
  }
}
.footer > .container > .box-menu > .box-credit > .credit {
  color: #b1b1b1;
  font-size: 12px;
}
.footer > .container > .box-reservation {
  position: absolute;
  right: -260px;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  background-color: #b3a35c;
  width: 600px;
  height: 300px;
  padding: 96px 24px 18px 98px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-reservation {
    width: 550px;
    padding: 97px 24px 18px 88px;
  }
}
@media screen and (max-width: 820px) {
  .footer > .container > .box-reservation {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    bottom: -130px;
    padding: 32px 24px 18px 24px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-reservation {
    padding: 25px 24px 18px 24px;
  }
}
.footer > .container > .box-reservation > .english-cormorant {
  font-size: 30px;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-reservation > .english-cormorant {
    margin-bottom: 7px;
  }
}
.footer > .container > .box-reservation > .japanese {
  font-size: 12px;
  letter-spacing: 0.07em;
  margin-bottom: 31px;
}
@media screen and (max-width: 820px) {
  .footer > .container > .box-reservation > .japanese {
    margin-bottom: 16px;
  }
}
.footer > .container > .box-reservation > .message {
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .footer > .container > .box-reservation > .box-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 30px;
  }
}
.footer > .container > .box-reservation > .box-button > .button {
  margin-left: 123px;
  padding: 5px 0;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-reservation > .box-button > .button {
    margin-left: 93px;
  }
}
@media screen and (max-width: 820px) {
  .footer > .container > .box-reservation > .box-button > .button {
    margin: 0 20px;
  }
}
.footer > .container > .box-reservation > .box-button > .button > .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer > .container > .box-reservation > .box-button > .button > .link > .label {
  color: white;
  font-size: 13px;
  width: 62px;
}
.footer > .container > .box-reservation > .box-button > .button > .link > .arrow {
  width: 33px;
}

body {
  font-family: "Shippori Mincho", eb-garamond, serif;
  background-color: #000000;
  background-image: url(../../assets/imgs/background.png);
  background-attachment: fixed;
  top: 0;
  color: #ffffff;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.english {
  font-family: eb-garamond, serif;
  font-weight: 400;
}

.english-cormorant {
  font-family: cormorant-garamond, serif;
  font-weight: 400;
}

.english-minion {
  font-family: cormorant-garamond, serif;
  font-weight: 400;
}

img {
  width: 100%;
}

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

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

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

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

section {
  position: relative;
  width: 100%;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1186px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
  transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
}

.section-title {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  padding-top: 22px;
}
.section-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #c7000b;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.deco-line:before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 1px;
  height: 15px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}