@charset "utf-8";
/* Noto Serif JP */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap'); */
/* Zen Old Mincho */
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");

html {
  font-size: 10px;
}

body {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: normal;
  color: #161616;
  line-height: 1.75;
  letter-spacing: 0.05em;
  /* 画面をopacity: 0→1と3秒かけて表示させる */
  animation: Fadein 3s both;
}

a:link {
  /* color: #161616; */
  text-decoration: none;
}

a:visited {
  color: #722620;
}

a:hover {
  color: #009ee6;
  text-decoration: underline;
}

a:active {
  color: #e64800;
}

/* アニメーション */
@keyframes Fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

h2 {
  line-height: 1;
  margin-bottom: clamp(15px, 5vw, 70px);
}

.text-large {
  font-size: clamp(2.2rem, 2.8vw, 4rem);
}

.text-middle {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
}

.text-small {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}

/* フレックスボックス */
.model-flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.model-btn {
  display: block;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  font-weight: 400;
  width: fit-content;
  text-align: center;
  padding: 0.5em 3em;
  border-radius: 0.3em;
  white-space: nowrap;
  cursor: pointer;

  &.type-blood-red {
    color: #fff;
    background-color: #722620;
  }

  &.type-orange {
    color: #fff;
    background-color: #de8a0d;
  }
}

.section-bottom {
  margin-bottom: 160px;
  text-align: center;
}

.model-inner {
  max-width: clamp(800px, 75vw, 1100px);
  margin-left: auto;
  margin-right: auto;
  /* left、right:30pxはmargin:auto挙動のスキマ最小値として必要 */
  padding: 60px 30px;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.main-header {
  padding: 5px 60px 5px 10.5vw;
  margin: 10px 0;

  > div {
    height: 60px;
    gap: 4em;

    h1 {
      /* imgを親要素divの高さに合わせるため */
      height: 100%;

      img {
        width: auto;
        height: 100%;
      }
    }
  }
}

.gnav {
  /* ご予約ボタンの高さをロゴに合わせるため */
  height: 100%;

  ul {
    gap: clamp(1.5em, 4vw, 4em);
    font-weight: 400;
    /* ご予約ボタンの高さをロゴに合わせるため */
    height: 100%;
  }

  .home-menu {
    display: none;
  }

  li {
    display: flex;
    font-size: 1.8rem;
    white-space: nowrap;
    height: 100%;
    align-items: center;
  }

  .model-btn {
    /* .model-btnの一部解除 */
    padding: 0;
    border-radius: 3px;

    a {
      color: #fff;
      padding: 0 clamp(2em, 6vw, 5em);
    }
  }
}

@media (max-width: 1050px) {
  .main-header {
    > div {
      flex-direction: column;
      height: auto;
      gap: 0em;

      h1 {
        height: 60px;
      }
    }
  }

  .gnav li {
    height: 30px;
  }

  .sub {
    .main-header {
      padding-left: 5vw;
      padding-right: 5vw;
    }
  }
}

.hmb-icon {
  display: none;
  width: 40px;
  height: 40px;
  padding: 6px;
  cursor: pointer;
  /* スライド時の固定は別で設けるため、fixedではなくabsolute */
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;

  img {
    width: 100%;
    height: auto;
    min-width: 28px;
  }
}

@media (max-width: 600px) {
  /* ロゴを左寄せにする */
  .main-header > div {
    align-items: flex-start;
  }

  .hmb-icon {
    display: block;
    z-index: 2;
  }

  .gnav {
    display: none;
  }

  .sub .home-menu {
    display: block;
  }

  .gnav.open {
    display: unset;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background-color: #f3f1e7;
    padding: 80px 30px 0 30px;
    font-size: 2rem;
    overflow-y: auto;

    ul {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      /* ハンバーガーメニュー内の各項目高さを指定 */
      height: 60px;
    }

    li {
      border-bottom: 1px solid #d1d1d1;
      text-align: center;
      justify-content: center;
      /* max-width:1050pxのheightをリセット */
      height: auto;
    }

    a {
      display: block;
      padding: 20px 0;
    }

    .model-btn {
      border: 0;
      margin: 20px auto;

      a {
        padding: 0.5rem 3rem;
      }
    }
  }
}

.main-footer {
  background-color: #9b6c67;
  color: #e6e6e6;

  .footer-contents {
    justify-content: space-between;
    gap: 3em;
    /* ↓model-flexのalign-itemsを解除 */
    align-items: flex-start;
  }

  > div {
    margin-bottom: 0;

    address,
    ul {
      display: flex;
      flex-direction: column;
      justify-items: center;
      align-items: stretch;
    }

    ul {
      li {
        width: 100%;
        line-height: 1.2;
        margin: 0 0 1.5em;
      }
    }
  }

  p {
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .main-footer {
    > div {
      width: 270px;
      padding-left: 0;
      padding-right: 0;
      margin-left: auto;
      margin-right: auto;

      .footer-contents {
        flex-direction: column;
      }
    }
  }
}

.sub {
  .sub-top,
  .pass {
    max-width: clamp(800px, 88vw, calc(1100px + 10vw));
    padding: 0 5vw clamp(80px, 6vw, 100px);
  }

  .sub-topmv {
    position: relative;

    img {
      width: 100%;
      height: 40vh;
      object-fit: cover;
    }

    .sub-top-tittle {
      position: absolute;
      bottom: -57px;
      left: 0;
      display: flex;
      flex-direction: column;
      line-height: 1.25;

      span:first-child {
        font-size: 60px;
      }

      span:last-child {
        font-size: 24px;
      }
    }
  }

  .pass {
    padding-top: 20px;
    padding-bottom: 0;

    ol {
      justify-content: flex-start;

      li:last-child {
        color: grey;
      }
    }
  }
}
