@charset "utf-8";
/* CSS Document */

/* ハンバーガーメニューが開いているときの背景スクロール禁止 */
#wrapper.open {
  overflow-y: hidden;
}

body.scroll-lock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

/* モーダルが開いているときの背景スクロール禁止 */
body.modal-open {
  overflow: hidden;
}

/* ロゴ */
#logo {
  position: fixed;
  top: 12px;
  left: 3%;
  width: 30%;
  max-width: 125px;
}

/* ハンバーガーメニューボタン */
.menu-btn {
  position: fixed;
  top: 5px;
  right: 1.5%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s ease-in-out;
}

.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 35px;
  background: #c3c3c3;
  transition: all 0.3s ease-in-out;
}

.menu-btn-line::before,
.menu-btn-line::after {
  content: "";
  height: 1px;
  width: 100%;
  background: #c3c3c3;
  position: absolute;
  left: 0;
  transition: inherit;
}

.menu-btn-line::before {
  top: -10px;
}

.menu-btn-line::after {
  top: 10px;
}

/* ハンバーガーメニュー開閉時のスタイル */
.open .menu-navi {
  display: block;
  opacity: 1;
  transition: all 0.5s;
}

.open .menu-btn {
  border-color: #fff;
}

.open .menu-btn-line {
  background-color: transparent;
}

.open .menu-btn-line::before,
.open .menu-btn-line::after {
  top: 0;
  background: #fff;
}

.open .menu-btn-line::before {
  transform: rotate(45deg);
}

.open .menu-btn-line::after {
  transform: rotate(-45deg);
}

/* 開いたメニュー */
.menu-navi {
  position: fixed;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.9);
  transition: all 0.5s;
  display: none;
  opacity: 0;
  z-index: 100;
  color: #fff;
  overflow-y: auto;
}

.menu-navi .inner {
  width: 90%;
  max-width: 1200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-navi .inner .logo {
  border-bottom: 1px solid #fff;
  padding-bottom: 3em;
  margin-bottom: 3em;
  font-family: var(--En-san);
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 2px;
}

.menu-navi .inner .logo img {
  width: 30%;
  max-width: 125px;
}

.menu-navi .inner .text-navi {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}

.menu-navi ul:first-child {
  width: 12%;
}

.menu-navi ul:nth-of-type(2) {
  width: 88%;
}

.menu-navi li {
  font-family: var(--En-san);
  letter-spacing: 0.08rem;
  margin-bottom: 20px;
}

.menu-navi li a {
  color: #fff;
  transition: all 0.2s;
}

.menu-navi li.jp {
  font-size: 90%;
}

.menu-navi ul:nth-of-type(2) li {
  width: 24%;
}

.menu-navi ul:nth-of-type(2) li:nth-of-type(2),
.menu-navi ul:nth-of-type(2) li:nth-of-type(6),
.menu-navi ul:nth-of-type(2) li:nth-of-type(10) {
  width: 26%;
}

.menu-navi ul:nth-of-type(2)::after {
  content: "";
  display: block;
  width: 24%;
}

.menu-navi .inner .btn {
  width: 18%;
  font-family: var(--En-san);
  letter-spacing: 0.15rem;
}

.menu-navi .inner .btn p a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 10px;
  background: var(--gray);
  color: #fff;
}

.menu-navi .inner .btn p a::before {
  content: "";
  height: 18px;
  width: 26px;
  display: inline-block;
  background: url("../img/comm/cart_w.png") no-repeat;
  background-size: contain;
  background-position: 5% 50%;
  margin: 0 3% 4px 0;
}

.menu-navi .inner .btn ol {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.menu-navi .inner .btn ol li {
  font-size: 2.4rem;
  margin: 0 8%;
}


/* メディアクエリ (1080px以下) */
@media only screen and (max-width: 860px) {
  .menu-navi .inner .text-navi {
    width: 100%;
    justify-content: space-between;
  }
  .menu-navi .inner .btn {
    width: 56%;
    max-width: 260px;
    margin-top: 30px;
  }
  .menu-navi .inner .logo {
    padding-bottom: 3em;
    margin-bottom: 3em;
  }
}

/* メディアクエリ (640px以下) */
@media only screen and (max-width: 640px) {
  .menu-navi ul:first-child,
  .menu-navi ul:nth-of-type(2) {
    width: 100%;
  }
  .menu-navi ul:nth-of-type(2) li,
  .menu-navi ul:nth-of-type(2) li:nth-of-type(2),
  .menu-navi ul:nth-of-type(2) li:nth-of-type(6),
  .menu-navi ul:nth-of-type(2) li:nth-of-type(10) {
    width: 46.5%;
  }
}


















/*----------------------------------------------------------
フッター
---------------------------------------------------------------------*/
footer {
  border-top: 1px solid #e5e5e5;
  padding-top: 4em;
  margin-top: 8em;
}

footer .menu-navi {
  position: static;
  justify-content: center;
  background: none;
  visibility: inherit;
  opacity: 1;
  z-index: 100;
  color: var(--base-color);
  display: block;
  font-size: clamp(1.2rem, 1.1rem + 0.3vw, 1.3rem);
}

footer .menu-navi .inner {
  position: static;
  transform: none;
  margin: auto;
  max-width: 1000px;
}

footer .menu-navi .inner .logo {
  padding-bottom: 0;
  border: none;
}

footer .menu-navi li a {
  color: var(--base-color);
}

footer .menu-navi .inner .btn p a {
  border: 1px solid #b4b4b4;
  background: none;
  color: var(--base-color);
}

footer .menu-navi .inner .btn p a::before {
  content: "";
  background: url("../img/comm/cart.png") no-repeat;
  background-size: contain;
}

footer #copyright {
  text-align: center;
  margin-top: 10%;
  letter-spacing: 0.05rem;
  font-size: clamp(1.15rem, 0.8rem + 0.39vw, 1.2rem);
  font-family: var(--En-san);
}

footer #copyright p {
  background: #F7F7F7;
  padding: 15px;
  margin-top: 15px;
  letter-spacing: normal;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: clamp(1rem, 0.8rem + 0.39vw, 1.2rem);
  color: var(--gray);
}

/* メディアクエリ (540px以下) */
@media only screen and (max-width: 540px) {
  footer .menu-navi .inner .logo {
    padding-bottom: 1.2em;
    margin-bottom: 1.2em;
  }

  footer .menu-navi .inner .btn {
    width: 100%;
    max-width: none;
  }
    footer #copyright p {
        text-align: left;
    }


}