@charset "UTF-8";
/* =======================================
共通、汎用css
 ======================================= */
:root {
  --font-gothic: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
  	"MS PGothic", sans-serif;
  --font-cg: "Jost", sans-serif;
  --color-base: #333333;
  --color-primary: #978977;
  --color-secondary: #c5bbaf;
}

* {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
  	"MS PGothic", sans-serif;
  font-family: var(--font-gothic);
}

body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
  	"MS PGothic", sans-serif;
  font-family: var(--font-gothic);
  color: #333333;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
  	"MS PGothic", sans-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;
}

.base {
  width: 100%;
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
}

.breadcrumb {
  background: #f3f3f3;
  padding: 6px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 18px;
}
@media only screen and (max-width: 719px) {
  .breadcrumb {
    padding: 6px 15px 5px;
  }
}
.breadcrumb li {
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0;
  position: relative;
}
.breadcrumb li:after {
  content: "";
  border: solid #d4d4d4;
  border-width: 0 1px 1px 0;
  padding: 2px;
  position: absolute;
  right: -10px;
  top: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media only screen and (max-width: 719px) {
  .breadcrumb li:after {
    top: 3px;
  }
}
.breadcrumb li:first-child {
  padding-left: 15px;
}
.breadcrumb li:first-child::before {
  content: "";
  background: url(https://d2w53g1q050m78.cloudfront.net/abmarketjp/uploads/img/common/ico_home.svg) no-repeat left top/100%;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 719px) {
  .breadcrumb li:first-child::before {
    top: -1px;
  }
}
.breadcrumb li:last-child:after {
  display: none;
}
.breadcrumb li a {
  color: var(--base-color);
}

.c-ttl {
  text-align: center;
}
.c-ttl .ja {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 719px) {
  .c-ttl .ja {
    font-size: 10px;
  }
}
.c-ttl .en {
  font-size: 43px;
  font-family: "Jost", sans-serif;
  font-family: var(--font-cg);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media only screen and (max-width: 719px) {
  .c-ttl .en {
    font-size: 28px;
  }
}

.c-txt {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.7142857143;
}
@media only screen and (max-width: 719px) {
  .c-txt {
    font-size: 13px;
    line-height: 1.8461538462;
  }
}

.c-btn {
  color: #333333 !important;
  color: var(--color-base) !important;
}

.c-btn {
  font-size: 14px;
  font-weight: 700;
  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;
  margin-top: 10px;
  border: 1px solid #333333;
  border: 1px solid var(--color-base);
  max-width: 182px;
  height: 31px;
  position: relative;
  background: #fff;
}
.c-btn:after {
  content: "";
  background: url(https://d2w53g1q050m78.cloudfront.net/abmarketjp/uploads/img/common/ico_arrow_small.svg) no-repeat left top/100%;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* =======================================
 PC/SP切り替え用
 ======================================= */
@media only screen and (min-width: 1200px) {
  .sp-nav {
    display: none !important;
  }
}
@media only screen and (max-width: 1199px) {
  .pc-nav {
    display: none !important;
  }
}
@media only screen and (min-width: 1001px) {
  .sp-1000 {
    display: none !important;
  }
}
@media only screen and (max-width: 1000px) {
  .pc-1000 {
    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;
  }
}
/* =======================================
 ヘッダー
 ======================================= */
.l-header {
  border: none;
  line-height: 1;
  background: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header .l-header__bar {
  position: relative;
  background: #333333;
  background: var(--color-base);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  padding: 7px 20px;
}
@media only screen and (max-width: 719px) {
  .l-header .l-header__bar {
    padding: 8px 35px;
    font-size: 12px;
  }
}
.l-header .l-header__bar .close {
  position: absolute;
  top: 50%;
  right: 27px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(https://d2w53g1q050m78.cloudfront.net/abmarketjp/uploads/img/common/ico_close.svg) no-repeat right top/100%;
  cursor: pointer;
}
@media only screen and (max-width: 719px) {
  .l-header .l-header__bar .close {
    right: 11px;
  }
}
.l-header .l-header__bar.closed {
  display: none;
}
.l-header .l-header__inner {
  padding: 0;
  margin: 0;
  height: auto;
  display: block;
  position: relative;
}
.l-header .l-header__inner__block__item--menu {
  width: 30px;
  height: 24px;
  margin-right: 0;
  cursor: pointer;
}
@media only screen and (max-width: 1199px) {
  .l-header .l-header__inner__block__item--menu {
    width: 25px;
    height: 18px;
    margin: 2px 0 0;
  }
}
.l-header .l-header__inner__block__item--menu button {
  vertical-align: top;
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}
.l-header .l-header__inner__block__item--menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333333;
  background: var(--color-base);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.l-header .l-header__inner__block__item--menu span:nth-child(1) {
  top: 0;
}
.l-header .l-header__inner__block__item--menu span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header .l-header__inner__block__item--menu span:nth-child(3) {
  bottom: 0;
}
.l-header .l-header__inner__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  max-width: 1360px;
  padding: 10px 20px 0;
  margin: 0 auto;
  position: relative;
  background: #fff;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .l-header .l-header__inner__top {
    height: 58px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 20px;
    gap: 0 25px;
  }
}
.l-header .l-header__inner__top .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1199px) {
  .l-header .l-header__inner__top .box {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.l-header .l-header__inner__top .logo {
  position: absolute;
  bottom: 15px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 215px;
}
@media only screen and (max-width: 1199px) {
  .l-header .l-header__inner__top .logo {
    width: 97px;
    position: relative;
    bottom: auto;
    bottom: initial;
    top: auto;
    top: initial;
    left: auto;
    left: initial;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin: 3px auto 0 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.l-header .l-header__inner__top .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 17px;
}
@media only screen and (max-width: 1199px) {
  .l-header .l-header__inner__top .navi {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 0 25px;
  }
}
.l-header .l-header__inner__top .navi li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header .l-header__inner__top .navi li a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
}
.l-header .l-header__inner__top .navi li a span {
  display: block;
  color: var(--base-color);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .l-header .l-header__inner__top .navi li a span {
    display: none;
  }
}
.l-header .l-header__inner__top .navi li img {
  width: 100%;
}
.l-header .l-header__inner__top .navi li figure {
  margin: 0 auto 6px;
}
@media only screen and (max-width: 1199px) {
  .l-header .l-header__inner__top .navi li figure {
    margin: 0;
  }
}
.l-header .l-header__inner__top .navi li a.info figure {
  width: 20px;
}
.l-header .l-header__inner__top .navi li a.favorite figure {
  width: 26px;
}
.l-header .l-header__inner__top .navi li a.history figure {
  width: 24px;
}
.l-header .l-header__inner__top .navi li a.account figure {
  width: 21.4px;
}
.l-header .l-header__inner__top .navi li .search {
  cursor: pointer;
}
.l-header .l-header__inner__top .navi li .search figure {
  padding: 5px 0 0;
  width: 26px;
}
.l-header .l-header__inner__top .navi li .search figure img {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.l-header .l-header__inner__top .navi li a.cart figure {
  width: 24px;
  padding: 0 0 0 2px;
}
@media only screen and (max-width: 1199px) {
  .l-header .l-header__inner__top .navi li a.cart figure {
    width: 24px;
    padding: 0;
  }
}
.l-header .l-header__inner__top.hidden .logo,
.l-header .l-header__inner__top.hidden .navi {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .l-header .search-bottom {
    padding: 0 15px 15px;
    background: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .l-header .search-bottom.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .l-header .search-bottom .p-search_menu__form {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}
.l-header .megamenu {
  display: none;
  background: #c5bbaf;
  background: var(--color-secondary);
  position: fixed;
  left: 0;
  top: 143px;
  z-index: 9999;
  width: 100%;
  height: calc(100% - 143px);
  overflow-y: scroll;
}
.l-header .megamenu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
}
.l-header .megamenu__inner .tab {
  width: 186px;
  background: #978977;
  background: var(--color-primary);
}
.l-header .megamenu__inner .tab a {
  color: #fff !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.l-header .megamenu__inner .tab a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  padding-left: 38px;
  height: 52px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header .megamenu__inner .tab a.active {
  background: #3c69aa;
}
.l-header .megamenu__inner .tab img {
  width: 34px;
  display: inline-block;
  margin-right: 10px;
}
.l-header .megamenu__inner .outer {
  display: none;
  padding: 36px;
  width: calc(100% - 186px);
}
.l-header .megamenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px 1.875%;
  width: 100%;
}
.l-header .megamenu__list__item {
  width: 18.5%;
  overflow: hidden;
}
.l-header .megamenu__list__item a {
  padding-bottom: 13px !important;
}
.l-header .megamenu__list__item a {
  display: block;
  background: #fff;
  border-radius: 10px;
  height: 147px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.l-header .megamenu__list__item a img {
  display: block;
  max-width: 100px;
  margin: 0 auto 7px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.l-header .megamenu__list__item a span {
  font-size: 13px;
  color: #020033;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.l-header .megamenu__list__item a:hover {
  opacity: 1;
}
.l-header .megamenu__list__item a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}
.l-header .megamenu__list__item.all a {
  padding: 0 !important;
}
.l-header .megamenu__list__item.all a {
  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;
  font-size: 16px;
  color: #978977;
  color: var(--color-primary);
  font-weight: 500;
  border: 1px solid #acbcd7;
}

body.scroll .l-header {
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
検索窓
======================================== */
.search.hidden {
  display: none;
}
.search .p-search_menu__form {
  position: relative;
  width: 274px;
  height: 43px;
  background: #fff;
  border: 1px solid #cecdcd;
  border-radius: 9999px;
  padding: 10px 0px 10px 25px;
}
.search .p-search_menu__form .p-search_menu__container__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.search .p-search_menu__form .p-search_menu__container__inner .input {
  width: calc(100% - 45px);
  font-size: 14px;
}
@media only screen and (max-width: 719px) {
  .search .p-search_menu__form .p-search_menu__container__inner .input {
    font-size: 16px;
  }
}
.search .p-search_menu__form .p-search_menu__container__inner ::-webkit-input-placeholder {
  font-size: 13px !important;
}
.search .p-search_menu__form .p-search_menu__container__inner ::-moz-placeholder {
  font-size: 13px !important;
}
.search .p-search_menu__form .p-search_menu__container__inner :-ms-input-placeholder {
  font-size: 13px !important;
}
.search .p-search_menu__form .p-search_menu__container__inner ::-ms-input-placeholder {
  font-size: 13px !important;
}
.search .p-search_menu__form .p-search_menu__container__inner ::placeholder {
  font-size: 13px !important;
}
.search .p-search_menu__form .p-search_menu__container__inner ::-webkit-input-placeholder {
  color: #efefef;
}
.search .p-search_menu__form .p-search_menu__container__inner ::-moz-placeholder {
  color: #efefef;
}
.search .p-search_menu__form .p-search_menu__container__inner :-ms-input-placeholder {
  color: #efefef;
}
.search .p-search_menu__form .p-search_menu__container__inner ::-ms-input-placeholder {
  color: #efefef;
}
.search .p-search_menu__form .p-search_menu__container__inner ::placeholder {
  color: #efefef;
}
.search .p-search_menu__form .p-search_menu__container__inner .js-gmenu-search-submit {
  width: 45px;
  height: 23px;
}
.search .p-search_menu__form .p-search_menu__container__inner .js-gmenu-search-submit img {
  width: 20px;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 719px) {
  .search .p-search_menu__form .p-search_menu__container__inner .js-gmenu-search-submit img {
    width: 24px;
  }
}
@media only screen and (max-width: 1199px) {
  .search .p-search_menu__form {
    max-width: 300px;
    margin: 0;
  }
  .search .p-search_menu__form ::-webkit-input-placeholder {
    font-size: 10px !important;
  }
  .search .p-search_menu__form ::-moz-placeholder {
    font-size: 10px !important;
  }
  .search .p-search_menu__form :-ms-input-placeholder {
    font-size: 10px !important;
  }
  .search .p-search_menu__form ::-ms-input-placeholder {
    font-size: 10px !important;
  }
  .search .p-search_menu__form ::placeholder {
    font-size: 10px !important;
  }
}

.c-gmenu {
  left: -110%;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: left 0s 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: left 0s 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: left 0s 0.4s, opacity 0.4s, transform 0.4s;
  transition: left 0s 0.4s, opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
  z-index: 9999;
}
@media only screen and (max-width: 719px) {
  .c-gmenu {
    left: auto;
    left: initial;
    right: 110%;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    -webkit-transition: right 0s 0.4s, opacity 0.4s, -webkit-transform 0.4s;
    transition: right 0s 0.4s, opacity 0.4s, -webkit-transform 0.4s;
    transition: right 0s 0.4s, opacity 0.4s, transform 0.4s;
    transition: right 0s 0.4s, opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
  }
}
.c-gmenu.is-active {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (max-width: 719px) {
  .c-gmenu.is-active {
    left: auto;
    left: initial;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-gmenu .c-gmenu__overlay {
  background: rgba(0, 0, 0, 0.4);
}
.c-gmenu .c-gmenu__container {
  width: 384px;
  background: #fff;
}
@media only screen and (max-width: 719px) {
  .c-gmenu .c-gmenu__container {
    width: 330px;
    margin: 0 0 0 auto;
  }
}
.c-gmenu .c-gmenu__container__inner {
  padding: 55px 20px 60px;
}
@media only screen and (max-width: 719px) {
  .c-gmenu .c-gmenu__container__inner {
    padding: 20px 20px 35px;
  }
}
.c-gmenu .c-gmenu__container__close {
  opacity: 1 !important;
}
.c-gmenu .c-gmenu__container__close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50px;
  left: 424px;
}
@media only screen and (max-width: 719px) {
  .c-gmenu .c-gmenu__container__close {
    left: auto;
    left: initial;
    right: 340px;
    top: 30px;
  }
}
.c-gmenu .c-gmenu__container__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #fff;
}
.c-gmenu .c-gmenu__container__close span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-gmenu .c-gmenu__container__close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.c-gmenu .logo {
  width: 165px;
  margin: 0 0 29px;
}
.c-gmenu .btn__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px 0;
  margin: 0 0 12px;
}
.c-gmenu .btn__box a {
  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;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #333333;
  border: 1px solid var(--color-base);
  width: calc(50% - 3px);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.c-gmenu .btn__box a.login {
  background: #333333;
  background: var(--color-base);
}
.c-gmenu .btn__box a.register {
  color: #333333;
  color: var(--color-base);
}
.c-gmenu .search {
  margin: 0 0 35px;
}
.c-gmenu .search .p-search_menu__form {
  width: 100%;
  height: 48px;
  max-width: none;
}
.c-gmenu .block {
  margin: 0 0 35px;
}
.c-gmenu .block:last-of-type {
  margin: 0;
}
.c-gmenu .block .ttl {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0 0 12px;
}
.c-gmenu .block .navi li {
  position: relative;
  position: relative;
  border-bottom: 1px solid #eaeaea;
}
.c-gmenu .block .navi li[\:has\(.ico\)] a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
.c-gmenu .block .navi li:has(.ico) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
.c-gmenu .block .navi li[\:has\(.accordion__ttl.opened\)] {
  margin: 0 0 35px;
}
.c-gmenu .block .navi li:has(.accordion__ttl.opened) {
  margin: 0 0 35px;
}
.c-gmenu .block .navi li:first-child {
  border-top: 1px solid #eaeaea;
}
.c-gmenu .block .navi li .ico {
  width: 17px;
}
.c-gmenu .block .navi li .ico img {
  width: 100%;
}
.c-gmenu .block .navi li a {
  display: block;
  position: relative;
  color: #333333;
  color: var(--color-base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5384615385;
  padding: 15px 30px 15px 0;
}
.c-gmenu .block .navi li a::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 13px;
  width: 12px;
  height: 4px;
  background: url(https://d2w53g1q050m78.cloudfront.net/abmarketjp/uploads/img/common/ico_arrow_black.svg) no-repeat right top/100%;
}
.c-gmenu .block .navi li .accordion__ttl {
  display: block;
  position: relative;
  color: #333333;
  color: var(--color-base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5384615385;
  padding: 15px 50px 15px 20px;
  background: #f3f3f3;
  margin: 0 -20px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-gmenu .block .navi li .accordion__ttl:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 719px) {
  .c-gmenu .block .navi li .accordion__ttl:hover {
    opacity: 1;
  }
}
.c-gmenu .block .navi li .accordion__ttl::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 34px;
  width: 12px;
  height: 1px;
  background: #333333;
  background: var(--color-base);
}
.c-gmenu .block .navi li .accordion__ttl::after {
  content: "";
  position: absolute;
  top: 18.5px;
  right: 39.5px;
  width: 1px;
  height: 12px;
  background: #333333;
  background: var(--color-base);
  opacity: 1;
}
.c-gmenu .block .navi li .accordion__ttl.opened::after {
  opacity: 0;
}
.c-gmenu .block .navi li .accordion__container {
  display: none;
}
.c-gmenu .block .navi li .accordion__container li:last-child {
  border-bottom: none;
}
.c-gmenu .sns {
  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;
  gap: 0 25px;
  padding: 30px 0 0;
}
.c-gmenu .sns li a {
  display: block;
}
.c-gmenu .sns li a img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.c-gmenu .sns li a.line {
  width: 26px;
}
.c-gmenu .sns li a.insta {
  width: 25px;
}
.c-gmenu .sns li a.tiktok {
  width: 22px;
}

/* =======================================
 フッター
 ======================================= */
.footer {
  padding: 55px 0 0;
  background: #333333;
  background: var(--color-base);
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 719px) {
  .footer {
    padding: 55px 0 0;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 30px;
  border-bottom: 2px solid #3c3c3c;
}
@media only screen and (max-width: 1300px) and (min-width: 719px) {
  .footer__top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 719px) {
  .footer__top {
    padding: 0;
    border-bottom: none;
  }
}
.footer__top__block {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1300px) and (min-width: 719px) {
  .footer__top__block {
    width: 100%;
  }
}
@media only screen and (max-width: 719px) {
  .footer__top__block {
    width: 100%;
  }
}
.footer__top__block .logo {
  display: block;
  width: 245px;
  margin: 0 0 24px;
}
@media only screen and (max-width: 1300px) and (min-width: 719px) {
  .footer__top__block .logo {
    margin: 0 auto 24px;
  }
}
@media only screen and (max-width: 719px) {
  .footer__top__block .logo {
    max-width: 154px;
    margin: 0 auto 35px;
  }
}
.footer__top__block .logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  width: 100%;
}
.footer__top__block .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
}
@media only screen and (max-width: 1300px) and (min-width: 719px) {
  .footer__top__block .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 719px) {
  .footer__top__block .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 25px;
    padding: 35px 0 0;
    border-top: 1.5px solid #3c3c3c;
  }
}
.footer__top__block .sns li a {
  display: block;
}
.footer__top__block .sns li a.line {
  width: 20px;
}
@media only screen and (max-width: 719px) {
  .footer__top__block .sns li a.line {
    width: 26px;
  }
}
.footer__top__block .sns li a.insta {
  width: 20px;
}
@media only screen and (max-width: 719px) {
  .footer__top__block .sns li a.insta {
    width: 25px;
  }
}
.footer__top__block .sns li a.tiktok {
  width: 18px;
}
@media only screen and (max-width: 719px) {
  .footer__top__block .sns li a.tiktok {
    width: 22px;
  }
}
.footer__top__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px 53px;
  padding: 20px 0 0;
}
@media only screen and (max-width: 1300px) and (min-width: 719px) {
  .footer__top__navi {
    gap: 22px 35px;
    max-width: 400px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 719px) {
  .footer__top__navi {
    gap: 15px 0;
    width: 100%;
    padding: 30px 0;
    max-width: 400px;
    margin: 0 auto;
  }
}
.footer__top__navi li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 719px) {
  .footer__top__navi li {
    width: 50%;
  }
}
.footer__top__navi li a {
  display: block;
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
  	"MS PGothic", sans-serif;
  font-family: var(--font-gothic);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0 23px;
}
@media only screen and (max-width: 719px) {
  .footer__bottom {
    padding: 5px 0 18px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.footer__bottom__copy {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media only screen and (max-width: 719px) {
  .footer__bottom__copy {
    width: 100%;
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
  }
}
.footer__bottom__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 28px;
}
@media only screen and (max-width: 719px) {
  .footer__bottom__navi {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    gap: 15px 30px;
    margin: 0 0 30px;
  }
}
.footer__bottom__navi li a {
  display: block;
  color: #c2c2c2;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ========================================
サイドバーあり
======================================== */
.c-wrap {
  padding: 60px 0 65px;
}
@media only screen and (max-width: 1000px) {
  .c-wrap {
    padding: 0;
  }
}
.c-wrap__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.c-wrap__sidebar {
  width: 340px;
}
@media only screen and (max-width: 1000px) {
  .c-wrap__sidebar {
    width: 100%;
  }
}
.c-wrap__main {
  width: calc(100% - 340px);
  padding: 0 0 0 60px;
}
@media only screen and (max-width: 1200px) and (min-width: 1001px) {
  .c-wrap__main {
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width: 1000px) {
  .c-wrap__main {
    width: 100%;
    padding: 0;
  }
}

/* ========================================
サイドバー
======================================== */
@media only screen and (max-width: 1000px) {
  .c-sidebar {
    margin: 0 -20px;
  }
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__tab ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-sidebar__tab ul li {
    width: 50%;
    padding: 15px 5px;
    border-bottom: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    color: #888888;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
  }
  .c-sidebar__tab ul li:nth-child(1), .c-sidebar__tab ul li:nth-child(2) {
    border-top: 1px solid #eaeaea;
  }
  .c-sidebar__tab ul li:nth-child(2n-1) {
    border-left: 1px solid #eaeaea;
  }
  .c-sidebar__tab ul li.is-active {
    background: #333333;
    background: var(--color-base);
    color: #fff;
    border-color: #333333;
    border-color: var(--color-base);
  }
}
.c-sidebar__block {
  margin: 0 0 24px;
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__block {
    margin: 0;
  }
}
.c-sidebar__block:last-of-type {
  margin: 0;
}
.c-sidebar__block__ttl {
  padding: 15px 5px 13px;
  background: #e7e7e7;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block__ttl {
    font-size: 14px;
  }
}
.c-sidebar__block__slider {
  background: #f2f2f2;
}
.c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] {
  margin: 0;
  padding: 0 0 32px;
}
.c-sidebar__block__slider.slick-slider:has(.slick-dots) {
  margin: 0;
  padding: 0 0 32px;
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] {
    padding: 0 0 45px;
  }
  .c-sidebar__block__slider.slick-slider:has(.slick-dots) {
    padding: 0 0 45px;
  }
}
.c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] .slick-dots {
  bottom: 5px;
}
.c-sidebar__block__slider.slick-slider:has(.slick-dots) .slick-dots {
  bottom: 5px;
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] .slick-dots {
    bottom: 10px;
  }
  .c-sidebar__block__slider.slick-slider:has(.slick-dots) .slick-dots {
    bottom: 10px;
  }
}
.c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] .slick-dots li {
  margin: 0 0 2px;
}
.c-sidebar__block__slider.slick-slider:has(.slick-dots) .slick-dots li {
  margin: 0 0 2px;
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] .slick-dots li {
    margin: 0;
  }
  .c-sidebar__block__slider.slick-slider:has(.slick-dots) .slick-dots li {
    margin: 0;
  }
}
.c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] .slick-dots li button::before {
  font-size: 7px;
}
.c-sidebar__block__slider.slick-slider:has(.slick-dots) .slick-dots li button::before {
  font-size: 7px;
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] .slick-dots li button::before {
    font-size: 8px;
  }
  .c-sidebar__block__slider.slick-slider:has(.slick-dots) .slick-dots li button::before {
    font-size: 8px;
  }
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__block.categories .c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] {
    padding: 0 0 40px;
  }
  .c-sidebar__block.categories .c-sidebar__block__slider.slick-slider:has(.slick-dots) {
    padding: 0 0 40px;
  }
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__block.categories .c-sidebar__block__slider.slick-slider[\:has\(.slick-dots\)] .c-sidebar__block__container {
    padding: 20px 20px 0px;
  }
  .c-sidebar__block.categories .c-sidebar__block__slider.slick-slider:has(.slick-dots) .c-sidebar__block__container {
    padding: 20px 20px 0px;
  }
}
.c-sidebar__block.categories .c-sidebar__block__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 0;
  padding: 17px 15px 15px;
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block.categories .c-sidebar__block__container {
    padding: 20px 20px 15px;
  }
}
.c-sidebar__block.categories .c-sidebar__block__container li {
  width: 33.3333333333%;
}
@media only screen and (max-width: 1000px) and (min-width: 720px) {
  .c-sidebar__block.categories .c-sidebar__block__container li {
    width: 20%;
  }
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block.categories .c-sidebar__block__container li {
    width: 25%;
  }
}
.c-sidebar__block.categories .c-sidebar__block__container li a {
  display: block;
}
.c-sidebar__block.categories .c-sidebar__block__container li a .img {
  max-width: 80px;
  margin: 0 auto 8px;
}
.c-sidebar__block.categories .c-sidebar__block__container li a .txt {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__block.categories .c-sidebar__block__container li a .txt {
    font-size: 12px;
  }
}
.c-sidebar__block.brand .c-sidebar__block__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-sidebar__block.brand .c-sidebar__block__container li {
  width: 50%;
  border-bottom: 1px solid #eaeaea;
}
.c-sidebar__block.brand .c-sidebar__block__container li:nth-child(2n-1) {
  border-right: 1px solid #eaeaea;
}
.c-sidebar__block.brand .c-sidebar__block__container li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}
.c-sidebar__block.brand .c-sidebar__block__container li a .img {
  max-width: 105px;
  max-height: 21px;
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block.brand .c-sidebar__block__container li a .img {
    max-width: 111px;
    max-height: 22px;
  }
}
.c-sidebar__block.brand .c-sidebar__block__container li a .img img {
  width: 100%;
  margin: 0 auto;
}
.c-sidebar__block.worries .c-sidebar__block__slider[\:has\(.slick-dots\)] .c-sidebar__block__container {
  padding: 20px 20px 0;
}
.c-sidebar__block.worries .c-sidebar__block__slider:has(.slick-dots) .c-sidebar__block__container {
  padding: 20px 20px 0;
}
.c-sidebar__block.worries .c-sidebar__block__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  padding: 20px 20px;
}
.c-sidebar__block.worries .c-sidebar__block__container li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
}
.c-sidebar__block.worries .c-sidebar__block__container li a {
  display: block;
  padding: 7px 15px;
  color: #333333;
  color: var(--color-base);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-sidebar__block.price .c-sidebar__block__container {
  padding: 10px 20px 30px;
}
@media only screen and (max-width: 719px) {
  .c-sidebar__block.price .c-sidebar__block__container {
    padding: 10px 20px 40px;
  }
}
.c-sidebar__block.price .c-sidebar__block__container li {
  border-bottom: 1px solid #eaeaea;
}
.c-sidebar__block.price .c-sidebar__block__container li a {
  display: block;
  position: relative;
  padding: 15px 20px 15px 0;
  color: #333333;
  color: var(--color-base);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.c-sidebar__block.price .c-sidebar__block__container li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  padding: 3px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #ababab;
  border-right: 2px solid #ababab;
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__block.bnr {
    display: none;
  }
}
.c-sidebar__block.bnr a {
  display: block;
  margin: 0 0 10px;
}
.c-sidebar__block.bnr a:last-child {
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__block.guide {
    display: none;
  }
}
.c-sidebar__block.guide .ttl {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 10px 0 15px;
}
.c-sidebar__block.guide .c-sidebar__block__container li {
  border-bottom: 1px solid #eaeaea;
}
.c-sidebar__block.guide .c-sidebar__block__container li:first-child {
  border-top: 1px solid #eaeaea;
}
.c-sidebar__block.guide .c-sidebar__block__container li a {
  display: block;
  position: relative;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-sidebar__block.guide .c-sidebar__block__container li a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13px;
  width: 15px;
  height: 5px;
  background: url(https://d2w53g1q050m78.cloudfront.net/abmarketjp/uploads/img/common/ico_arrow_black.svg) no-repeat right top/100%;
}
.c-sidebar__block.popular {
  margin: 40px 0 0;
  background: #f3f3f3;
  padding: 0 17px 17px;
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__block.popular {
    display: none;
    padding: 40px 20px;
  }
}
.c-sidebar__block.popular .c-sidebar__block__ttl {
  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;
  gap: 10px;
  background: none;
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__block.popular .c-sidebar__block__ttl {
    font-size: 14px;
    background: #fff;
    padding: 25px 0 0;
  }
}
.c-sidebar__block.popular .c-sidebar__block__ttl img {
  width: 20px;
}
.c-sidebar__block.popular .c-sidebar__block__container {
  background: #fff;
  counter-reset: section 0;
  padding: 20px 5px 25px;
}
.c-sidebar__block.popular .c-sidebar__block__container li {
  max-width: 260px;
  margin: 0 auto 17px;
}
.c-sidebar__block.popular .c-sidebar__block__container li:last-child {
  margin: 0 auto;
}
.c-sidebar__block.popular .c-sidebar__block__container li:nth-of-type(1) a::before, .c-sidebar__block.popular .c-sidebar__block__container li:nth-of-type(2) a::before, .c-sidebar__block.popular .c-sidebar__block__container li:nth-of-type(3) a::before {
  color: #ff361c;
}
.c-sidebar__block.popular .c-sidebar__block__container li a {
  display: block;
  position: relative;
  color: #8e8d8d;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 0 0 20px;
}
.c-sidebar__block.popular .c-sidebar__block__container li a::before {
  counter-increment: section 1; /* section カウンターを 1 ずつ増加 */
  content: counter(section); /* section カウンターの値を表示 */
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  color: #333333;
  color: var(--color-base);
  font-weight: 600;
  text-align: center;
}
.c-sidebar__popular .c-sidebar__block.popular {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .c-sidebar__popular .c-sidebar__block.popular {
    display: block;
  }
}

/* ========================================
商品リスト
======================================== */
@media only screen and (max-width: 719px) {
  .product.ranking .product__list {
    margin: 0 !important;
  }
  .product.ranking .product__list {
    gap: 10px 0;
  }
}
@media only screen and (max-width: 719px) {
  .product.ranking .product__list.opened .product__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 719px) {
  .product.ranking .product__item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 719px) {
  .product.ranking .product__item__img {
    width: 120px;
  }
}
@media only screen and (max-width: 719px) {
  .product.ranking .product__item__box {
    width: calc(100% - 120px);
    padding: 0 0 0 20px;
  }
}
@media only screen and (max-width: 719px) {
  .product.ranking .accordion {
    display: none;
    gap: 10px 0;
  }
}
@media only screen and (max-width: 719px) {
  .product.ranking .accordion__in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 0;
  }
}
@media only screen and (max-width: 719px) {
  .product.ranking .accordion .product__item.number .product__item__img::after {
    background: #333333;
    background: var(--color-base);
  }
}
@media only screen and (max-width: 719px) {
  .product.ranking .more {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #333333;
    background: var(--color-base);
    margin: 20px auto 0;
  }
  .product.ranking .more::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 12px;
    height: 1.5px;
    background: #fff;
  }
  .product.ranking .more::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 1.5px;
    height: 12px;
    background: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .product.ranking .more.opened::after {
    opacity: 0;
    visibility: hidden;
  }
}
.product__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 20px;
  margin: 0 0 13px;
}
.product__heading__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.product__heading__ttl .ja {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 719px) {
  .product__heading__ttl .ja {
    font-size: 10px;
    line-height: 1.5;
  }
}
.product__heading__ttl .en {
  font-family: "Jost", sans-serif;
  font-family: var(--font-cg);
  font-size: 43px;
  line-height: 1.4418604651;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 719px) {
  .product__heading__ttl .en {
    font-size: 28px;
    line-height: 1.4285714286;
  }
}
.product__heading__btn {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333333;
  color: var(--color-base);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 5px 40px 3px 0;
  margin: 0 0 10px;
}
@media only screen and (max-width: 719px) {
  .product__heading__btn {
    font-size: 14px;
    line-height: 1.5;
    padding: 6px 36px 3px 0;
    margin: 0 0 8px;
  }
}
.product__heading__btn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(https://d2w53g1q050m78.cloudfront.net/abmarketjp/uploads/img/common/ico_arrow.svg) no-repeat left top/100%;
}
@media only screen and (max-width: 719px) {
  .product__heading__btn::before {
    width: 28px;
    height: 28px;
    background: url(https://d2w53g1q050m78.cloudfront.net/abmarketjp/uploads/img/common/ico_arrow_sp.svg) no-repeat left top/100%;
  }
}
.product__list {
  counter-reset: num 0;
}
@media only screen and (max-width: 719px) {
  .product__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px 3px;
    margin: 0 -20px;
  }
}
.product__list:not(.slider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 1301px) {
  .product__list:not(.slider) {
    gap: 25px 1.11731844%;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 719px) {
  .product__list:not(.slider) {
    padding-right: 25px !important;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 1101px) {
  .product__list:not(.slider) {
    gap: 25px 1.40056022%;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 1001px) {
  .product__list:not(.slider) {
    gap: 25px 1.87617261%;
  }
}
@media only screen and (max-width: 1000px) and (min-width: 720px) {
  .product__list:not(.slider) {
    gap: 25px 1.40056022%;
  }
}
.product__list:not(.slider) .product__item {
  margin: 0;
}
@media only screen and (min-width: 1401px) {
  .product__list:not(.slider) .product__item {
    width: 19.10614525%;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 1101px) {
  .product__list:not(.slider) .product__item {
    width: 23.94957983%;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 1001px) {
  .product__list:not(.slider) .product__item {
    width: 32.08255159%;
  }
}
@media only screen and (max-width: 1001px) and (min-width: 720px) {
  .product__list:not(.slider) .product__item {
    width: 23.94957983%;
  }
}
@media only screen and (max-width: 719px) {
  .product__list:not(.slider) .product__item:nth-child(n+7) {
    display: block;
  }
}
.product__item {
  width: 180px;
  position: relative;
  margin: 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 719px) {
  .product__item {
    width: calc(33.3% - 2px);
    margin: 0;
  }
}
.product__item:hover {
  opacity: 0.7;
}
.product__item:first-child {
  margin: 0 5px 0 0;
}
@media only screen and (max-width: 719px) {
  .product__item:first-child {
    margin: 0;
  }
}
@media only screen and (max-width: 719px) {
  .product__item:nth-child(n+7) {
    display: none;
  }
}
.product__item.number .product__item__img::after {
  counter-increment: num 1; /* num カウンターを 1 ずつ増加 */
  content: counter(num); /* num カウンターの値を表示 */
  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;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background: #333333;
  background: var(--color-base);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-family: var(--font-cg);
  font-size: 16px;
  font-weight: 500;
  padding: 1px 0 0;
  letter-spacing: 0;
}
@media only screen and (max-width: 719px) {
  .product__item.number .product__item__img::after {
    padding: 0;
  }
}
.product__item.number:nth-of-type(1) .product__item__img::after {
  background: #d09b53;
}
.product__item.number:nth-of-type(2) .product__item__img::after {
  background: #c2c2c2;
}
.product__item.number:nth-of-type(3) .product__item__img::after {
  background: #896236;
}
.product__item__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product__item__img {
  position: relative;
  background: #fff;
  border: 1px solid #f3f3f3;
}
.product__item__img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product__item__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__item__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}
@media only screen and (max-width: 719px) {
  .product__item__favorite {
    top: 7px;
    right: 7px;
  }
}
.product__item__favorite .c-product_item__form .c-product_item__button {
  width: 20px;
  height: auto;
}
@media only screen and (max-width: 719px) {
  .product__item__favorite .c-product_item__form .c-product_item__button {
    width: 17px;
  }
}
.product__item__favorite .c-product_item__form .c-product_item__button img {
  position: relative;
  top: auto;
  top: initial;
  left: auto;
  left: initial;
  width: 100%;
  height: auto;
}
.product__item__box {
  padding: 18px 0 0;
}
@media only screen and (max-width: 719px) {
  .product__item__box {
    padding: 10px 5px 0;
  }
}
.product__item__box .brand {
  color: #ababab;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 0 5px;
}
@media only screen and (max-width: 719px) {
  .product__item__box .brand {
    font-size: 12px;
    line-height: 1.5;
  }
}
.product__item__box .ttl {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4125;
  letter-spacing: 0;
  margin: 0 0 10px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media only screen and (max-width: 719px) {
  .product__item__box .ttl {
    font-size: 13px;
    line-height: 1.4;
  }
}
.product__item__box .price {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 719px) {
  .product__item__box .price {
    font-size: 16px;
    line-height: 1.5;
  }
}
.product__item__box .price small {
  display: inline-block;
  padding: 0 0 0 5px;
  font-size: 12px;
  font-weight: 300;
}
@media only screen and (max-width: 719px) {
  .product__item__box .price small {
    font-size: 10px;
    padding: 0 0 0 3px;
  }
}
.product__item__box .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin: 13px 0 0;
}
@media only screen and (max-width: 719px) {
  .product__item__box .label {
    gap: 3px;
    margin: 6px 0 0;
  }
}
.product__item__box .label span {
  display: inline-block;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-family: var(--font-cg);
  font-size: 12px;
  line-height: 1.2;
  padding: 5px 10px 4px;
}
@media only screen and (max-width: 719px) {
  .product__item__box .label span {
    font-size: 10px;
    padding: 2px 4px 1px;
  }
}
.product__item__box .label span.red {
  background: #ff361c;
}
.product__item__box .label span.gray {
  background: #6a6a6a;
}

/* ========================================
バナー
======================================== */
.c-bnr {
  margin: 0 0 60px;
}
@media only screen and (max-width: 1000px) {
  .c-bnr {
    position: relative;
    padding: 45px 0 45px;
    margin: 0;
  }
}
.c-bnr__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 1.7%;
}
@media only screen and (max-width: 719px) {
  .c-bnr__wrap {
    gap: 10px;
  }
}
.c-bnr__wrap a {
  display: block;
  width: 32.1969697%;
}
@media only screen and (max-width: 719px) {
  .c-bnr__wrap a {
    width: 100%;
  }
}

/* ========================================
Slick
======================================== */
.slick-dots li button::before {
  opacity: 0.3;
  color: #6f6f6f;
}

.slick-dots li.slick-active button::before {
  opacity: 1;
  color: #6f6f6f;
}