@charset "UTF-8";
/**
 * ファイル名: site-common.scss
 * 概要: makeshopとwordpress共通のスタイルを定義
 * 使用場所: サイト全体
 */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  max-width: 100VW;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: top 0.7s;
}

header a:hover,
footer a:hover {
  text-decoration: none;
}

.header--hidden {
  top: -105px;
}

header a {
  outline: none;
}
header .gnav-pc {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header .gnav-pc .header-top {
  text-align: center;
  color: #882255;
  font-weight: bold;
  font-size: 16px;
  padding: 3px;
  border-bottom: 1px solid #dddddd;
}
header .gnav-pc .top-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px;
}
header .gnav-pc .header-menu {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
header .gnav-pc .gnav-leftitem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 15px;
}
header .gnav-pc .gnav-leftitem .header-logo {
  width: 200px;
}
header .gnav-pc .gnav-leftitem .header-logo a img {
  max-width: 100%;
  margin-bottom: -5px;
}
header .gnav-pc .gnav-leftitem .gnav-leftitem-list {
  display: flex;
  flex-wrap: wrap;
}
header .gnav-pc .gnav-leftitem .text-menu {
  padding: 20px 12px 5px 12px;
}
header .gnav-pc .gnav-leftitem .text-menu a {
  text-decoration: none;
}
header .gnav-pc .gnav-leftitem .text-menu:hover {
  background-color: hsl(0, 0%, 80%);
}
header .gnav-pc .gnav-rightitem {
  display: flex;
  justify-content: flex-end;
}
header .gnav-pc .gnav-rightitem li {
  flex-basis: 125px;
}
header .gnav-pc .gnav-rightitem li img {
  width: 30px;
  margin-bottom: -5px;
  padding: 20px 12px 5px 12px;
}
header .gnav-pc .gnav-rightitem li img:hover {
  background-color: hsl(0, 0%, 80%);
}
header .member-name {
  text-align: right;
  margin-right: 1rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 599px) {
  header .member-name {
    text-align: center;
    margin-right: initial;
    background: #eeeeee;
    padding: 5px 0px 5px 0px;
    margin-top: initial;
    font-weight: bold;
  }
}
header .custom-cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 18px;
  height: 22px;
  background: #E57105;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  padding: 0 6px;
  font-size: 12px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  letter-spacing: 0;
  line-height: 1;
  transition: background 0.2s;
}
@media screen and (max-width: 599px) {
  header .custom-cart-badge {
    right: 8px;
  }
}

.gnav-menu.dropdown {
  position: relative;
  list-style: none;
}

.gnav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  background: whitesmoke;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 200;
  padding: 0;
  margin: 0;
  text-align: left;
}

.gnav-leftitem .gnav-menu .dropdown-menu {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 760px;
  gap: 20px;
  row-gap: 20px;
  padding: 20px 0px 40px 60px;
  overflow-y: auto;
  max-height: 70vh;
  text-align: center;
  position: fixed;
  left: 49%;
  top: 100px;
  transform: translateX(-50%);
}
.gnav-leftitem .gnav-menu .dropdown-menu > li {
  width: 25%;
  max-width: 160px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gnav-leftitem .gnav-menu .dropdown-menu .img-dropdown {
  max-width: 100px;
  text-align: center;
}
.gnav-leftitem .gnav-menu .dropdown-menu .img-dropdown:hover {
  background-color: hsl(0, 0%, 80%);
}
.gnav-leftitem .gnav-menu .dropdown-menu .text-dropdown {
  font-size: 14px;
  text-align: center;
}

.gnav-menu .dropdown-menu li {
  padding: 3px 10px 3px 10px;
}

.gnav-rightitem .gnav-menu.dropdown:hover .dropdown-menu {
  display: block;
}

.gnav-leftitem .gnav-menu.dropdown:hover .dropdown-menu {
  display: flex;
}

@media screen and (min-width: 768px) {
  .gnav-pc {
    display: block;
  }
  .gnav-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .gnav-pc {
    display: block;
  }
  .gnav-sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .gnav-pc {
    display: none;
  }
  .gnav-sp {
    display: block;
  }
  .gnav-sp-rightitem {
    display: flex;
    justify-content: flex-end;
  }
  .header-logo-sp {
    text-align: center;
    position: absolute;
    left: 0%;
    right: 0%;
    pointer-events: none;
  }
  .header-logo-sp a img {
    height: 24px;
    width: auto;
    padding: 5px;
    margin-top: 10px;
    pointer-events: auto;
    opacity: 1;
  }
  .c-header {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 0rem 1rem;
    /* カスタマイズしてください */
    width: 100%;
  }
  .header-menu-sp {
    font-size: 11px;
    margin: 0 auto;
  }
  .header-icon-sp {
    margin-top: 11px;
    margin-right: 10px;
  }
  .c-header__logo {
    color: #000;
    /* カスタマイズしてください */
    min-width: 80px;
    /* カスタマイズしてください */
    text-decoration: none;
  }
  .c-header__list {
    font-size: 16px;
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
  }
  .c-header__list-item {
    list-style: none;
    text-decoration: none;
    width: 100%;
    border-top: 1px solid #ccc;
  }
  .c-header__list-sub {
    margin-bottom: 1rem;
    margin-left: 1rem;
    padding: 1rem;
  }
  .c-header__list-link {
    color: #000;
    /* カスタマイズしてください */
    display: block;
    margin-right: 20px;
    /* カスタマイズしてください */
    text-decoration: none;
    padding: 10px 0px;
    /* カスタマイズしてください */
  }
  .c-hamburger-menu {
    position: relative;
    padding: 5px;
    margin-top: 10px;
  }
  .c-hamburger-menu__list {
    background-color: #eeeeee;
    /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }
  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
  .c-hamburger-menu__input {
    display: none;
  }
  .c-hamburger-menu__bg {
    background-color: #000;
    cursor: pointer;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 110vh;
    opacity: 0.4;
    z-index: -1;
  }
  #hamburger:checked ~ .c-hamburger-menu__bg {
    display: block;
  }
  .c-hamburger-menu__button {
    display: none;
  }
  .c-hamburger-menu__button {
    align-items: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* カスタマイズしてください */
    height: 32px;
    /* カスタマイズしてください */
    justify-content: center;
    width: 32px;
    /* カスタマイズしてください */
  }
  .c-hamburger-menu__button-mark {
    background-color: #000;
    /* カスタマイズしてください */
    display: block;
    height: 1px;
    /* カスタマイズしてください */
    transition: 0.3s;
    /* カスタマイズしてください */
    width: 20px;
    /* カスタマイズしてください */
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    /* カスタマイズしてください */
    transform-origin: 0%;
    /* カスタマイズしてください */
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    /* カスタマイズしてください */
    transform-origin: 0%;
    /* カスタマイズしてください */
  }
  .c-hamburger-menu__scroll {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .c-header__list-sub {
    display: none;
    padding-left: 1.5rem;
    background: #f5f5f5;
    border-left: 2px solid #ccc;
  }
  .c-header__list-sub {
    display: none;
    padding-left: 1.5rem;
    background: #f5f5f5;
    border-left: 2px solid #ccc;
  }
  .c-header__list-link {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
  }
  .c-header__list-link .menu-plus,
  .c-header__list-link .menu-minus {
    margin-right: 10px;
    margin-bottom: 5px;
    color: #5d6d7e;
    position: absolute;
    left: 90%;
    font-size: 25px;
    transition: opacity 0.2s;
  }
}
.footer-bg {
  background: #E6E6E6;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-bg a {
  outline: none;
}
.footer-bg .footer {
  margin: 0 auto;
  padding: 35px 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  padding: 1em 1em 1em 1em;
  gap: 15px;
}
.footer-bg .footer .footer-nav {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}
.footer-bg .footer .footer-nav li {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  list-style: none;
  margin-right: 30px;
}
.footer-bg .footer .footer-nav li a {
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .footer-bg .footer .footer-nav li {
    margin-right: 1em;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 599px) {
  .footer-bg .footer .footer-nav {
    display: block;
    text-align: center;
    gap: 0;
  }
}
.footer-bg img {
  width: 250px;
}
.footer-bg .flexbox-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 1em 1em 1em;
  gap: 15px;
}
.footer-bg .flexbox-sns div {
  margin: 1em 0.5em 0 0.5em;
}
.footer-bg .flexbox-sns div img {
  width: 2em;
}
.footer-bg .footer-logo {
  text-align: center;
  margin: 20px 0;
}
.footer-bg .nav {
  display: flex;
  align-items: center;
}
.footer-bg .nav li {
  margin-right: 30px;
}
.footer-bg .footer-copyright {
  border-top: 0.5px solid black;
  text-align: center;
  margin-top: 2rem;
}
.footer-bg .footer-copyright p {
  color: #111111;
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px;
  font-size: 12px;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ページ最上部へ戻るボタン */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ボタン全体 */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #298f4f;
  border-radius: 50%;
  opacity: 0.6;
}

/* Font Awesome */
#page_top::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 35px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}