@charset "UTF-8";
/* =====================
	グローバル系
 ======================= */
/** -------------------- 重要なお知らせ -------------------- **/
.important-notice {
  background: #EFEFEF;
  text-align: center;
  padding: 5px;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1100;
}
.important-notice > p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.important-notice > p::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_error.png) no-repeat center/contain;
  flex-shrink: 0;
  filter: var(--filter_red);
}
.important-notice a {
  text-decoration: underline;
}

/** -------------------- ヘッダー -------------------- **/
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--anim);
  /* 固定エリア */
  /* ヘッダーロゴ */
  /* ガイド系リンクアイコン */
  /* ヘッダー固定時 */
}
.header .header-container {
  background: var(--c_text);
  padding: 13px 16px;
  display: flex;
}
.header .header-logo {
  flex: 0 1 126px;
  align-self: center;
}
.header .header-logo img {
  display: block;
}
.header .header-guide {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  column-gap: 20px;
}
.header .header-guide-item {
  flex: 0 1 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header-guide-item img {
  filter: var(--filter_wht);
}
.header .header-guide-item--cart a {
  position: relative;
}
.header .header-guide-item--cart .fs-client-cart-count {
  position: absolute;
  top: -2px;
  right: -11px;
  width: 16px;
  height: 16px;
  background: var(--c_red);
  color: var(--c_wht);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.5;
}
.header .header-guide-item--menu img:last-of-type {
  display: none;
}
.header .header-guide-item--menu.is-open img:first-of-type {
  display: none;
}
.header .header-guide-item--menu.is-open img:last-of-type {
  display: block;
}
.header.is-scroll {
  transform: translateY(-100%);
}
.header.is-scroll ~ .menu {
  padding-top: 30px !important;
}
.header.is-scroll.is-up {
  transform: translateY(0);
}
.header.is-scroll.is-up ~ .menu {
  padding-top: 84px !important;
}

/** -------------------- SPハンバーガーメニュー -------------------- **/
.menu {
  background: var(--c_bg_gray);
  padding: 84px 16px 102px;
  position: fixed;
  right: -20px;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: var(--anim);
  visibility: hidden;
  opacity: 0;
  z-index: 900;
  overscroll-behavior: none;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.menu.is-open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.menu .menu-mypage {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c_border);
}
.menu .menu-mypage-links {
  display: flex;
  column-gap: 11px;
  justify-content: center;
}
.menu .menu-search {
  padding: 20px 0;
}
.menu .menu-search-form {
  position: relative;
}
.menu .menu-search-form input {
  appearance: none;
  width: 100%;
  border: 1px solid var(--c_border);
  background: var(--c_wht);
  border-radius: 100px;
  font-family: var(--font_ja);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 14px 54px 14px 20px;
}
.menu .menu-search-form button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.menu .menu-category {
  padding: 10px 0 20px;
}
.menu .menu-category-ttl {
  font-weight: 700;
  margin-bottom: 20px;
}
.menu .menu-category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 11px;
}
.menu .menu-category-list a {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.menu .menu-category-list a img {
  flex: 0 0 40px;
}
.menu .menu-gift {
  border-top: 1px solid var(--c_border);
}
.menu .menu-gift-ttl a {
  display: block;
  padding: 20px 0;
  font-weight: 700;
}
.menu .menu-price {
  border-top: 1px solid var(--c_border);
}
.menu .menu-price-ttl {
  padding: 20px 0;
  font-weight: 700;
  position: relative;
}
.menu .menu-price-ttl::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_open.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: var(--anim);
  filter: var(--filter_text);
}
.menu .menu-price-ttl.is-open::after {
  transform: rotate(-180deg);
}
.menu .menu-price-content {
  display: none;
}
.menu .menu-price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-bottom: 20px;
}
.menu .menu-guide {
  border-top: 1px solid var(--c_border);
  padding-top: 20px;
}
.menu .menu-guide-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/** -------------------- 常時固定フッター（SP時のみ） -------------------- **/
.spfooter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  background: var(--c_text);
  color: var(--c_wht);
  display: flex;
  justify-content: center;
}
.spfooter a {
  color: var(--c_wht);
}
.spfooter .spfooter-item {
  flex: 1;
  max-width: 72px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.spfooter .spfooter-item > * {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.spfooter .spfooter-item img {
  filter: var(--filter_wht);
  width: 26px;
}
.spfooter .spfooter-item--cart > * {
  position: relative;
}
.spfooter .spfooter-item--cart .fs-client-cart-count {
  position: absolute;
  top: 12px;
  left: calc(50% + 8px);
  width: 16px;
  height: 16px;
  font-size: 1rem;
  background: var(--c_red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spfooter .spfooter-item--search,
.spfooter .spfooter-item--menu {
  transition: var(--anim);
}
.spfooter .spfooter-item--search img:last-of-type,
.spfooter .spfooter-item--menu img:last-of-type {
  display: none;
  filter: var(--filter_text);
}
.spfooter .spfooter-item--search.is-open,
.spfooter .spfooter-item--menu.is-open {
  color: var(--c_text);
  background: var(--c_bg_gray);
}
.spfooter .spfooter-item--search.is-open img:first-of-type,
.spfooter .spfooter-item--menu.is-open img:first-of-type {
  display: none;
}
.spfooter .spfooter-item--search.is-open img:last-of-type,
.spfooter .spfooter-item--menu.is-open img:last-of-type {
  display: block;
}

/** -------------------- 固定フッター 検索（SP時のみ） -------------------- **/
.spsearch {
  background: var(--c_bg_gray);
  padding: 30px 16px;
  position: fixed;
  right: -20px;
  top: 0;
  width: 100%;
  height: 100%;
  transition: var(--anim);
  visibility: hidden;
  opacity: 0;
  z-index: 900;
}
.spsearch.is-open {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.spsearch .spsearch-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.spsearch .spsearch-form {
  position: relative;
  width: 100%;
}
.spsearch .spsearch-form input {
  appearance: none;
  width: 100%;
  font-family: var(--font_ja);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border: 1px solid var(--c_border);
  border-radius: 100px;
  background: var(--c_wht);
  color: var(--c_text);
  padding: 14px 54px 14px 20px;
}
.spsearch .spsearch-form button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/** -------------------- フッター -------------------- **/
.footer {
  margin: 100px 0 72px;
  /* フッター - ご利用ガイド */
  /* フッター - INFORMATION 〜 MAIL MAGAZINE */
  /* フッター - ブランドサイト・SNS・コピーライト */
}
.footer .footer-guide {
  background: var(--c_bg_gray);
  padding: 50px 0 40px;
}
.footer .footer-guide .footer-guide-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--c_border);
}
.footer .footer-guide .footer-guide-item:first-child {
  padding-top: 0;
}
.footer .footer-guide .footer-guide-ttl {
  font-size: 1.4rem;
}
.footer .footer-guide .footer-guide-ttl a {
  pointer-events: none;
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.footer .footer-guide .footer-guide-ttl a img {
  width: 55px;
  flex-shrink: 0;
}
.footer .footer-guide .footer-guide-ttl a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_open.png) no-repeat center/contain;
  flex-shrink: 0;
  filter: var(--filter_text);
  margin-left: auto;
  transition: var(--anim);
}
.footer .footer-guide .footer-guide-ttl.is-open a::after {
  transform: rotate(-180deg);
}
.footer .footer-guide .footer-guide-subttl {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 20px 0 15px;
}
.footer .footer-guide .footer-guide-subttl:first-child {
  margin-top: 0;
}
.footer .footer-guide .footer-guide-subttl:last-child {
  margin-bottom: 0;
}
.footer .footer-guide .footer-guide-content {
  display: none;
  padding: 30px 0 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.footer .footer-guide .footer-guide-content p + p {
  margin-top: 1.6em;
}
.footer .footer-guide .footer-guide-content img {
  display: block;
  margin: 5px 0;
}
.footer .footer-guide .footer-guide-content .note {
  font-size: 1.2rem;
}
.footer .footer-nav {
  padding: 50px 0 36px;
}
.footer .footer-nav .footer-nav-item {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer .footer-nav .footer-nav-item:last-child {
  padding-bottom: 0;
}
.footer .footer-nav .footer-nav-item-ttl {
  font-family: var(--font_mix);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--c_red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.footer .footer-nav .footer-nav-item-ttl > span {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.footer .footer-nav .footer-nav-item-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 10px;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.footer .footer-nav .footer-nav-item-links a {
  color: #333;
}
.footer .footer-nav .footer-nav-item--contact {
  padding-top: 40px;
  border-top: 1px solid var(--c_border);
  text-align: center;
}
.footer .footer-nav .footer-nav-item--contact .footer-nav-item-ttl {
  justify-content: center;
}
.footer .footer-nav .footer-nav-contact-tel-num a {
  color: var(--c_red);
  font-family: var(--font_eng);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}
.footer .footer-nav .footer-nav-contact-tel-num a span {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer .footer-nav .footer-nav-contact-tel-sub {
  margin-top: 11px;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
}
.footer .footer-nav .footer-nav-contact-links {
  margin-top: 36px;
}
.footer .footer-nav .footer-nav-contact-links li + li {
  margin-top: 9px;
}
.footer .footer-nav .footer-nav-contact-links .c-btn01 {
  width: 100%;
  max-width: 493px;
}
.footer .footer-nav .footer-nav-contact-links .footer-nav-contact-line {
  background: #4CC764;
  border-color: #4CC764;
}
.footer .footer-nav .footer-nav-mailmag-txt {
  margin: 20px 0;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.footer .footer-nav .footer-nav-mailmag-links {
  display: flex;
  justify-content: center;
  column-gap: 11px;
}
.footer .footer-other {
  background: var(--c_text);
  color: var(--c_wht);
  padding: 40px 0 50px;
}
.footer .footer-other a {
  color: var(--c_wht);
}
.footer .footer-other .footer-other-brand {
  text-align: center;
}
.footer .footer-other .footer-other-brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 2px;
  font-size: 1.3rem;
  line-height: 2.2;
  letter-spacing: 0.04em;
  padding: 9px 15px;
  color: #ABABAB;
  border: 1px solid #ABABAB;
}
.footer .footer-other .footer-other-brand a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/common/arrow.png) no-repeat center/contain;
  flex-shrink: 0;
  transform: rotate(-45deg);
  filter: invert(75%) sepia(0%) saturate(4%) hue-rotate(227deg) brightness(94%) contrast(85%);
}
.footer .footer-other .footer-other-sns {
  margin: 35px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
.footer .footer-other .footer-other-sns > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.footer .footer-other .footer-other-sns > li img {
  width: 20px;
}
.footer .footer-other .footer-other-copyright {
  text-align: center;
  font-family: var(--font_eng);
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/** -------------------- ページトップ -------------------- **/
#pagetop {
  transition: var(--anim);
  opacity: 0;
  visibility: hidden;
}
#pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
#pagetop a {
  position: fixed;
  right: 10px;
  bottom: 82px;
  width: 40px;
  height: 40px;
  z-index: 800;
  cursor: pointer;
}
#pagetop a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--c_text);
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
#pagetop a::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../images/common/icon_open.png) no-repeat center/contain;
  filter: var(--filter_wht);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  transform: rotate(-180deg);
}

/* スマホのみ
  ------------------------ */
/* PC
  ------------------------ */
@media (min-width: 1200px) {
  /** -------------------- 重要なお知らせ -------------------- **/
  .important-notice {
    padding: 13px 16px;
    font-size: 1.4rem;
  }
  .important-notice > p {
    column-gap: 10px;
  }
  .important-notice > p::before {
    width: 24px;
    height: 24px;
  }
  /** -------------------- ヘッダー -------------------- **/
  .header {
    /* 固定エリア */
    /* ヘッダーロゴ */
    /* ナビ（PC時のみ） */
    /* ガイド系リンクアイコン */
    /* 店舗情報 */
    /* ヘッダー固定時 */
  }
  .header .header-container {
    padding: 0 16px;
    height: 76px;
  }
  /** -------------------- フッター -------------------- **/
  /** -------------------- サイドメニュー -------------------- **/
  /** -------------------- ページトップ -------------------- **/
}
@media (min-width: 1200px) and (min-width: 1240px) {
  .header .header-container {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .header .header-logo {
    flex: 0 1 151px;
    margin-right: 60px;
  }
  .header .header-pcnav {
    display: flex;
    column-gap: 10px;
    color: var(--c_wht);
  }
  .header .header-pcnav a {
    color: var(--c_wht);
  }
  .header .header-pcnav-item {
    position: relative;
    height: 100%;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .header .header-pcnav-item > a, .header .header-pcnav-item > span {
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2px;
  }
  .header .header-pcnav-item.is-parent {
    cursor: pointer;
    transition: var(--anim);
  }
  .header .header-pcnav-item.is-parent::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--c_text);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: var(--anim);
    pointer-events: none;
  }
  .header .header-pcnav-item.is-parent > a::after, .header .header-pcnav-item.is-parent > span::after {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: url(../images/common/icon_open.png) no-repeat center/contain;
    filter: var(--filter_wht);
    transition: var(--anim);
  }
  .header .header-pcnav-item.is-parent:hover::before {
    opacity: 0.3;
    visibility: visible;
  }
  .header .header-pcnav-item.is-parent:hover > a, .header .header-pcnav-item.is-parent:hover > span {
    background: var(--c_wht);
    color: var(--c_text);
  }
  .header .header-pcnav-item.is-parent:hover > a::after, .header .header-pcnav-item.is-parent:hover > span::after {
    filter: var(--filter_text);
    transform: rotate(-180deg);
  }
  .header .header-pcnav-item.is-parent:hover .header-pcnav-children {
    opacity: 1;
    visibility: visible;
  }
  .header .header-pcnav-children {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: var(--anim);
    background: var(--c_wht);
    padding: 20px 30px;
    font-weight: 400;
    line-height: 2.2;
    width: max-content;
  }
  .header .header-pcnav-children a {
    color: var(--c_text);
    display: block;
  }
  .header .header-guide {
    column-gap: 0;
  }
  .header .header-guide-item {
    flex: 0 0 54px;
  }
  .header .header-guide-item img {
    width: 25px;
  }
  .header .header-guide-item--search {
    position: relative;
    cursor: pointer;
    transition: var(--anim);
  }
  .header .header-guide-item--search::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c_text);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: var(--anim);
    pointer-events: none;
  }
  .header .header-guide-item--search:hover {
    background: var(--c_wht);
  }
  .header .header-guide-item--search:hover::before {
    opacity: 0.3;
    visibility: visible;
  }
  .header .header-guide-item--search:hover img {
    filter: var(--filter_text);
  }
  .header .header-guide-item--search:hover .header-guide-search {
    opacity: 1;
    visibility: visible;
  }
  .header .header-guide-item--cart .fs-client-cart-count {
    top: -3px;
    right: -10px;
  }
  .header .header-guide-search {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: var(--anim);
    background: var(--c_bg_gray);
    padding: 20px 30px;
  }
  .header .header-guide-search-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c_text);
    opacity: 0.3;
    z-index: -1;
  }
  .header .header-guide-search-form {
    position: relative;
  }
  .header .header-guide-search-form input {
    appearance: none;
    width: 505px;
    background: var(--c_wht);
    border: 1px solid var(--c_border);
    border-radius: 100px;
    padding: 25px;
    font-family: var(--font_ja);
    font-size: 100%;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .header .header-guide-search-form button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .header .header-store {
    flex-shrink: 0;
    margin-left: 40px;
    align-self: center;
  }
  .header .header-store a {
    display: flex;
    align-items: center;
    column-gap: 7px;
    padding: 10px 15px;
    background: var(--c_red);
    color: var(--c_wht);
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .header .header-store a::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url(../images/common/icon_store.png) no-repeat center/contain;
    filter: var(--filter_wht);
    transition: var(--anim);
  }
  .header.is-scroll {
    transform: none !important;
  }
  .header.is-scroll.is-up {
    transform: none !important;
  }
  .footer {
    margin: 160px 0 0;
    /* フッター - ご利用ガイド */
    /* フッター - INFORMATION 〜 MAIL MAGAZINE */
    /* フッター - ブランドサイト・SNS・コピーライト */
  }
  .footer .footer-guide {
    padding: 80px 0;
  }
  .footer .footer-guide .footer-guide-container {
    display: grid;
    grid-template-columns: repeat(3, 27.5%);
    grid-template-rows: auto 1fr;
    justify-content: space-between;
    align-items: flex-start;
    grid-template-areas: "shipping payment include" "shipping return include";
    gap: 60px 0;
  }
  .footer .footer-guide .footer-guide-item {
    padding: 0;
    border: 0;
  }
  .footer .footer-guide .footer-guide-item--shipping {
    grid-area: shipping;
  }
  .footer .footer-guide .footer-guide-item--payment {
    grid-area: payment;
  }
  .footer .footer-guide .footer-guide-item--return {
    grid-area: return;
  }
  .footer .footer-guide .footer-guide-item--include {
    grid-area: include;
  }
  .footer .footer-guide .footer-guide-ttl {
    font-size: 1.6rem;
  }
  .footer .footer-guide .footer-guide-ttl a {
    pointer-events: auto;
    font-size: 1.6rem;
  }
  .footer .footer-guide .footer-guide-ttl a img {
    width: 40px;
  }
  .footer .footer-guide .footer-guide-ttl a::after {
    width: 18px;
    height: 18px;
    background: url(../images/common/arrow.png) no-repeat center/contain;
    transform: none !important;
  }
  .footer .footer-guide .footer-guide-subttl {
    margin: 30px 0 15px;
  }
  .footer .footer-guide .footer-guide-content {
    display: block !important;
    padding: 30px 0 0;
    font-size: 1.4rem;
  }
  .footer .footer-guide .footer-guide-content img {
    margin: 10px 0;
  }
  .footer .footer-nav {
    padding: 80px 0;
  }
  .footer .footer-nav .footer-nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer .footer-nav .footer-nav-item {
    display: block;
    padding: 0;
  }
  .footer .footer-nav .footer-nav-item-ttl {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .footer .footer-nav .footer-nav-item-links {
    display: block;
    font-size: 1.4rem;
    line-height: 2.22;
  }
  .footer .footer-nav .footer-nav-item--sitemap {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, auto));
    gap: 40px 90px;
  }
  .footer .footer-nav .footer-nav-info {
    grid-row: span 2;
  }
  .footer .footer-nav .footer-nav-item--contact {
    padding-top: 0;
    border-top: 0;
    text-align: left;
  }
  .footer .footer-nav .footer-nav-item--contact .footer-nav-item-ttl {
    justify-content: flex-start;
  }
  .footer .footer-nav .footer-nav-contact-tel-num a {
    pointer-events: none;
    font-size: 1.8rem;
    column-gap: 20px;
  }
  .footer .footer-nav .footer-nav-contact-tel-num a span {
    font-size: 3.2rem;
  }
  .footer .footer-nav .footer-nav-contact-tel-sub {
    margin-top: 12px;
    font-size: 1.4rem;
  }
  .footer .footer-nav .footer-nav-contact-links {
    margin-top: 28px;
  }
  .footer .footer-nav .footer-nav-contact-links li + li {
    margin-top: 10px;
  }
  .footer .footer-nav .footer-nav-contact-links .c-btn01 {
    width: 378px;
  }
  .footer .footer-nav .footer-nav-mailmag {
    margin: 60px 0 0;
  }
  .footer .footer-nav .footer-nav-mailmag-links {
    column-gap: 10px;
  }
  .footer .footer-other {
    padding: 45px 0 60px;
  }
  .footer .footer-other .footer-other-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .footer .footer-other .footer-other-sns {
    justify-content: flex-end;
    margin: 0;
  }
  .footer .footer-other .footer-other-copyright {
    margin-top: 15px;
  }
  .sidemenu {
    position: relative;
    z-index: 2;
  }
  .sidemenu .sidemenu-container {
    position: sticky;
    top: 106px;
  }
  .sidemenu .sidemenu-list {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
  }
  .sidemenu .sidemenu-list-item {
    border-radius: 10px;
    background: var(--c_bg_gray);
    position: relative;
  }
  .sidemenu .sidemenu-list-item a, .sidemenu .sidemenu-list-item-parent {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    padding: 16px 20px;
  }
  .sidemenu .sidemenu-list-item a::after, .sidemenu .sidemenu-list-item-parent::after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../images/common/arrow.png) no-repeat center/contain;
    margin-left: auto;
    flex-shrink: 0;
  }
  .sidemenu .sidemenu-list-item a > span, .sidemenu .sidemenu-list-item-parent > span {
    flex-grow: 1;
  }
  .sidemenu .sidemenu-list-item a > span:first-child, .sidemenu .sidemenu-list-item-parent > span:first-child {
    text-align: center;
  }
  .sidemenu .sidemenu-list-item a img, .sidemenu .sidemenu-list-item-parent img {
    width: 50px;
    flex-shrink: 0;
  }
  .sidemenu .sidemenu-list-item-parent {
    cursor: pointer;
  }
  .sidemenu .sidemenu-list-item-children {
    position: absolute;
    left: calc(100% - 8px);
    top: 8px;
    background: var(--c_wht);
    padding: 8px;
    width: max-content;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0px 0px 16.6667px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: var(--anim);
  }
  .sidemenu .sidemenu-list-item.is-parent:hover .sidemenu-list-item-children {
    opacity: 1;
    visibility: visible;
  }
  .sidemenu .sidemenu-list-item--category {
    padding: 15px 0;
  }
  .sidemenu .sidemenu-list-item--category li + li {
    margin-top: 5px;
  }
  .sidemenu .sidemenu-list-item--category a {
    padding: 0 20px;
  }
  #pagetop a {
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
  }
  #pagetop a::after {
    width: 30px;
    height: 30px;
  }
}
/* hover
  ------------------------ */
@media (hover: hover) {
  .header .header-store a:hover {
    background: var(--c_wht);
    color: var(--c_red);
    opacity: 1;
  }
  .header .header-store a:hover::before {
    filter: var(--filter_red);
  }
  .footer .footer-nav .footer-nav-contact-links .footer-nav-contact-line:hover {
    background: var(--c_wht);
    color: #4CC764;
  }
}