@charset "UTF-8";

/* =====================
  リセット・共通系
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_text: #333333;
  --c_wht: #ffffff;
  --c_black: #000000;
  --c_main: #FF66A6;
  --c_blk-pnk: #FF80B7;
  --c_text_g: #656565;
  --c_text_lg: #838383;
  --c_border: #DDDDDD;
  --c_bg_w: #F9F9F9;
  --c_bg_g: #FFEAF3;
  --c_bg_b: #121212;
  --c_placeholder: rgba(0, 0, 0, 0.3);
  --c_attention: #E22373;
  /* フォント定義 */
  --font_ja: "Noto Sans JP", sans-serif;
  --font_min: "游明朝体", "Yu Mincho", "游明朝体", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --font_eng: "Montserrat";
  --font_title: "Times New Roman", "Times", serif;
  --font_mix: "Montserrat";
  /* transition定義 */
  --anim: all 0.4s ease-in-out;
  /* filter定義
     https://codepen.io/sosuke/pen/Pjoqqp */
  /* #000000→#333333 */
  --filter_text: invert(13%) sepia(5%) saturate(103%) hue-rotate(82deg) brightness(101%) contrast(82%);
  /* #000000→#FF66A6 */
  --filter_main: invert(48%) sepia(74%) saturate(506%) hue-rotate(289deg) brightness(104%) contrast(102%);
  /* #000000→#E8E8E8 */
  --filter_gray: invert(99%) sepia(2%) saturate(45%) hue-rotate(162deg) brightness(116%) contrast(82%);
  /* #000000→#ffffff */
  --filter_wht: invert(100%) sepia(0%) saturate(7500%) hue-rotate(111deg) brightness(107%) contrast(106%);
  /* #000000→#DDDDDD */
  --filter_border: invert(99%) sepia(0%) saturate(7%) hue-rotate(189deg) brightness(91%) contrast(92%);
  /* #000000→#656565 */
  --filter_text_g: invert(41%) sepia(16%) saturate(5%) hue-rotate(28deg) brightness(90%) contrast(88%);
}

/** -------------------- reset -------------------- **/
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

figure {
  margin: 0;
}

a,
button {
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

a:hover,
button:hover {
  text-decoration: none;
}

small {
  font-size: 100%;
}

dl,
dt,
dd {
  margin: 0;
}

p {
  margin: 0;
}

img {
  vertical-align: middle;
  height: auto;
}

/** -------------------- 共通パーツ -------------------- **/
body {
  font-family: var(--font_ja);
  font-size: 1.3rem;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  color: var(--c_text);
}

.p-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
}

.p-inner--narrow {
  max-width: 940px;
}

.p-font__jp {
  font-family: var(--font_ja) !important;
}

.p-font__eng {
  font-family: var(--font_eng) !important;
  font-weight: 700;
  font-style: normal;
}

.p-font__mix {
  font-family: var(--font_mix) !important;
}

.p-font__bold {
  font-weight: 700 !important;
}

.p-color__main {
  color: var(--c_main) !important;
}

.p-color__attention {
  color: var(--c_attention) !important;
}

.p-fontSize__14 {
  font-size: 1.2rem;
}

.p-align__left {
  text-align: left !important;
}

.p-align__right {
  text-align: right !important;
}

.p-align__center {
  text-align: center !important;
}

.c-link__more {
  font-family: var(--font_mix);
  font-size: 1.2rem;
  line-height: 1.2;
  padding-bottom: 1em;
  color: #4A4A4A;
  border-bottom: 1px solid var(--c_text_lg);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-link__more--left {
  margin-left: 0;
}

.c-link__more--right {
  margin-left: auto;
}

.c-link__more--center {
  margin-left: auto;
  margin-right: auto;
}

.c-btn__black {
  display: block;
  text-align: center;
  padding: 16px 32px;
  background: var(--c_black);
  border: 1px solid var(--c_black);
  color: var(--c_wht);
  font-family: var(--font_mix);
  font-size: 1.3rem;
  line-height: 1.23077;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}

.c-btn__black:before {
  content: "";
  width: 0;
  height: 100%;
  background: var(--c_wht);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.c-btn__black:active,
.c-btn__black:visited {
  color: var(--c_wht);
}

.c-btn__black:hover {
  opacity: 1.0;
  color: var(--c_text);
}

.c-btn__black:hover:before {
  width: 100%;
}

.c-btn__white {
  display: block;
  border: 1px solid var(--c_text);
  text-align: center;
  padding: 16px 32px;
  font-family: var(--font_mix);
  font-size: 1.3rem;
  line-height: 1.23077;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}

.c-btn__white:before {
  content: "";
  width: 0;
  height: 100%;
  background: var(--c_text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.c-btn__white:hover {
  opacity: 1.0;
  color: var(--c_wht);
}

.c-btn__white:hover:before {
  width: 100%;
}

.c-btn__attention {
  display: block;
  border: 1px solid var(--c_attention);
  background: var(--c_attention);
  color: var(--c_wht);
  text-align: center;
  padding: 16px 32px;
  font-family: var(--font_mix);
  font-size: 1.3rem;
  line-height: 1.23077;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}

.c-btn__attention:before {
  content: "";
  width: 0;
  height: 100%;
  background: var(--c_wht);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.c-btn__attention:active,
.c-btn__attention:visited {
  color: var(--c_wht);
}

.c-btn__attention:hover {
  opacity: 1.0;
  color: var(--c_attention);
}

.c-btn__attention:hover:before {
  width: 100%;
}

.c-btn__sizeL {
  padding: 16px 52px;
}

.c-btn__sizeXL {
  padding: 16px 64px;
}

.c-btn__center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.p-categorySearch {
  margin: 0 0 64px;
}

.p-categorySearch:last-of-type {
  margin-bottom: 0;
}

.p-categorySearch__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.p-categorySearch__list a {
  display: grid;
  grid-template-columns: 45px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  min-height: 80px;
  padding: 12px 8px;
  border: 1px solid var(--c_border);
  text-align: center;
}

.p-categorySearch__list a .thumb {
  grid-row: span 2;
}

.p-categorySearch__list a .eng {
  font-family: var(--font_eng);
  font-size: 1.2rem;
  line-height: 1.25;
  -ms-flex-item-align: end;
  align-self: flex-end;
  white-space: nowrap;
}

.p-categorySearch__list a .jp {
  font-size: 1.1rem;
  line-height: 1.45455;
  color: rgba(0, 0, 0, 0.5);
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.p-brandSearch {
  margin: 64px 0;
}

.p-brandSearch:last-of-type {
  margin-bottom: 0;
}

.p-brandSearch__scrollBox {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -20px;
}

.p-brandSearch__list {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(8, 76px);
  padding: 0 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-brandSearch__list a {
  display: block;
  border: 1px solid var(--c_border);
}

/** -------------------- ログイン状態 -------------------- **/
.fs-clientInfo--true .fs-clientInfo--falseOnly {
  display: none !important;
}

.fs-clientInfo--false .fs-clientInfo--trueOnly {
  display: none !important;
}

/** -------------------- タイトル -------------------- **/
.c-title__h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 12px;
  -moz-column-gap: 12px;
  column-gap: 12px;
  margin: 0 0 32px;
}

.c-title__h2:before {
  content: attr(data-eng);
  font-family: var(--font_title);
  font-size: 2.6rem;
  letter-spacing: 0.03em;
}

.c-title__h2 span {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--c_main);
  position: relative;
  padding: 0 0 0 10px;
}

.c-title__h2 span:before {
  content: "";
  content: "";
  width: 4px;
  height: 4px;
  background: var(--c_main);
  border-radius: 50%;
  position: absolute;
  top: calc(0.7em - 2px);
  left: 0;
}

.c-title__h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 24px;
}

.c-title__h3:before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--c_main);
  border-radius: 50%;
  position: absolute;
  top: calc(0.7em - 5px);
  left: 0;
}

.p-pageTitle {
  margin: -60px 0 0;
  position: relative;
  z-index: -1;
}

.p-pageTitle__box {
  min-height: 300px;
  padding: 60px 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.p-pageTitle__box--min {
  min-height: 120px;
  padding: 0;
  margin-top: 30px;
}

.p-pageTitle__title {
  padding: 0 0 16px;
  margin: 0;
  position: relative;
}

.p-pageTitle__title__eng {
  font-family: var(--font_eng);
  font-size: 3.2rem;
  line-height: 1.125;
  margin: 0 0 8px;
  font-weight: 700;
  font-style: normal;
}

.p-pageTitle__title__eng:empty {
  display: none;
}

.p-pageTitle__title__jp {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-family: 'Noto Sans JP';
  font-weight: bold;
}

.p-pageTitle__title:after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--c_main);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-pageTitle__txt {
  font-size: 1.2rem;
  line-height: 1.91667;
  letter-spacing: 0.02em;
  margin: 16px 0 0;
}

.p-pageTitle__txt:empty {
  display: none;
}

/** -------------------- アンカーリンク -------------------- **/
.p-anchor {
  margin: 0 0 64px;
  background: var(--c_bg_w);
}

.p-anchor__list {
  margin: 0 -20px;
  border-top: 1px solid var(--c_border);
  border-bottom: 1px solid var(--c_border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-anchor__list__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  padding: 8px 0;
  border-bottom: 1px solid var(--c_border);
}

.p-anchor__list__item:last-child {
  border-bottom: 0;
}

.p-anchor__list__item:nth-child(odd) a {
  border-right: 1px solid var(--c_border);
}

.p-anchor__list__item:nth-child(odd):nth-last-child(2) {
  border-bottom: 0;
}

.p-anchor__list__item a {
  height: 100%;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  padding: 4px 12px;
  font-size: 1.3rem;
}

.p-anchor__list__item a:after {
  content: "";
  width: 8px;
  height: 8px;
  background: url(../images/common/arrow.png) no-repeat center/contain;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
}

/** -------------------- テーブル -------------------- **/
.p-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 2.0;
}

.p-table th {
  font-weight: 400;
  text-align: left;
  padding: 15px 20px;
}

.p-table td {
  text-align: left;
  padding: 15px 20px;
}

.p-table thead th {
  background: var(--c_text_g);
  color: var(--c_wht);
  text-align: center;
  border-right: 1px solid var(--c_border);
  padding: 8px;
}

.p-table thead th:last-child {
  border-right: 0;
}

.p-table tbody {
  border-top: 1px solid var(--c_border);
}

.p-table tbody th,
.p-table tbody td {
  border-left: 1px solid var(--c_border);
  border-bottom: 1px solid var(--c_border);
}

.p-table tbody th:last-child,
.p-table tbody td:last-child {
  border-right: 1px solid var(--c_border);
}

.p-table caption {
  text-align: left;
  margin: 0 0 16px;
}

/** -------------------- その他 -------------------- **/
.p-column__col2 {
  display: grid;
  grid-template-columns: 100%;
  gap: 40px 20px;
}

/* スマホのみ
  ------------------------ */
@media (max-width: 768px) {
  .u-onlyTB {
    display: none !important;
  }

  .p-align__left--SP {
    text-align: left !important;
  }

  .p-align__right--SP {
    text-align: right !important;
  }

  .p-align__center--SP {
    text-align: center !important;
  }
}

/* タブレット縦以上
  ------------------------ */
@media (min-width: 768px) {
  .p-categorySearch__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-brandSearch__scrollBox {
    overflow: hidden;
    margin: 0;
  }

  .p-brandSearch__list {
    width: auto;
    grid-template-columns: repeat(8, 1fr);
    padding: 0;
  }

  .p-column__col2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* タブレット横以上
  ------------------------ */
@media (min-width: 981px) {
  .u-onlySPTB {
    display: none !important;
  }

  .p-align__left--TBPC {
    text-align: left !important;
  }

  .p-align__right--TBPC {
    text-align: right !important;
  }

  .p-align__center--TBPC {
    text-align: center !important;
  }

  body {
    font-size: 1.4rem;
  }

  a:hover,
  button:hover {
    opacity: 0.6;
  }

  .u-onlySP {
    display: none !important;
  }

  .u-onlyTB {
    display: none !important;
  }

  .p-fontSize__14 {
    font-size: 1.4rem;
  }

  .c-link__more--leftPC {
    margin-left: 0;
  }

  .c-link__more--rightPC {
    margin-left: auto;
    margin-right: 0;
  }

  .c-link__more--centerPC {
    margin-left: auto;
    margin-right: auto;
  }

  .c-btn__sizeL {
    padding: 16px 32px;
  }

  .c-btn__sizeXL {
    padding: 16px 52px;
  }

  .p-categorySearch {
    margin: 0 0 100px;
  }

  .p-categorySearch__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .p-categorySearch__list a {
    grid-template-columns: 80px 1fr;
    padidng: 10px 16px;
    gap: 2px 0;
    min-height: 100px;
  }

  .p-categorySearch__list a .eng {
    font-size: 1.8rem;
  }

  .p-categorySearch__list a .jp {
    font-size: 1.2rem;
  }

  .p-brandSearch {
    margin: 100px 0;
  }

  .p-brandSearch__scrollBox {
    overflow: hidden;
    margin: 0;
  }

  .p-brandSearch__list {
    gap: 16px;
  }

  .c-title__h2 {
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }

  .c-title__h2:before {
    font-size: 3.6rem;
    letter-spacing: 0.05em;
  }

  .c-title__h2 span {
    font-size: 1.4rem;
    padding-left: 16px;
  }

  .c-title__h2 span:before {
    width: 8px;
    height: 8px;
    top: calc(0.7em - 4px);
  }

  .c-title__h3 {
    font-size: 1.8rem;
    font-weight: 400;
  }

  .p-pageTitle {
    margin-top: -68px;
  }

  .p-pageTitle__box--min {
    min-height: 300px;
    margin-top: 0;
  }

  .p-pageTitle__title__eng {
    font-size: 4.8rem;
  }

  .p-pageTitle__txt {
    font-size: 1.3rem;
    line-height: 1.46154;
  }

  /** -------------------- アンカーリンク -------------------- **/
  .p-anchor {
    margin: 0 0 100px;
  }

  .p-anchor__list {
    margin: 0;
    border: 0;
    padding: 24px 0;
  }

  .p-anchor__list:after {
    content: "";
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 1px;
    background: var(--c_border);
  }

  .p-anchor__list__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
    border-bottom: 0;
  }

  .p-anchor__list__item:nth-child(n+5) {
    border-top: 1px solid var(--c_border);
  }

  .p-anchor__list__item:nth-child(4n) a {
    border-right: 0 !important;
  }

  .p-anchor__list__item a {
    border-right: 1px solid var(--c_border);
    padding: 4px 20px;
    min-height: 58px;
  }

  .p-column__col2 {
    gap: 40px 56px;
  }
}

/* スマホ・タブレットのみ
  ------------------------ */
@media (max-width: 980px) {
  .u-onlyTBPC {
    display: none !important;
  }

  .p-align__left--SPTB {
    text-align: left !important;
  }

  .p-align__right--SPTB {
    text-align: right !important;
  }

  .p-align__center--SPTB {
    text-align: center !important;
  }
}

@media (max-width: 1240px) {
  .u-onlyPC {
    display: none !important;
  }
}

/* PCのみ
  ------------------------ */
@media (min-width: 1241px) {
  .u-onlySP {
    display: none !important;
  }

  .u-onlyTB {
    display: none !important;
  }

  .p-align__left--PC {
    text-align: left !important;
  }

  .p-align__right--PC {
    text-align: right !important;
  }

  .p-align__center--PC {
    text-align: center !important;
  }
}

/*****************************************************

revico 追加css
   ⇒画像非表示
    ⇒グラフ被リンク

*****************************************************/
.revico-multicomment-top .revico-review-comment-detail--staff-recommend {
  display: none !important;
}

.revico-star .revico-star-block-wrapper {
  margin-right: 50px !important;
}

.revico-star .revico-star-graph-wrapper .revico-star-graph-list--row a {
  pointer-events: none;
}

.revico-star-block--caption {
  pointer-events: none;
}
.revico-widget a.revico-read-more-review {
  pointer-events: none;
}

/*****************************************************

ポイント削除 追加css

*****************************************************/
.fs-l-account {
  display: block !important;
}

.p-membership {
  display: none !important;
}


/*****************************************************

ログインフォーム 追加css

*****************************************************/

.fs-body-login .fs-c-loginForm {
  justify-content: center !important;
}

.fs-c-linkedServiceLogin__login {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 15px;
  justify-content: space-between;
}

.fs-c-anotherLogin.fs-c-anotherLogin--amazon {
  flex: 1;
}

@media (max-width: 598px) {
  .fs-c-linkedServiceLogin__login {
    flex-direction: column;
    padding-top: 20px;
  }

  .amazonpay-button-container {
    width: 290px !important;
  }

  .fs-c-anotherLogin.fs-c-anotherLogin--amazon {
    flex: 1;
    width: 290px !important;
  }
}


/*****************************************************

ログイン連携 追加css

*****************************************************/
.fs-c-breadcrumb {
  padding: 0 15px;
  overflow-x: hidden;
  width: 100%;
}

.fs-c-heading--page.fs-c-heading--page {
  font-size: 2.4rem;
  font-weight: 700;
}

.fs-c-inputInformation {
  padding: 0 15px;
}

.fs-c-buttonContainer--myPageTop {
  max-width: 1045px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (min-width: 1200px) {
  .fs-c-linkServicesList {
    width: 1045px;
    margin: 0 auto;
  }
}

/*****************************************************

カートに入れるボタン非表示 追加css

*****************************************************/
.fs-c-button--plain {
/*   display: none; */
}


/*****************************************************

カートの文字修正 追加css

*****************************************************/
.fs-c-cartTableContainer .fs-c-cartTable__product .fs-c-price__price {
  display: flex;
}

.fs-c-cartTableContainer .fs-c-cartTable__product .fs-c-price__price .fs-c-price__currencyMark {
  font-family: initial;
  font-weight: 400;
  letter-spacing: initial;
  font-style: normal;
  font-size: 16px;
  color: #000;
}

.fs-c-cartTable__dataCell .fs-c-price__currencyMark {
  font-family: initial;
  font-weight: 400;
  letter-spacing: initial;
  font-style: normal;
  font-size: 16px;
  color: #000;
}

.fs-c-cartTable__dataCell--subtotal .fs-c-price__value {
  font-family: initial;
  font-weight: 400;
  letter-spacing: initial;
  font-style: normal;
  font-size: 16px;
  color: #000;
}

.fs-c-cartTableContainer .fs-c-cartTable__product .fs-c-price__value {
  font-family: initial;
  font-weight: 400;
  letter-spacing: initial;
  font-style: normal;
  font-size: 16px;
  color: #000;
}

.fs-c-orderTotalTable__itemPriceSummary .fs-c-price__value,
.fs-c-orderTotalTable__itemPriceSummary .fs-c-price__currencyMark {
  font-family: initial;
  font-weight: 400;
  letter-spacing: initial;
  font-style: normal;
  font-size: 16px;
  color: #000;
}

/*****************************************************

注文履歴 追加css

*****************************************************/
.fs-c-history__info .fs-c-price__currencyMark {
  font-family: initial;
  font-weight: 400;
  letter-spacing: initial;
  font-style: normal;
  font-size: 16px;
  color: #000;
}

.fs-c-history__info .fs-c-price__value {
  font-family: initial;
  font-weight: 400;
  letter-spacing: initial;
  font-style: normal;
  font-size: 16px;
  color: #000;
}

/*****************************************************

404 Not Found ページが見つかりません 追加css

*****************************************************/
.notfound_top {
  display: block;
  width: 300px;
  padding: 15px;
  background-color: #e2007e;
  color: #fff !important;
  margin: 35px auto 0;
  font-weight: bold;
  border-radius: 3px;
}



/*****************************************************

カテゴリページ 追加css

*****************************************************/
.fs-c-productListItem__salesPeriodNotice {
  line-height: 180%;
}


/*****************************************************

商品ページスライダー 追加css

*****************************************************/
.itempage_slider {
  margin: 10px auto 0;
  max-width: 400px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itempage_slider2{
  margin: 30px auto 0;
  max-width: 1000px;
  width: 100%;
  padding: 0 5px;
}
.itempage_slider img{
  max-width:400px;
  width: 100%;
}
.itempage_slider2 img{
  max-width: 200px;
  width: 100%;
padding-right: 10px;
}

@media screen and (max-width: 798px) {
  .itempage_slider,.itempage_slider2{
    margin: 0px auto 0;
  }
  .itempage_slider2 .fs-c-slick .slick-prev, 
  .itempage_slider2 .fs-c-slick .slick-next {
      top: 45% !important;
  }
}

@media screen and (max-width: 398px) {
  .itempage_slider img{
    max-width:320px;
    width: 100%;
  }
}