@charset "UTF-8";
/* =====================
  リセット・共通系
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /*---------- カラー定義 ---------- */
  --c_wht: #ffffff;
  --c_text: #171717;
  --c_red: #CF0037;
  --c_gray: #737373;
  --c_bg: #F5F0F0;
  --c_bg_gray: #F7F7F7;
  --c_border: #D7D7D7;
  /*---------- フォント定義 ---------- */
  --font_ja: "Noto Sans JP", sans-serif;
  --font_serif: "Zen Old Mincho", serif;
  --font_eng: "Poppins", sans-serif;
  --font_mix: "Poppins", "Noto Sans JP", sans-serif;
  /*---------- transition定義 ---------- */
  --anim: all 0.4s ease;
  /*---------- filter定義
   https://codepen.io/sosuke/pen/Pjoqqp ---------- */
  /* #000 → #fff */
  --filter_wht: brightness(0) invert(1);
  /* #000 → #171717 */
  --filter_text: invert(0%) sepia(7%) saturate(141%) hue-rotate(55deg) brightness(91%) contrast(82%);
  /* #000 → #CF0037 */
  --filter_red: invert(16%) sepia(67%) saturate(6136%) hue-rotate(335deg) brightness(77%) contrast(116%);
  /* #000 → #737373 */
  --filter_gray: invert(47%) sepia(0%) saturate(1%) hue-rotate(185deg) brightness(96%) contrast(91%);
}

/** -------------------- reset -------------------- **/
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  line-height: normal;
}

figure {
  margin: 0;
}

a,
button {
  color: var(--c_text);
  font-family: var(--font_ja);
  transition: var(--anim);
}
a:hover,
button:hover {
  text-decoration: none;
  opacity: 0.6;
}

small {
  font-size: 100%;
}

dl,
dt,
dd {
  margin: 0;
}

p {
  margin: 0;
}

img {
  vertical-align: middle;
}

address {
  font-style: normal;
}

mark {
  font-style: normal;
}

body {
  font-family: var(--font_ja);
  font-size: 1.4rem;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  color: var(--c_text);
}

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

/** -------------------- ログイン状態 -------------------- **/
.fs-clientInfo--true .fs-clientInfo--falseOnly {
  display: none !important;
}

.fs-clientInfo--false .fs-clientInfo--trueOnly {
  display: none !important;
}

/** -------------------- レイアウト -------------------- **/
.l-section {
  flex: 0 1 100%;
}

.l-inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}

.l-inner--narrow {
  max-width: 1000px;
  margin: 0 auto;
}

/** -------------------- 見出し -------------------- **/
.p-ttl01 {
  color: var(--c_red);
  margin: 30px 0;
}
.p-ttl01:first-child {
  margin-top: 0;
}
.p-ttl01:last-child {
  margin-bottom: 0;
}

.p-ttl01--icon01 {
  padding-left: 56px;
  position: relative;
}
.p-ttl01--icon01::before {
  content: "";
  width: 38px;
  height: 100%;
  background: url(../images/common/motif01.png) no-repeat top center/contain;
  filter: var(--filter_red);
  position: absolute;
  left: 0;
  top: 0;
}

.p-ttl01-eng {
  font-family: var(--font_eng);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.p-ttl01-jp {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-ttl02 {
  text-align: center;
  color: var(--c_red);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.p-ttl02:last-child {
  margin-bottom: 0;
}

/** -------------------- フォント -------------------- **/
.c-font-eng {
  font-family: var(--font_eng) !important;
}

.c-font-mix {
  font-family: var(--font_mix) !important;
}

.c-font-jp {
  font-family: var(--font_ja) !important;
}

.c-font-serif {
  font-family: var(--font_serif) !important;
}

.c-font-bold {
  font-weight: 700 !important;
}

.c-font-normal {
  font-weight: 400 !important;
}

.c-align-center {
  text-align: center !important;
}

.c-align-right {
  text-align: right !important;
}

.c-align-left {
  text-align: left !important;
}

.c-color-wht {
  color: var(--c_wht) !important;
}

.c-color-blk {
  color: var(--c_text) !important;
}

.c-color-red {
  color: var(--c_red) !important;
}

.c-color-gray {
  color: var(--c_gray) !important;
}

/** -------------------- 背景色 -------------------- **/
.u-bg {
  background-color: var(--c_bg) !important;
}

.u-bg-gray {
  background-color: var(--c_bg_gray) !important;
}

/** -------------------- リンク・ボタン -------------------- **/
.c-btn01 {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c_text);
  border: 1px solid var(--c_text);
  border-radius: 100px;
  background: var(--c_wht);
  padding: 14px 18px;
  width: 241px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.c-btn01 > span {
  flex-grow: 1;
}
.c-btn01::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/common/arrow.png) no-repeat center/contain;
  flex-shrink: 0;
  filter: var(--filter_text);
  transition: var(--anim);
}
.c-btn01.c-btn01--filled {
  background: var(--c_text);
  color: var(--c_wht);
}
.c-btn01.c-btn01--filled::after {
  filter: var(--filter_wht);
}
.c-btn01.c-btn01--s {
  width: 184px;
  font-size: 1.3rem;
}
.c-btn01.c-btn01--l {
  width: fit-content;
}
.c-btn01.c-btn01--noarrow::after {
  display: none;
}
.c-btn01.c-btn01--gray {
  border-color: var(--c_border);
}
.c-btn01.c-btn01--wht {
  border-color: var(--c_wht);
  color: var(--c_wht);
  background: none;
}
.c-btn01.c-btn01--wht::after {
  filter: var(--filter_wht);
}
.c-btn01.c-btn01--left {
  margin-left: 0;
}

.c-btn-search {
  appearance: none;
  width: 30px;
  height: 30px;
  background: var(--c_text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}
.c-btn-search::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/common/icon_search.png) no-repeat center/contain;
  filter: var(--filter_wht);
}

.c-link01 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 15px;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}
.c-link01::after {
  content: "";
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: url(../images/common/arrow.png) no-repeat center/contain;
  filter: var(--filter_text);
}

.c-link-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}
.c-link-back::before {
  content: "";
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: url(../images/common/arrow.png) no-repeat center/contain;
  filter: var(--filter_text);
  transform: scale(-1, 1);
}

.c-link-under {
  text-decoration: underline 1px !important;
  text-underline-offset: 0.25em;
}

/** -------------------- リスト -------------------- **/
.p-list-num {
  margin: 10px 0;
}
.p-list-num:first-child {
  margin-top: 0;
}
.p-list-num:last-child {
  margin-bottom: 0;
}
.p-list-num > li {
  counter-increment: cnt;
  padding-left: 28px;
  position: relative;
}
.p-list-num > li + li {
  margin-top: 10px;
}
.p-list-num > li::before {
  content: counter(cnt);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c_text);
  color: var(--c_wht);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 2px;
  padding-bottom: 1px;
}
.p-list-num > li[data-num]::before {
  content: attr(data-num);
}

/** -------------------- 余白 -------------------- **/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-mt4 {
  margin-top: 4px !important;
}

.u-mb4 {
  margin-bottom: 4px !important;
}

.u-pt4 {
  padding-top: 4px !important;
}

.u-pb4 {
  padding-bottom: 4px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-mt8 {
  margin-top: 8px !important;
}

.u-mb8 {
  margin-bottom: 8px !important;
}

.u-pt8 {
  padding-top: 8px !important;
}

.u-pb8 {
  padding-bottom: 8px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-mt12 {
  margin-top: 12px !important;
}

.u-mb12 {
  margin-bottom: 12px !important;
}

.u-pt12 {
  padding-top: 12px !important;
}

.u-pb12 {
  padding-bottom: 12px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-mt16 {
  margin-top: 16px !important;
}

.u-mb16 {
  margin-bottom: 16px !important;
}

.u-pt16 {
  padding-top: 16px !important;
}

.u-pb16 {
  padding-bottom: 16px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-mt24 {
  margin-top: 24px !important;
}

.u-mb24 {
  margin-bottom: 24px !important;
}

.u-pt24 {
  padding-top: 24px !important;
}

.u-pb24 {
  padding-bottom: 24px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-mt28 {
  margin-top: 28px !important;
}

.u-mb28 {
  margin-bottom: 28px !important;
}

.u-pt28 {
  padding-top: 28px !important;
}

.u-pb28 {
  padding-bottom: 28px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-mt32 {
  margin-top: 32px !important;
}

.u-mb32 {
  margin-bottom: 32px !important;
}

.u-pt32 {
  padding-top: 32px !important;
}

.u-pb32 {
  padding-bottom: 32px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-mt36 {
  margin-top: 36px !important;
}

.u-mb36 {
  margin-bottom: 36px !important;
}

.u-pt36 {
  padding-top: 36px !important;
}

.u-pb36 {
  padding-bottom: 36px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-mt120 {
  margin-top: 120px !important;
}

.u-mb120 {
  margin-bottom: 120px !important;
}

.u-pt120 {
  padding-top: 120px !important;
}

.u-pb120 {
  padding-bottom: 120px !important;
}

.u-mt140 {
  margin-top: 140px !important;
}

.u-mb140 {
  margin-bottom: 140px !important;
}

.u-pt140 {
  padding-top: 140px !important;
}

.u-pb140 {
  padding-bottom: 140px !important;
}

.u-mt150 {
  margin-top: 150px !important;
}

.u-mb150 {
  margin-bottom: 150px !important;
}

.u-pt150 {
  padding-top: 150px !important;
}

.u-pb150 {
  padding-bottom: 150px !important;
}

.u-mt180 {
  margin-top: 180px !important;
}

.u-mb180 {
  margin-bottom: 180px !important;
}

.u-pt180 {
  padding-top: 180px !important;
}

.u-pb180 {
  padding-bottom: 180px !important;
}

.u-mt200 {
  margin-top: 200px !important;
}

.u-mb200 {
  margin-bottom: 200px !important;
}

.u-pt200 {
  padding-top: 200px !important;
}

.u-pb200 {
  padding-bottom: 200px !important;
}

/** -------------------- CSS Animation -------------------- **/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/** -------------------- future AI Recommen共通仕様 -------------------- **/
.p-recommend {
  margin-top: 60px;
}

.p-recommend-scroll {
  margin: 30px -16px 0;
  padding: 0 16px;
  overflow-x: auto;
  overflow-y: hidden;
}
.p-recommend-scroll .fr3-productListStatic {
  padding: 0;
  display: flex;
  gap: 16px;
}
.p-recommend-scroll .fr3-productListStatic::after {
  content: "";
  flex: 0 0 1px;
  margin-left: -1px;
}
.p-recommend-scroll .fr3-item {
  flex: 0 0 150px;
}

.p-recommend-col4 {
  margin: 30px 0 0;
}
.p-recommend-col4 .fr3-productListStatic {
  padding: 0;
  gap: 40px 11px;
  grid-template-columns: repeat(2, 1fr);
}
.p-recommend-col4 .fr3-item:nth-child(n+5) {
  display: none;
}
.p-recommend-col4 .fr3-item__imageContainer {
  border-radius: 6px;
}
.p-recommend-col4 .fr3-item__productName {
  font-size: 1.4rem;
}
.p-recommend-col4 .fr3-item__productPrice__value {
  font-size: 1.4rem;
}

/** -------------------- HISTORY 最近チェックした商品 -------------------- **/
.p-history .p-recommend-scroll .fr3-item {
  flex: 0 0 120px;
}

/** -------------------- 重要なお知らせ -------------------- **/
.p-attention-box {
  max-width: 1000px;
  margin: 0 auto;
  background: #EFEFEF;
  border-radius: 10px;
  padding: 25px 20px 30px;
}

.p-attention-ttl {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--c_red);
  margin-bottom: 15px;
}

.p-attention-contents {
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-attention-contents a {
  color: var(--c_red);
}
.p-attention-contents p + p {
  margin-top: 1.5em;
}

/* スマホのみ
  ------------------------ */
@media (max-width: 1199px) {
  .u-onlyPC {
    display: none !important;
  }
  .c-align-center--sp {
    text-align: center !important;
  }
  .c-align-right--sp {
    text-align: right !important;
  }
  .c-align-left--sp {
    text-align: left !important;
  }
  /** -------------------- 余白 -------------------- **/
  .u-mt0--sp {
    margin-top: 0px !important;
  }
  .u-mb0--sp {
    margin-bottom: 0px !important;
  }
  .u-pt0--sp {
    padding-top: 0px !important;
  }
  .u-pb0--sp {
    padding-bottom: 0px !important;
  }
  .u-mt4--sp {
    margin-top: 4px !important;
  }
  .u-mb4--sp {
    margin-bottom: 4px !important;
  }
  .u-pt4--sp {
    padding-top: 4px !important;
  }
  .u-pb4--sp {
    padding-bottom: 4px !important;
  }
  .u-mt5--sp {
    margin-top: 5px !important;
  }
  .u-mb5--sp {
    margin-bottom: 5px !important;
  }
  .u-pt5--sp {
    padding-top: 5px !important;
  }
  .u-pb5--sp {
    padding-bottom: 5px !important;
  }
  .u-mt8--sp {
    margin-top: 8px !important;
  }
  .u-mb8--sp {
    margin-bottom: 8px !important;
  }
  .u-pt8--sp {
    padding-top: 8px !important;
  }
  .u-pb8--sp {
    padding-bottom: 8px !important;
  }
  .u-mt10--sp {
    margin-top: 10px !important;
  }
  .u-mb10--sp {
    margin-bottom: 10px !important;
  }
  .u-pt10--sp {
    padding-top: 10px !important;
  }
  .u-pb10--sp {
    padding-bottom: 10px !important;
  }
  .u-mt12--sp {
    margin-top: 12px !important;
  }
  .u-mb12--sp {
    margin-bottom: 12px !important;
  }
  .u-pt12--sp {
    padding-top: 12px !important;
  }
  .u-pb12--sp {
    padding-bottom: 12px !important;
  }
  .u-mt15--sp {
    margin-top: 15px !important;
  }
  .u-mb15--sp {
    margin-bottom: 15px !important;
  }
  .u-pt15--sp {
    padding-top: 15px !important;
  }
  .u-pb15--sp {
    padding-bottom: 15px !important;
  }
  .u-mt16--sp {
    margin-top: 16px !important;
  }
  .u-mb16--sp {
    margin-bottom: 16px !important;
  }
  .u-pt16--sp {
    padding-top: 16px !important;
  }
  .u-pb16--sp {
    padding-bottom: 16px !important;
  }
  .u-mt20--sp {
    margin-top: 20px !important;
  }
  .u-mb20--sp {
    margin-bottom: 20px !important;
  }
  .u-pt20--sp {
    padding-top: 20px !important;
  }
  .u-pb20--sp {
    padding-bottom: 20px !important;
  }
  .u-mt24--sp {
    margin-top: 24px !important;
  }
  .u-mb24--sp {
    margin-bottom: 24px !important;
  }
  .u-pt24--sp {
    padding-top: 24px !important;
  }
  .u-pb24--sp {
    padding-bottom: 24px !important;
  }
  .u-mt25--sp {
    margin-top: 25px !important;
  }
  .u-mb25--sp {
    margin-bottom: 25px !important;
  }
  .u-pt25--sp {
    padding-top: 25px !important;
  }
  .u-pb25--sp {
    padding-bottom: 25px !important;
  }
  .u-mt28--sp {
    margin-top: 28px !important;
  }
  .u-mb28--sp {
    margin-bottom: 28px !important;
  }
  .u-pt28--sp {
    padding-top: 28px !important;
  }
  .u-pb28--sp {
    padding-bottom: 28px !important;
  }
  .u-mt30--sp {
    margin-top: 30px !important;
  }
  .u-mb30--sp {
    margin-bottom: 30px !important;
  }
  .u-pt30--sp {
    padding-top: 30px !important;
  }
  .u-pb30--sp {
    padding-bottom: 30px !important;
  }
  .u-mt32--sp {
    margin-top: 32px !important;
  }
  .u-mb32--sp {
    margin-bottom: 32px !important;
  }
  .u-pt32--sp {
    padding-top: 32px !important;
  }
  .u-pb32--sp {
    padding-bottom: 32px !important;
  }
  .u-mt35--sp {
    margin-top: 35px !important;
  }
  .u-mb35--sp {
    margin-bottom: 35px !important;
  }
  .u-pt35--sp {
    padding-top: 35px !important;
  }
  .u-pb35--sp {
    padding-bottom: 35px !important;
  }
  .u-mt36--sp {
    margin-top: 36px !important;
  }
  .u-mb36--sp {
    margin-bottom: 36px !important;
  }
  .u-pt36--sp {
    padding-top: 36px !important;
  }
  .u-pb36--sp {
    padding-bottom: 36px !important;
  }
  .u-mt40--sp {
    margin-top: 40px !important;
  }
  .u-mb40--sp {
    margin-bottom: 40px !important;
  }
  .u-pt40--sp {
    padding-top: 40px !important;
  }
  .u-pb40--sp {
    padding-bottom: 40px !important;
  }
  .u-mt45--sp {
    margin-top: 45px !important;
  }
  .u-mb45--sp {
    margin-bottom: 45px !important;
  }
  .u-pt45--sp {
    padding-top: 45px !important;
  }
  .u-pb45--sp {
    padding-bottom: 45px !important;
  }
  .u-mt50--sp {
    margin-top: 50px !important;
  }
  .u-mb50--sp {
    margin-bottom: 50px !important;
  }
  .u-pt50--sp {
    padding-top: 50px !important;
  }
  .u-pb50--sp {
    padding-bottom: 50px !important;
  }
  .u-mt55--sp {
    margin-top: 55px !important;
  }
  .u-mb55--sp {
    margin-bottom: 55px !important;
  }
  .u-pt55--sp {
    padding-top: 55px !important;
  }
  .u-pb55--sp {
    padding-bottom: 55px !important;
  }
  .u-mt60--sp {
    margin-top: 60px !important;
  }
  .u-mb60--sp {
    margin-bottom: 60px !important;
  }
  .u-pt60--sp {
    padding-top: 60px !important;
  }
  .u-pb60--sp {
    padding-bottom: 60px !important;
  }
  .u-mt70--sp {
    margin-top: 70px !important;
  }
  .u-mb70--sp {
    margin-bottom: 70px !important;
  }
  .u-pt70--sp {
    padding-top: 70px !important;
  }
  .u-pb70--sp {
    padding-bottom: 70px !important;
  }
  .u-mt80--sp {
    margin-top: 80px !important;
  }
  .u-mb80--sp {
    margin-bottom: 80px !important;
  }
  .u-pt80--sp {
    padding-top: 80px !important;
  }
  .u-pb80--sp {
    padding-bottom: 80px !important;
  }
  .u-mt90--sp {
    margin-top: 90px !important;
  }
  .u-mb90--sp {
    margin-bottom: 90px !important;
  }
  .u-pt90--sp {
    padding-top: 90px !important;
  }
  .u-pb90--sp {
    padding-bottom: 90px !important;
  }
  .u-mt100--sp {
    margin-top: 100px !important;
  }
  .u-mb100--sp {
    margin-bottom: 100px !important;
  }
  .u-pt100--sp {
    padding-top: 100px !important;
  }
  .u-pb100--sp {
    padding-bottom: 100px !important;
  }
  .u-mt120--sp {
    margin-top: 120px !important;
  }
  .u-mb120--sp {
    margin-bottom: 120px !important;
  }
  .u-pt120--sp {
    padding-top: 120px !important;
  }
  .u-pb120--sp {
    padding-bottom: 120px !important;
  }
  .u-mt140--sp {
    margin-top: 140px !important;
  }
  .u-mb140--sp {
    margin-bottom: 140px !important;
  }
  .u-pt140--sp {
    padding-top: 140px !important;
  }
  .u-pb140--sp {
    padding-bottom: 140px !important;
  }
  .u-mt150--sp {
    margin-top: 150px !important;
  }
  .u-mb150--sp {
    margin-bottom: 150px !important;
  }
  .u-pt150--sp {
    padding-top: 150px !important;
  }
  .u-pb150--sp {
    padding-bottom: 150px !important;
  }
  .u-mt180--sp {
    margin-top: 180px !important;
  }
  .u-mb180--sp {
    margin-bottom: 180px !important;
  }
  .u-pt180--sp {
    padding-top: 180px !important;
  }
  .u-pb180--sp {
    padding-bottom: 180px !important;
  }
  .u-mt200--sp {
    margin-top: 200px !important;
  }
  .u-mb200--sp {
    margin-bottom: 200px !important;
  }
  .u-pt200--sp {
    padding-top: 200px !important;
  }
  .u-pb200--sp {
    padding-bottom: 200px !important;
  }
}
/* PC
  ------------------------ */
@media (min-width: 1200px) {
  body {
    font-size: 1.5rem;
  }
  .u-onlySP {
    display: none !important;
  }
  /** -------------------- レイアウト -------------------- **/
  /** -------------------- 見出し -------------------- **/
  .p-ttl01 {
    margin: 50px 0;
  }
  .p-ttl01--icon01 {
    padding-left: 75px;
  }
  .p-ttl01--icon01::before {
    width: 50px;
  }
  .p-ttl01-eng {
    font-size: 3.6rem;
    margin-bottom: 16px;
  }
  .p-ttl01-jp {
    font-size: 1.5rem;
  }
  .p-ttl02 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  /** -------------------- フォント -------------------- **/
  .c-align-center--pc {
    text-align: center !important;
  }
  .c-align-right--pc {
    text-align: right !important;
  }
  .c-align-left--pc {
    text-align: left !important;
  }
  /** -------------------- リスト -------------------- **/
  /** -------------------- リンク・ボタン -------------------- **/
  .c-btn01 {
    padding: 16px 18px;
    width: 246px;
  }
  .c-btn01::after {
    width: 20px;
    height: 20px;
  }
  .c-btn01.c-btn01--s {
    font-size: 1.4rem;
  }
  .c-btn-search {
    width: 45px;
    height: 45px;
  }
  .c-btn-search::before {
    width: 25px;
    height: 25px;
  }
  .c-link01 {
    font-size: 1.4rem;
    padding-bottom: 12px;
  }
  .c-link-back {
    font-size: 1.4rem;
    padding-bottom: 12px;
  }
  /** -------------------- リスト -------------------- **/
  .p-list-num > li::before {
    width: 22px;
    height: 22px;
    top: 4px;
  }
  /** -------------------- 余白 -------------------- **/
  .u-mt0--pc {
    margin-top: 0px !important;
  }
  .u-mb0--pc {
    margin-bottom: 0px !important;
  }
  .u-pt0--pc {
    padding-top: 0px !important;
  }
  .u-pb0--pc {
    padding-bottom: 0px !important;
  }
  .u-mt4--pc {
    margin-top: 4px !important;
  }
  .u-mb4--pc {
    margin-bottom: 4px !important;
  }
  .u-pt4--pc {
    padding-top: 4px !important;
  }
  .u-pb4--pc {
    padding-bottom: 4px !important;
  }
  .u-mt5--pc {
    margin-top: 5px !important;
  }
  .u-mb5--pc {
    margin-bottom: 5px !important;
  }
  .u-pt5--pc {
    padding-top: 5px !important;
  }
  .u-pb5--pc {
    padding-bottom: 5px !important;
  }
  .u-mt8--pc {
    margin-top: 8px !important;
  }
  .u-mb8--pc {
    margin-bottom: 8px !important;
  }
  .u-pt8--pc {
    padding-top: 8px !important;
  }
  .u-pb8--pc {
    padding-bottom: 8px !important;
  }
  .u-mt10--pc {
    margin-top: 10px !important;
  }
  .u-mb10--pc {
    margin-bottom: 10px !important;
  }
  .u-pt10--pc {
    padding-top: 10px !important;
  }
  .u-pb10--pc {
    padding-bottom: 10px !important;
  }
  .u-mt12--pc {
    margin-top: 12px !important;
  }
  .u-mb12--pc {
    margin-bottom: 12px !important;
  }
  .u-pt12--pc {
    padding-top: 12px !important;
  }
  .u-pb12--pc {
    padding-bottom: 12px !important;
  }
  .u-mt15--pc {
    margin-top: 15px !important;
  }
  .u-mb15--pc {
    margin-bottom: 15px !important;
  }
  .u-pt15--pc {
    padding-top: 15px !important;
  }
  .u-pb15--pc {
    padding-bottom: 15px !important;
  }
  .u-mt16--pc {
    margin-top: 16px !important;
  }
  .u-mb16--pc {
    margin-bottom: 16px !important;
  }
  .u-pt16--pc {
    padding-top: 16px !important;
  }
  .u-pb16--pc {
    padding-bottom: 16px !important;
  }
  .u-mt20--pc {
    margin-top: 20px !important;
  }
  .u-mb20--pc {
    margin-bottom: 20px !important;
  }
  .u-pt20--pc {
    padding-top: 20px !important;
  }
  .u-pb20--pc {
    padding-bottom: 20px !important;
  }
  .u-mt24--pc {
    margin-top: 24px !important;
  }
  .u-mb24--pc {
    margin-bottom: 24px !important;
  }
  .u-pt24--pc {
    padding-top: 24px !important;
  }
  .u-pb24--pc {
    padding-bottom: 24px !important;
  }
  .u-mt25--pc {
    margin-top: 25px !important;
  }
  .u-mb25--pc {
    margin-bottom: 25px !important;
  }
  .u-pt25--pc {
    padding-top: 25px !important;
  }
  .u-pb25--pc {
    padding-bottom: 25px !important;
  }
  .u-mt28--pc {
    margin-top: 28px !important;
  }
  .u-mb28--pc {
    margin-bottom: 28px !important;
  }
  .u-pt28--pc {
    padding-top: 28px !important;
  }
  .u-pb28--pc {
    padding-bottom: 28px !important;
  }
  .u-mt30--pc {
    margin-top: 30px !important;
  }
  .u-mb30--pc {
    margin-bottom: 30px !important;
  }
  .u-pt30--pc {
    padding-top: 30px !important;
  }
  .u-pb30--pc {
    padding-bottom: 30px !important;
  }
  .u-mt32--pc {
    margin-top: 32px !important;
  }
  .u-mb32--pc {
    margin-bottom: 32px !important;
  }
  .u-pt32--pc {
    padding-top: 32px !important;
  }
  .u-pb32--pc {
    padding-bottom: 32px !important;
  }
  .u-mt35--pc {
    margin-top: 35px !important;
  }
  .u-mb35--pc {
    margin-bottom: 35px !important;
  }
  .u-pt35--pc {
    padding-top: 35px !important;
  }
  .u-pb35--pc {
    padding-bottom: 35px !important;
  }
  .u-mt36--pc {
    margin-top: 36px !important;
  }
  .u-mb36--pc {
    margin-bottom: 36px !important;
  }
  .u-pt36--pc {
    padding-top: 36px !important;
  }
  .u-pb36--pc {
    padding-bottom: 36px !important;
  }
  .u-mt40--pc {
    margin-top: 40px !important;
  }
  .u-mb40--pc {
    margin-bottom: 40px !important;
  }
  .u-pt40--pc {
    padding-top: 40px !important;
  }
  .u-pb40--pc {
    padding-bottom: 40px !important;
  }
  .u-mt45--pc {
    margin-top: 45px !important;
  }
  .u-mb45--pc {
    margin-bottom: 45px !important;
  }
  .u-pt45--pc {
    padding-top: 45px !important;
  }
  .u-pb45--pc {
    padding-bottom: 45px !important;
  }
  .u-mt50--pc {
    margin-top: 50px !important;
  }
  .u-mb50--pc {
    margin-bottom: 50px !important;
  }
  .u-pt50--pc {
    padding-top: 50px !important;
  }
  .u-pb50--pc {
    padding-bottom: 50px !important;
  }
  .u-mt55--pc {
    margin-top: 55px !important;
  }
  .u-mb55--pc {
    margin-bottom: 55px !important;
  }
  .u-pt55--pc {
    padding-top: 55px !important;
  }
  .u-pb55--pc {
    padding-bottom: 55px !important;
  }
  .u-mt60--pc {
    margin-top: 60px !important;
  }
  .u-mb60--pc {
    margin-bottom: 60px !important;
  }
  .u-pt60--pc {
    padding-top: 60px !important;
  }
  .u-pb60--pc {
    padding-bottom: 60px !important;
  }
  .u-mt70--pc {
    margin-top: 70px !important;
  }
  .u-mb70--pc {
    margin-bottom: 70px !important;
  }
  .u-pt70--pc {
    padding-top: 70px !important;
  }
  .u-pb70--pc {
    padding-bottom: 70px !important;
  }
  .u-mt80--pc {
    margin-top: 80px !important;
  }
  .u-mb80--pc {
    margin-bottom: 80px !important;
  }
  .u-pt80--pc {
    padding-top: 80px !important;
  }
  .u-pb80--pc {
    padding-bottom: 80px !important;
  }
  .u-mt90--pc {
    margin-top: 90px !important;
  }
  .u-mb90--pc {
    margin-bottom: 90px !important;
  }
  .u-pt90--pc {
    padding-top: 90px !important;
  }
  .u-pb90--pc {
    padding-bottom: 90px !important;
  }
  .u-mt100--pc {
    margin-top: 100px !important;
  }
  .u-mb100--pc {
    margin-bottom: 100px !important;
  }
  .u-pt100--pc {
    padding-top: 100px !important;
  }
  .u-pb100--pc {
    padding-bottom: 100px !important;
  }
  .u-mt120--pc {
    margin-top: 120px !important;
  }
  .u-mb120--pc {
    margin-bottom: 120px !important;
  }
  .u-pt120--pc {
    padding-top: 120px !important;
  }
  .u-pb120--pc {
    padding-bottom: 120px !important;
  }
  .u-mt140--pc {
    margin-top: 140px !important;
  }
  .u-mb140--pc {
    margin-bottom: 140px !important;
  }
  .u-pt140--pc {
    padding-top: 140px !important;
  }
  .u-pb140--pc {
    padding-bottom: 140px !important;
  }
  .u-mt150--pc {
    margin-top: 150px !important;
  }
  .u-mb150--pc {
    margin-bottom: 150px !important;
  }
  .u-pt150--pc {
    padding-top: 150px !important;
  }
  .u-pb150--pc {
    padding-bottom: 150px !important;
  }
  .u-mt180--pc {
    margin-top: 180px !important;
  }
  .u-mb180--pc {
    margin-bottom: 180px !important;
  }
  .u-pt180--pc {
    padding-top: 180px !important;
  }
  .u-pb180--pc {
    padding-bottom: 180px !important;
  }
  .u-mt200--pc {
    margin-top: 200px !important;
  }
  .u-mb200--pc {
    margin-bottom: 200px !important;
  }
  .u-pt200--pc {
    padding-top: 200px !important;
  }
  .u-pb200--pc {
    padding-bottom: 200px !important;
  }
  /** -------------------- future AI Recommen共通仕様 -------------------- **/
  .p-recommend {
    margin-top: 80px;
  }
  .p-recommend-scroll {
    margin: 50px 0 0;
    padding: 0;
  }
  .p-recommend-scroll .fr3-productListStatic {
    display: grid;
    gap: 40px 26px;
    grid-template-columns: repeat(4, 1fr);
  }
  .p-recommend-scroll .fr3-productListStatic::after {
    display: none;
  }
  .p-recommend-scroll .fr3-item:nth-child(n+5) {
    display: none;
  }
  .p-recommend-col4 {
    margin-top: 50px;
  }
  .p-recommend-col4 .fr3-productListStatic {
    gap: 40px 26px;
    grid-template-columns: repeat(4, 1fr);
  }
  .p-recommend-col4 .fr3-item__imageContainer {
    border-radius: 10px;
  }
  .p-recommend-col4 .fr3-item__productName {
    font-size: 1.5rem;
  }
  .p-recommend-col4 .fr3-item__productPrice__value {
    font-size: 1.5rem;
  }
  /** -------------------- HISTORY 最近チェックした商品 -------------------- **/
  .p-history .p-recommend-scroll .fr3-productListStatic {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  .p-history .p-recommend-scroll .fr3-item:nth-child(n+5) {
    display: block;
  }
  .p-history .p-recommend-scroll .fr3-item:nth-child(n+7) {
    display: none;
  }
  /** -------------------- 重要なお知らせ -------------------- **/
  .p-attention-box {
    padding: 35px 40px;
    display: flex;
    align-items: center;
    column-gap: 28px;
  }
  .p-attention-ttl {
    flex-shrink: 0;
    margin: 0;
    text-align: left;
  }
  .p-attention-contents a {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
  }
}
/* hover
  ------------------------ */
@media (hover: hover) {
  .u-hover-expand:hover {
    opacity: 1;
  }
  .u-hover-expand:hover img {
    transform: scale(1.05);
  }
  .c-btn01:hover {
    background: var(--c_text);
    color: var(--c_wht);
    opacity: 1;
  }
  .c-btn01:hover::after {
    filter: var(--filter_wht);
  }
  .c-btn01.c-btn01--filled:hover {
    background: var(--c_wht);
    color: var(--c_text);
  }
  .c-btn01.c-btn01--filled:hover::after {
    filter: var(--filter_text);
  }
  .c-btn01.c-btn01--wht:hover {
    background: var(--c_wht);
    color: var(--c_text);
  }
  .c-btn01.c-btn01--wht:hover::after {
    filter: var(--filter_text);
  }
}