@charset "UTF-8";
/* =======================================
 汎用css
 ======================================= */
:root {
  --font-gothic: "Noto Sans JP", serif;
  --font-lato: "Lato", serif;
  --base-color: #5d5d5d;
  --color-primary: #4d4d4d;
}

* {
  font-family: "Noto Sans JP", serif;
  font-family: var(--font-gothic);
  color: #5d5d5d;
  color: var(--base-color);
}

body {
  font-family: "Noto Sans JP", serif;
  font-family: var(--font-gothic);
  color: #5d5d5d;
  color: var(--base-color);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", serif;
  font-family: var(--font-gothic);
}

a img {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a:hover img {
  opacity: 0.8;
}
a.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a.opacity:hover {
  opacity: 0.8;
}

.btn-pagetop {
  width: 52px;
  position: absolute;
  right: 38px;
  bottom: 38px;
  display: block;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media only screen and (max-width: 719px) {
  .btn-pagetop {
    width: 40px;
    right: 20px;
    bottom: 20px;
  }
}
.btn-pagetop:hover {
  opacity: 0.8;
}

/* =======================================
 ヘッダー
 ======================================= */
.l-header {
  position: fixed !important;
}
.l-header {
  border: none;
  z-index: 1000;
}
.l-header::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: background-color 0.4s, -webkit-backdrop-filter 0.4s;
  transition: background-color 0.4s, -webkit-backdrop-filter 0.4s;
  transition: backdrop-filter 0.4s, background-color 0.4s;
  transition: backdrop-filter 0.4s, background-color 0.4s, -webkit-backdrop-filter 0.4s;
}
.l-header.is-blur::before {
  background-color: rgba(255, 255, 255, 0.6) !important;
}
.l-header.is-blur::before {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.l-header__inner {
  padding: 0 20px;
  height: 68px;
  max-width: 1260px;
  margin: 0 auto;
}
@media only screen and (max-width: 999px) {
  .l-header__inner {
    height: 55px;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-header__inner__block {
  line-height: 1;
}
.l-header__inner__block__logo {
  max-width: 165px;
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__logo {
    max-width: 144px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__ico {
    position: absolute;
    right: 20px;
    top: 18px;
  }
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__item:not(:last-child) {
    margin-right: 11px;
  }
}
.l-header__inner__block__item--account {
  width: 21px;
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__item--account {
    width: 18px;
  }
}
.l-header__inner__block__item--cart a {
  width: 18px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__item--cart a {
    width: 15px;
  }
}
.l-header__inner__block__item--cart a .count {
  font-size: 10px;
  background: #5d5d5d;
  background: var(--base-color);
  min-width: 17px;
  height: 17px;
  left: 16px;
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__item--cart a .count {
    font-size: 8px;
    min-width: 14px;
    height: 14px;
    left: 10px;
    top: -6px;
  }
}
.l-header__inner__block__item--menu {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 4px;
  cursor: pointer;
}
.l-header__inner__block__item--menu button {
  height: 100%;
  width: 100%;
}
.l-header__inner__block__item--menu span {
  border-bottom: 1px solid #4d4d4d;
  border-bottom: 1px solid var(--color-primary);
  height: 1px;
  position: absolute;
  left: 15px;
}
.l-header__inner__block__item--menu span:nth-child(1) {
  width: 27px;
  top: 37%;
}
.l-header__inner__block__item--menu span:nth-child(2) {
  width: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__inner__block__item--menu span:nth-child(3) {
  width: 16px;
  bottom: 37%;
}
.l-header__inner__block__navi {
  margin: 0 40px 4px auto;
}
.l-header__inner__block__navi .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 27px;
}
.l-header__inner__block__navi .navi li {
  line-height: 1;
}
.l-header__inner__block__navi .navi li a {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.l-header__inner__block__navi .navi li a.en {
  font-family: "Lato", serif;
  font-family: var(--font-lato);
}

/* =======================================
 ドロワーメニュー
 ======================================= */
.c-gmenu {
  z-index: 9999;
}
.c-gmenu__container {
  background: #fff;
}
@media only screen and (max-width: 999px) {
  .c-gmenu__container {
    width: 281px;
  }
}
.c-gmenu__container__inner {
  padding: 75px 20px 30px;
}
.c-gmenu__container__inner .btn {
  font-size: 12px;
  letter-spacing: 0.06em;
  background: #f4f4f4;
  border-radius: 3px;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 19px;
  margin-bottom: 40px;
}
.c-gmenu__container__inner .btn img {
  display: inline-block;
  width: 13px;
  margin-right: 5px;
}
.c-gmenu__container__inner .navi {
  padding: 0 20px;
}
.c-gmenu__container__inner .navi li {
  line-height: 1;
  margin-bottom: 38px;
}
.c-gmenu__container__inner .navi li:last-child {
  margin-bottom: 0;
}
.c-gmenu__container__inner .navi li a {
  font-size: 12px;
  letter-spacing: 0.1em;
  display: block;
}
.c-gmenu__container__inner .navi li a.en {
  font-family: "Lato", serif;
  font-family: var(--font-lato);
}
.c-gmenu__container__close {
  opacity: 1 !important;
}
.c-gmenu__container__close {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-gmenu__container__close span {
  width: 18px;
  height: 1px;
  display: block;
  background: #4d4d4d;
  background: var(--color-primary);
  position: absolute;
  left: 50%;
  margin-left: -9px;
}
.c-gmenu__container__close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-gmenu__container__close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-gmenu__overlay {
  background: rgba(0, 0, 0, 0.45);
}

/* =======================================
 フッター
 ======================================= */
.footer {
  padding: 58px 0;
  background: #f4f4f4;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 719px) {
  .footer {
    padding: 70px 0 30px;
  }
}
.footer__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__brand {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
@media only screen and (max-width: 719px) {
  .footer__brand {
    width: 100%;
    display: contents;
  }
}
.footer__brand__in {
  width: 100%;
}
@media only screen and (max-width: 719px) {
  .footer__brand__in {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 60px;
  }
}
.footer__brand__logo {
  width: 100%;
  max-width: 179px;
  display: block;
  margin-bottom: 29px;
}
@media only screen and (max-width: 719px) {
  .footer__brand__logo {
    max-width: 143px;
    margin-bottom: 23px;
  }
}
.footer__brand__list li {
  line-height: 1;
  margin-bottom: 20px;
}
.footer__brand__list li:last-child {
  margin-bottom: 0;
}
.footer__brand__list li a {
  font-size: 14px;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 719px) {
  .footer__brand__list li a {
    font-size: 13px;
  }
}
.footer__brand__list li a img {
  width: 9px;
  display: inline-block;
  margin-left: 5px;
}
@media only screen and (max-width: 719px) {
  .footer__brand__list li a img {
    width: 8px;
    margin-left: 4px;
  }
}
.footer__brand__copy {
  font-size: 11px;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 719px) {
  .footer__brand__copy {
    font-size: 10px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
.footer__navi {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  .footer__navi {
    gap: 50px 0;
  }
}
@media only screen and (max-width: 719px) {
  .footer__navi {
    width: 100%;
    max-width: 450px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    gap: 38px 0;
    margin-bottom: 60px;
  }
}
.footer__navi__item:nth-child(1) {
  width: 19%;
}
.footer__navi__item:nth-child(2) {
  width: 22%;
}
.footer__navi__item:nth-child(3) {
  width: 32%;
}
.footer__navi__item:nth-child(4) {
  width: 23%;
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  .footer__navi__item {
    width: 50% !important;
  }
}
@media only screen and (max-width: 719px) {
  .footer__navi__item:nth-child(2n-1) {
    width: 58%;
  }
  .footer__navi__item:nth-child(2n) {
    width: 42%;
  }
}
.footer__navi__item .ttl {
  font-size: 13px;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 25px;
}
@media only screen and (max-width: 719px) {
  .footer__navi__item .ttl {
    font-size: 12px;
    margin-bottom: 23px;
  }
}
.footer__navi__item ul li {
  margin-bottom: 17px;
}
@media only screen and (max-width: 719px) {
  .footer__navi__item ul li {
    margin-bottom: 15px;
  }
}
.footer__navi__item ul li:last-child {
  margin-bottom: 0;
}
.footer__navi__item ul li a {
  font-size: 13px;
  letter-spacing: 0.12em;
  display: block;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 719px) {
  .footer__navi__item ul li a {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}
.footer__navi__item dl {
  margin-bottom: 25px;
}
.footer__navi__item dl:last-child {
  margin-bottom: 0;
}
.footer__navi__item dl dt {
  font-size: 14px;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.footer__navi__item dl dd a {
  display: inline-block;
  margin-right: 8px;
}
.footer__navi__item dl dd a:last-child {
  margin-right: 0;
}
.footer__navi__item dl dd a.insta {
  width: 16px;
}
.footer__navi__item dl dd a.line {
  width: 16px;
}
.footer__navi__item dl dd a.x {
  width: 15px;
}
.footer__navi__item dl dd a img {
  display: block;
}

/* =======================================
 PC/SP切り替え用
 ======================================= */
@media only screen and (min-width: 1000px) {
  .sp-nav {
    display: none !important;
  }
}
@media only screen and (max-width: 999px) {
  .pc-nav {
    display: none !important;
  }
}
@media only screen and (min-width: 720px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 719px) {
  .pc {
    display: none !important;
  }
}
/* =======================================
 ecforceデフォルトcss打ち消し用
 ======================================= */
.u-font--body {
  color: #5d5d5d !important;
  color: var(--base-color) !important;
}

.u-text--body {
  color: #5d5d5d !important;
  color: var(--base-color) !important;
  font-family: "Noto Sans JP", serif !important;
  font-family: var(--font-gothic) !important;
}

.u-text--input {
  color: #5d5d5d !important;
  color: var(--base-color) !important;
}

input::-webkit-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::-moz-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::-ms-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input:-ms-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

.u-text--link {
  color: #5d5d5d !important;
  color: var(--base-color) !important;
  font-family: "Noto Sans JP", serif !important;
  font-family: var(--font-gothic) !important;
}

.u-color__btn--bg {
  background: #4d4d4d !important;
  background: var(--color-primary) !important;
}

.u-color__btn--bg {
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 9999px;
}

.u-color__border--border {
  border-color: #dadada !important;
}

.u-color__border--input {
  border-color: var(--color-secondary) !important;
}

.u-color__border--input {
  border-radius: 0;
}

.u-color__btn--bg--overlay {
  background: #4d4d4d !important;
  background: var(--color-primary) !important;
}

.u-color__btn--bg--overlay {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.u-color__bg--bg {
  background: #eae5df !important;
}

.u-color__bg--base {
  background-color: transparent !important;
}

.u-color__bg--accent {
  background: #4d4d4d !important;
  background: var(--color-primary) !important;
}

.u-icon--close:before {
  color: #666666;
}

.p-page_header__inner__title {
  letter-spacing: 0.05em;
}

.l-container__row.u-margin__top--60 {
  margin-top: 50px;
}

.p-column_header__panel__inner {
  background: #fff !important;
}

.p-page_article img {
  max-width: 100%;
}

.p-page_table__inner {
  max-width: 600px;
}

.p-page_content__inner > ul > li h2:before {
  display: none;
}

.c-form_table__checkbox__text a {
  text-decoration: underline;
}

@media only screen and (max-width: 719px) {
  .p-cart_content .c-billing_list {
    margin-bottom: 15px;
  }
}

.c-billing__note {
  font-size: 13px;
  margin-top: 10px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media only screen and (max-width: 719px) {
  .c-billing__note {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 0 30px;
  }
}

.c-table {
  border-left: 1px solid #dadada;
  border-right: 1px solid #dadada;
}
@media only screen and (max-width: 719px) {
  .c-table {
    display: table;
  }
}

@media only screen and (max-width: 719px) {
  .c-table tbody {
    display: table;
  }
}

@media only screen and (max-width: 719px) {
  .c-table tbody tr {
    display: table;
    width: 100%;
  }
}

.c-table tbody tr th {
  font-size: 16px !important;
}

.c-table tbody tr th {
  background: #eeeeee;
  line-height: 1.3125;
  padding: 13px 12px;
}
@media only screen and (max-width: 719px) {
  .c-table tbody tr th {
    display: table-cell;
    margin-bottom: 0;
    width: 36.6%;
  }
}

.c-table tbody tr td {
  font-size: 16px !important;
}

.c-table tbody tr td {
  line-height: 1.3125;
  padding: 13px 12px;
}
@media only screen and (max-width: 719px) {
  .c-table tbody tr td {
    display: table-cell;
  }
}

.p-review__inner__entry__content__form {
  text-align: left;
}

.c-steps_to_order__number {
  background: #f4f4f4;
}

.c-steps_to_order__number.is-active,
.c-steps_to_order__number.is-complete {
  background: #4d4d4d;
  background: var(--color-primary);
}

.c-account_menu__logout {
  background: #4d4d4d;
  background: var(--color-primary);
}

.p-account__inner__content__form__bottom__leave {
  background: #f4f4f4;
  border-radius: 9999px;
}

#cart-show-view {
  padding: 40px 0 80px;
}

@media only screen and (max-width: 719px) {
  #cart-show-view {
    padding: 30px 0 60px;
  }
}
.c-cart_item__img {
  pointer-events: none;
}

.c-cart_item__info__title {
  pointer-events: none;
}

.c-form_table__notes.red {
  color: #e21e1e !important;
}

/* =======================================
 パンくず c-breadcrumb
 ======================================= */
.c-breadcrumb__inner {
  padding-left: 20px;
  padding-right: 20px;
  padding-inline: 20px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}

.c-breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 11px;
  font-weight: 400;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #909090;
}
@media only screen and (max-width: 719px) {
  .c-breadcrumb ul {
    font-size: 10px;
  }
}

/* =======================================
 c-btn
 ======================================= */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 55px;
  text-align: center;
  background-color: #4d4d4d;
  background-color: var(--color-primary);
  border: 1px solid #4d4d4d;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  cursor: pointer;
}
@media only screen and (max-width: 719px) {
  .c-btn {
    border-radius: 3px;
    height: 40px;
    font-size: 12px;
  }
}
.c-btn--border {
  background-color: #fff;
  border: 1px solid #ebebeb;
  color: #5d5d5d;
  color: var(--base-color);
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-btn--border:hover {
  opacity: 0.6;
}
.c-btn.no-click {
  pointer-events: none;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 0.04em;
}@charset "UTF-8";
/* =======================================
 汎用css
 ======================================= */
:root {
  --font-gothic: "Noto Sans JP", serif;
  --font-lato: "Lato", serif;
  --base-color: #5d5d5d;
  --color-primary: #4d4d4d;
}

* {
  font-family: "Noto Sans JP", serif;
  font-family: var(--font-gothic);
  color: #5d5d5d;
  color: var(--base-color);
}

body {
  font-family: "Noto Sans JP", serif;
  font-family: var(--font-gothic);
  color: #5d5d5d;
  color: var(--base-color);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", serif;
  font-family: var(--font-gothic);
}

a img {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a:hover img {
  opacity: 0.8;
}
a.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
a.opacity:hover {
  opacity: 0.8;
}

.btn-pagetop {
  width: 52px;
  position: absolute;
  right: 38px;
  bottom: 38px;
  display: block;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media only screen and (max-width: 719px) {
  .btn-pagetop {
    width: 40px;
    right: 20px;
    bottom: 20px;
  }
}
.btn-pagetop:hover {
  opacity: 0.8;
}

/* =======================================
 ヘッダー
 ======================================= */
.l-header {
  position: fixed !important;
}
.l-header {
  border: none;
  z-index: 1000;
}
.l-header::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: background-color 0.4s, -webkit-backdrop-filter 0.4s;
  transition: background-color 0.4s, -webkit-backdrop-filter 0.4s;
  transition: backdrop-filter 0.4s, background-color 0.4s;
  transition: backdrop-filter 0.4s, background-color 0.4s, -webkit-backdrop-filter 0.4s;
}
.l-header.is-blur::before {
  background-color: rgba(255, 255, 255, 0.6) !important;
}
.l-header.is-blur::before {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.l-header__inner {
  padding: 0 20px;
  height: 68px;
  max-width: 1260px;
  margin: 0 auto;
}
@media only screen and (max-width: 999px) {
  .l-header__inner {
    height: 55px;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-header__inner__block {
  line-height: 1;
}
.l-header__inner__block__logo {
  max-width: 165px;
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__logo {
    max-width: 144px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__ico {
    position: absolute;
    right: 20px;
    top: 18px;
  }
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__item:not(:last-child) {
    margin-right: 11px;
  }
}
.l-header__inner__block__item--account {
  width: 21px;
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__item--account {
    width: 18px;
  }
}
.l-header__inner__block__item--cart a {
  width: 18px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__item--cart a {
    width: 15px;
  }
}
.l-header__inner__block__item--cart a .count {
  font-size: 10px;
  background: #5d5d5d;
  background: var(--base-color);
  min-width: 17px;
  height: 17px;
  left: 16px;
}
@media only screen and (max-width: 999px) {
  .l-header__inner__block__item--cart a .count {
    font-size: 8px;
    min-width: 14px;
    height: 14px;
    left: 10px;
    top: -6px;
  }
}
.l-header__inner__block__item--menu {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 4px;
  cursor: pointer;
}
.l-header__inner__block__item--menu button {
  height: 100%;
  width: 100%;
}
.l-header__inner__block__item--menu span {
  border-bottom: 1px solid #4d4d4d;
  border-bottom: 1px solid var(--color-primary);
  height: 1px;
  position: absolute;
  left: 15px;
}
.l-header__inner__block__item--menu span:nth-child(1) {
  width: 27px;
  top: 37%;
}
.l-header__inner__block__item--menu span:nth-child(2) {
  width: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__inner__block__item--menu span:nth-child(3) {
  width: 16px;
  bottom: 37%;
}
.l-header__inner__block__navi {
  margin: 0 40px 4px auto;
}
.l-header__inner__block__navi .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 27px;
}
.l-header__inner__block__navi .navi li {
  line-height: 1;
}
.l-header__inner__block__navi .navi li a {
  font-size: 13px;
  letter-spacing: 0.1em;
}
.l-header__inner__block__navi .navi li a.en {
  font-family: "Lato", serif;
  font-family: var(--font-lato);
}

/* =======================================
 ドロワーメニュー
 ======================================= */
.c-gmenu {
  z-index: 9999;
}
.c-gmenu__container {
  background: #fff;
}
@media only screen and (max-width: 999px) {
  .c-gmenu__container {
    width: 281px;
  }
}
.c-gmenu__container__inner {
  padding: 75px 20px 30px;
}
.c-gmenu__container__inner .btn {
  font-size: 12px;
  letter-spacing: 0.06em;
  background: #f4f4f4;
  border-radius: 3px;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 19px;
  margin-bottom: 40px;
}
.c-gmenu__container__inner .btn img {
  display: inline-block;
  width: 13px;
  margin-right: 5px;
}
.c-gmenu__container__inner .navi {
  padding: 0 20px;
}
.c-gmenu__container__inner .navi li {
  line-height: 1;
  margin-bottom: 38px;
}
.c-gmenu__container__inner .navi li:last-child {
  margin-bottom: 0;
}
.c-gmenu__container__inner .navi li a {
  font-size: 12px;
  letter-spacing: 0.1em;
  display: block;
}
.c-gmenu__container__inner .navi li a.en {
  font-family: "Lato", serif;
  font-family: var(--font-lato);
}
.c-gmenu__container__close {
  opacity: 1 !important;
}
.c-gmenu__container__close {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-gmenu__container__close span {
  width: 18px;
  height: 1px;
  display: block;
  background: #4d4d4d;
  background: var(--color-primary);
  position: absolute;
  left: 50%;
  margin-left: -9px;
}
.c-gmenu__container__close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-gmenu__container__close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-gmenu__overlay {
  background: rgba(0, 0, 0, 0.45);
}

/* =======================================
 フッター
 ======================================= */
.footer {
  padding: 58px 0;
  background: #f4f4f4;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 719px) {
  .footer {
    padding: 70px 0 30px;
  }
}
.footer__inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__brand {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
@media only screen and (max-width: 719px) {
  .footer__brand {
    width: 100%;
    display: contents;
  }
}
.footer__brand__in {
  width: 100%;
}
@media only screen and (max-width: 719px) {
  .footer__brand__in {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 60px;
  }
}
.footer__brand__logo {
  width: 100%;
  max-width: 179px;
  display: block;
  margin-bottom: 29px;
}
@media only screen and (max-width: 719px) {
  .footer__brand__logo {
    max-width: 143px;
    margin-bottom: 23px;
  }
}
.footer__brand__list li {
  line-height: 1;
  margin-bottom: 20px;
}
.footer__brand__list li:last-child {
  margin-bottom: 0;
}
.footer__brand__list li a {
  font-size: 14px;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 719px) {
  .footer__brand__list li a {
    font-size: 13px;
  }
}
.footer__brand__list li a img {
  width: 9px;
  display: inline-block;
  margin-left: 5px;
}
@media only screen and (max-width: 719px) {
  .footer__brand__list li a img {
    width: 8px;
    margin-left: 4px;
  }
}
.footer__brand__copy {
  font-size: 11px;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 719px) {
  .footer__brand__copy {
    font-size: 10px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
.footer__navi {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  .footer__navi {
    gap: 50px 0;
  }
}
@media only screen and (max-width: 719px) {
  .footer__navi {
    width: 100%;
    max-width: 450px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    gap: 38px 0;
    margin-bottom: 60px;
  }
}
.footer__navi__item:nth-child(1) {
  width: 19%;
}
.footer__navi__item:nth-child(2) {
  width: 22%;
}
.footer__navi__item:nth-child(3) {
  width: 32%;
}
.footer__navi__item:nth-child(4) {
  width: 23%;
}
@media only screen and (max-width: 1099px) and (min-width: 720px) {
  .footer__navi__item {
    width: 50% !important;
  }
}
@media only screen and (max-width: 719px) {
  .footer__navi__item:nth-child(2n-1) {
    width: 58%;
  }
  .footer__navi__item:nth-child(2n) {
    width: 42%;
  }
}
.footer__navi__item .ttl {
  font-size: 13px;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 25px;
}
@media only screen and (max-width: 719px) {
  .footer__navi__item .ttl {
    font-size: 12px;
    margin-bottom: 23px;
  }
}
.footer__navi__item ul li {
  margin-bottom: 17px;
}
@media only screen and (max-width: 719px) {
  .footer__navi__item ul li {
    margin-bottom: 15px;
  }
}
.footer__navi__item ul li:last-child {
  margin-bottom: 0;
}
.footer__navi__item ul li a {
  font-size: 13px;
  letter-spacing: 0.12em;
  display: block;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 719px) {
  .footer__navi__item ul li a {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}
.footer__navi__item dl {
  margin-bottom: 25px;
}
.footer__navi__item dl:last-child {
  margin-bottom: 0;
}
.footer__navi__item dl dt {
  font-size: 14px;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.footer__navi__item dl dd a {
  display: inline-block;
  margin-right: 8px;
}
.footer__navi__item dl dd a:last-child {
  margin-right: 0;
}
.footer__navi__item dl dd a.insta {
  width: 16px;
}
.footer__navi__item dl dd a.line {
  width: 16px;
}
.footer__navi__item dl dd a.x {
  width: 15px;
}
.footer__navi__item dl dd a img {
  display: block;
}

/* =======================================
 PC/SP切り替え用
 ======================================= */
@media only screen and (min-width: 1000px) {
  .sp-nav {
    display: none !important;
  }
}
@media only screen and (max-width: 999px) {
  .pc-nav {
    display: none !important;
  }
}
@media only screen and (min-width: 720px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 719px) {
  .pc {
    display: none !important;
  }
}
/* =======================================
 ecforceデフォルトcss打ち消し用
 ======================================= */
.u-font--body {
  color: #5d5d5d !important;
  color: var(--base-color) !important;
}

.u-text--body {
  color: #5d5d5d !important;
  color: var(--base-color) !important;
  font-family: "Noto Sans JP", serif !important;
  font-family: var(--font-gothic) !important;
}

.u-text--input {
  color: #5d5d5d !important;
  color: var(--base-color) !important;
}

input::-webkit-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::-moz-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::-ms-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input:-ms-input-placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

input::placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

.u-text--link {
  color: #5d5d5d !important;
  color: var(--base-color) !important;
  font-family: "Noto Sans JP", serif !important;
  font-family: var(--font-gothic) !important;
}

.u-color__btn--bg {
  background: #4d4d4d !important;
  background: var(--color-primary) !important;
}

.u-color__btn--bg {
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 9999px;
}

.u-color__border--border {
  border-color: #dadada !important;
}

.u-color__border--input {
  border-color: var(--color-secondary) !important;
}

.u-color__border--input {
  border-radius: 0;
}

.u-color__btn--bg--overlay {
  background: #4d4d4d !important;
  background: var(--color-primary) !important;
}

.u-color__btn--bg--overlay {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.u-color__bg--bg {
  background: #eae5df !important;
}

.u-color__bg--base {
  background-color: transparent !important;
}

.u-color__bg--accent {
  background: #4d4d4d !important;
  background: var(--color-primary) !important;
}

.u-icon--close:before {
  color: #666666;
}

.p-page_header__inner__title {
  letter-spacing: 0.05em;
}

.l-container__row.u-margin__top--60 {
  margin-top: 50px;
}

.p-column_header__panel__inner {
  background: #fff !important;
}

.p-page_article img {
  max-width: 100%;
}

.p-page_table__inner {
  max-width: 600px;
}

.p-page_content__inner > ul > li h2:before {
  display: none;
}

.c-form_table__checkbox__text a {
  text-decoration: underline;
}

@media only screen and (max-width: 719px) {
  .p-cart_content .c-billing_list {
    margin-bottom: 15px;
  }
}

.c-billing__note {
  font-size: 13px;
  margin-top: 10px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media only screen and (max-width: 719px) {
  .c-billing__note {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 0 30px;
  }
}

.c-table {
  border-left: 1px solid #dadada;
  border-right: 1px solid #dadada;
}
@media only screen and (max-width: 719px) {
  .c-table {
    display: table;
  }
}

@media only screen and (max-width: 719px) {
  .c-table tbody {
    display: table;
  }
}

@media only screen and (max-width: 719px) {
  .c-table tbody tr {
    display: table;
    width: 100%;
  }
}

.c-table tbody tr th {
  font-size: 16px !important;
}

.c-table tbody tr th {
  background: #eeeeee;
  line-height: 1.3125;
  padding: 13px 12px;
}
@media only screen and (max-width: 719px) {
  .c-table tbody tr th {
    display: table-cell;
    margin-bottom: 0;
    width: 36.6%;
  }
}

.c-table tbody tr td {
  font-size: 16px !important;
}

.c-table tbody tr td {
  line-height: 1.3125;
  padding: 13px 12px;
}
@media only screen and (max-width: 719px) {
  .c-table tbody tr td {
    display: table-cell;
  }
}

.p-review__inner__entry__content__form {
  text-align: left;
}

.c-steps_to_order__number {
  background: #f4f4f4;
}

.c-steps_to_order__number.is-active,
.c-steps_to_order__number.is-complete {
  background: #4d4d4d;
  background: var(--color-primary);
}

.c-account_menu__logout {
  background: #4d4d4d;
  background: var(--color-primary);
}

.p-account__inner__content__form__bottom__leave {
  background: #f4f4f4;
  border-radius: 9999px;
}

#cart-show-view {
  padding: 40px 0 80px;
}

@media only screen and (max-width: 719px) {
  #cart-show-view {
    padding: 30px 0 60px;
  }
}
.c-cart_item__img {
  pointer-events: none;
}

.c-cart_item__info__title {
  pointer-events: none;
}

.c-form_table__notes.red {
  color: #e21e1e !important;
}

/* =======================================
 パンくず c-breadcrumb
 ======================================= */
.c-breadcrumb__inner {
  padding-left: 20px;
  padding-right: 20px;
  padding-inline: 20px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}

.c-breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 11px;
  font-weight: 400;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #909090;
}
@media only screen and (max-width: 719px) {
  .c-breadcrumb ul {
    font-size: 10px;
  }
}

/* =======================================
 c-btn
 ======================================= */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 55px;
  text-align: center;
  background-color: #4d4d4d;
  background-color: var(--color-primary);
  border: 1px solid #4d4d4d;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  cursor: pointer;
}
@media only screen and (max-width: 719px) {
  .c-btn {
    border-radius: 3px;
    height: 40px;
    font-size: 12px;
  }
}
.c-btn--border {
  background-color: #fff;
  border: 1px solid #ebebeb;
  color: #5d5d5d;
  color: var(--base-color);
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-btn--border:hover {
  opacity: 0.6;
}
.c-btn.no-click {
  pointer-events: none;
  font-family: "Lato", serif;
  font-family: var(--font-lato);
  font-weight: 400;
  letter-spacing: 0.04em;
}