/*========================================
共通
========================================*/

.c-container {
  max-width: 960px;
  margin: 0 auto;
}



/*========================================
ヘッダー
========================================*/

.l-header {
  position: sticky;
  top: 0;
  z-index: 110;
  padding: 12px;
  width: 100%;
  height: 60px;
  background-color: rgba(0,0,0,0.85);
  box-shadow: 0 1px 2px 1px rgba(0,0,0,0.3);
}

.l-header .c-container {
  max-width: 1120px;
}

.l-header .l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.c-site-branding img {
  padding: 0 0 0 6px;
  width: 240px;
}

.l-header .c-navigation {
  flex-grow: 1;
}

.c-navigation__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  line-height: 1.1;
  list-style-type: none;
}

.c-navigation__list::before,
.c-navigation__list::after {
  content: "";
  width: 2px;
  height: 36px;
  background-image: url("../img/separator01.png");
  background-size: contain;
}

.c-navigation__list-item {
  display: flex;
  align-items: center;
}

.c-navigation__list-item + .c-navigation__list-item::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 36px;
  background-image: url("../img/separator01.png");
  background-size: contain;
}

.c-navigation__list-item a {
  padding: 0 12px;
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
}

.c-navigation__list-item a:hover {
  color: #999999;
  transition: 0.2s;
}

.l-header .c-navigation__list-item:nth-of-type(3) a {
  position: relative;
}

/*.l-header .c-navigation__list-item:nth-of-type(3) a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -1px;
  width: 122px;
  height: 72px;
  background: url(../img/gloval-navigation_decoration.png) no-repeat;;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in;
}*/

.l-header .c-navigation__list-item:nth-of-type(3) a:hover::after {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in;
}

.c-hamburger-button {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  width: 60px;
  height: 60px;
  background-color: #3f3f3f;
}

.c-hamburger-button__bars {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: none;
}

.c-hamburger-button__bars::after {
  content: "MENU";
  position: relative;
  top: 32px;
  color: #ffffff;
  font-size: 1rem;
}

.c-hamburger-button__bar {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: 0.2s ease-out;
}

.c-hamburger-button__bar:nth-of-type(1) {
  margin-top: 6px;
}

.c-hamburger-button__bar:nth-of-type(2) {
  margin-top: 16px;
}

.c-hamburger-button__bar:nth-of-type(3) {
  margin-top: 26px;
}

.c-hamburger-button__bars.active .c-hamburger-button__bar:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
	transition: 0.2s ease-out;
	/*top: 12px;*/
}

.c-hamburger-button__bars.active .c-hamburger-button__bar:nth-of-type(2) {
  opacity: 0;
  transition: none;
}

.c-hamburger-button__bars.active .c-hamburger-button__bar:nth-of-type(3) {
  transform: translateY(-12px) rotate(-45deg);
	transition: 0.2s ease-out;
	/*top: -14px;*/
}

@media (min-width: 1100px) {
  .c-hamburger-button {
    display: none;
  }
}

@media (max-width: 1099px) {
  .l-header .c-navigation,
  .l-header .c-cart-button {
    display: none;
  }
  .c-site-branding img {
    padding-top: 5px;
  }
}

@media (max-width: 639px) {
  /*.l-header {
    padding: 6px 12px;
    height: 48px;
  }
  .c-hamburger-button {
    width: 48px;
    height: 48px;
  }
  .c-hamburger-button__bars {
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
  }
  .c-hamburger-button__bar {
    top: 0;
    right: 4px;
    width: 28px;
    height: 2px;
  }
  .c-hamburger-button__bar:nth-of-type(1) {
    margin-top: 8px;
  }
  .c-hamburger-button__bar:nth-of-type(2) {
    margin-top: 18px;
  }
  .c-hamburger-button__bar:nth-of-type(3) {
    margin-top: 28px;
  }
  .c-hamburger-button__bars.active .c-hamburger-button__bar:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .c-hamburger-button__bars.active .c-hamburger-button__bar:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
  }*/
}



/*========================================
ドロワーナビゲーション
========================================*/

.c-drawer-navigation {
  /*display: none;*/
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: rgba(0,0,0,0.75);
  transform: translateY(-150%);
  transition: 0.2s ease-out;
}

.c-drawer-navigation.open {
  /*display: block;*/
  transform: translateY(0);
  transition: 0.3s ease-out;
}

.c-drawer-navigation__inner {
  padding: 24px 0 36px;
}

.c-drawer-menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style-type: none;
}

.c-drawer-menu__item {
  padding: 12px 0;
  text-align: center;
}

.c-drawer-menu a {
  color: #ffffff;
  text-decoration: none;
}

.c-drawer-navigation .c-cart-button {
  margin: 12px auto 0;
  width: 176px;
}

.c-drawer-navigation .c-cart-button::before {
  top: 0;
}

.c-drawer-navigation .c-cart-button + .c-cart-button {
  margin-top: 24px;
}

@media (min-width: 1100px) {
  .c-drawer-navigation,
  .c-drawer-navigation.open {
    transform: translateY(-150%) !important;
  }
}

@media (max-width: 1099px) {
  /*.c-drawer-menu__item:nth-of-type(3) a {
    position: relative;
  }
  .c-drawer-menu__item:nth-of-type(3) a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: -40px;
    left: 130px;
    width: 104px;
    height: 96px;
    background: url(../img/drawer-navigation_decoration.png) no-repeat;
    background-size: contain;
  }*/
}

@media (max-width: 639px) {
  .c-drawer-menu__item:nth-of-type(3) a::after {
	left: 124px;
  }
}



/*========================================
フッター
========================================*/

.l-footer {
  padding: 12px;
  background-color: #000000;
}

.l-footer .c-container {
  position: relative;
  max-width: 1120px;
}

.l-footer .l-footer-inner {
  display: flex;
  align-items: center;
}

.l-footer .c-navigation {
  margin-left: 24px;
}

.p-page-top {
  position: fixed;
  /*bottom: 66px;*/
  bottom: 156px;
  right: 70px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.p-page-top.scroll-page-top {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

@media (max-width: 639px) {
  .l-footer .l-footer-inner {
    flex-direction: column;
    gap: 6px;
  }
  .l-footer .c-navigation {
    display: block;
    margin-left: 0;
  }
  .c-navigation__list-item a {
    padding: 0 6px;
  }
  .p-page-top {
    /*bottom: 6px;*/
    bottom: 106px;
    right: 12px;
  }
}




/*========================================
コピーライト
========================================*/

.c-copyright {
  padding: 9px;
  line-height: 1;
  text-align: center;
  background-color: #ffffff;
}

.c-copyright small {
  font-size: 1.2rem;
}

/*@media (max-width: 767px) {
  .c-copyright {
    margin-bottom: 180px;
  }
}

@media (max-width: 639px) {
  .c-copyright {
    margin-bottom: 140px;
  }
}

@media (max-width: 479px) {
  .c-copyright {
    margin-bottom: 110px;
  }
}


@media (max-width: 399px) {
  .c-copyright {
    margin-bottom: 100px;
  }
}

@media (max-width: 369px) {
  .c-copyright {
    margin-bottom: 90px;
  }
}*/



/*========================================
CTA
========================================*/

.c-fixed-cta {
  position: fixed;
  right: 0;
  bottom: -1px;
  z-index: 10;
  max-width: 240px;
  transition: 0.3s ease-out;
}

.c-fixed-cta.fixed_cta_scroll {
  bottom: -57px;
  transition: 0.3s ease-out;
}

.is-scrollEnd .c-fixed-cta.fixed_cta_scroll {
  bottom: 0;
  transition: 0.3s ease-out;
}

.c-fixed-cta a {
  transition: 0.3s;
}

.c-fixed-cta a:hover {
	filter: brightness(0.8);
  transition: 0.3s;
}

@media (max-width: 767px) {
  .c-fixed-cta {
    max-width: 100%;
  }
  .c-fixed-cta.fixed_cta_scroll {
    bottom: -76px;
  }
}

@media (max-width: 639px) {
  .c-fixed-cta.fixed_cta_scroll {
    bottom: -52px;
  }
}

@media (max-width: 399px) {
  .c-fixed-cta.fixed_cta_scroll {
    bottom: -44px;
  }
}

@media (max-width: 369px) {
  .c-fixed-cta.fixed_cta_scroll {
    bottom: -42px;
  }
}