@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Hina+Mincho&family=Lexend+Deca:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&family=Righteous&display=swap");

/* ======================================================================
/* root
====================================================================== */
:root {
  --color-black: #231815;
  --color-white: #ffffff;
  --color-gray: #dddddd;
  --color-theme: #00a9c9;
}

/* ======================================================================
/* body
====================================================================== */

body {
  font: 400 15px / 1.7 "Hiragino Kaku Gothic ProN", "Hiragino Sans";
  color: var(--color-dark-navy);
  text-align: justify;
  letter-spacing: 0.03em;
  background: var(--color-light-gray);
}

@media screen and (width <=768px) {
  body {
    font-size: 14px;
  }
}

/* ======================================================================
/* #container
====================================================================== */

#container {
  inline-size: 500px;
  block-size: auto;
  margin-inline: auto;
  background: #fff;
  box-shadow: 0 0 30px 0px rgb(0 0 0 / 30%);
  position: relative;
  z-index: 2;
}

@media screen and (width <=768px) {
  #container {
    inline-size: 100%;
  }
}

/* ======================================================================
/* .inner
====================================================================== */
.inner {
  max-inline-size: 100%;
  block-size: auto;
  margin: 0 auto;
  padding: 80px 40px;
}

@media screen and (width <=768px) {
  .inner {
    inline-size: 100%;
    block-size: auto;
    padding: 40px 20px;
  }
}

/* ======================================================================
/* worksInner
====================================================================== */
.worksInner {
  max-inline-size: 100%;
  block-size: auto;
  margin: 0 auto;
  padding: 80px 40px;
  background: var(--color-gray);
}

@media screen and (width <=768px) {
  .worksInner {
    inline-size: 100%;
    block-size: auto;
    padding: 40px 20px;
  }
}

/* ======================================================================
/* worksInner
====================================================================== */
.zoomList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;

  & li {
    position: relative;

    &::after {
      content: "";
      position: absolute;
      bottom: 5px;
      right: 5px;
      inline-size: 20px;
      block-size: 20px;
      background: url("../img/common/zomm.svg") center / cover no-repeat;
    }
  }
}

/* ======================================================================
/* .storeWrap
====================================================================== */

.storeWrap {
  background: #eceeee;
  padding-block-end: 2.4em;

  & h2 {
    margin-block-end: 5%;
  }

  & h3 {
    margin-block: 5%;
    font-size: 1.2em;
    text-align: center;
    background: #fff;
    margin-inline: 18px;
    padding-block: 0.8em;
    line-height: 1;
  }

  & > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: start;
    gap: 18px;
    margin-inline: 18px;

    & li {
      color: var(--color-black);
      text-align: center;
      margin-block-end: 18px;
      background: rgba(255, 255, 255, 0.8);

      & a {
        text-decoration: none;
        color: var(--color-black);
      }

      & img {
        inline-size: 100%;
        aspect-ratio: 3/2;
        object-fit: cover;
      }

      & .ttl {
        font-size: 1.1em;
        font-weight: 700;
        line-height: 1.4;
        margin-block-start: 0.8em;
        margin-block-end: 0.4em;
      }

      & .address {
        font-size: 0.8em;
        font-weight: 400;
      }

      & .tel {
        font-size: 1.4em;
        font-weight: 400;
        font-family: "Bebas Neue", sans-serif;
      }

      & .link {
        & a {
          display: block;
          inline-size: 100%;
          block-size: auto;
          margin-inline: auto;
          margin-block: 0.4em 0;
          padding-inline: 0;
          padding-block: 0.6em 0.8em;
          color: #fff;
          font-size: 1em;
          font-weight: 500;
          line-height: 1;
          text-align: center;

          &.detail {
            background: #adb4b4;
          }

          &.reserve {
            background: #00a9c8;
          }
        }
      }
    }
  }
}

@media screen and (width <=768px) {
  .storeWrap {
    & h3 {
      font-size: 4.3vw;
      margin-inline: 5vw;
    }

    & > ul {
      gap: 5vw;
      margin-inline: 5vw;

      & li {
        margin-block-end: 5vw;

        & .ttl {
          font-size: 3.8vw;
        }

        & .address {
          font-size: 2.8vw;
        }

        & .tel {
          font-size: 4.6vw;
        }

        & .link {
          & a {
            font-size: 3vw;
          }
        }
      }
    }
  }
}

/* ======================================================================
/* footer
====================================================================== */
footer {
  display: grid;
  place-items: center;
  padding-block: 30px 60px;
  background: var(--color-navy);

  & a {
    display: block;
    inline-size: 35%;

    & img {
    }
  }
}

@media screen and (width <=768px) {
  footer {
    padding-block: 6vw 12vw;
  }
}

/* ======================================================================
   #fadeIn
====================================================================== */

.fadeIn {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.3s;
  transition-timing-function: ease-in-out;

  &.is-show {
    opacity: 1;
  }
}

/* ======================================================================
   .fixCTA .btnCTA
====================================================================== */

.fixCTA {
  .btnCTA {
    position: -webkit-sticky;
    position: sticky;
    inset-block-end: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: auto;

    & a {
      display: block;
      inline-size: 100%;
      block-size: auto;
      padding-block: 0.8em;
      text-decoration: none;
      text-align: center;
      color: #fff;
      background: var(--color-theme);
      font-size: 1.4rem;
      line-height: 1.5;
      font-weight: 700;
      position: relative;

      &::after {
        display: block;
        inline-size: fit-content;
        position: absolute;
        inset-block-start: 33%;
        inset-inline-end: 5%;
        content: ">";
        transform: scale(1, 2);
        font-weight: 400;
      }

      & small {
        display: block;
        font-size: 1rem;
      }
    }
  }
}

@media screen and (width <=768px) {
  .fixCTA {
    .btnCTA {
      & a {
        font-size: 4.8vw;

        & small {
          font-size: 3.8vw;
        }
      }
    }
  }
}

/* ======================================================================
/* MJ�T�C�g����̃R�s�[
====================================================================== */

/*----------------------------------------
	�J�����g�\���i�r�Q�[�V����
----------------------------------------*/
.target_nav {
  display: none;
  position: fixed;
  z-index: 100;
  top: 50%;
  right: 50%;
  transform: translate(calc(-50% + 300px), -50%);
  z-index: 49;
}
.header__link {
  display: block;
  width: 6px;
  height: 32px;
  background-color: transparent;
  border: 1px solid #d0c1c1;
  margin-top: 20px;
}
.header__link.is-active {
  /*background-color: #c8c8c8;*/
  background-color: #626262;
}
li.header__item {
  position: relative;
}
/*���̕�������*/
.t_nav_tex {
  display: block;
  width: 28px;
  text-align: center;
  position: absolute;
  top: 50%;
  color: #d0c1c1;
  transform: translate(15%, -50%);
}

@media screen and (max-width: 768px) {
  .target_nav {
    right: 5%;
    transform: translate(0, -50%);
  }
  .header__link {
    width: 4px;
    height: 24px;
    margin-top: 15px;
    border: 1px solid #c8c8c8;
  }
  .header__link.is-active {
    background-color: #c8c8c8;
  }

  /*���̕�������*/
  .t_nav_tex {
    width: 20px;
  }
} /*END*/

@media screen and (max-width: 599px) {
  .target_nav {
    display: none !important;
  }
} /*END*/

/* =====================================================
/* header
===================================================== */
header {
  position: relative;
}

/* =====================================================
/* drawer
===================================================== */
.drawer {
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  right: 0;
  inline-size: 100%;
  block-size: 100vh;
  display: flex;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 50;

  & ul {
    text-align: center;
    padding-top: 100px;

    & li {
      position: relative;
      transform: translateX(-150px);
      transition: transform 0.5s ease;

      & a {
        display: inline-block;
        font-size: 1.4rem;
        color: var(--color-white);
        text-decoration: none;
        padding: 15px;

        &:hover {
          animation: drawer 1.4s;
          color: #e1f2fa;
        }
      }
    }
  }
}

.drawer ul li:nth-child(2) {
  transition-delay: 0.15s;
}
.drawer ul li:nth-child(3) {
  transition-delay: 0.25s;
}
.drawer ul li:nth-child(4) {
  transition-delay: 0.35s;
}
.drawer ul li:nth-child(5) {
  transition-delay: 0.45s;
}
.drawer ul li:nth-child(6) {
  transition-delay: 0.55s;
}
.drawer ul li:nth-child(7) {
  transition-delay: 0.65s;
}
.drawer ul li:nth-child(8) {
  transition-delay: 0.4s;
}
.drawer ul li:nth-child(9) {
  transition-delay: 0.45s;
}
.drawer ul li:nth-child(10) {
  transition-delay: 0.5s;
}
.drawer ul li:nth-child(11) {
  transition-delay: 0.55s;
}
.drawer ul li:nth-child(12) {
  transition-delay: 0.6s;
}

@keyframes drawer {
  0% {
    filter: none;
  }
  30% {
    filter: blur(0.8px);
  }
  100% {
    filter: none;
  }
}

.open .drawer {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.open .drawer ul li {
  transform: translateX(0);
}
.head_lp .drawer_close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.head_lp .drawer_close span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  background: #fff;
  height: 2px;
  width: 100%;
  transition: all 0.4s;
}
.head_lp .drawer_close span:nth-child(1) {
  transform: rotate(45deg);
}
.head_lp .drawer_close span:nth-child(2) {
  transform: rotate(-45deg);
}
.head_lp .drawer_close:hover span {
  background: #bd0d23;
}

@media screen and (max-width: 768px) {
  .head_lp .drawer_close {
    width: 30px;
    height: 30px;
  }
  .drawer ul li a {
    font-size: 1rem;
  }
} /*END*/

.btn_menu_works {
  position: fixed;
  width: 46px;
  height: 41px;
  right: calc(50% - 250px);
  top: 0px;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 51;
  background: #000;
  /*display: none;*/
}
.btn_menu_works span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.4s;
}
.btn_menu_works span {
  width: 60%;
  left: 20%;
}
.btn_menu_works span:nth-child(1) {
  top: 10px;
}
.btn_menu_works span:nth-child(2) {
  top: 20px;
}
.btn_menu_works span:nth-child(3) {
  top: 30px;
}
.open .btn_menu_works span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.open .btn_menu_works span:nth-child(2) {
  opacity: 0;
}
.open .btn_menu_works span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}

@media screen and (max-width: 768px) {
  .btn_menu_works {
    top: 0px;
  }
  .btn_menu_works span:nth-child(2) {
    top: 11px;
  }
  .open .btn_menu_works span:nth-child(1) {
    top: 20px;
  }
  .open .btn_menu_works span:nth-child(3) {
    top: 20px;
  }
  .btn_menu_works {
    width: 46px;
    height: 41px;
    right: 0px;
  }
  .btn_menu_works span {
    width: 70%;
    left: 15%;
  }
  .btn_menu_works span:nth-child(1) {
    top: 9px;
  }
  .btn_menu_works span:nth-child(2) {
    top: 20px;
  }
  .btn_menu_works span:nth-child(3) {
    top: 31px;
  }
} /*END*/

/* =====================================================
/* footer
===================================================== */
footer {
  display: grid;
  place-items: center;
  padding: 15px;

  & small {
    margin-block-start: 0;
  }
}
