@charset "UTF-8";
/* 基本設定 start */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap");
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  font-weight: 500;
  color: #343434;
  background-color: #f7f5f5;
  margin-top: 90px;
}
p{
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  body {
    margin-top: 115px;
  }
}

ul {
  list-style-type: none;
}

a {
  color: #343434;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

a:hover {
  opacity: .6;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.visibleSP {
  display: none;
}

@media only screen and (max-width: 767px) {
  .visibleSP {
    display: block;
  }
}

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

*:focus {
  outline: none;
}

/* 基本設定 end */
/* common start */
.kb-title {
  font-family: 'Poppins', sans-serif;
  font-size: 4.2rem;
  letter-spacing: 0.15rem;
  margin: 20px 0 0;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .kb-title {
    font-size: 3.4rem;
    margin: 32px 0 0;
  }
}

.kb-subTitle {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .kb-subTitle {
    font-size: 1.6rem;
  }
}

.kb-buttonBox {
  text-align: center;
  margin-top: 30px;
}

.kb-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  text-align: center;
  border: #343434 1px solid;
  border-radius: 50px;
  padding: 16px 0;
  display: inline-block;
  width: 240px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .kb-button {
    width: 192px;
    padding: 10px 0;
  }
}

.kb-button::after {
  content: '';
  top: 24px;
  right: 20px;
  border-bottom: solid 3px #343434;
  border-right: solid 3px #343434;
  width: 6px;
  height: 6px;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media only screen and (max-width: 767px) {
  .kb-button::after {
    top: 20px;
    right: 18px;
    border-bottom: solid 1px #343434;
    border-right: solid 1px #343434;
    width: 5px;
    height: 5px;
  }
}

.kb-button:hover {
  background-color: #343434;
  color: #FFF;
  opacity: 1;
}

.kb-button:hover::after {
  border-color: #fff;
}

.kb-inner {
  max-width: 1300px;
  padding: 0 50px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .kb-inner {
    padding: 0 15px 5px 15px;
  }
}

/* タイトルアニメーション */
.is-show {
  width: 46px;
  height: 40px;
  /* background: url(https://akitainu.itembox.design/item/images/step03.png) no-repeat;
  -webkit-animation: stepsline 0.5s steps(1) forwards;
  animation: stepsline 0.5s steps(1) forwards; */
  background: url(https://akitainu.itembox.design/item/images/step04.png) no-repeat;
  /* -webkit-animation: stepsline 2s steps(3) forwards;
  animation: stepsline 2s steps(3) forwards; */
  -webkit-animation: stepsline 4s steps(4) infinite;
  animation: stepsline 4s steps(4) infinite;
  display: block;
  position: absolute;
  top: 8px;
  left: -50px;
}

@media only screen and (max-width: 767px) {
  .is-show {
    top: -31px;
    left: 0;
  }
}

@-webkit-keyframes stepsline {
  0% {
    background-position: 0 0;
  }
  100% {
    /* background-position: -46px 0; */
    /* background-position: -138px 0; */
    background-position: -184px 0;
  }
}

@keyframes stepsline {
  0% {
    background-position: 0 0;
  }
  100% {
    /* background-position: -46px 0; */
    /* background-position: -138px 0; */
    background-position: -184px 0;
  }
}

/* スライダーカスタム */
.kb-vid_slider .slick-dots {
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 61%;
}

@media only screen and (max-width: 767px) {
  .kb-vid_slider .slick-dots {
    width: 58%;
  }
}

.kb-vid_slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: #343434;
  border-radius: 5px;
}

.kb-vid_slider .slick-dots li button {
  width: 101% !important;
  height: 100% !important;
  padding: 2px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (max-width: 767px) {
  .kb-vid_slider .slick-dots li button {
    width: 106% !important;
  }
}

.kb-vid_slider .slick-dots li button:before {
  content: none;
}

.kb-vid_slider .slick-dots li.slick-active button {
  background: #e7336e;
  padding: 3px;
  margin: -2px;
  border-radius: 5px;
  position: relative;
  z-index: 10;
}

.kb-vid_slider .slick-dots {
  width: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
  .kb-vid_slider .slick-dots {
    width: 60%;
  }
}

.kb-vid_slider .slick-next, .kb-vid_slider .slick-prev {
  top: 100%;
  width: 58px;
  height: 58px;
  border: 1px solid #343434;
  border-radius: 50px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (max-width: 767px) {
  .kb-vid_slider .slick-next, .kb-vid_slider .slick-prev {
    width: 48px;
    height: 48px;
  }
}

.kb-vid_slider .slick-next::before, .kb-vid_slider .slick-prev::before {
  opacity: 1;
  color: #000;
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
}

.kb-vid_slider .slick-next:hover, .kb-vid_slider .slick-prev:hover {
  background-color: #343434;
}

.kb-vid_slider .slick-next:hover::before, .kb-vid_slider .slick-prev:hover::before {
  border-color: #FFF;
}

.kb-vid_slider .slick-next {
  right: 0;
}

.kb-vid_slider .slick-next::before {
  border-bottom: solid 3px #343434;
  border-right: solid 3px #343434;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 23px;
  left: 20px;
}

@media only screen and (max-width: 767px) {
  .kb-vid_slider .slick-next::before {
    top: 18px;
    left: 16px;
    border-bottom: solid 1px #343434;
    border-right: solid 1px #343434;
  }
}

.kb-vid_slider .slick-prev {
  left: 0;
}

.kb-vid_slider .slick-prev::before {
  border-bottom: solid 3px #343434;
  border-left: solid 3px #343434;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 23px;
  left: 25px;
}

@media only screen and (max-width: 767px) {
  .kb-vid_slider .slick-prev::before {
    top: 18px;
    left: 20px;
    border-bottom: solid 1px #343434;
    border-left: solid 1px #343434;
  }
}

/* common end */
/* ヘッダーナビゲーション start */
.kb-header {
  margin: 0;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #f7f5f5;
  /* ハンバーガーメニュー */
}

@media only screen and (max-width: 767px) {
  .kb-header {
    padding: 16px 0 5px;
  }
}

.kb-headerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kb-header__left {
  max-width: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kb-header__left--logo {
  margin: 0;
  max-width: 240px;
}

@media only screen and (max-width: 767px) {
  .kb-header__left--logo {
    width: calc(230 * (100vw / 375));
  }
}

.kb-header__left--logo a:hover {
  opacity: 1;
}

.kb-header__left--free {
  width: 147px;
  margin-left: 31px;
}

@media only screen and (max-width: 767px) {
  .kb-header__left--free {
    display: none;
  }
}

.kb-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.kb-header__nav.navactive {
  position: inherit;
}

.kb-header__nav--list {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 650px;
}

@media only screen and (max-width: 1100px) {
  .kb-header__nav--list {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--list {
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #BCBCBC;
    width: 100%;
    margin: 0;
    padding: 12px;
    font-size: .9rem;
    z-index: 100;
    height: 80px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.kb-header__nav--link {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--link {
    display:block;
    background-color: #707070;
    color: #ffffff !important;
    border-radius: 3px;
    text-align: center;
    padding: 36px 0 7px;
    line-height: 1.2;
  }
}

.kb-header__nav--link::before {
  content: '';
  position: absolute;
  top: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1100px) {
  .kb-header__nav--link::before {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--link::before {
    display: block;
    top: 9px;
    right: 0;
    margin: auto;
  }
}

.kb-header__nav--link::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #e7336e;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--link::after {
    display: none;
  }
}

.kb-header__nav--link:hover {
  opacity: 1;
}

.kb-header__nav--link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--item {
    width: 18%;
  }
  .kb-header__nav--item span {
    display: none;
  }
}

.kb-header__nav--item:nth-child(1) .kb-header__nav--link::before {
  background-image: url(https://akitainu.itembox.design/item/images/header-nav_01.svg);
  width: 13px;
  height: 18px;
  left: -17px;
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(1) .kb-header__nav--link::before {
    background-image: url(https://akitainu.itembox.design/item/images/sp-header-nav_01.svg);
    left: 0;
    width: 16px;
    height: 23px;
  }
}

.kb-header__nav--item:nth-child(2) .kb-header__nav--link::before {
  background-image: url(https://akitainu.itembox.design/item/images/header-nav_list.svg);
  width: 20px;
  height: 22px;
  left: -22px;
}
@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(2) .kb-header__nav--link::before {
    background-image: url(https://akitainu.itembox.design/item/images/sp-header-nav_list.svg);
    left: 0;
    top:7px;
  }
}


@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(3) {
   display: none;
  }
}


@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(3) .kb-header__nav--link {
    padding: 28px 0 4px;
  }
}

.kb-header__nav--item:nth-child(3) .kb-header__nav--link::before {
  background-image: url(https://akitainu.itembox.design/item/images/header-nav_02.svg?20231226);
  width: 20px;
  height: 20px;
  left: -23px;
  top: -3px;
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(3) .kb-header__nav--link::before {
    left: 3px;
    top:7px;
  }
}

.kb-header__nav--item:nth-child(4) .kb-header__nav--link::before {
  background-image: url(https://akitainu.itembox.design/item/images/header-nav_03.svg);
  width: 22px;
  height: 18px;
  left: -22px;
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(4) .kb-header__nav--link::before {
    background-image: url(https://akitainu.itembox.design/item/images/sp-header-nav_03.svg);
    left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(5) .kb-header__nav--link {
    padding: 35px 0 7px;
  }
}

.kb-header__nav--item:nth-child(5) .kb-header__nav--link::before {
  background-image: url(https://akitainu.itembox.design/item/images/header-nav_04.svg);
  width: 17px;
  height: 20px;
  left: -21px;
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(5) .kb-header__nav--link::before {
    background-image: url(https://akitainu.itembox.design/item/images/sp-header-nav_04.svg);
    left: 0;
  }
}

.kb-header__nav--item:nth-child(6) .kb-header__nav--link::before {
  background-image: url(https://akitainu.itembox.design/item/images/header-nav_05.svg);
  width: 27px;
  height: 18px;
  left: -28px;
}

@media only screen and (max-width: 767px) {
  .kb-header__nav--item:nth-child(6) .kb-header__nav--link::before {
    background-image: url(https://akitainu.itembox.design/item/images/sp-header-nav_05.svg);
    left: 0;
    height: 19px;
  }
}

.kb-header__space {
  width: 26px;
  height: 50px;
  margin-left: 25px;
}

@media only screen and (max-width: 767px) {
  .kb-header__space {
    margin-left: 0;
    width: 45px;
  }
}

.kb-header__hbg {
  margin-left: 25px;
  position: absolute;
  cursor: pointer;
  width: 26px;
  height: 50px;
  border-radius: 5px;
  z-index: 100;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg {
    margin-left: 0;
    width: 45px;
  }
}

.kb-header__hbg span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  right: 0;
  height: 1px;
  border-radius: 2px;
  background: #e7336e;
  width: 26px;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg span {
    width: 45px;
    height: 2px;
  }
}

.kb-header__hbg span:nth-of-type(1) {
  top: 15px;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg span:nth-of-type(1) {
    top: 13px;
  }
}

.kb-header__hbg span:nth-of-type(2) {
  top: 23px;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg span:nth-of-type(2) {
    top: 24px;
  }
}

.kb-header__hbg span:nth-of-type(3) {
  top: 31px;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg span:nth-of-type(3) {
    top: 36px;
  }
}

.kb-header__hbg.active {
  top: 11px;
  right: 24px;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg.active {
    top: 2px;
    right: 8px;
  }
}

.kb-header__hbg.active span {
  background: #fff;
}

.kb-header__hbg.active span:nth-of-type(1) {
  top: 16px;
  right: -1px;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 30px;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg.active span:nth-of-type(1) {
    background-color: #343434;
  }
}

.kb-header__hbg.active span:nth-of-type(2) {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg.active span:nth-of-type(2) {
    background-color: #343434;
  }
}

.kb-header__hbg.active span:nth-of-type(3) {
  top: 28px;
  right: -1px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
  width: 30px;
}

@media only screen and (max-width: 767px) {
  .kb-header__hbg.active span:nth-of-type(3) {
    background-color: #343434;
  }
}

/* ハンバーガーinner */
#kb-header__panel {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -120%;
  width: 524px;
  height: 100vh;
  background: #e7336e;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: scroll;
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  #kb-header__panel {
    width: 87%;
    background-color: #fff;
  }
}

#kb-header__panel.panelactive {
  right: 0;
}

#kb-header__panel.panelactive form {
  position: relative;
  width: 77%;
}

@media only screen and (max-width: 767px) {
  #kb-header__panel.panelactive form {
    width: calc(290 * (100vw / 375));
    margin: auto;
  }
}

#kb-header__panel.panelactive #kb-header__panelInner {
  margin: 42px auto 0;
  padding: 0px 0 0 10%;
}

@media only screen and (max-width: 767px) {
  #kb-header__panel.panelactive #kb-header__panelInner {
    position: fixed;
    z-index: 99;
    width: 87%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    padding: 0;
  }
}

.kb-panel__title a {
  color: #fff !important;
}


#kb-header__panel a {
  color: #fff;
  letter-spacing: 0.01rem;
  position: relative;
  display: block;
}

@media only screen and (max-width: 767px) {
  #kb-header__panel a {
    color: #343434;
  }
  #kb-header__panel a:hover {
    color: #e7336e;
  }
}

#kb-header__panel .selectMenu__item .panel__item a:hover {
  color: #e7336e;
}

.kb-panel__logo {
  width: 63%;
}

@media only screen and (max-width: 767px) {
  .kb-panel__logo {
    width: calc(168 * (100vw / 375));
    margin: 17px 0 0 33px;
  }
}

.kb-panel__logo a:hover {
  opacity: 1;
}

.kb-panel__searchBox {
  border-radius: 50px;
  border: #fff solid 1px;
  padding: 0px 25px;
  font-size: 1.5rem;
  background-color: #e7336e;
  color: #fff;
  height: 40px;
}

.kb-panel__searchBox:focus {
  outline: none;
}

@media only screen and (max-width: 767px) {
  .kb-panel__searchBox {
    border: #343434 solid 1px;
    background-color: #fff;
    color: #e7336e;
  }
}

.kb-panel__searchButton {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 42px;
  padding: 0;
  border: none;
  border-radius: 0 50px 50px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
}

@media only screen and (max-width: 767px) {
  .kb-panel__searchButton {
    padding: 12px 0;
    background-color: #e7336e;
    border: #343434 solid 1px;
    border-left: none;
  }
}

.kb-panel__searchButton img {
  width: 18px;
  margin: auto;
}

.kb-panel__title {
  font-size: 2rem;
  color: #fff;
  margin: 20px 0 10px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .kb-panel__title {
    background-color: #e7336e;
    margin: 26px 0 28px;
    padding: 11px 0;
    text-align: center;
  }
}

.kb-panel__title--search {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .kb-panel__title--search {
    margin-top: 18px;
  }
}

.kb-panel__list {
  padding: 0;
}

.kb-panel__list--category li {
  padding: 0 0  10px 10px;
}

.kb-panel__list--category li:last-child {
  padding-bottom: 0;
}

.kb-panel_pick_up{
  color: #e7336e !important;
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0 0.5rem;
  padding: 0.1rem 1rem;
  animation: blinkEffect 1s ease infinite;
}


.kb-panel_freeshipping{
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0 0.5rem;
  padding: 0.1rem 1rem;
  animation: blinkEffect 1s ease infinite;
}
@keyframes blinkEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.kb-panel_freeshipping_side{
  color: #e7336e !important;
  font-weight: bold;
}


@media only screen and (max-width: 767px) {
  .kb-panel__list--category .kb-panel__link:hover {
    opacity: 1;
  }
  .kb-panel_freeshipping{
    color: #e7336e !important;
  }


}

.kb-panel__list--snsInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 90px;
  gap:2px;
}

@media only screen and (max-width: 767px) {
  .kb-panel__list--snsInner {
    margin: auto;
    max-width: 150px;
  }
}

.kb-panel__item {
  font-size: 1.8rem;
}

.kb-panel__link {
  display: inline-block;
}

.kb-panel__statement {
  color: #fff;
  font-size: 1.2rem;
  margin: 40px 0 0;
}

@media only screen and (max-width: 767px) {
  .kb-panel__statement {
    color: #343434;
    margin: 32px 0 80px;
    font-size: 1.2rem;
    padding: 0 28px;
  }
}

.selectMenu__item {
  position: relative;
  display: block;
  width: 80%;
}

@media only screen and (max-width: 767px) {
  .selectMenu__item {
    width: 100%;
  }
}

.selectMenu__item .panel__inner {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 0 10px 30px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .selectMenu__item .panel__inner {
    font-size: 1.2rem;
  }
}

.selectMenu__item .panel__item {
  border: 1px solid #fff;
  border-radius: 15px;
  margin-right: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

.selectMenu__item .panel__item:first-child, .selectMenu__item .panel__item:nth-child(2) {
  margin-bottom: 10px;
}

.selectMenu__item .panel__item:hover {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .selectMenu__item .panel__item:hover {
    background-color: #E3E3E3;
  }
}

.selectMenu__item .panel__item a {
  padding: 3px 10px;
}

.selectMenu__item .panel__item a:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .selectMenu__item .panel__item {
    border: none;
    background-color: #E3E3E3;
    margin-right: 5px;
    margin-bottom: 10px;
  }
}

.selectMenu__link {
  padding: 0 0 10px 30px;
  color: #fff;
  letter-spacing: 0.01rem;
  position: relative;
  font-size: 1.8rem;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .selectMenu__link {
    color: #343434;
  }
}

.selectMenu__link::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 165px;
  width: 9px;
  height: 9px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .selectMenu__link::after {
    border-color: #343434;
  }
}

.selectMenu__link.is-active::after {
  content: '';
  position: absolute;
  left: 165px;
  top: 10px;
  width: 9px;
  height: 9px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

@media only screen and (max-width: 767px) {
  .selectMenu__link.is-active::after {
    border-color: #343434;
  }
}

/* ヘッダーナビゲーション end */
/* 送料無料（SPのみ） start */
.kb-free {
  display: none;
}

@media only screen and (max-width: 767px) {
  .kb-free {
    display: block;
    width: calc(344 * (100vw / 375));
    margin: 0 auto 11px;
  }
}

/* 送料無料（SPのみ） end */
/* メインビジュアル（スライダー） start */
.kb-mv_slider {
  max-width: 1300px;
  margin: 0 0 20px 0;
  overflow: hidden;
  padding: 0;
}

.kb-mv_slider.slick-dotted.slick-slider {
  margin-bottom: 88px;
}

@media only screen and (max-width: 767px) {
  .kb-mv_slider.slick-dotted.slick-slider {
    padding-bottom: 47px;
    margin-bottom: 0;
  }
}

.kb-mv_slider .slick-dots {
  bottom: -35px;
}

@media only screen and (max-width: 767px) {
  .kb-mv_slider .slick-dots {
    bottom: -30px;
  }
}

.kb-mv_slider figure {
  margin: 0;
}

.fs-c-slick .slick-dots li {
  height: 30px;
  width: 30px;
  margin: 0 20px;
}

@media only screen and (max-width: 767px) {
  .fs-c-slick .slick-dots li {
    height: 22px;
    width: 20px;
    margin: 0 calc(10 * (100vw / 500));
  }
}

.fs-c-slick .slick-dots li button {
  height: 30px;
  width: 30px;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .fs-c-slick .slick-dots li button {
    height: 22px;
    width: 20px;
  }
}

.fs-c-slick .slick-dots li button:before {
  opacity: 0.45;
  height: 30px;
  width: 30px;
  content: '';
  -webkit-transition: .3s;
  transition: .3s;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://akitainu.itembox.design/item/images/mv_slider-number.png);
}

@media only screen and (max-width: 767px) {
  .fs-c-slick .slick-dots li button:before {
    background-image: url(https://akitainu.itembox.design/item/images/sp_slider-number.png);
    height: 22px;
    width: 20px;
  }
}

.fs-c-slick .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* メインビジュアル（スライダー） end */
/* ランキング start */
.kb-ranking, .kb-ranking2 {
  width: 100%;
  position: relative;
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .kb-ranking, .kb-ranking2 {
    padding-bottom: 28px;
  }
}


@media only screen and (max-width: 767px) {
  .kb-ranking__title {
    margin: 32px 0 0;
  }
}

.kb-ranking .slick-slide {
  width: 286px;
  position: relative;
  margin: 0 9px;
  padding-top: 30px;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .slick-slide {
    width: calc(150 * (100vw / 375));
    margin: 0 5px;
  }
}

.kb-ranking__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .kb-ranking__number {
    font-size: 1rem;
    top: 15px;
  }
}

.kb-ranking__number::before {
  content: '';
  position: absolute;
  top: -17px;
  left: 106px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://akitainu.itembox.design/item/images/rank_number.png);
  width: 75px;
  height: 51.5px;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .kb-ranking__number::before {
    top: -9px;
    left: 0;
    right: 0;
    margin: auto;
    width: 36px;
  }
}

.kb-ranking .fs-c-productListItem__control {
  text-align: center;
}

.kb-ranking .fs-c-productName__name {
  margin-top: 0.8rem;
  font-size: 2rem;
  height: 6rem;
  line-height: 1.5;
  color: #343434;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-productName__name {
    margin-top: 10px;
    font-size: 1.2rem;

  }
}

.kb-ranking .fs-c-productListItem__prices {
  font-size: 3rem;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-productListItem__prices {
    font-size: 2.7rem;
  }
}

.kb-ranking img {
  border-radius: 15px;
}

@media only screen and (max-width: 767px) {
  .kb-ranking img {
    border-radius: 10px;
  }
}

/* ランキング end */




/* おすすめ商品 start */
.kb-products {
  width: 100%;
  position: relative;
  padding-bottom: 100px;
}

.kb-products .fs-c-productName__copy{
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.kb-products .fs-c-productPrice__main__label {
  font-size: 1.5rem;
}


@media only screen and (max-width: 767px) {
  .kb-products {
    padding-bottom: 28px;
  }
}

.kb-products .slick-slide {
  width: 286px;
  position: relative;
  margin: 0 9px;
  padding-top: 30px;
}

@media only screen and (max-width: 767px) {
  .kb-products .slick-slide {
    width: calc(150 * (100vw / 375));
    margin: 0 5px;
  }
}

.kb-products .fs-c-productListItem__control {
  text-align: center;
}

.kb-products .fs-c-productName__name {
  margin-top: 0.8rem;
  font-size: 2rem;
  height: 6rem;
  line-height: 1.5;
  color: #343434;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .kb-products .fs-c-productName__name {
    margin-top: 10px;
    font-size: 1.2rem;

  }
}

.kb-products .fs-c-productListItem__prices {
  font-size: 3rem;
}

@media only screen and (max-width: 767px) {
  .kb-products .fs-c-productListItem__prices {
    font-size: 2.7rem;
  }
}

.kb-products img {
  border-radius: 15px;
}

@media only screen and (max-width: 767px) {
  .kb-products img {
    border-radius: 10px;
  }
}

/* おすすめ商品 end */
/* カテゴリー start */
.kb-category {
  max-width: 1300px;
  padding: 0 50px 100px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .kb-category {
    padding: 0 0 40px;
    margin: 0 10px;
  }
}

.kb-category__inner {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  .kb-category__inner {
    margin-top: 48px;
  }
}

.kb-category__title {
  position: relative;
}

.kb-category__title::before {
  content: '';
  position: absolute;
  top: -99px;
  right: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://akitainu.itembox.design/item/images/bg_02.png);
  width: 183.5px;
  height: 242.5px;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .kb-category__title::before {
    background-image: url(https://akitainu.itembox.design/item/images/sp-bg_01.png);
    top: -10px;
    right: calc(36 * (100vw / 375));
    width: 87px;
    height: 114px;
  }
}

.kb-category__box {
  background-color: #fff;
  margin-bottom: 23px;
  border-radius: 12px;
  width: 24%;
  margin: 0 5px 10px;
}

@media only screen and (max-width: 767px) {
  .kb-category__box {
    border-radius: 8px;
    width: 30%;
    margin: 0 5px 11px;
  }
}

.kb-category__fig {
  margin: auto;
  max-width: 230px;
  padding: 47px 20px 0;
}

@media only screen and (max-width: 767px) {
  .kb-category__fig {
    max-width: 86px;
    padding: 18px 10px 0;
  }
}

.kb-category__name {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  padding: 30px 0 42px;
  margin: 0;
}
.kb-category__name > span{
  font-size: 1.8rem;
  font-weight: normal;
}



@media only screen and (max-width: 767px) {
  .kb-category__name {
    font-size: 1.3rem;
    padding: 14px 0 14px;
  }
.kb-category__name > span{
  font-size: 1.0rem;
}


}

.kb-category__button {
  font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
  .kb-category__button {
    font-size: 1.6rem;
  }
}

/* カテゴリー end */
/* インスタグラム start */
.kb-instagram {
  max-width: 1300px;
  padding: 0 50px 100px;
  margin: auto;
}



@media only screen and (max-width: 767px) {
  .kb-instagram {
    padding: 0 15px 40px;
  }
}

.kb-instagram__title {
  position: relative;
}

.kb-instagram__title::before {
  content: '';
  position: absolute;
  top: -133px;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://akitainu.itembox.design/item/images/bg_01.png);
  width: 145px;
  height: 272px;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .kb-instagram__title::before {
    background-image: url(https://akitainu.itembox.design/item/images/sp-bg_02.png);
    width: 133px;
    height: 100px;
    top: -14px;
    right: 0;
  }
}

.kb-instagram__inner {
  margin-top: 56px;
  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;
}

@media only screen and (max-width: 767px) {
  .kb-instagram__inner {
    margin-top: 44px;
  }
}

.kb-instagram__box {
    margin-bottom: 22px;
    width: 259px;
    height: 259px;
    overflow: hidden;
    border-radius: 12px;
}

@media only screen and (max-width: 767px) {
  .kb-instagram__box {
    margin-bottom: 10px;
    width: calc(50% - 5px);
    max-height: calc(50vw - 40px);
  }
  .kb-instagram__box:nth-child(n+5):nth-child(-n+8) {
    display: none;
  }
}

.kb-instagram__fig {
  width: 100%;
  margin: 0;
}

.kb-instagram__img {
  border-radius: 12px;
  min-height: 259px;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .kb-instagram__img {
    border-radius: 8px;
    min-height: auto;

  }



}

/* インスタグラム end */
/* スペシャルコンテンツ start */
.kb-movies {
  max-width: 1300px;
  padding: 0 50px 100px;
  margin: auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .kb-movies {
    padding: 0 15px 28px;
  }
}

.kb-movies__inner {
  padding-bottom: 0;
  margin-top: 0;
  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;
}

@media only screen and (max-width: 767px) {
  .kb-movies__inner {
    padding-bottom: 27px;
  }
}

.kb-movies__inner li {
  border-radius: 12px;
  width: 1200px;
  padding-bottom: 6%;
  height: 0px;
  position: relative;
}

.kb-movies__inner li iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.kb-movies__title {
  position: relative;
}

.kb-movies__title::before {
  content: '';
  position: absolute;
  top: -133px;
  right: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://akitainu.itembox.design/item/images/bg_03.png);
  width: 266px;
  height: 228.5px;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .kb-movies__title::before {
    display: none;
  }
}

/* スペシャルコンテンツ end */
/* ニュース start */
.kb-news {
  max-width: 1300px;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 200px;
}

@media only screen and (max-width: 767px) {
  .kb-news {
    padding: 0 15px 15px;
    margin: 0 auto;
    display: block;
  }
}

.kb-news__innerLeft {
  position: relative;
  width: 20%;
}

.kb-news__innerMain {
  width: 80%;
}

@media only screen and (max-width: 767px) {
  .kb-news__innerMain {
    width: 100%;
  }
.kb-news__innerLeft {
  width: 100%;
}

}

.kb-news__title {
  position: relative;
}

.kb-news__title::before {
  content: '';
  position: absolute;
  top: -107px;
  left: -278px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://akitainu.itembox.design/item/images/bg_01.png);
  width: 194px;
  height: 322px;
  z-index: -1;
}

.kb-news__title_p{
  font-size: 2rem;
}
.kb-news__txt_p{
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: normal;
}



@media only screen and (max-width: 767px) {
  .kb-news__title::before {
    background-image: url(https://akitainu.itembox.design/item/images/sp-bg_03.png);
    width: 111px;
    height: 137px;
    top: -45px;
    left: calc(234 * (100vw / 375));
  }
}

.kb-news__list {
  margin-top: -6px;
  width: 80%;
  padding: 0 8rem;
  overflow: auto;
  height: 250px;

}

.kb-news__list .fs-pt-list__item {
  border-bottom: dotted 1px #666666;
  padding-bottom: 20px;

}



.fs-l-pageMain > .kb-news__list {
  width:80%;
  height: auto;
}



@media only screen and (max-width: 767px) {
  .kb-news__list {
    margin-top: 40px;
    padding: 0;
    line-height: 1.7;
  }
.kb-news__list {
  width:100% !important;
}

}

.kb-news li {
  font-size: 1.6rem;
  font-weight: bold;
}

.kb-news__list li time {
  font-size: 1.2rem;
  display: block;
  font-weight: 500;
  margin: 25px 0 7px;
}

@media only screen and (max-width: 767px) {
  .kb-news li time {
    margin: 14px 0 7px;
  }
}



@media only screen and (max-width: 767px) {
  .kb-news__button {
    margin-top: 3px;
  }
}

.kb_news_button {
  max-width: 1300px;
  padding: 0 50px;
  margin: auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .kb_news_button {
    padding: 0 15px 28px;
  }
}



/* ニュース end */
/* ショップ start */
.kb-shop {
  max-width: 1200px;
  height: 580px;
  margin: 70px auto 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: #e7336e;
  border-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .kb-shop {
    display: block;
    margin: auto;
    border-radius: 0;
    overflow: hidden;
    height: 850px;

  }
}

.kb-shop__title {
  position: relative;
}

.kb-shop__title::before {
  content: '';
  position: absolute;
  top: -59px;
  right: -30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://akitainu.itembox.design/item/images/shop_bg.png);
  width: 347px;
  height: 283px;
}

@media only screen and (max-width: 767px) {
  .kb-shop__title::before {
    top: -44px;
    right: -46px;
    width: 265px;
    height: 222px;
  }
}

.kb-shop__imgBox {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .kb-shop__imgBox {
    width: 100%;
  }
}

.kb-shop__img {
  width: 100%;
  position: relative;
  border-radius: 0 20px 20px 0;
  height: 100%;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .kb-shop__img {
    border-radius: 0;
  }
}

.kb-shop__textBox {
  width: 50%;
  position: relative;
  background-color: #e7336e;
  color: #fff;
  padding: 60px 30px 20px 56px;
  border-radius: 20px 0 0 20px;
}

@media only screen and (max-width: 767px) {
  .kb-shop__textBox {
    border-radius: 0;
    width: 100%;
    padding: 35px 15px 50px 16px;
  }
}

.kb-shop__textInner {
  background-color: #C4295C;
  border-radius: 0 12px 12px 0;
  margin: 43px 50px 0 -56px;
}

@media only screen and (max-width: 767px) {
  .kb-shop__textInner {
    border-radius: 0;
    padding-bottom: 12px;
    width: 100vw;
    margin: 39px calc(50% - 50vw) 0;
  }
}

.kb-shop__title {
  margin: 0;
}

.kb-shop__text {
  font-size: 1.8rem;
  margin-top: 36px;
  line-height: 2;
  letter-spacing: .08rem;
}

@media only screen and (max-width: 767px) {
  .kb-shop__text {
    margin-top: 39px;
    line-height: 1.8;
  }
}

.kb-shop__location {
  font-size: 1.6rem;
  letter-spacing: .07rem;
  padding: 30px 0 0 56px;
  line-height: 1.8;
}

.kb-shop__location span {
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .kb-shop__location {
    font-size: 1.5rem;
    padding: 19px 0 0 16px;
  }
}

.kb-shop__hours {
  font-size: 1.6rem;
  letter-spacing: .07rem;
  padding: 3px 0 34px 56px;
}

.kb-shop__hours span {
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .kb-shop__hours {
    font-size: 1.5rem;
    padding: 3px 0 0 16px;
  }
}

.kb-shop__buttonBox {
  text-align: left;
  margin-top: 76px;
}

@media only screen and (max-width: 767px) {
  .kb-shop__buttonBox {
    margin-top: 44px;
  }
}

.kb-shop__button {
  color: #FFF;
  border-color: #FFF;
}

.kb-shop__button::after {
  border-color: #fff;
}

.kb-shop__button:hover {
  background-color: #fff;
  color: #e7336e;
  opacity: 1;
}

.kb-shop__button:hover::after {
  border-color: #e7336e;
}

/* ショップ end */
/* SAVE AKITA start */
.kb-save {
  max-width: 1300px;
  padding: 0 50px 100px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .kb-save {
    padding: 50px;
  }
}

.kb-save__saveAkita {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .kb-save__saveAkita {
    display: block;
  }
}

/* SAVE AKITA end */
/* フッター start */
.kb-footer {
  background-color: #E3E3E3;
  padding: 0 50px 46px;
}

@media only screen and (max-width: 767px) {
  .kb-footer {
    margin-top: 0;
    padding: 0 50px;
  }
}

.kb-footerInner {
  max-width: 1200px;
  margin: auto;
}

.kb-footer__saveAkita {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 48px;
  width: 76%;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .kb-footer__saveAkita {
    margin-top: 33px;
    width: 100%;
  }
}

.kb-footer__saveAkita img {
  max-width: 78px;
}

@media only screen and (max-width: 767px) {
  .kb-footer__saveAkita img {
    width: calc(50 * (100vw / 375));
  }
}

.kb-footer__saveAkitaText {
  font-size: 2.0rem;
  margin: 0 auto;
  letter-spacing: .01rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .kb-footer__saveAkitaText {
    margin: 0;
    font-size: 1.5rem;
    width: calc(212 * (100vw / 375));
  }
}

.kb-footer__saveAkitaText span {
  font-size: 2.0rem;
  color: #e7336e;
}

@media only screen and (max-width: 767px) {
  .kb-footer__saveAkitaText span {
    font-size: 1.5rem;
  }
}

.kb-footer__logo {
  width: 368px;
  padding-top: 57px;
}

@media only screen and (max-width: 767px) {
  .kb-footer__logo {
    margin: 0 auto;
    width: calc(230 * (100vw / 375));
    padding-top: 30px;
  }
}

.kb-footer__fig {
  max-width: 580px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .kb-footer__fig {
    width: calc(275 * (100vw / 375));
    margin: 24px auto 0;
  }
}

.kb-footer__img {
  border-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .kb-footer__img {
    border-radius: 12px;
  }
}

.kb-footer__textBox {
  margin: 0 0 0 36px;
  width: 90%;
}

@media only screen and (max-width: 767px) {
  .kb-footer__textBox {
    margin: 25px 0 0 0;
    width: 100%;
  }
}

.kb-footer__title {
  font-size: 2.0rem;
    line-height: 1.8;
  font-weight: bold;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .kb-footer__title {
    font-size: 1.8rem;
  }
}

.kb-footer__text {
  font-size: 1.5rem;
  margin-top: 20px;
  line-height: 2.0;
}

@media only screen and (max-width: 767px) {
  .kb-footer__text {
    font-size: 1.6rem;
    margin-top: 12px;
  }
}

.kb-footer__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 54px;
}

@media only screen and (max-width: 767px) {
  .kb-footer__banner {
    display: block;
  }
}

.kb-footer__banner a {
  width: 23%;
}

@media only screen and (max-width: 767px) {
  .kb-footer__banner a {
    width: 100%;
    margin-bottom: 23px;
  }
}

.kb-footer__banner a img {
  border-radius: 10px;
}

.kb-footer__linkBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 75%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .kb-footer__linkBox {
    display: block;
    margin-top: 38px;
    width: 100%;
    margin: 0 auto;

  }
}

.kb-footer__list {
  padding-left: 0;
}

.kb-footer__listBox {
  padding: 62px 0 0 0;
  width: 23%;
}

.kd_wd15 {
  width: 16%;
}


@media only screen and (max-width: 767px) {
  .kb-footer__listBox {
    width: 100%;
    padding: 14px 0 0 0;
  }
}

.kb-footer__list--title {
  font-size: 1.8rem;
  font-weight: bold;
}

.kb-footer__list--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
  padding: 40px 0;
  font-weight: bold;
  letter-spacing: .1rem;
}

.kb-footer__list--menu li {
  font-size: 1.5rem;
}

@media only screen and (max-width: 1100px) {
  .kb-footer__list--menu li {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .kb-footer__list--menu li {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .kb-footer__list--menu {
    display: block;
    width: 100%;
    padding: 30px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .kb-footer__list--menu .kb-footer__item {
    line-height: 2.5;
  }
}

.kb-footer__item {
  font-size: 1.5rem;
  line-height: 1.8;
}

.kb-footer__item a {
  display: inline-block;
}

.kb-footer__item a:hover {
  color: #e7336e;
  opacity: 1;
}

.kb-footer__under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 75%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .kb-footer__under {
    display: block;
    width: auto;

  }
}

.kb-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  padding: 50px 0;
}

@media only screen and (max-width: 767px) {
  .kb-footer__sns {
    padding: 37px 0 40px;
    display: block;
  }
}

.kb-footer__sns--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.1rem;
  margin: 0;
  min-width: 90px;
  padding: 0;
  gap: 2px;
}

@media only screen and (max-width: 767px) {
  .kb-footer__sns--list {
    margin: auto;
    width: 140px;
    padding-top: 17px;
  }
}

.kb-footer__sns--item:nth-child(2) {
  width: 40px;
}

.kb-footer__sns--item:nth-child(3) {
  width: 40px;
}

.kb-footer__sns--item:nth-child(4) {
  width: 40px;
}

.kb-footer__sns--text {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin: 0 14px 0 0;
  letter-spacing: .1rem;
}

@media only screen and (max-width: 767px) {
  .kb-footer__sns--text {
    font-size: 1.6rem;
    margin: 0;
    text-align: center;
  }
}

.kb-copyright {
  background-color: #343434;
  color: #fff;
  padding: 30px 50px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .kb-copyright {
    padding: 22px 15px 102px;
    text-align: left;
  }
}

.kb-copyright__text {
  font-size: 1.5rem;
}

/* フッター end */
/* スタートアップテーマ適応 start */
a:hover {
  text-decoration: none;
  color: #343434;
}

.kb-ranking form, .kb-products form {
  width: 100%;
}

.kb-ranking .fs-c-productListCarousel, .kb-products .fs-c-productListCarousel {
  position: relative;
}

.kb-ranking .fs-c-productListCarousel__ctrl, .kb-products .fs-c-productListCarousel__ctrl {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 1px solid #343434;
  background-color: #f7f5f5;
  border-radius: 50px;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 3;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-productListCarousel__ctrl, .kb-products .fs-c-productListCarousel__ctrl {
    width: 48px;
    height: 48px;
  }
}

.kb-ranking .fs-c-productListCarousel__ctrl:hover, .kb-products .fs-c-productListCarousel__ctrl:hover {
  background-color: #343434;
}

.kb-ranking .fs-c-productListCarousel__ctrl:hover::before, .kb-products .fs-c-productListCarousel__ctrl:hover::before {
  border-color: #FFF;
}

.kb-ranking .fs-c-productListCarousel__ctrl--prev, .kb-products .fs-c-productListCarousel__ctrl--prev {
  left: -45px;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-productListCarousel__ctrl--prev, .kb-products .fs-c-productListCarousel__ctrl--prev {
    left: -10px;
  }
}

.kb-ranking .fs-c-productListCarousel__ctrl--prev::before, .kb-products .fs-c-productListCarousel__ctrl--prev::before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  border-bottom: solid 3px #343434;
  border-left: solid 3px #343434;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 23px;
  left: 25px;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-productListCarousel__ctrl--prev::before, .kb-products .fs-c-productListCarousel__ctrl--prev::before {
    top: 18px;
    left: 20px;
    border-bottom: solid 1px #343434;
    border-left: solid 1px #343434;
  }
}

.kb-ranking .fs-c-productListCarousel__ctrl--next, .kb-products .fs-c-productListCarousel__ctrl--next {
  right: -45px;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-productListCarousel__ctrl--next, .kb-products .fs-c-productListCarousel__ctrl--next {
    right: -10px;
  }
}

.kb-ranking .fs-c-productListCarousel__ctrl--next::before, .kb-products .fs-c-productListCarousel__ctrl--next::before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  border-bottom: solid 3px #343434;
  border-right: solid 3px #343434;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 23px;
  left: 20px;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-productListCarousel__ctrl--next::before, .kb-products .fs-c-productListCarousel__ctrl--next::before {
    top: 18px;
    left: 16px;
    border-bottom: solid 1px #343434;
    border-right: solid 1px #343434;
  }
}

.kb-ranking .fs-c-productListCarousel__ctrl .fs-c-button__label, .kb-products .fs-c-productListCarousel__ctrl .fs-c-button__label {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer;
  height: 58px;
  width: 58px;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-productListCarousel__ctrl .fs-c-button__label, .kb-products .fs-c-productListCarousel__ctrl .fs-c-button__label {
    height: 48px;
    width: 48px;
  }
}

.kb-ranking .fs-c-productPrice__main__label,
.kb-ranking .fs-c-button--particular,
.kb-products .fs-c-button--particular {
  display: none;
}

.kb-ranking .fs-c-button--plain, .kb-products .fs-c-button--plain {
  width: 90%;
  font-size: 1.9rem;
  font-weight: bold;
  margin-top: 8px;
  background-color: #e7336e;
  border-radius: 50px;
  color: #fff;
  padding: 9px;
  text-align: center;
  position: relative;
  border: none;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-button--plain, .kb-products .fs-c-button--plain {
    font-size: 1rem;
    margin-top: 15px;
  }
}

.kb-ranking .fs-c-button--addToCart--list:hover, .kb-products .fs-c-button--addToCart--list:hover {
  opacity: .6;
}

.kb-ranking .fs-c-button--addToCart--list .fs-c-button__label, .kb-products .fs-c-button--addToCart--list .fs-c-button__label {
  position: relative;
}

.kb-ranking .fs-c-button--addToCart--list .fs-c-button__label::before, .kb-products .fs-c-button--addToCart--list .fs-c-button__label::before {
  /* content: '';
  position: absolute;
  top: -2px;
  left: -34px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://akitainu.itembox.design/item/images/products_cart.png);
  width: 30px;
  height: 24px; */
}

@media only screen and (max-width: 767px) {
  .kb-ranking .fs-c-button--addToCart--list .fs-c-button__label::before, .kb-products .fs-c-button--addToCart--list .fs-c-button__label::before {
    width: 16px;
    height: 12px;
    top: 0;
    left: -18px;
  }
}

.kb-ranking .fs-c-button--carousel--next::before, .kb-products .fs-c-button--carousel--next::before {
  content: '';
}

.kb-ranking .fs-c-button--carousel--prev::before, .kb-products .fs-c-button--carousel--prev::before {
  content: '';
}

.kb-ranking .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price, .kb-products .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price {
  color: #343434;
}

.kb-ranking 

.kb-ranking .fs-c-productListCarousel__list__item, .kb-products .fs-c-productListCarousel__list__item {
  max-width: calc(150 * (100vw / 375));
  min-width: inherit;
  margin: 0;
}

@media screen and (min-width: 600px) {
  .kb-ranking .fs-c-productListCarousel__list__item, .kb-products .fs-c-productListCarousel__list__item {
    max-width: 286px;
  }
}

.kb-ranking .fs-c-productListCarousel__list__item > * + *, .kb-products .fs-c-productListCarousel__list__item > * + * {
  margin-top: 0;
}

.kb-ranking .fs-c-button--plain.fs-c-button--addToCart--list::before, .kb-products .fs-c-button--plain.fs-c-button--addToCart--list::before {
  /* content: ''; */
}
.kb-ranking .fs-c-button--plain.fs-c-button--addToCart--list:hover, .kb-products .fs-c-button--plain.fs-c-button--addToCart--list:hover {
    text-decoration: none;
}
.kb-ranking .fs-c-button--plain.fs-c-button--viewProductDetail:hover, .kb-products .fs-c-button--plain.fs-c-button--viewProductDetail:hover {
  text-decoration: none;
}

.fs-l-main {
  margin: 0 auto;
  padding: 0;
  max-width: 1300px;
}

/* スタートアップテーマ適応  end */


/* 商品詳細ページ */

#review_box{
	height:45px;
}

@media only screen and (max-width: 767px) {
	#review_box{
		height:70px;
	}
}

/* 商品詳細ページ 購入ボタン固定 */

@media only screen and (max-width: 767px) {
	.fs-c-subscriptionPriceTable__row--regularDelivery{
		position: fixed;
		left: 0;
		bottom: 80px;
		background-color: rgba(255, 255, 255, 0.7);
		padding: 0 0 3em 0;
		z-index: 1;
		width: 100%;
	}
	.fs-c-button--addToSubscriptionCart--detail{
		margin-bottom: 8px;
	}
	.fs-c-subscriptionPriceTable__label,
	.fs-c-subscriptionPriceTable__price{
		border: none;
		background: none;
	}

	.fs-c-productPrices--productDetail{
		position: fixed;
		left: 0;
		bottom: 0;
		background-color: rgba(255, 255, 255, 0.7);
		padding: 0 0 8em 1em;
		z-index: 1;
		width: 100%;
	}

	.fs-c-productActionButton{
		position: fixed;
		right: 0;
		bottom: 5em;
		z-index: 9999;
	}
	button.fs-c-button--primary{
		width: 90%;
		font-size: 1.9rem;
		font-weight: bold;
		background-color: #ff8c00;
		border-radius: 50px;
		color: #fff;
		padding: 9px;
		text-align: center;
		position: relative;
		border: none;
		-webkit-transition: .3s;
		transition: .3s;
	}

	button.fs-c-button--primary::before {
		font-family: "fs-icon" !important;
		content: "\e91f";
	}

}

/* TOPページ おすすめ商品販売価格の金額フォントサイズ調整 */

@media only screen and (max-width: 767px) {
	.kb-products .fs-c-productPrice__main__price{
		font-size: 1.5rem;
	}
}