:root {
  --rich-header-height: 150px;
  --header-height: 60px;
  --img-bg-color: #f7f7f7;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-size: 14px;
  font-family: 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  letter-spacing: 0em;
  line-height: 1.7;
  color: #282828;
}

body.is-scroll-hidden {
  overflow: hidden;
}

html,
body {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  vertical-align: top;
}

ul,
ol,
dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: #000000;
  transition: all 0.5s ease;
}

a:hover {
  color: #909090;
}

[data-whatinput='mouse'] *:focus,
[data-whatinput='touch'] *:focus {
  outline: none;
}

button {
  font-family: 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  line-height: 1;
}

input:focus::placeholder {
  color: transparent;
}

em {
  font-style: normal;
  font-weight: normal;
}

svg:not(:root) {
  overflow: hidden;
}

/* --------------------------------------- */
/* Utility
------------------------------------------ */

.u-container {
  position: relative;
  width: auto;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.u-attention {
  font-weight: normal;
  font-style: normal;
  color: #ff0000;
}

.u-bold {
  font-weight: bold !important;
  font-style: normal;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}


.u-marker {
  background: linear-gradient(transparent 70%, #fff284 70%);
}

.u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.u-pc-only {
  display: block;
}

.u-pc-only-inline {
  display: inline;
}

.u-pc-only-inlineBlock {
  display: inline-block;
}

.u-pc-only-Flex {
  display: flex;
}

.u-sp-only {
  display: none;
}

.u-sp-only-inline {
  display: none;
}

.u-sp-only-inline-block {
  display: none;
}

.u-sp-only-flex {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }

  .u-pc-only-inline {
    display: none;
  }

  .u-pc-only-inlineBlock {
    display: none;
  }

  .u-pc-only-flex {
    display: none;
  }

  .u-sp-only {
    display: block;
  }

  .u-sp-only-inline {
    display: inline;
  }

  .u-sp-only-inline-block {
    display: inline-block;
  }

  .u-sp-only-flex {
    display: flex;
  }
}

.u-hidden {
  overflow: hidden;
}

.u-opa i,
.u-opa img {
  opacity: 1;
  transition: all 0.3s ease;
}

.u-opa a:hover i,
.u-opa a:hover img {
  opacity: 0.4;
}

.u-img-scale {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.u-img-scale img {
  display: inline-block;
  width: 100%;
  transform: scale(1, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.u-img-scale:hover img {
  transform: scale(1.05, 1.05);
}

@media screen and (max-width: 767px) {
  .u-img-scale img {
    transform: none;
    transition: none;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
  }

  .u-img-scale:hover img {
    transform: none;
  }
}

@media screen and (max-width: 1240px) {
  .u-overflow-slide {
    overflow-x: scroll;
    white-space: nowrap;
    padding-bottom: 10px;
    width: 100%;
  }

  .u-overflow-slide .u-overflow-slide__flex {
    flex-wrap: nowrap;
  }

  .u-overflow-slide::-webkit-scrollbar {
    height: 4px;
  }

  .u-overflow-slide::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .u-overflow-slide::-webkit-scrollbar-thumb {
    background: #000000;
    /* padding-bottom: 10px; */
  }

  /* .u-overflow-slide.is-option-tbl {
      padding-bottom: 15px;
    } */

}

/* --------------------------------------- */
/* Layout
------------------------------------------ */

.l-contents {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 160px;
}

.l-contents-main {
  flex-basis: 920px;
}

.l-contents-side {
  flex-basis: 220px;
  order: -1;
}

@media screen and (min-width: 1241px) {
  .l-contents-main .u-container {
    display: contents;
  }
}

@media screen and (max-width: 1240px) {
  .l-contents {
    display: block;
  }

  .l-contents-side {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .l-contents {
    margin-bottom: 120px;
  }

  .l-contents-side {
    padding: 0;
  }
}

/* サイドメニュー
------------------------------------------ */

.l-side-navi-wrap {
  display: flex;
  gap: 60px;
  margin-top: 160px;
}

.l-side-navi {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-side-navi-wrap {
    margin-top: 120px;
    flex-direction: column;
    gap: 40px;
  }

  .l-contents-aux.u-container {
    display: contents;
  }
}

.l-contents-side {
  container-type: inline-size;
}

@container (max-width:260px) {
  .l-contents-side .l-side-navi-wrap {
    margin-top: 40px;
    flex-direction: column;
  }
}

.l-side-navi__ttl {
  margin: 0;
}

.l-side-navi-list {
  border-top: 1px solid #7d7d7d;
}

.l-side-navi-list__item {
  border-bottom: 1px solid #7d7d7d;
}

.l-side-navi-list__btn {
  text-align: left;
  border: 0;
  background: transparent;
  color: #000000;
}

.l-side-navi-list__link:hover {
  color: #000000;
  text-decoration: none;
}

.l-side-navi-list__btn,
.l-side-navi-list__link {
  display: block;
  position: relative;
  padding: 20px 15px;
  width: 100%;
  line-height: 1;
  font-size: 16px;
}

@media screen and (max-width: 767px) {

  .l-side-navi-list__btn,
  .l-side-navi-list__link {
    font-size: 14px;
  }
}

.l-side-navi-list__btn:before,
.l-side-navi-list__link:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-side-navi-list__link:before {
  transform: translateY(-50%) rotate(-45deg);
}

.l-side-navi-list__btn:before {
  transform: translateY(-75%) rotate(45deg);
}

.l-side-navi-list__btn.is-on:before {
  transform: translateY(-50%) rotate(-135deg);
}

.l-side-navi-list__btn:hover:before,
.l-side-navi-list__link:hover:before {
  border-color: #000000;
}

.l-side-navi-sub-list-wrap {
  display: none;
  padding: 15px;
  margin-bottom: 15px;
  background: #f7f7f7;
  border: 1px solid #d2d2d2;
}

@media screen and (max-width: 767px) {
  .l-side-navi-sub {
    margin: 0 15px 15px;
  }
}

.l-side-navi-sub-list__item.is-all {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid #d2d2d2;
}

.l-side-navi-sub-list__link {
  display: block;
}

/* --------------------------------------- */
/* fade animation
------------------------------------------ */

.fadeIn {
  opacity: 0;
  transition: all 1.3s cubic-bezier(0.07, 0.92, 0.46, 0.95) 0.4s;
}

.fromLeft {
  transform: translate(-20px, 0);
}

.fromRight {
  transform: translate(20px, 0);
}

.fromTop {
  transform: translate(0, -20px);
}

.fromBottom {
  transform: translate(0, 20px);
}

.fromForeground {
  transform: scale(1.6);
}

.faded {
  opacity: 1;
}

.fadedWithTransform {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}


/* ---------------------------------------
/* Colorme icons lg=24×24 s=16×16
------------------------------------------ */

.icon-lg.icon-instagram {
  background-position: -168px -288px;
}

.icon-lg.icon-twitter {
  background-position: -144px -264px;
}

.icon-lg.icon-facebook {
  background-position: -192px -264px;
}

.icon-lg.icon-video {
  background-position: -456px -144px;
}

.icon-lg.icon-cart {
  background-position: -264px -96px;
}

.icon-lg.icon-search {
  background-position: -312px -24px;
}

.icon-lg.icon-chevron_up {
  background-position: -0px -216px;
}

.icon-lg.icon-chevron_down {
  background-position: -528px -192px;
}

.icon-cart {
  background-position: -176px -64px;
}

.icon-home {
  background-position: -176px -16px;
}

.icon-new-window {
  background-position: -192px -16px;
}

.icon-nextpage {
  background-position: -272px 0px;
}

.icon-mail {
  background-position: -64px 0px;
}

.icon-pencil {
  background-position: -96px 0px;
}

.icon-help {
  background-position: -272px -80px;
}

.icon-user {
  background-position: -208px 0px;
}

a .icon-s {
  opacity: 1;
  transition: all 0.5s ease;
}

a:hover .icon-s {
  opacity: 0.3;
}

.icon-s {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  background-size: 368px 320px;
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_b.png);
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.icon-lg {
  width: 24px;
  height: 24px;
  background-size: 552px 480px;
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png);
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.icon-s[data-icon-w],
.icon-lg[data-icon-w] {
  filter: invert(1) brightness(200%);
}

.icon-s[data-icon-b],
.icon-lg[data-icon-b] {
  filter: invert(0) brightness(0);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
  .icon-s {
    background-size: 368px 320px;
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_b.png);
  }

  .icon-lg {
    background-size: 552px 480px;
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png);
  }
}

@media (max-width: 768px) {
  .icon-s {
    background-size: 368px 320px;
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png);
  }
}

@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2),
only screen and (max-width: 768px) and (min-device-pixel-ratio: 2),
only screen and (max-width: 768px) and (min-resolution: 192dpi),
only screen and (max-width: 768px) and (min-resolution: 2dppx) {
  .icon-s {
    background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png);
  }
}

/* ---------------------------------------
/* Components
------------------------------------------ */

/* タイトル
------------------------------------------ */

.c-ttl-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  line-height: 1;
  font-size: 30px;
  letter-spacing: 0.04em;
  font-feature-settings: 'palt' 1;
  margin: 0 0 45px;
}

@media screen and (max-width: 767px) {
  .c-ttl-main {
    gap: 5px;
    font-size: 22px;
    margin-bottom: 30px;
  }
}

.c-ttl-main__en {
  font-family: 'Stardos Stencil', system-ui;
  font-weight: 700;
}

.c-ttl-main__path {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.c-ttl-main__path span {
  width: 100%;
  height: 1px;
  background-color: #d2d2d2;
}

.c-ttl-main__ja {
  display: inline-block;
  font-weight: normal;
  font-size: 14px;
  color: #909090;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .c-ttl-main__ja {
    font-size: 12px;
    white-space: nowrap;
  }
}

.c-ttl-sub {
  padding: 5px 15px;
  width: fit-content;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
  font-feature-settings: 'palt' 1;
  background-color: #282828;
  color: #ffffff;
  margin: 0 auto 45px;
}

.c-ttl-sub[data-ttl-sub-lightness] {
  background-color: transparent;
  color: #282828;
}

.c-ttl-sub[data-ttl-sub-inline] {
  font-size: 16px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .c-ttl-sub {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .c-ttl-sub[data-ttl-sub-inline] {
    font-size: 14px;
  }
}

.c-ttl-sub__en {
  font-family: 'Stardos Stencil', system-ui;
  font-weight: 700;
}

.c-ttl-sub__ja {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #909090;
  letter-spacing: 0;
  white-space: nowrap;
}

.c-ttl-sub[data-ttl-sub-inline] .c-ttl-sub__ja {
  display: inline;
  font-size: 10px;
}


.c-ttl-slogan {
  font-family: Arial, sans-serif;
  font-weight: normal;
  font-size: 26.5px;
  line-height: 100%;
  text-transform: uppercase;
  word-break: keep-all;
}

.c-ttl-slogan span {
  display: block;
  font-size: 16px;
}

.c-ttl-primary {
  /* margin: 40px 0 20px; */
  margin: 60px 0px 10px;
  line-height: 1.2;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 0.04em;
  font-feature-settings: 'palt' 1;
}

@media screen and (max-width: 767px) {
  .c-ttl-primary {
    margin-top: 40px;
    font-size: 28px;
  }
}

.c-ttl-secondary {
  margin: 0 0 10px;
  padding-top: 75px;
  line-height: 1.2;
  font-size: 22px;
  letter-spacing: 0.04em;
  font-feature-settings: 'palt' 1;
}

.c-ttl-tab {
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 2;
  width: fit-content;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  background-color: #282828;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* 商品一覧
------------------------------------------ */

.c-item-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  gap: 40px;
}

.c-item-list__item {
  position: relative;
  padding-bottom: 20px;
  width: calc(25% - 3 / 4 * 40px);
  transition: opacity 0.2s;
  word-break: break-all;
}

.c-item-list__item.is-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-item-list {
    gap: 20px;
    padding: 0 10px;
  }

  .c-item-list__item {
    width: calc(50% - 10px);
  }
}

.c-item-list__img img {
  background-color: var(--img-bg-color);
}

.c-item-list__txt {
  margin-top: 20px;
  line-height: 1.4;
  white-space: normal;
}

.c-item-list__ttl {
  margin-bottom: 10px;
}

.c-item-list__price {
  color: #909090;
}

.c-item-list__price.is-strikethrough {
  text-decoration: line-through;
  font-size: 12px;
}

.c-item-list__price.is-discount {
  color: #dd6666;
}

.c-item-list__btn {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 5px;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #d2d2d2;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-item-list__btn.is-added {
  color: steelblue;
}

.c-item-list__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* お気に入り、最近チェックした商品
------------------------------------------ */

.c-favorite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.c-favorite-list__item {
  flex-shrink: 0;
  width: 102px;
}

@media screen and (max-width: 1240px) {
  .c-favorite-list__item {
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .c-favorite-list__item {
    width: 90px;
  }
}

.c-favorite-list .c-item-list__txt {
  margin-top: 10px;
  font-size: 12px;
}

.c-favorite-list .c-item-list__price.is-strikethrough {
  font-size: 10px;
}

.p-favorite-wrap {
  padding: 75px 0;
  background-color: #f7f7f7;
}

@media screen and (max-width: 767px) {
  .p-favorite-wrap {
    padding: 40px 0;
  }
}

.p-favorite .c-favorite-list {
  justify-content: center;
}

/* ボタン
------------------------------------------ */

.c-btn {
  display: block;
  position: relative;
  padding: 20px 15px;
  width: 100%;
  line-height: 1;
  font-size: 16px;
  text-align: left;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  background: transparent;
  color: #000000;
}

@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 14px;
  }
}

.c-btn:hover {
  color: #000000;
}

.c-link:hover {
  text-decoration: none;
}

.c-btn-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 20px;
  border: none;
  border-radius: 3px;
  width: 100%;
  font-size: 16px;
  background: #0066ff;
  color: #ffffff;
  cursor: pointer;
  box-shadow: inset 0 -0.2em 0 rgba(0, 0, 0, 0.3);
}

.c-btn-cart:hover {
  background: #005ce6;
  color: #ffffff;
  text-decoration: none;
  background-color: color-mix(in srgb, #0066ff 90%, #000);
  box-shadow: inset 0 -0.2em 0 rgba(0, 0, 0, 0.1);
}

.c-btn-cart.is-soldout:hover,
.c-btn-cart.is-soldout,
.c-btn-cart.is-disabled:hover,
.c-btn-cart.is-disabled {
  background: #d2d2d2;
  box-shadow: inset 0 -0.2em 0 rgba(0, 0, 0, 0.1);
  cursor: default;
}

.c-btn-cart.is-membersonly:hover,
.c-btn-cart.is-membersonly {
  background: #4caf50;
  box-shadow: inset 0 -0.2em 0 rgba(0, 0, 0, 0.1);
  cursor: default;
}

.c-link,
.c-more {
  margin: 40px auto 0;
  width: 320px;
}

@media screen and (max-width: 767px) {

  .c-link,
  .c-more {
    margin-top: 20px;
    width: 240px;
  }
}

.c-link:hover,
.c-btn:hover {
  text-decoration: none;
  color: #000000;
}

.c-more .c-btn:before,
.c-more .c-btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 9px;
  height: 1px;
  background: #b2b2b2;
  transition: all 0.3s ease;
}

.c-more .c-btn:after {
  transform: rotate(90deg);
}

.c-more .c-btn:hover:before {
  transform: rotate(90deg);
  background: #000000;
}

.c-more .c-btn:hover:after {
  transform: rotate(180deg);
  background: #000000;
}

.c-link .c-btn:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-link .c-btn:hover:before {
  border-color: #000000;
}

/* ご注文の前に
------------------------------------------ */

.c-ordering-memo__ttl {
  position: relative;
  padding: 0 20px 0 30px;
  width: fit-content;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  background-color: #ee0000;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.c-ordering-memo__ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #909090;
  background-color: #ffffff;
  box-shadow: inset 2px 2px 0 0 rgba(0, 0, 0, 0.8);
}

/* フレーム
------------------------------------------ */

.c-frame {
  padding: 20px;
  border: 1px solid #d2d2d2;
  background: #f7f7f7;
}

/* テーブル
------------------------------------------ */

.c-tbl-list {
  margin: 1em 0;
  border-top: 1px solid #b2b2b2;
}

.c-tbl-list__tr {
  padding: 20px 10px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #b2b2b2;
}

.c-tbl-list__th {
  margin: 0;
  width: 270px;
  font-size: 14px;
  font-weight: bold;
}

.c-tbl-list__td {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .c-tbl-list__tr {
    display: block;
  }

  .c-tbl-list__th {
    font-size: 16px;
    width: auto;
  }
}

/* パンくずリスト
------------------------------------------ */
.c-breadcrumbs {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

.c-breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
  font-size: 12px;
}

.c-breadcrumbs-list__item:not(.is-home):before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
  transform: translateY(-25%) rotate(-45deg);
}

.c-breadcrumbs-list:after {
  content: '｜';
  color: #b2b2b2;
}

.c-breadcrumbs-list:last-child:after {
  content: none;
}

/* 現在、この商品は扱っておりません。現在、該当する商品がございません。
------------------------------------------ */
.c-not-found {
  margin-top: 10px;
}


/* ---------------------------------------
/* Header
------------------------------------------ */

.l-header-wrap {
  height: auto;
}

.l-header {
  height: 150px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.l-header.is-fixed,
.l-header.is-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  height: 60px;
}

@media screen and (max-width: 1240px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    height: 60px;
  }
}

.l-header.is-shadow {
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 0 6px rgba(0, 0, 0, 0.4);
}

.l-header .u-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-right: 0;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .u-container {
    top: 30px;
  }
}

/* ロゴ
------------------------------------------ */

.l-header-logo {
  display: flex;
  align-items: center;
  gap: 30px;
}

.l-header-logo__h1 {
  margin: 0;
}

.l-header-logo__h1 a {
  display: block;
}

.l-header-logo__txt {
  font-size: 12px;
  color: #909090;
}

@media screen and (max-width: 1000px) {
  .l-header-logo__txt {
    display: none;
  }
}

.l-header-logo-svg {
  width: 212.5px;
  height: 40px;
}

.l-header-logo-svg__path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6;
  stroke-miterlimit: 10;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-header-logo-svg {
    width: 340px;
    height: 64px;
  }
}

@media screen and (max-width: 767px) {
  .l-header-logo-svg {
    width: 170px;
    height: 31.5px;
  }
}

.l-header-logo {
  display: flex;
  align-items: center;
  gap: 30px;
}

.l-header-logo__h1 {
  margin: 0;
}

.l-header-logo__h1 a {
  display: block;
}

.l-header-logo__txt {
  font-size: 12px;
  color: #909090;
}

@media screen and (max-width: 1000px) {
  .l-header-logo__txt {
    display: none;
  }
}

.l-header-logo-svg {
  width: 212.5px;
  height: 40px;
}

.l-header-logo-svg__path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6;
  stroke-miterlimit: 10;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-header-logo-svg {
    width: 340px;
    height: 64px;
  }
}

@media screen and (max-width: 767px) {
  .l-header-logo-svg {
    width: 170px;
    height: 31.5px;
  }
}

/* 商品検索・カートを見る
------------------------------------------ */

.l-header-navi {
  margin-left: auto;
  display: flex;
  z-index: 3;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-header-navi {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

/* 商品検索・カートを見る　ボタン
------------------------------------------ */

.l-header-search-btn {
  position: relative;
  padding: 0;
  width: 60px;
  height: 60px;
  border: 0;
  background: none;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .l-header-search-btn {
    width: 50px;
  }
}

.l-header-cart a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
}

.l-header-cart a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .l-header-cart a {
    width: 50px;
  }
}

.l-header-cart__count {
  display: inline-block;
  padding: 0 5px;
  min-width: 20px;
  width: fit-content;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #0066ff;
  border-radius: 20px;
}

/* 商品検索フォーム
------------------------------------------ */

.l-header-search form {
  margin: 0;
}

.l-header-search {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  padding: 30px;
  width: 100%;
  max-width: 720px;
  background: #f7f7f7;
  border: 1px solid #d2d2d2;
  display: none;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-header-search {
    width: 720px;
  }
}

.l-header-search__input {
  margin: 0 30px 15px 0;
}

.l-header-search__input input {
  width: 100%;
  padding-right: 60px;
  height: 40px;
  border: 2px solid #282828;
  background: #ffffff;
}

.l-header-search .l-header-search-btn {
  height: 40px;
  position: absolute;
  top: 30px;
  right: 60px;
}

.l-header-search__close {
  position: absolute;
  top: 30px;
  right: 10px;
  width: 45px;
  height: 45px;
  border: 0;
  background: transparent;
}

.l-header-search__close span {
  position: absolute;
  content: '';
  left: 13px;
  width: 20px;
  height: 1px;
  background: #000000;
}

.l-header-search__close span:nth-child(1) {
  top: 0px;
  transform: translateY(20px) rotate(-45deg);
}

.l-header-search__close span:nth-child(2) {
  top: 40px;
  transform: translateY(-20px) rotate(45deg);
}

.l-header-search__keywords {
  display: flex;
  align-items: center;
  gap: 10px 20px;
}

.l-header-search__item {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 10px;
}

.l-header-search__keywords .c-ttl-sub[data-ttl-sub-inline] {
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .l-header-search__keywords .c-ttl-sub[data-ttl-sub-inline] .c-ttl-sub__ja {
    display: block;
  }
}

/* バーガーメニュー ボタン
------------------------------------------ */

.l-menu-btn {
  position: relative;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border: 0;
  background: transparent;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-menu-btn {
    display: none;
  }
}

.l-menu-btn span {
  display: inline-block;
  transition: all 0.2s ease;
  position: absolute;
  left: 19px;
  width: 25px;
  height: 1px;
  background-color: #000000;
}

@media (min-resolution: 2dppx) {
  .l-menu-btn span {
    height: 1.5px;
  }
}

.l-menu-btn span:nth-of-type(1) {
  top: 25px;
}

.l-menu-btn span:nth-of-type(2) {
  top: 35px;
}

.l-menu-btn.is-on span:nth-of-type(1) {
  top: 10px;
  transform: translateY(20px) rotate(-45deg);
}

.l-menu-btn.is-on span:nth-of-type(2) {
  top: 50px;
  transform: translateY(-20px) rotate(45deg);
}

.l-menu-btn.is-on span:nth-of-type(3) {
  transform: scale(0);
}

/* ---------------------------------------
/* global navi
------------------------------------------ */

.l-navi {
  width: 100%;
  display: none;
  z-index: 2;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-navi {
    display: block;
  }
}

.l-header.is-open .l-navi {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height);
  overflow-y: auto;
  height: calc(100% - var(--header-height));
  background: #f7f7f7;
  display: block;
}

/* メインメニュー
------------------------------------------ */

.l-header.is-open .l-main-navi-list {
  margin: 0 auto;
  padding: 75px 30px;
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-main-navi-list {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 16px;
    margin-right: 140px;
  }
}

@media screen and (max-width: 767px) {
  .l-header.is-open .l-main-navi-list {
    display: initial;
    padding: 0;
  }
}

.l-header.is-open .l-main-navi-list__item {
  width: calc(50% - 30px);
}

@media screen and (max-width: 767px) {
  .l-header.is-open .l-main-navi-list__item {
    width: 100%;
  }
}

/* メインメニュー ボタン
------------------------------------------ */

.l-main-navi-list-btn {
  display: none;
  position: relative;
  padding: 10px 36px 10px 20px;
  border: 0;
  font-size: 16px;
  font-feature-settings: 'palt' 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  background: transparent;
  background: #000000;
  color: #ffffff;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.l-main-navi-list-btn:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: translateY(-75%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.l-main-navi-list-btn.is-on:before {
  transform: translateY(-25%) rotate(-135deg);
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-main-navi-list-btn {
    display: block;
    height: 40px;
  }

  .l-main-navi-list-btn:hover {
    background: #424242;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .l-main-navi-list-btn {
    display: block;
    padding: 20px;
    width: 100%;
    text-align: left;
    border-top: 1px solid #909090;
  }

  .l-main-navi-list-btn:before {
    right: 20px;
  }
}

.l-main-navi-list-btn.is-on {
  background: #909090;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-main-navi-list__ttl {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-main-navi-list__ttl {
    display: none;
  }
}

/* メガメニュー
------------------------------------------ */

.l-mega-menu {
  background: #f7f7f7;
  /* z-index: 100; */
}

@media screen and (min-width: 768px) {
  .l-header.is-open .l-mega-menu {
    display: initial !important;
  }
}

@media screen and (max-width: 767px) {
  .l-header.is-open .l-mega-menu {
    display: none;
  }
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-main-navi-list__item {
    position: relative;
  }

  .l-header:not(.is-fixed):not(.is-open) .l-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border-left: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
    min-width: 240px;
    display: none;
  }
}

.l-mega-menu-list {
  border-top: 1px solid #7d7d7d;
}

.l-mega-menu-list__item {
  border-bottom: 1px solid #7d7d7d;
}

.l-mega-menu-list__link {
  display: block;
  padding: 20px 15px;
  width: 100%;
  line-height: 1;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .l-mega-menu-list__link {
    position: relative;
    font-size: 14px;
  }

  .l-mega-menu-list__link:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    transform: translateY(-50%) rotate(-45deg);
  }
}

/* 会員登録、SNS
------------------------------------------ */

.l-help-sns-navi-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 75px 20px;
}

@media screen and (min-width: 1241px) {
  .l-header:not(.is-fixed):not(.is-open) .l-help-sns-navi-wrap {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: row;
    margin: 0;
  }
}

.l-help-navi-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.l-sns-navi-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.l-sns-navi-list__item {
  line-height: 0;
  display: flex;
}

/* ---------------------------------------
/* Bottom
------------------------------------------ */

/* 最近チェックした商品
------------------------------------------ */

.p-checked {
  padding-top: 75px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .p-checked {
    margin-top: 0;
  }
}


/* カレンダー
------------------------------------------ */

.p-calendar {
  padding-top: 75px;
  margin-top: 25px;
  margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .p-calendar {
    margin-top: 0;
    margin-bottom: 120px;
  }
}

.p-calendar-memo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-calendar-memo__txt {
  padding: 20px;
  text-align: left;
  color: #f44336;
}

.tbl_calendar_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.tbl_calendar {
  width: 320px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tbl_calendar {
    width: auto;
  }
}

.tbl_calendar caption {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

.tbl_calendar th,
.tbl_calendar td {
  padding: 5px;
  font-size: 13px;
}

.tbl_calendar_holiday {
  color: #d2d2d2;
  background-color: #d2d2d2;
}

.tbl_calendar_vacation {
  color: #b2b2b2;
  background-color: #b2b2b2;
}

/* ---------------------------------------
/* Footer
------------------------------------------ */

.l-footer-wrap {
  padding: 75px 0;
  background: #282828;
}

.l-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.l-footer-info {
  flex: 1;
}

.l-footer-navi {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

@media screen and (max-width: 1240px) {
  .l-footer {
    display: block;
  }

  .l-footer-navi {
    justify-content: center;
    gap: 90px;
  }
}

@media screen and (max-width: 767px) {
  .l-footer-navi {
    justify-content: space-between;
    gap: 0;
    margin: 0 auto;
    max-width: 380px;
  }
}

/* ショップ紹介
------------------------------------------ */

.l-footer-shopinfo {
  display: flex;
  color: #909090;
}

.l-footer-shopinfo__logo {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.l-footer-shopinfo__txt {
  font-size: 12px;
  padding: 20px;
}

.l-footer-shopinfo__txt .c-ttl-slogan {
  margin: 10px 0;
}

@media screen and (max-width: 1240px) {
  .l-footer-shopinfo {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }

  .l-footer-shopinfo__txt {
    padding-top: 0px;
  }
}

/* SNS・QRコード・その他リンク
------------------------------------------ */

.l-footer-sns-list {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.l-footer-sns-list__item {
  display: flex;
  line-height: 0;
}

@media screen and (max-width: 1240px) {
  .l-footer-sns-list {
    margin-bottom: 60px;
    justify-content: center;
    gap: 20px;
  }
}

.l-footer-qrcode {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .l-footer-qrcode {
    display: none;
  }
}

.l-footer-navi-list__item {
  margin-bottom: 10px;
}

.l-footer-navi a {
  color: #ffffff;
}

.l-footer-navi a:hover {
  color: #909090;
}

@media screen and (max-width: 767px) {
  .l-footer-navi-list[data-footer-navi-list-1] {
    order: 1;
  }

  .l-footer-navi-list[data-footer-navi-list-2] {
    order: 2;
  }

  .l-footer-navi-list[data-footer-navi-list-3] {
    order: 3;
  }
}

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

.l-copyright {
  padding: 30px 0;
  font-size: 12px;
  text-align: center;
  background-color: #000000;
  color: #909090;
}

@media screen and (max-width: 767px) {
  .l-copyright {
    padding: 20px 0;
  }
}

.l-copyright__logo {
  display: none;
}

/***** CSS編集内style *****/

@charset "euc-jp";

body {
  background-color: #ffffff;
  background-image: url(https://img.shop-pro.jp/tmpl_img/84/bg.gif);
  color: #282828;
}

a {
  color: #000000;
}

a:hover {
  color: #5e5e5e;
}


/* ---------------------------------------
/* Coupon
------------------------------------------ */

@media (max-width: 480px) {
  .coupon-modal.is-mini .coupon-box-modal {
    bottom: 100px !important;
  }
}

/* new mark icon
------------------------------------------ */

.new_mark_img1 {
  margin-right: 4px !important;
  margin-top: 0.2em !important;
  display: inline-block !important;
}

/* ---------------------------------------
/* Project Page
------------------------------------------ */

.p-page-contents {
  margin-top: 25px;
}

.p-page-contents:last-child {
  margin-bottom: 160px;
}

@media screen and (max-width: 767px) {
  .p-page-contents {
    margin-top: 0;
  }

  .p-page-contents:last-child {
    margin-bottom: 120px;
  }
}