@charset "UTF-8";
/* CSS Document */
/*ヘッダー＆フッター*/
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
html body.hidden {
  overflow: hidden;
}

li {
  list-style: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  position: fixed;
  height: 120px;
  width: 100%;
  /* background-color: #fff; */
  z-index: 1000;
  /* border-bottom: 1px solid #eee; */
  /* display: none; */
}

.header__inner {
  position: relative;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === ロゴ（中央） === */
.header__logo {
  position: absolute;
  width: 100px;
  height: auto;
  left: 2%;
	display: none;
}


/* === ハンバーガーボタン === */
.c-hamburger-menu {
  position: absolute;
  width: 30px;
  height: 20px;
  top: 48px;
  right: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.c-hamburger-menu span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #BDBDB7;
  transition: all 0.3s ease;
}


.c-hamburger-menu.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  opacity: 1;
}
.c-hamburger-menu.is-active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger-menu.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  opacity: 1;
}

.c-hamburger-menu.is-active {
  width: 30px;
  height: 20px;
  top: 48px;
  right: 40px;
  cursor: pointer;
  border: none;
}

.p-drawer-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 50%;
  height: 100vh;
  background-color: #fff;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  transition: right 0.4s ease-out;
  z-index: 1000;
  padding-top: 6%;
  box-sizing: border-box;
}

.p-drawer-nav.is-open {
  right: 0;
}

body.is-menu-open {
  overflow: hidden;
}

.p-drawer-nav__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  height: 70px;
  box-sizing: border-box;
  z-index: 100;
}

.p-drawer-nav__header-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.p-drawer-nav__list {
  display: block;
  width: 244px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-drawer-nav__link {
  display: block;
  padding: 10px 0;
  color: #595757;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  font-family: "Bodoni Moda", "Bodoni MT", "Didot", "Times New Roman", serif;
  transition: background-color 0.3s ease;
}
.nav__item--fix {
	white-space: nowrap;
}

.nav__item--fix a {
	font-family: "Bodoni Moda", "Bodoni MT", "Didot", "Times New Roman", serif;
		font-size: 14px;
}

.nav__item--fix a {
	    font-size: 12px;
    padding: 0;
}

.header__ttl {
  color: #000b4b;
  font-family: "Bodoni Moda", "Bodoni MT", "Didot", "Times New Roman", serif;
  font-weight: bold;
  font-size: 48px;
  letter-spacing: 2px;
}


.p-drawer-nav__list .p-drawer-nav__item {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.p-drawer-nav__item--greennote img {
	    width: 154px;
}

@keyframes slideInFadeIn {
  0% {
    opacity: 0.01;
    transform: translateY(19px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.p-drawer-nav.is-open .p-drawer-nav__item {
  animation: slideInFadeIn 0.4s ease-out forwards !important;
}
.p-drawer-nav__item.delay-0 { animation-delay: 0.05s !important; }
.p-drawer-nav__item.delay-1 { animation-delay: 0.10s !important; }
.p-drawer-nav__item.delay-2 { animation-delay: 0.15s !important; }
.p-drawer-nav__item.delay-3 { animation-delay: 0.20s !important; }
.p-drawer-nav__item.delay-4 { animation-delay: 0.25s !important; }
.p-drawer-nav__item.delay-5 { animation-delay: 0.30s !important; }
.p-drawer-nav__item.delay-6 { animation-delay: 0.35s !important; }
.p-drawer-nav__item.delay-7 { animation-delay: 0.40s !important; }
.p-drawer-nav__item.delay-8 { animation-delay: 0.45s !important; }
.p-drawer-nav__item.delay-9 { animation-delay: 0.50s !important; }

.nav__item--greennote {
	margin: 0 auto 10px;
}

.nav__item--greennote img {
	width: 154px;
}

/* footer */
.footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 34px 20px 10px;
  display: flex;
  justify-content: space-between;
  background: #eeeeef;
}

.footer-menu__logo {
	    padding: 0 20px 40px;
    background: #eeeeef;
}

.footer-menu__logo img {
	width: 100px;
}

.footer-menu__lists {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-menu__lists:first-child {
  margin-bottom: 18px;
}

.footer-menu__lists li a {
  font-size: 12px;
  color: #595757;
  letter-spacing: 0.05em;
  font-family: "Bodoni Moda", "Bodoni MT", "Didot", "Times New Roman", serif;
  transition: .2s ease-in;
}

.footer-menu__lists li a:hover {
  color: #aca6a6;
  transition: .2s ease-in;
}

.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer__copyright {
  font-size: 10px;
  color: #595757;
  font-family: "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", "Meiryo", "Hiragino Kaku Gothic Pro", "MS PGothic", sans-serif;
}

.footer__social-link {
  width: 28px;
  height: auto;
}

.footer__social-link--x {
	    display: block;
    width: 18px;
    height: auto;
}

.footer__social-link--x img {
width: 100%;
    height: 100%;
    vertical-align: middle;
}

.c-mv {
  width: 100%;
}

.c-sidebar {
  position: relative;
}

.c-shopTtl {
  padding: 40px 0 5px;
  font-size: 18px;
  color: #595757;
	    font-weight: 400;
  border-bottom: 1px solid #c8c9ca;
}

.p-drawer-nav__item--logo {
	margin: 20px auto;
}

.p-drawer-nav__item--logo img {
	    width: 120px;
}

.footer-menu__lists .greennote {
	    width: 110px;
    height: auto;
}

.footer-menu__lists .greennote img {
    width: 100%;
    height: 100%;
    vertical-align: baseline;
}

@media (max-width: 1024px) {
	.header {
    height: 70px;
  }
	
	.c-hamburger-menu {
		top: 26px;
	}
}

/* スマホ */
@media (max-width: 768px) {
  .header__ttl {
    font-size: 30px;
  }

  .header {
    height: 70px;
  }

  .c-hamburger-menu {
    width: 24px;
    height: 14px;
    top: 28px;
    right: 20px;
  }

  .c-hamburger-menu.is-active {
    width: 24px;
    height: 14px;
    top: 28px;
    right: 20px;
  }

  .c-hamburger-menu.is-active span:nth-child(1) {
    top: -6px;
  }

  .p-drawer-nav__link {
    padding: 6px 0;
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .p-drawer-nav {
    padding-top: 16%;
  }


  .p-drawer-nav__list {
    width: 100%;
    padding: 0 16px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 25px;
  }

  .footer-menu__lists {
    flex-direction: inherit;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer-menu__lists:first-child {
    align-items: baseline;
    flex-wrap: wrap;
    flex-direction: inherit;
    gap: 12px 20px;
    margin-bottom: 12px;
  }

  .footer-menu__lists li {
    width: calc((100% - 20px) / 2);
  }

  .footer-menu__lists li a {
    font-size: 13px;
  }

  .footer__sns {
    justify-content: left;
    gap: 12px;
  }

  .footer__copyright {
    text-align: left;
  }

  .footer__inner {
    padding: 50px 30px 20px;
  }

  .header__logo {
    position: absolute;
    width: 60px;
    height: auto;
    left: 2%;
  }

  .footer__social-link {
    width: 22px;
  }
	
	.footer__social-link--x {
		width: 14px;
	}
	
	.footer__social-link--x img {
		    display: block;
	}
	
	.p-drawer-nav__item--logo img {
		    width: 90px;
	}
	
	.nav__item--greennote img {
		    width: 130px;
	}
	
	.nav__item--greennote {
		    margin: 3px auto 10px;
	}
	
	.nav__item--fix a {
		font-family: "Bodoni Moda", "Bodoni MT", "Didot", "Times New Roman", serif;
    	font-size: 11px;
	}
	
	.footer-menu__logo {
	    padding: 0 30px 40px;
    background: #eeeeef;
}
	
}