@charset "UTF-8";
/* =====================
  リセット・共通系
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /*---------- カラー定義 ---------- */
  --c_red01: #b00000;
  --c_red02: #ca0000;
  --c_blue: #28325a;
  --c_wht: #ffffff;
  --c_border: #d5d6d2;
  --c_sub: #112b79;
  /* text color */
  --c_text: #333333;
  --c_text_g: #888888;
  /* tag color */
  --c_tag: #f7f7f5;
  /* button color */
  --c_btn: #f3f3f3;
  /*---------- フォント定義 ---------- */
  --font_ja: "Noto Sans JP", sans-serif;
  --font_eng: "adobe-garamond-pro", "Noto Sans JP", sans-serif;
  --font_num: "Lato", sans-serif;
  --font_mix: "Lato", "adobe-garamond-pro", "Noto Sans JP", sans-serif;
  /*---------- transition定義 ---------- */
  --anim: all 0.4s ease;
  /*---------- filter定義
     https://codepen.io/sosuke/pen/Pjoqqp ---------- */
  /* #000 → #333333 */
  --filter_text: invert(16%) sepia(0%) saturate(1093%) hue-rotate(215deg) brightness(107%) contrast(92%);
  /* #000 → #28325A */
  --filter_blue: invert(16%) sepia(59%) saturate(646%) hue-rotate(191deg) brightness(95%) contrast(91%);
  /* #000 → #FFFFFF */
  --filter_wht: brightness(0) invert(1);
  /* #000 → #888888 */
  --filter_text_g: invert(71%) sepia(0%) saturate(664%) hue-rotate(221deg) brightness(75%) contrast(103%);
  /* #000 → #D5D6D2 */
  --filter_border: invert(90%) sepia(6%) saturate(95%) hue-rotate(34deg) brightness(98%) contrast(86%);
}

/** -------------------- 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 {
  -webkit-transition: var(--anim);
  transition: var(--anim);
}
a:hover,
button:hover {
  text-decoration: none;
  opacity: 0.7;
}

small {
  font-size: 100%;
}

dl,
dt,
dd {
  margin: 0;
}

p {
  margin: 0;
}

img {
  vertical-align: middle;
}

address {
  font-style: normal;
}

body {
  font-family: var(--font_ja);
  font-size: 1.4rem;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color: var(--c_text);
}

/** -------------------- ログイン状態 -------------------- **/
.fs-clientInfo--true .fs-clientInfo--falseOnly {
  display: none !important;
}

.fs-clientInfo--false .fs-clientInfo--trueOnly {
  display: none !important;
}

/** -------------------- レイアウト -------------------- **/
.l-inner {
  padding: 0 20px;
}

.l-section {
  margin: 80px 0;
}

/** -------------------- 見出し -------------------- **/
.c-ttl01 {
  margin-bottom: 20px;
  text-align: center;
}
.c-ttl01__eng {
  font-family: var(--font_eng);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.c-ttl01__jp {
  margin-top: 4px;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--c_text_g);
}

.c-ttl02 {
  font-size: 2.1rem;
  color: var(--c_blue);
  font-family: var(--font_ja);
  margin: 0 0 60px;
  font-weight: 700;
}

.c-ttl-border {
  font-size: 1.8rem;
  color: var(--c_blue);
  font-family: var(--font_ja);
  font-weight: 700;
  line-height: 26/18;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--c_blue);
}

.c-ttl-bg {
  font-size: 1.6rem;
  font-weight: 700;
  background: #f7f7f5;
  margin: 0;
  padding: 16px 12px;
}

/** -------------------- フォント -------------------- **/
.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-num {
  font-family: var(--font_num) !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-red01 {
  color: var(--c_red01) !important;
}

.c-color-red02 {
  color: var(--c_red02) !important;
}

.c-color-blue {
  color: var(--c_blue) !important;
}

.c-color-sub {
  color: var(--c_sub) !important;
}

.c-color-wht {
  color: var(--c_wht) !important;
}

/** -------------------- アイコン色変更 -------------------- **/
.c-filter-blue {
  -webkit-filter: var(--filter_blue);
          filter: var(--filter_blue);
}

.c-filter-wht {
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

.c-filter-text {
  -webkit-filter: var(--filter_text);
          filter: var(--filter_text);
}

/** -------------------- リスト -------------------- **/
.c-list-keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 10px;
}
.c-list-keywords a {
  display: block;
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--c_tag);
  padding: 12px;
}
.c-list-keywords a::before {
  content: "#";
}

.c-list-anchor {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.c-list-anchor a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 18px 12px 0;
  position: relative;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--c_blue);
  border-bottom: 1px solid var(--c_border);
}
.c-list-anchor a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--c_blue);
  border-bottom: 1px solid var(--c_blue);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/** -------------------- リンク・ボタン -------------------- **/
.c-btn01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  min-height: 50px;
  max-width: 100%;
  margin: 0 auto;
  padding: 4px;
  font-size: 1.6rem;
  line-height: normal;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px solid var(--c_text);
  position: relative;
  background: var(--c_wht);
}
.c-btn01:after {
  content: "";
  width: 10px;
  height: 7px;
  background: url(../images/common/arrow01.png) no-repeat center/contain;
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.c-link-underline {
  text-decoration: underline !important;
  text-underline-offset: 0.25em;
  color: var(--c_sub);
}
.c-link-underline:visited, .c-link-underline:hover, .c-link-underline:active {
  color: var(--c_sub);
}

/** -------------------- 画像 -------------------- **/
/** -------------------- 背景色 -------------------- **/
/** -------------------- アコーディオン -------------------- **/
.js-accordionSwitch {
  cursor: pointer;
}

.js-accordionContents {
  display: none;
}

/** -------------------- 余白 -------------------- **/
.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;
}

/** -------------------- 静的ページ -------------------- **/
.guide_txt {
  margin-top: 60px;
}

.guide_txt > * {
  margin-top: 20px;
}

.guide_tokuten {
  display: grid;
  gap: 20px;
}
.guide_tokuten_item {
  display: grid;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  background: #f7f7f5;
  width: 100%;
}
.guide_tokuten_item .ttl_box {
  display: grid;
  grid-template-columns: 75px auto;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.guide_tokuten_item .ttl_box p img {
  width: 72px;
  height: 45px;
}
.guide_tokuten_item .ttl_box h4 {
  color: var(--c_blue);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.guide_tokuten_item .ttl_box h4 span {
  color: var(--c_wht);
  background: var(--c_blue);
  padding: 3px 12px 4px 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}
.guide_tokuten_item p {
  font-size: 1.3rem;
}

/** -------------------- future AI Recommend -------------------- **/
.p-productsSlider__wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  margin: 40px 0;
}
.p-productsSlider__wrapper::-webkit-scrollbar {
  height: 2px;
}
.p-productsSlider__wrapper::-webkit-scrollbar-thumb {
  background: var(--c_border);
}
.p-productsSlider__wrapper:first-child {
  margin-top: 0;
}
.p-productsSlider__wrapper:last-child {
  margin-bottom: 0;
}
.p-productsSlider .flywheel-recommend__frame {
  margin: 0;
}
.p-productsSlider .flywheel-recommend__frame .fr3-productListStatic {
  padding-right: 0;
  padding-left: 0;
}
.p-productsSlider .flywheel-recommend__frame .fr3-productListStatic::after {
  display: none;
}

/* スマホのみ
  ------------------------ */
@media (max-width: 767px) {
  .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: 768px) {
  .u-onlySP {
    display: none !important;
  }
  /** -------------------- レイアウト -------------------- **/
  .l-section {
    margin: 120px 0;
  }
  /** -------------------- 見出し -------------------- **/
  .c-ttl01 {
    margin-bottom: 40px;
  }
  .c-ttl01__eng {
    font-size: 3.6rem;
  }
  .c-ttl01__jp {
    margin-top: 8px;
    font-size: 1.6rem;
  }
  .c-ttl02 {
    font-size: 2.4rem;
  }
  .c-ttl-border {
    font-size: 2.1rem;
  }
  .c-ttl-bg {
    font-size: 1.5rem;
    padding: 12px 16px;
  }
  /** -------------------- フォント -------------------- **/
  .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-list-keywords a:hover {
    opacity: 1;
    background: var(--c_text);
    color: var(--c_wht);
  }
  .c-list-anchor {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
  }
  /** -------------------- リンク・ボタン -------------------- **/
  .c-btn01:hover {
    opacity: 1;
    color: var(--c_wht);
    background: var(--c_text);
  }
  .c-btn01:hover:after {
    opacity: 1;
  }
  /** -------------------- 余白 -------------------- **/
  .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;
  }
  /** -------------------- 静的ページ -------------------- **/
  .guide_tokuten {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  /** -------------------- future AI Recommend -------------------- **/
  .p-productsSlider {
    overflow: hidden;
  }
  .p-productsSlider .c-ttl01 {
    margin-bottom: 5px;
  }
  .p-productsSlider__arrows {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .p-productsSlider__arrow {
    border-right: 1px solid var(--c_border);
  }
  .p-productsSlider__arrow:last-child {
    border-right: 0;
  }
  .p-productsSlider__arrow__button {
    display: block;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    width: 42px;
    height: 15px;
    background: url(../images/common/arrow03.png) no-repeat right center/10px;
    -webkit-filter: var(--filter_text);
            filter: var(--filter_text);
  }
  .p-productsSlider__arrow__button--prev {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .p-productsSlider__arrow__button.is-disabled {
    -webkit-filter: var(--filter_border);
            filter: var(--filter_border);
  }
  .p-productsSlider__wrapper {
    padding: 0;
    margin: 25px 0 40px;
  }
  .p-productsSlider__wrapper::-webkit-scrollbar {
    height: 4px;
  }
}
/* PCのみ
  ------------------------ */