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

.navArea {
  display: none;
  font-family: "Kiwi Maru", serif, "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  background-color: #f0f0f0;
  overflow: hidden;
}

.nav h1 {
  display: block;
  background-image: url("../images/logo.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 120px;
  height: 46px;
  text-indent: -9999px;
}

.nav {
  position: fixed;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  top: 0px;
  left: 0;
  width: 100%;
  background: rgba(200, 200, 200, 0.8);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* 初期：非表示 */
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  /* ふわっと表示 */
  transition: 0.5s ease-in-out;
  font-family: "Kiwi Maru", serif, "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  z-index: 1000;
}

.nav .navInner {
  position: absolute;
  right: -100%;
  list-style: none;
  font-size: 1em;
  color: #2E2E2E;
  max-width: 375px;
  height: 100%;
  background-color: #f0f0f0;
  text-align: left;
  color: #000;
  display: flex;
  flex-direction: column;
  padding: 52px 16px;
  transition: 0.5s ease-in-out;
  overflow: hidden;
}

.nav .navInner a.link {
	position: relative;
	padding-left: 18px;
	transition: .1s all ease-in;
	font-size: 1.1em;
  color: #000;
  margin: 6px 0;
}

.nav .navInner a.link:hover {
	opacity: 0.7;
}

.nav .navInner a.link::after {
	content: "＞";
	position: absolute;
	left: 0;
	top: 0;
	width: 1em;
	height: 1em;
	transition: .1s all ease-in;
}

.nav .navInner a.link:hover::after {
	content: "＞";
	position: absolute;
	left: 4px;
	transition: .1s all ease-in;
}

.nav .navInner .sns {
	display: flex;
	gap: 8px;
  margin: 16px 0;
}

.nav .navInner .sns a {
	height: 32px;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
}

.nav .navInner .sns a.insta {
	background-image: url(../images/icon-insta.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 32px;
}

.nav .navInner .sns a.insta:hover {
	opacity: 0.7;
}

.nav .navInner .sns a.twitter {
	background-image: url(../images/icon-x.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 32px;
}
.nav .navInner .sns a.coconala {
	background-image: url(../images/coconala@2x.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 32px;
}

.nav .navInner .sns a.note {
	background-image: url(../images/note.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 64px;
}

li.product {
  padding: 0;
}

.nav li:not(:last-child) {
  margin-bottom: 0px;
  border-bottom: #666 solid 1px;
}

.nav li.jp_en {
  background-color: rgba(35, 35, 35, 0.77) !important;
}

.nav a {
  color: #ffffff;
  letter-spacing: 1px;
}

button#productBtn {
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: #2E2E2E;
  width: 100%;
  padding: 15px;
  color: #fff;
  font-size: 1.2em;
  font-family: 'Teko', sans-serif;
  border: none;
  position: relative;
}

.nav .product ul li {
  border-bottom: none;
}

ul li.product {
  position: relative;
}

button#productBtn::after {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  content: "＋";
  font-size: 36px;
  font-weight: bold;
  line-height: 36px;
  transition: all .3s ease-out;
}

button#productBtn.open::after {
  transform: rotate(-45deg);
  transition: all .3s ease-out;
}

.product ul>li {
  background-color: #444;
  text-align: center;
  width: 100%;
  height: 0px;
  /* 閉じている状態 */
  border-bottom: none;
  padding: 0 !important;
  padding-bottom: 0;
  /* 閉じるアニメーション */
  transition:
    all .3s ease-out;
}

.nav .product ul.is-open li {
  border-bottom: 1px solid #555;
}

.product ul.is-open>li {
  /* 開いている状態 */
  height: auto;
  height: 1.5em;
  padding-top: 13px;
  padding-bottom: 13px;
  /* 開くアニメーション */
  transition:
    all .3s ease-out;
}

.product ul>li>a {
  /* 閉じている状態 */
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  /* 閉じるアニメーション */
  transition:
    all .3s ease-out;
}

.product ul.is-open>li>a {
  /* 開いている状態 */
  line-height: 1.5;
  opacity: 1;
  visibility: visible;
  /* 開くアニメーション */
  transition:
    all .3s ease-out;
}

/* ナビゲーションボタン（開く） */
#navbtn {
  position: fixed;
  top: 20px;
  right: 14px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 2000;
}

#navbtn::before,
#navbtn::after {
  content: '';
  display: block;
  height: 2px;
  background-color: #000;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
}

#navbtn::before {
  transform: translateY(-10px);
  box-shadow: 0 11px #000;
}

/* ナビゲーションボタン（閉じる） */
.open #navbtn {
  z-index: 1100;
}

.open #navbtn::before {
  transform: rotate(-45deg) translate(-1px, 3px);
  ;
  box-shadow: none;
}

.open #navbtn::after {
  transform: rotate(45deg) translate(1px, -1px);
  ;
  box-shadow: none;
}

/* ナビゲーションメニュー 開いた時*/
.open .nav {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
  display: flex;
  right: 0;
}
.open .nav .navInner {
  right: 0;
}
@media screen and (max-width : 1023px) {

  /* PCではボタン非表示 */
  .kv nav {
    display: none;
  }

  .navArea {
    display: block;
  }

  #navbtn {
    display: block;
  }

  /* ヘッダーは横並び */
  .headerSP {}

  /* メニューを右に寄せる */
  .nav {
    /* 右寄せ */
    margin-left: auto;
  }
}