<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ★★このcssはscssをコンパイルしたcssです。cssを記述する場合は、こちらに記述せず、merge.cssに記述してください。★★ */
/* ==============================================
CSS information

 file name  : style.css
 style info : style.scssコンパイルしたファイル。

 このスタイルシートの構成
 style.scss参照
=============================================== */
/* ------------------------------------
  reset
------------------------------------ */
html {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  /* 10px */
}

body {
  margin: 0;
  padding: 0;
  /* 英数の改行 */
  word-break: break-all;
  word-wrap: break-word;
  line-height: 2.0;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p,
header, hgroup, section, article, aside, hgroup, footer, figure, figcaption, nav {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

pre, form, fieldset, input, textarea,
div, blockquote, th, td {
  margin: 0;
  padding: 0;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, em, b {
  font-weight: normal;
}

ul, ol {
  list-style: none;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  /* 印刷時の要素内での改ページをしない */
  page-break-inside: avoid;
  empty-cells: show;
}

td {
  vertical-align: top;
}

a {
  text-decoration: none;
}

caption {
  text-align: left;
}

q:before, q:after {
  content: '';
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

img, abbr, acronym, fieldset {
  border: none;
  vertical-align: bottom;
  /* listにて隙間ができるのを防ぐ kunihro*/
}

/* clearfix */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

@media screen and (max-width: 767px) {
  .wrap {
    overflow: hidden;
  }
}

/*=================================================
 * ＜共通＞
 * ================================================ */
/* ------------------------------------
  /* パンくず
  ------------------------------------ */
.page_cont {
  margin-bottom: 50px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_cont {
    margin: 0 auto 60px;
    width: 1100px;
  }
}

.topic_path .topic_path_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.topic_path .topic_path_list li {
  position: relative;
  padding: 0 10px;
  display: inline-block;
  font-size: 1.3rem;
  margin-bottom: 2px;
  /* SP */
}

@media screen and (max-width: 767px) {
  .topic_path .topic_path_list li {
    font-size: 1.2rem;
  }
}

.topic_path .topic_path_list li a {
  text-decoration: underline;
}

.topic_path .topic_path_list li a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.topic_path .topic_path_list li::before {
  display: inline-block;
  content: '＞';
  font-size: 1.2rem;
  position: absolute;
  top: 1px;
  left: -4px;
  color: #292929;
}

.topic_path .topic_path_list li:first-child {
  text-indent: -1.2em;
}

.topic_path .topic_path_list li:first-child::before {
  display: none;
}

/* ------------------------------------
/* 吹き出し見出し
  ------------------------------------ */
.tl_balloon {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  color: #0a0a0a;
  background-color: #FFF;
  border: solid 1px #0a0a0a;
  padding: 6px 15px;
  position: absolute;
  top: -26px;
  left: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_balloon {
    font-size: 1.8rem;
    padding: 8px 30px;
  }
}

.tl_balloon::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  margin-left: -7px;
  border: 6px solid transparent;
  border-top: 6px solid #FFF;
  border-left: 8px solid #FFF;
  z-index: 2;
}

.tl_balloon::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -8px;
  border: 7px solid transparent;
  border-top: 7px solid #0a0a0a;
  border-left: 9px solid #0a0a0a;
  border-radius: 2px;
  z-index: 1;
}

.tl_balloon .tl_min {
  font-size: 1.2rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_balloon .tl_min {
    font-size: 1.4rem;
  }
}

/*=================================================
  * ＜コーポレート＞
  * ================================================ */
.page_corporate {
  /* ------------------------------------
    /* コンテンツページ タイトル
     ------------------------------------ */
}

.page_corporate .page_tl {
  margin-bottom: 20px;
}

.page_corporate .page_tl .page_tl_box {
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../img_dmy/bg_tl_dmy.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: relative;
}

.page_corporate .page_tl .page_tl_box::before {
  display: block;
  content: '';
  width: 90px;
  height: 25px;
  background-image: url("../img_cont/img_cont_tl_before.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page_corporate .page_tl .page_tl_box::after {
  display: block;
  content: '';
  width: 90px;
  height: 25px;
  background-image: url("../img_cont/img_cont_tl_after.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.page_corporate .page_tl .page_tl_box .tl_cont_page {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.page_corporate .page_tl .page_tl_box .tl_cont_page .tl_cont_txt {
  display: block;
  font-size: 2.2rem;
  line-height: 2.4rem;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  text-shadow: 1px 2px 3px #464646;
}

.page_corporate .page_tl .page_tl_box .tl_cont_page .tl_cont_txt_min {
  display: block;
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
  text-shadow: 1px 2px 3px #464646;
}

/*=================================================
  * ＜EC＞
  * ================================================ */
.page_ec {
  /* ------------------------------------
    /* コンテンツページ タイトル
     ------------------------------------ */
}

.page_ec .page_tl {
  margin-bottom: 20px;
}

.page_ec .page_tl .page_tl_box {
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #877E73;
}

.page_ec .page_tl .page_tl_box .tl_cont_page {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.page_ec .page_tl .page_tl_box .tl_cont_page .tl_cont_txt {
  display: block;
  font-size: 2.2rem;
  color: #FFF;
  text-align: center;
  text-shadow: 1px 2px 3px #464646;
  position: relative;
}

.page_ec .page_tl .page_tl_box .tl_cont_page .tl_cont_txt:before {
  content: '';
  position: absolute;
  bottom: 0px;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FFF;
  border-radius: 2px;
}

.page_ec .page_tl .page_tl_box .tl_cont_page .tl_cont_txt_min {
  display: block;
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
  text-shadow: 1px 2px 3px #464646;
  margin-top: 5px;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ 見出しパーツ
 * ================================================ */
/* ------------------------------------
 /* デフォルト見出し
 ------------------------------------ */
.tl_default {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 10px;
}

/* ------------------------------------
/* メインカラー見出し
------------------------------------ */
.tl_main-color {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 10px;
  color: #0a0a0a;
}

/* ------------------------------------
/* デフォルト見出し（区切線）
------------------------------------ */
.tl_default_line {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0px 20px 10px 20px;
  margin: 0 0 15px;
  border-bottom: solid 1px #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_default_line {
    font-size: 2.4rem;
    border-bottom: none;
    padding: 0px;
    margin: 0 0 40px;
  }
}

/* ------------------------------------
/* メインカラー見出し（区切線）
------------------------------------ */
.tl_main-color_line {
  color: #0a0a0a;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0px 20px 10px 20px;
  margin: 0 0 15px;
  border-bottom: solid 1px #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_main-color_line {
    margin: 0 auto;
    width: 830px;
    font-size: 2.4rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 0px 10px 0px;
  }
}

.tl_main-color_line .tl_ico_box {
  position: relative;
}

.tl_main-color_line .tl_ico_box::after {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("../img_cmn/ico_box_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -5px;
  right: -40px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_main-color_line .tl_ico_box::after {
    width: 34px;
    height: 34px;
    top: -2px;
    right: -45px;
  }
}

.tl_main-color_line .tl_ico_money {
  position: relative;
}

.tl_main-color_line .tl_ico_money::after {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("../img_cmn/ico_money_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -5px;
  right: -25px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_main-color_line .tl_ico_money::after {
    width: 34px;
    height: 34px;
    top: -2px;
    right: -30px;
  }
}

/* ------------------------------------
/* 小見出し
------------------------------------ */
.tl_min {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 10px;
}

/* ------------------------------------
/* 小見出し
------------------------------------ */
.tl_min_main {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 6px;
  color: #0a0a0a;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_min_main {
    font-size: 2.4rem;
  }
}

.tl_min_main .tl_ico_box {
  position: relative;
}

.tl_min_main .tl_ico_box::after {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("../img_cmn/ico_box_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -5px;
  right: -40px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_min_main .tl_ico_box::after {
    width: 34px;
    height: 34px;
    top: -2px;
    right: -45px;
  }
}

.tl_min_main .tl_ico_money {
  position: relative;
}

.tl_min_main .tl_ico_money::after {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("../img_cmn/ico_money_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -5px;
  right: -25px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .tl_min_main .tl_ico_money::after {
    width: 34px;
    height: 34px;
    top: -2px;
    right: -30px;
  }
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ ページ内リンク
 * ================================================ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ リストパーツ
 * ================================================ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ テーブルパーツ
 * ================================================ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ ボタンパーツ
 * ================================================ */
.btn_box {
  width: 100%;
  margin: 10px 0;
}

.btn_box_left {
  width: 100%;
  margin: 10px 0;
  text-align: left;
}

.btn_box_right {
  width: 100%;
  margin: 10px 0;
  text-align: right;
}

.btn_box_center {
  width: 100%;
  margin: 10px 0;
  text-align: center;
}

.btn_box_center a {
  margin: 0 auto;
}

.btn_box_txt_link {
  width: 100%;
  min-height: 48px;
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ------------------------------------
 /* メインカラーボタン
 ------------------------------------ */
.btn_main_color {
  display: block;
  width: 100%;
  height: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 4.8rem;
  color: #FFF;
  background-color: #15195B;
  padding: 0 10px;
  cursor: pointer;
  background-image: url("../img_cmn/ico_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .btn_main_color {
    max-width: 350px;
    margin: 0 auto;
  }
}

.btn_main_color:after {
  display: none;
}

.btn_main_color.btn_medium {
  height: 40px;
  font-size: 1.4rem;
  line-height: 4.0rem;
  padding: 0 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .btn_main_color.btn_medium {
    height: 44px;
    line-height: 4.4rem;
  }
}

.btn_main_color.brn_half {
  width: 50%;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 3.0rem;
}

.btn_main_color.btn_min {
  display: inline-block;
  width: inherit;
  height: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.2rem;
  line-height: 2.8rem;
  background-image: none;
  padding: 0 12px;
}

/* ------------------------------------
/* メインカラーラインボタン
------------------------------------ */
.btn_main_color_line {
  display: block;
  width: 100%;
  height: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 4.8rem;
  color: #0a0a0a;
  background-color: #FFF;
  border: solid 1px #15195B;
  padding: 0 10px;
  cursor: pointer;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .btn_main_color_line {
    max-width: 350px;
    margin: 0 auto;
  }
}

.btn_main_color_line:after {
  display: none;
}

.btn_main_color_line.btn_medium {
  background-image: none;
  height: 40px;
  font-size: 1.4rem;
  line-height: 4.0rem;
  padding: 0 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .btn_main_color_line.btn_medium {
    height: 44px;
    line-height: 4.4rem;
  }
}

.btn_main_color_line.btn_min {
  display: inline-block;
  width: inherit;
  height: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.2rem;
  line-height: 2.8rem;
  background-image: none;
  padding: 0 12px;
}

/* ------------------------------------
/* メインカラーラインボタン（ライト）
------------------------------------ */
.btn_main-l_color_line {
  display: block;
  width: 100%;
  height: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 4.8rem;
  color: #292929;
  background-color: #FCF9F4;
  padding: 0 10px;
  cursor: pointer;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .btn_main-l_color_line {
    max-width: 350px;
    margin: 0 auto;
  }
}

.btn_main-l_color_line:after {
  display: none;
}

/* ------------------------------------
/* グレーカラーボタン
------------------------------------ */
.btn_gary_color {
  display: block;
  width: 100%;
  height: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 4.8rem;
  color: #292929;
  background-color: #FCF9F4;
  padding: 0 10px;
  cursor: pointer;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .btn_gary_color {
    max-width: 350px;
    margin: 0 auto;
  }
}

.btn_gary_color:after {
  display: none;
}

.btn_gary_color.btn_min {
  display: inline-block;
  width: inherit;
  height: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.2rem;
  line-height: 2.8rem;
  background-image: none;
  padding: 0 12px;
}

/* ------------------------------------
/* グレーラインボタン
------------------------------------ */
.btn_gray_color_line {
  display: block;
  width: 100%;
  height: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 4.8rem;
  color: #292929;
  background-color: #FFF;
  border: solid 1px #9E9E9E;
  padding: 0 10px;
  cursor: pointer;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .btn_gray_color_line {
    max-width: 350px;
    margin: 0 auto;
  }
}

.btn_gray_color_line:after {
  display: none;
}

.btn_gray_color_line.btn_return {
  background-image: url("../img_cmn/ico_arrow_gray_left.svg");
  background-position: top 49% left 10px;
}

.btn_gray_color_line.btn_medium {
  height: 40px;
  font-size: 1.4rem;
  line-height: 4.0rem;
  padding: 0 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .btn_gray_color_line.btn_medium {
    height: 44px;
    line-height: 4.4rem;
  }
}

.btn_gray_color_line.brn_half {
  width: 50%;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 3.0rem;
}

.btn_gray_color_line.btn_min {
  display: inline-block;
  width: inherit;
  height: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.2rem;
  line-height: 2.8rem;
  background-image: none;
  padding: 0 12px;
}

/* ------------------------------------
/* テキストリンク（右矢印）
------------------------------------ */
.txt_link_min_right {
  display: inline-block;
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  position: relative;
  margin-left: 20px;
  padding-right: 13px;
}

.txt_link_min_right::after {
  display: block;
  content: '';
  width: 6px;
  height: 10px;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
}

.txt_link_min_right.color_main {
  color: #0a0a0a;
}

.txt_link_min_right.color_main::after {
  background-image: url("../img_cmn/ico_arrow_orange.svg");
}

/* ------------------------------------
/* テキストリンク（左矢印）
------------------------------------ */
.txt_link_min_left {
  display: inline-block;
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  position: relative;
  padding-left: 13px;
  margin-right: 20px;
}

.txt_link_min_left::after {
  display: block;
  content: '';
  width: 6px;
  height: 10px;
  background-image: url("../img_cmn/ico_arrow_gray_left.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
}

.txt_link_min_left.color_main {
  color: #0a0a0a;
}

.txt_link_min_left.color_main::after {
  background-image: url("../img_cmn/ico_arrow_orange_left.svg");
}

/* ------------------------------------
/* カウントボタン
------------------------------------ */
.btn_count_box, .btn_count_box_min {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
  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;
  border-radius: 50px;
  border: solid 1px #E2E2E2;
  background-color: #FFF;
  width: 110px;
  text-align: center;
  font-size: 1.8rem;
}

.btn_count_box .btn_minus, .btn_count_box_min .btn_minus {
  display: block;
  width: 32%;
  color: #0a0a0a;
  padding: 3px 0;
  border-right: solid 1px #E2E2E2;
  font-weight: bold;
}

.btn_count_box .btn_minus.btn_disabled, .btn_count_box_min .btn_minus.btn_disabled {
  color: #9E9E9E;
  background-color: #E2E2E2;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.btn_count_box .btn_plus, .btn_count_box_min .btn_plus {
  display: block;
  width: 32%;
  color: #0a0a0a;
  padding: 3px 0;
  border-left: solid 1px #E2E2E2;
  font-weight: bold;
}

.btn_count_box .btn_plus.btn_disabled, .btn_count_box_min .btn_plus.btn_disabled {
  color: #9E9E9E;
  background-color: #E2E2E2;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.btn_count_box .txt_num, .btn_count_box_min .txt_num {
  display: block;
  width: 36%;
  padding: 3px 0;
}

/* ------------------------------------
/* カウントボタン（min）
------------------------------------ */
.btn_count_box_min {
  width: 80px;
}

.btn_count_box_min .btn_minus {
  padding: 0;
}

.btn_count_box_min .btn_plus {
  padding: 0;
}

.btn_count_box_min .txt_num {
  padding: 0;
}

/*=================================================
 * 固有ボタン
 * ================================================ */
/* ------------------------------------
 /* 商品をカートに入れる ボタン
 ------------------------------------ */
.btn_cart {
  background-image: none;
}

.btn_cart .btn_txt {
  position: relative;
  padding-left: 26px;
}

.btn_cart .btn_txt:before {
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("../img_cmn/ico_cart_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -2px;
  left: 0;
}

/* ------------------------------------
 /* 今すぐ購入する ボタン
 ------------------------------------ */
.btn_pay {
  background-image: none;
}

.btn_pay .btn_txt {
  position: relative;
  padding-left: 26px;
}

.btn_pay .btn_txt:before {
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("../img_cmn/ico_money_white.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -1px;
  left: 0;
}

/* ------------------------------------
 /* お気に入り登録 ボタン
 ------------------------------------ */
.btn_favorite_register {
  background-image: none;
}

.btn_favorite_register .btn_txt {
  position: relative;
  padding-left: 22px;
}

.btn_favorite_register .btn_txt:before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 15px;
  background-image: url("../img_cmn/ico_heart_line_gray.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 1px;
  left: 0;
}

/* ------------------------------------
/* お気に入り解除 ボタン
------------------------------------ */
.btn_favorite_release {
  background-image: none;
}

.btn_favorite_release .btn_txt {
  position: relative;
  padding-left: 22px;
}

.btn_favorite_release .btn_txt:before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 15px;
  background-image: url("../img_cmn/ico_heart.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 1px;
  left: 0;
}

/* ------------------------------------
/* 入荷待ち予約 ボタン
------------------------------------ */
.btn_reserve {
  background-image: none;
}

.btn_reserve .btn_txt {
  position: relative;
  padding-left: 24px;
}

.btn_reserve .btn_txt:before {
  display: inline-block;
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("../img_cmn/ico_check.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ------------------------------------
/* 新着商品一覧 ボタン
------------------------------------ */
.btn_new_list {
  position: relative;
  text-align: left;
  padding: 0 10px 0 7px;
}

.btn_new_list .btn_txt {
  position: relative;
  padding-left: 40px;
}

.btn_new_list .btn_txt:before {
  display: inline-block;
  content: '';
  width: 36px;
  height: 36px;
  background-image: url("../img_cmn/ico_new_line.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -19px;
}

/* ------------------------------------
/* スタッフおすすめ商品一覧 ボタン
------------------------------------ */
.btn_good_list {
  position: relative;
  text-align: left;
  padding: 0 10px 0 7px;
}

.btn_good_list .btn_txt {
  position: relative;
  padding-left: 40px;
}

.btn_good_list .btn_txt:before {
  display: inline-block;
  content: '';
  width: 36px;
  height: 36px;
  background-image: url("../img_cmn/ico_good_line.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -19px;
}

/* ------------------------------------
/* 商品ランキング一覧 ボタン
------------------------------------ */
.btn_rank_list {
  position: relative;
  text-align: left;
  padding: 0 10px 0 7px;
}

.btn_rank_list .btn_txt {
  position: relative;
  padding-left: 40px;
}

.btn_rank_list .btn_txt:before {
  display: inline-block;
  content: '';
  width: 36px;
  height: 36px;
  background-image: url("../img_cmn/ico_crown_line.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -19px;
}

/* ------------------------------------
/* ヴィンテージ商品一覧 ボタン
------------------------------------ */
.btn_vintage_list {
  position: relative;
  text-align: left;
  padding: 0 10px 0 7px;
}

.btn_vintage_list .btn_txt {
  position: relative;
  padding-left: 40px;
}

.btn_vintage_list .btn_txt:before {
  display: inline-block;
  content: '';
  width: 36px;
  height: 36px;
  background-image: url("../img_cmn/ico_lamp_line.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -19px;
}

/* ------------------------------------
/* お気に入り商品一覧 ボタン
------------------------------------ */
.btn_favorite_list {
  position: relative;
  text-align: left;
  padding: 0 10px 0 7px;
}

.btn_favorite_list .btn_txt {
  position: relative;
  padding-left: 40px;
}

.btn_favorite_list .btn_txt:before {
  display: inline-block;
  content: '';
  width: 36px;
  height: 36px;
  background-image: url("../img_cmn/ico_heart_line.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -19px;
}

/* ------------------------------------
/* 商品再建策 ボタン
------------------------------------ */
.btn_research {
  background-image: none;
  position: relative;
}

.btn_research .btn_txt {
  position: relative;
  padding: 0 22px 0 0;
}

.btn_research .btn_txt:after {
  display: inline-block;
  content: '';
  width: 14px;
  height: 15px;
  background-image: url("../img_cmn/ico_arrow_orange_double.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 1px;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ------------------------------------
/* お支払い ボタン
------------------------------------ */
.btn_payment {
  position: relative;
}

.btn_payment .btn_txt {
  position: relative;
  padding: 0 0 0 25px;
}

.btn_payment .btn_txt:before {
  display: inline-block;
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("../img_cmn/ico_money_white.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ------------------------------------
/* 会員登録＋お支払い ボタン
------------------------------------ */
.btn_member_payment {
  position: relative;
}

.btn_member_payment .btn_txt {
  position: relative;
  padding: 0 0 0 22px;
}

.btn_member_payment .btn_txt:before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 15px;
  background-image: url("../img_cmn/ico_member_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ------------------------------------
/* カートに戻る ボタン
------------------------------------ */
.btn_box_cart_return .btn_cart_return {
  position: relative;
  padding: 0 0 0 37px;
}

.btn_box_cart_return .btn_cart_return:before {
  display: inline-block;
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("../img_cmn/ico_cart_black.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 2px;
  left: 13px;
}

/* ------------------------------------
/*   新規会員登録 ボタン
------------------------------------ */
.btn_box_member_regist {
  margin: 20px auto 0;
  max-width: 480px;
}

.btn_box_member_regist .btn_member_regist {
  margin: 0 auto;
  width: 75%;
  min-width: 280px;
}

.btn_box_member_regist .btn_member_regist .txt_min {
  font-size: 1.3rem;
}

/* ------------------------------------
/*  ブログを投稿する ボタン
------------------------------------ */
.btn_post .btn_post_wrap {
  display: block;
  background-color: #15195B;
  padding: 10px 0;
  text-align: center;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .btn_post .btn_post_wrap {
    width: 350px;
  }
}

.btn_post .btn_post_wrap::after {
  content: '';
  position: absolute;
  width: 42px;
  height: calc(42px * 8 / 7);
  background: url("../img_cont/ico_hand_and_pen.svg") no-repeat center/42px auto;
  right: -1px;
  bottom: 1px;
  pointer-events: none;
}

.btn_post .btn_post_wrap .btn_txt {
  padding-left: 22px;
  color: #fff;
  font-size: 1.5rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  position: relative;
}

.btn_post .btn_post_wrap .btn_txt::before {
  content: '';
  position: absolute;
  left: calc(1.4rem / 2 - 1px);
  top: 49%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 1.4rem;
  background-color: #fff;
}

.btn_post .btn_post_wrap .btn_txt::after {
  content: '';
  position: absolute;
  left: 0;
  top: 49%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4rem;
  height: 2px;
  background-color: #fff;
}

/* ------------------------------------
/* 郵便番号または住所検索 ボタン
------------------------------------ */
.btn_box_address {
  margin: 0;
  position: absolute;
  z-index: 1;
  top: -23px;
  right: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .btn_box_address {
    top: 23px;
    right: 0;
  }
}

.btn_box_address .btn_address {
  display: block;
  position: relative;
  background-image: none;
  font-size: 1.3rem;
  line-height: 3.0rem;
  width: 190px;
  height: 30px;
  padding: 0 10px;
}

.btn_box_address .btn_address .btn_txt {
  position: relative;
  padding: 0 0 0 20px;
  font-weight: bold;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.btn_box_address .btn_address .btn_txt:before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../img_cmn/ico_search.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.btn_box_address .btn_address .btn_txt .txt_min {
  font-size: 1.2rem;
  font-weight: normal;
}

/*=================================================
 * ポップアップボタン
 * ================================================ */
/* ポップアップウインドウの設定 */
.pop-box {
  position: relative;
}

.popup {
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 90vw;
  height: 85vh;
  max-width: 500px;
  overflow-y: scroll;
  z-index: 999;
}

.popup.popup_radius {
  border-radius: 5px;
  height: 70vh;
}

/* チェックボックスの初期設定 */
#popup-on,
#popup-on-search,
#popup-on-search_pc {
  display: none;
}

/* チェックされたらポップアップウインドウを開く */
#popup-on:checked + .popup {
  display: block;
}

#popup-on-search:checked + .popup {
  display: block;
}

#popup-on-search_pc:checked + .popup {
  display: block;
}

/* 閉じるアイコン（右上） */
.icon-close {
  background: #15195B;
  color: #fff;
  font-size: 30px;
  padding: 0 10px;
  position: absolute;
  right: 0;
}

/* 閉じるボタン */
.btn_close {
  margin: 10px auto 30px;
  width: 90%;
}

/* 開くボタン */
.btn-open {
  display: inline-block;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #464646;
}

.btn-open.btn_question {
  padding: 5px 0 5px 20px;
  background-image: url("../img_cmn/ico_question.svg");
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: top 53% left 3px;
}

/* ポップアップの内容 */
.popup-content {
  margin: 30px auto;
  width: 90%;
}

/*=================================================
 * &lt;会員メニュー&gt; 注文履歴ボタン
 * ================================================ */
.btn_list_history {
  text-align: left;
  padding: 0 20px 0 15px;
}

.btn_list_history .btn_txt {
  position: relative;
  padding-left: 30px;
}

.btn_list_history .btn_txt:before {
  display: inline-block;
  content: '';
  width: 25px;
  height: 25px;
  background-image: url("../img_cmn/ico_list_box.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -4px;
  left: 0;
}

/*=================================================
 * &lt;会員メニュー&gt; ご登録者ボタン
 * ================================================ */
.btn_list_regist {
  text-align: left;
  padding: 0 20px 0 15px;
}

.btn_list_regist .btn_txt {
  position: relative;
  padding-left: 30px;
}

.btn_list_regist .btn_txt:before {
  display: inline-block;
  content: '';
  width: 25px;
  height: 25px;
  background-image: url("../img_cmn/ico_list_member.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -4px;
  left: 0;
}

/*=================================================
 * &lt;会員メニュー&gt; お届け先情報ボタン
 * ================================================ */
.btn_list_deliver {
  text-align: left;
  padding: 0 20px 0 15px;
}

.btn_list_deliver .btn_txt {
  position: relative;
  padding-left: 30px;
}

.btn_list_deliver .btn_txt:before {
  display: inline-block;
  content: '';
  width: 25px;
  height: 25px;
  background-image: url("../img_cmn/ico_list_truck.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -4px;
  left: 0;
}

/*=================================================
 * オンラインショップへのバナーボタン（min）
 * ================================================ */
.link_swiper_absolute {
  display: inline-block;
  padding: 8px 15px 6px;
  border: 2px solid #FFF;
  background-color: #15195B;
}

.link_swiper_absolute .txt_swiper_link {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #FFF;
  padding: 4px 12px 0 25px;
  position: relative;
  vertical-align: bottom;
}

.link_swiper_absolute .txt_swiper_link::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 19px;
  background: url("../img_top-co/ico_shopping_cart.svg") no-repeat center/100%;
}

.link_swiper_absolute .txt_swiper_link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 12px;
  height: 4px;
  background: url("../img_top-co/ico_arrow_semilong_white.svg") no-repeat center/100%;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ ページ送り
 * ================================================ */
.page_nav {
  width: 100%;
}

.page_nav.page_detail_nav .page_list {
  margin: 30px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_nav.page_detail_nav .page_list {
    margin-top: 40px;
  }
}

.page_nav.page_detail_nav .page_list .next,
.page_nav.page_detail_nav .page_list .prev {
  border: none;
}

.page_nav.page_detail_nav .page_list .next.no_link a,
.page_nav.page_detail_nav .page_list .prev.no_link a {
  background-color: unset;
  border: none;
}

.page_nav.page_detail_nav .page_list .prev {
  margin-right: 0;
}

.page_nav.page_detail_nav .page_list .next {
  border-left: 1px solid #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_nav.page_detail_nav .page_list .next {
    margin-left: 0;
  }
}

.page_nav.page_detail_nav .page_list .next.no_link {
  border-left: 1px solid #E2E2E2;
}

.page_nav .page_list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_nav .page_list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.page_nav .page_list .next,
.page_nav .page_list .prev {
  display: inline-block;
  width: calc((100% - 10px) / 2);
  max-width: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #15195B;
}

.page_nav .page_list .next a,
.page_nav .page_list .prev a {
  height: 35px;
  display: block;
  position: relative;
  text-align: center;
}

.page_nav .page_list .next a span,
.page_nav .page_list .prev a span {
  line-height: 35px;
  font-size: 14px;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #0a0a0a;
}

.page_nav .page_list .next a:hover,
.page_nav .page_list .prev a:hover {
  color: #FFF;
  background-color: #15195B;
}

.page_nav .page_list .next a:hover span,
.page_nav .page_list .prev a:hover span {
  color: #FFF;
}

.page_nav .page_list .prev {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-right: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_nav .page_list .prev {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    margin-right: 20px;
  }
}

.page_nav .page_list .prev a::before {
  content: '';
  position: absolute;
  width: 6px;
  height: calc(6px * 1.5);
  background: url("../img_cmn/ico_arrow_main_left.svg") no-repeat center/6px auto;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 7px;
}

.page_nav .page_list .prev a:hover::before {
  background-image: url("../img_cmn/ico_arrow_white.svg");
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.page_nav .page_list .prev.no_link {
  pointer-events: none;
  border: none;
}

.page_nav .page_list .prev.no_link a {
  background-color: #FCF9F4;
  border: 1px solid #FCF9F4;
}

.page_nav .page_list .prev.no_link a::before {
  background: none;
}

.page_nav .page_list .prev.no_link a span {
  color: #9E9E9E;
}

.page_nav .page_list .next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_nav .page_list .next {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    margin-left: 20px;
  }
}

.page_nav .page_list .next a::before {
  content: '';
  position: absolute;
  width: 6px;
  height: calc(6px * 1.5);
  background: url("../img_cmn/ico_arrow_main_right.svg") no-repeat center/6px auto;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 7px;
}

.page_nav .page_list .next a:hover::before {
  background-image: url("../img_cmn/ico_arrow_white.svg");
}

.page_nav .page_list .next.no_link {
  pointer-events: none;
  border: none;
}

.page_nav .page_list .next.no_link a {
  background-color: #FCF9F4;
  border: 1px solid #FCF9F4;
}

.page_nav .page_list .next.no_link a::before {
  background: none;
}

.page_nav .page_list .next.no_link a span {
  color: #9E9E9E;
}

.page_nav .return_btn_box {
  text-align: center;
  width: 100%;
}

.page_nav .return_btn_box .return_btn {
  position: relative;
  width: 100%;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  border: 1px solid #464646;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_nav .return_btn_box .return_btn {
    max-width: 350px;
  }
}

.page_nav .return_btn_box .return_btn:hover {
  opacity: 0.8;
}

.page_nav .return_btn_box .return_btn::before {
  content: '';
  position: absolute;
  width: 6px;
  height: calc(6px * 1.5);
  background: url("../img_cmn/ico_arrow_gray_left.svg") no-repeat center/6px auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
}

.page_nav .return_btn_box .return_btn .ico_list {
  font-size: 14px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* ------------------------------------
/* ページ番号
 ------------------------------------ */
.page_number_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_number_box {
    width: unset;
    margin-bottom: 0;
  }
}

.page_number_box li:first-child {
  margin-left: 0;
}

.page_number_box .current {
  margin-left: 10px;
  display: inline-block;
  position: relative;
  margin-left: 12px;
}

.page_number_box .current a {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #FFF;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 32px;
  min-width: 34px;
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #15195B;
  border: 1px solid #15195B;
  border-radius: 1px;
  pointer-events: none;
}

.page_number_box .current_none {
  margin-left: 10px;
  display: inline-block;
  position: relative;
  margin-left: 12px;
}

.page_number_box .current_none a {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 32px;
  min-width: 34px;
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #9E9E9E;
  border-radius: 1px;
  color: #15195B;
}

.page_number_box .current_none a:hover {
  color: #FFF;
  background-color: #15195B;
  border: 1px solid #15195B;
}

.page_number_box .current_none a:hover span {
  color: #FFF;
}

/*=================================================
 * 詳細ページ
 * ================================================ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜全ページ共通＞ スタイル
 * ================================================ */
/* ------------------------------------
  default
------------------------------------ */
a {
  color: #292929;
  outline: none;
  /* Firefoxで点線が出ない処理　kunihiro */
}

a:hover {
  opacity: 0.8;
}

td,
th {
  vertical-align: top;
  text-align: left;
}

hr.horizontal_line {
  border-top: 1px dashed #15195B;
}

body {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  /* 15px */
  color: #292929;
  line-height: 1.7;
  margin: 0 auto !important;
  text-align: center;
}

#Frame {
  text-align: left;
  /* PC */
}

@media screen and (min-width: 768px) {
  #Frame {
    min-width: 1200px;
    margin: 0 auto;
    /* 横幅100%表示
    --------------- */
  }
  #Frame.frame_max {
    width: 100vw;
    min-width: inherit;
  }
  #Frame.frame_max .cont_inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
  }
  #Frame.frame_max .header_info_box .header_left_box {
    width: 120px;
  }
  #Frame.frame_max .header_info_box .header_left_box .logo_sub_txt {
    font-size: 1.2rem;
  }
  #Frame.frame_max .header_info_box .header_left_box .logo img {
    width: 120px;
  }
  #Frame.frame_max .page_tl .page_tl_box {
    width: 100vw;
  }
}

#content {
  padding-bottom: 40px;
  overflow: hidden;
  /* PC */
}

@media screen and (min-width: 768px) {
  #content {
    min-height: 800px;
  }
}

.content,
.content_ec,
.top_co,
.top_ec {
  padding-top: 64px !important;
  /* PC */
}

@media screen and (min-width: 768px) {
  .content,
  .content_ec,
  .top_co,
  .top_ec {
    padding-top: 90px !important;
  }
}

.main {
  /* PC */
}

@media screen and (min-width: 768px) {
  .main {
    width: 1100px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .main {
    width: 1200px;
  }
}

.cont_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_inner {
    width: 1100px;
    margin: 0 auto;
    padding: 0 0px;
  }
}

.cont_inner .wrap {
  padding-top: 64px;
}

.cont_inner_sp {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* レスポンシブ対応
--------------- */
@media screen and (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp_i-block {
    display: inline-block !important;
  }
}

@media screen and (max-width: 767px) {
  .sp_block {
    display: block !important;
  }
}

/* 電話リンクをスマホのみにする
--------------- */
/* PC */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* 内部リンク ダミーターゲット
--------------- */
.dummyTarget {
  position: relative;
}

.dummyTarget &gt; * {
  visibility: hidden;
  position: absolute;
  top: -70px;
  left: 0;
}

.fixedHeader {
  position: fixed;
  width: 100%;
  background-color: #FFF;
  z-index: 100;
}

/* ------------------------------------
/* ＜全ページ共通＞ コンテンツ
------------------------------------ */
/* ------------------------------------
/* 注意メッセージボックス
------------------------------------ */
.box_application_attention {
  background-color: #FFf3f3;
  margin-bottom: 20px;
  padding: 20px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .box_application_attention {
    padding: 20px 30px;
  }
}

.box_application_attention .txt_note {
  color: #F54242;
}

/* ------------------------------------
/* システムエラーメッセージボックス
------------------------------------ */
.error_msg_box {
  background-color: #FFF3F3;
  padding: 20px 0 20px;
  -webkit-box-shadow: 3px 3px 6px #DEDEDE;
          box-shadow: 3px 3px 6px #DEDEDE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 2px #F54242;
  /* PC */
}

@media screen and (min-width: 768px) {
  .error_msg_box {
    width: 830px;
    margin: 20px auto 0;
  }
}

.error_msg_box .tl_system_error {
  color: #F54242;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.1rem;
  text-align: center;
  margin-bottom: 10px;
}

.error_msg_box .txt_system_error {
  color: #F54242;
  font-size: 1.9rem;
  line-height: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .error_msg_box .txt_system_error {
    text-align: center;
    padding: 0 50px;
  }
}

.error_msg_box .msg_system_error {
  color: #F54242;
  font-size: 1.4rem;
  line-height: 2.1rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .error_msg_box .msg_system_error {
    text-align: center;
    padding: 0 50px;
  }
}

/* ------------------------------------
/* FIRST VIEWのスライダー
------------------------------------ */
.top_slider_first .swiper-container .swiper_relative {
  position: relative;
}

.top_slider_first .swiper-container .swiper_relative .swiper-slide {
  width: 100%;
  height: 50vh;
  max-height: 500px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_slider_first .swiper-container .swiper_relative .swiper-slide {
    height: 63vh;
    max-height: 700px;
  }
}

.top_slider_first .swiper-container .swiper_relative .swiper-slide .swiper_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_top {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_top .tl_swiper_absolute {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #FFF;
  margin-bottom: 10px;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_dig {
  position: absolute;
  width: 70%;
  height: 213px;
  top: 150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img_top-co/ico_lets_dig.svg) no-repeat center/100% 100%;
  z-index: 100;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_slider_first .swiper-container .swiper_relative .swiper_absolute_dig {
    height: 250px;
    top: 200px;
  }
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_dig_ec {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  /* PC */
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_dig_ec .img_copy_ec {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  padding-top: 30%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_slider_first .swiper-container .swiper_relative .swiper_absolute_dig_ec .img_copy_ec {
    width: 330px;
    padding-top: 230px;
  }
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_dig_ec .search_box {
  width: 75%;
  max-width: 400px;
  margin: 10px auto 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_slider_first .swiper-container .swiper_relative .swiper_absolute_dig_ec .search_box {
    width: 400px;
    margin: 20px auto 0;
  }
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec {
  position: absolute;
  bottom: 20px;
  left: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  /* SNSボタンボックス
        --------------- */
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .bnr_vinblog_box {
  display: inline-block;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .bnr_vinblog_box a {
  display: inline-block;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .bnr_vinblog_box.flag_new {
  position: relative;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .bnr_vinblog_box.flag_new::before {
  display: block;
  content: '';
  width: 60px;
  height: 25px;
  background-image: url("../img_cmn/ico_new.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -30px;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .sns_btn_box {
  display: inline-block;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .sns_btn_box .ico_sns_instagram,
.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .sns_btn_box .ico_sns_youtube {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #FFF no-repeat center/50%;
  margin-left: 5px;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .sns_btn_box .ico_sns_youtube {
  background-image: url("../img_top-co/ico_youtube.svg");
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_btn_ec .sns_btn_box .ico_sns_instagram {
  background-image: url("../img_cont/ico_instagram.png");
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom {
  background-color: #FCF9F4;
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 8px 10px 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 38vw;
  }
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_bottom_txt {
  margin-bottom: 4px;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_bottom_txt:first-child {
  margin-right: 10px;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_bottom_txt:nth-child(2) {
  margin-right: 15px;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_bottom_txt .tl_swiper_bottom {
  font-size: 1.3rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.8rem;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_bottom_txt .content_swiper_bottom {
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_sns .swiper_youtube,
.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_sns .swiper_instagram {
  width: 45px;
  height: 45px;
  background: #FFF no-repeat center/50%;
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_sns .swiper_youtube {
  margin-right: 2px;
  background-image: url(../img_top-co/ico_youtube.svg);
}

.top_slider_first .swiper-container .swiper_relative .swiper_absolute_bottom .swiper_sns .swiper_instagram {
  background-image: url(../img_cont/ico_instagram.svg);
}

/* ------------------------------------
/* ギャラリー インスタグラム連動
------------------------------------ */
.gallery_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}

@media screen and (min-width: 768px) {
  .gallery_img {
    margin: 30px 20px 0;
  }
}

.gallery_img .gallery-item {
  width: 33.3%;
  padding: 0 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .gallery_img .gallery-item {
    width: 195px;
    padding: 0 8px 16px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

.gallery_img .gallery-item img, .gallery_img .gallery-item video {
  display: block;
  width: 100%;
  height: 28vw;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .gallery_img .gallery-item img, .gallery_img .gallery-item video {
    max-height: inherit;
    height: 195px;
  }
}

/* ------------------------------------
/* トップページに戻るボタン
------------------------------------ */
.back_top_btn_box {
  margin-top: 80px;
  text-align: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .back_top_btn_box {
    margin-top: 100px;
  }
}

.back_top_btn_box .back_top_btn {
  display: inline-block;
  position: relative;
  font-size: 1.3rem;
  /* PC */
}

.back_top_btn_box .back_top_btn::before {
  content: '';
  position: absolute;
  width: 10px;
  height: calc(10px * 1.5);
  background: url("../img_cmn/ico_arrow_back.svg") no-repeat center/10px auto;
  top: 49%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
}

/* ------------------------------------
/* 木の背景
------------------------------------ */
.bg_wood_wrap {
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .bg_wood_wrap {
    padding: 0 0 60px;
  }
}

.bg_wood {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg_wood::before {
  display: block;
  content: '';
  width: 200%;
  height: 100%;
  background-image: url("../img_cmn/bg_wood.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: -1;
  margin-left: -100%;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ ヘッダー
 * ================================================ */
.header_cmn {
  position: fixed;
  z-index: 110;
  width: 100%;
  height: 64px;
  background-color: #FFF;
  -webkit-box-shadow: 2px 2px 3px #DEDEDE;
          box-shadow: 2px 2px 3px #DEDEDE;
  /* PC */
}

@media screen and (min-width: 768px) {
  .header_cmn {
    height: 90px;
  }
}

/*=================================================
 * ＜CO＞ ヘッダー
 * ================================================ */
.page_corporate {
  /* ------------------------------------
  /* ＜CO＞ ヘッダー SP
  ------------------------------------ */
  /* ------------------------------------
  /* ＜CO＞ ヘッダーPC
  ------------------------------------ */
}

.page_corporate .header_box {
  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;
}

.page_corporate .header_box .access_btn,
.page_corporate .header_box .menu_list {
  position: relative;
  width: 64px;
  height: 64px;
}

.page_corporate .header_box .access_btn .btn_header,
.page_corporate .header_box .menu_list .btn_header {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 9px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page_corporate .header_box .access_btn .btn_header img,
.page_corporate .header_box .menu_list .btn_header img {
  width: 24px;
  height: 20px;
  margin-top: 8px;
}

.page_corporate .header_box .menu_list .btn_txt {
  font-size: 0.9rem;
  display: block;
  padding: 3px 0 0 4px;
  color: #0a0a0a;
}

.page_corporate .header_box .access_btn .btn_txt {
  font-size: 0.9rem;
  display: block;
  padding: 3px 0 0 4px;
  color: #0a0a0a;
}

.page_corporate .header_box .site_logo_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_corporate .header_box .site_logo_box .logo a {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 10px 15px;
}

.page_corporate .header_box .site_logo_box .logo a img {
  width: 100px;
  height: 46px;
  position: relative;
  top: 5px;
}

.page_corporate .cont_header_info .header_top {
  background-color: #FCF9F4;
}

.page_corporate .cont_header_info .header_top .header_top_box {
  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;
}

.page_corporate .cont_header_info .header_top .header_top_box .left_box {
  font-size: 1.2rem;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li {
  margin-left: 20px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link {
  display: inline-block;
  font-size: 1.1rem;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link.link_access {
  position: relative;
  padding-left: 21px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link.link_access::before {
  display: block;
  content: '';
  width: 14px;
  height: 17px;
  background-image: url("../img_cmn/ico_access.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 1px;
  left: 0px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link.link_news {
  position: relative;
  padding-left: 18px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link.link_news::before {
  display: block;
  content: '';
  width: 12px;
  height: 14px;
  background-image: url("../img_cmn/ico_flag.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 3px;
  left: 0px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link.link_faq {
  position: relative;
  padding-left: 20px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link.link_faq::before {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("../img_top-co/ico_comment_question.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 2px;
  left: 0px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link.link_contact {
  position: relative;
  padding-left: 21px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .txt_btn_list li .txt_link.link_contact::before {
  display: block;
  content: '';
  width: 15px;
  height: 12px;
  background-image: url("../img_cont/ico_mail.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 4px;
  left: 0px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .btn_list {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .btn_list .btn_new_member .btn_txt {
  padding: 0 8px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .btn_list .btn_login .btn_txt {
  position: relative;
  padding-left: 20px;
}

.page_corporate .cont_header_info .header_top .header_top_box .right_box .btn_list .btn_login .btn_txt::before {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../img_cmn/ico_member_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.page_corporate .cont_header_info .header_info .header_info_box {
  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;
}

.page_corporate .cont_header_info .header_info .header_info_box .header_left_box {
  width: 200px;
  padding: 0;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .page_corporate .cont_header_info .header_info .header_info_box .header_left_box {
    width: 140px;
  }
}

.page_corporate .cont_header_info .header_info .header_info_box .header_left_box .logo {
  position: relative;
  width: 150px;
  height: 60px;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .page_corporate .cont_header_info .header_info .header_info_box .header_left_box .logo {
    width: 140px;
  }
}

.page_corporate .cont_header_info .header_info .header_info_box .header_left_box .logo &gt; a {
  display: block;
  width: 150px;
  height: 70px;
  position: absolute;
  top: -22px;
  left: 0;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .page_corporate .cont_header_info .header_info .header_info_box .header_left_box .logo &gt; a {
    width: 120px;
  }
}

.page_corporate .cont_header_info .header_info .header_info_box .header_left_box .logo &gt; a img {
  width: 100%;
  height: 100%;
}

.page_corporate .cont_header_info .header_info .header_info_box .header_right_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_corporate .cont_header_info .header_info .header_info_box .header_right_box .header_gNav_box .gNav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_corporate .cont_header_info .header_info .header_info_box .header_right_box .header_gNav_box .gNav_list .btn_gNav {
  line-height: 1.4rem;
  display: inline-block;
  padding: 20px 15px 10px;
  position: relative;
  text-align: center;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .page_corporate .cont_header_info .header_info .header_info_box .header_right_box .header_gNav_box .gNav_list .btn_gNav {
    padding: 20px 10px 10px;
  }
}

.page_corporate .cont_header_info .header_info .header_info_box .header_right_box .header_gNav_box .gNav_list .btn_gNav img {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 5px;
}

.page_corporate .cont_header_info .header_info .header_info_box .header_right_box .header_gNav_box .link_swiper_absolute {
  margin-left: 30px;
  margin-bottom: 6px;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .page_corporate .cont_header_info .header_info .header_info_box .header_right_box .header_gNav_box .link_swiper_absolute {
    position: absolute;
    top: 70px;
  }
}

/*=================================================
 * ＜EC＞ ヘッダー
 * ================================================ */
.page_ec {
  /* ------------------------------------
  /* ＜EC＞ヘッダーSP
  ------------------------------------ */
}

.page_ec .header_box {
  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;
}

.page_ec .header_box .calendar_btn,
.page_ec .header_box .cart_btn,
.page_ec .header_box .menu_list,
.page_ec .header_box .search_btn {
  position: relative;
  width: 50px;
  height: 64px;
}

.page_ec .header_box .calendar_btn .btn_header,
.page_ec .header_box .cart_btn .btn_header,
.page_ec .header_box .menu_list .btn_header,
.page_ec .header_box .search_btn .btn_header {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 9px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page_ec .header_box .menu_list img {
  width: 20px;
  height: 18px;
  margin-top: 8px;
}

.page_ec .header_box .menu_list .btn_txt {
  font-size: 0.9rem;
  display: block;
  padding: 3px 0 0 0px;
}

.page_ec .header_box .search_btn img {
  width: 23px;
  height: 23px;
  margin-top: 7px;
}

.page_ec .header_box .search_btn .btn_txt {
  font-size: 0.9rem;
  display: block;
  padding: 1px 0 0;
}

.page_ec .header_box .btn-open {
  display: block;
  padding: 0;
}

.page_ec .header_box .popup {
  height: 200px;
}

.page_ec .header_box .popup .popup-search {
  margin: 50px auto;
  width: 90%;
}

.page_ec .header_box .popup .popup-search .search_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_ec .header_box .popup .popup-search .search_box {
    width: 100%;
    margin: 0 auto;
  }
}

.page_ec .header_box .calendar_btn img {
  width: 24px;
  height: 20px;
  margin-top: 8px;
}

.page_ec .header_box .calendar_btn .btn_txt {
  font-size: 0.9rem;
  display: block;
  padding: 3px 0 0 0px;
}

.page_ec .header_box .cart_btn .btn_header {
  padding: 9px 5px 0 0;
}

.page_ec .header_box .cart_btn img {
  width: 26px;
  height: 22px;
  margin-top: 8px;
}

.page_ec .header_box .cart_btn .btn_txt {
  font-size: 0.9rem;
  display: block;
  padding: 1px 0 0 0;
}

.page_ec .header_box .cart_btn .badge_cart {
  display: inline-block;
  width: 19px;
  height: 19px;
  position: absolute;
  background-color: #F54242;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  color: #FFF;
  position: absolute;
  top: 8px;
  right: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page_ec .header_box .site_logo_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page_ec .header_box .site_logo_box .logo a {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 10px;
}

.page_ec .header_box .site_logo_box .logo a .logo_sub_txt {
  display: block;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.page_ec .header_box .site_logo_box .logo a img {
  width: 130px;
  height: 28px;
  position: relative;
  top: -3px;
}

/*=================================================
* スマホメニュー
* ================================================ */
.wrap #overlayShadow {
  z-index: 200;
}

.sp_slide_menu {
  text-align: left;
}

.sp_slide_menu .sidemenu_box {
  margin-bottom: 50px;
  /* タイトルボックス
    ------------------------------------ */
  /* リンクリスト
    ------------------------------------ */
}

.sp_slide_menu .sidemenu_box .sidemenu_box_inner {
  padding: 0 30px 0 10px;
}

.sp_slide_menu .sidemenu_box .tl_box_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 64px;
  background-color: #FFF;
  -webkit-box-shadow: 2px 2px 3px #DEDEDE;
          box-shadow: 2px 2px 3px #DEDEDE;
}

.sp_slide_menu .sidemenu_box .tl_box_main .logo_box a {
  display: inline-block;
  padding: 25px 10px 0;
}

.sp_slide_menu .sidemenu_box .tl_box_main .logo_box img {
  width: 150px;
  height: auto;
}

.sp_slide_menu .sidemenu_box .tl_box_main .logo_box.type_logo_01 a {
  display: inline-block;
  padding: 8px;
}

.sp_slide_menu .sidemenu_box .tl_box_main .logo_box.type_logo_01 a img {
  width: 100px;
  height: auto;
}

.sp_slide_menu .sidemenu_box .tl_box_main .menu_close_btn a {
  display: inline-block;
  width: 64px;
  height: 64px;
  background-color: #FFF;
  padding: 14px 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

.sp_slide_menu .sidemenu_box .tl_box_main .menu_close_btn a img {
  width: 22px;
  height: 18px;
  margin-top: 8px;
}

.sp_slide_menu .sidemenu_box .tl_box_main .menu_close_btn a .btn_txt {
  font-size: 0.9rem;
  display: block;
  padding: 3px 0 0 0px;
}

.sp_slide_menu .sidemenu_box .tl_box_main .menu_close_btn.type_orange a {
  color: #0a0a0a;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp {
  padding: 20px 0;
  /* 会員登録
      --------------- */
  /* ナビゲーション リスト
      --------------- */
  /* カテゴリーリスト
      --------------- */
  /* 検索ボタンボックス
      --------------- */
  /* 検索ボタンボックス
      --------------- */
  /* SNSボタンボックス
      --------------- */
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .btn_box_parallel {
  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;
  margin-bottom: 20px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .btn_box_parallel .btn_new_member {
  width: 48%;
  background-image: none;
  height: 38px;
  line-height: 3.8rem;
  font-size: 1.3rem;
  padding: 0 10px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .btn_box_parallel .btn_login {
  width: 48%;
  background-image: none;
  height: 38px;
  line-height: 3.8rem;
  font-size: 1.3rem;
  padding: 0 10px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .btn_box_parallel .btn_login .btn_txt {
  position: relative;
  padding-left: 20px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .btn_box_parallel .btn_login .btn_txt::before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 15px;
  background-image: url("../img_cmn/ico_member_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .nav_link_list .link_list &gt; li {
  border-bottom: solid 1px #E2E2E2;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .nav_link_list .link_list &gt; li a {
  display: block;
  padding: 12px 10px;
  text-align: left;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  background-image: url(../img_cmn/ico_arrow_gray_right.svg);
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: top 49% right 10px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .nav_link_list .link_list &gt; li a .txt_short {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .nav_link_list .link_list &gt; li a .new {
  font-size: 1.1rem;
  font-weight: bold;
  color: #F54242;
  margin-left: 8px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_category_box {
  margin-bottom: 20px;
  color: #292929;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_category_box .tl_default {
  font-size: 1.6rem;
  color: #0a0a0a;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_category_box .box_list_type .txt_list_name {
  font-size: 1.6rem;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_category_box .list_type_menu .category_list {
  border-bottom: solid 3px #E2E2E2;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_category_box .list_type_menu .category_list .txt_category {
  padding: 10px 0;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_category_box .list_type_menu .category_list .txt_category img {
  width: 28px !important;
  height: 28px !important;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_category_box .list_type_menu .category_list .txt_category .txt_category_name {
  font-size: 1.4rem !important;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_btn_box {
  margin-bottom: 20px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_btn_box .btn_box {
  margin: 6px 0;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .search_btn_box .btn_box .btn_gary_color {
  height: 40px;
  line-height: 4.0rem;
  background-size: 6px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .cont_btn_box .btn_box_parallel {
  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;
  margin-bottom: 10px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .cont_btn_box .btn_box_parallel .btn_gray_color_line,
.sp_slide_menu .sidemenu_box .page_link_box_sp .cont_btn_box .btn_box_parallel .btn_main_color_line {
  width: 48%;
  background-image: none;
  height: 38px;
  line-height: 3.8rem;
  font-size: 1.3rem;
  padding: 0 10px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .cont_btn_box .btn_gray_color_line {
  background-image: none;
  height: 38px;
  line-height: 3.8rem;
  font-size: 1.3rem;
  padding: 0 10px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .sns_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .sns_btn_box.type_left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .sns_btn_box .ico_sns_instagram,
.sp_slide_menu .sidemenu_box .page_link_box_sp .sns_btn_box .ico_sns_youtube {
  display: block;
  width: 45px;
  height: 45px;
  background: #FCF9F4 no-repeat center/50%;
  margin-left: 5px;
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .sns_btn_box .ico_sns_youtube {
  background-image: url("../img_top-co/ico_youtube.svg");
}

.sp_slide_menu .sidemenu_box .page_link_box_sp .sns_btn_box .ico_sns_instagram {
  background-image: url("../img_cont/ico_instagram.png");
}

/* ------------------------------------
  /* ＜EC＞ヘッダーPC
  ------------------------------------ */
.cont_header_info .cont_inner {
  width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .cont_inner {
    width: 100%;
    padding: 0 10px;
  }
}

.cont_header_info .header_info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cont_header_info .header_info_box .header_left_box {
  width: 300px;
  padding: 10px 0;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_left_box {
    width: 170px;
    padding: 15px 0;
  }
}

.cont_header_info .header_info_box .header_left_box .logo .logo_sub_txt {
  display: block;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.cont_header_info .header_info_box .header_left_box .logo img {
  width: 210px;
  height: auto;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_left_box .logo img {
    width: 150px;
  }
}

.cont_header_info .header_info_box .header_right_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cont_header_info .header_info_box .header_right_box .header_right_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list &gt; li a {
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_right_box .header_right_top .btn_list &gt; li a {
    padding: 0 5px;
  }
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_faq {
  font-family: inherit;
  font-weight: normal;
  font-size: 1.1rem;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_faq .btn_txt {
  position: relative;
  padding-left: 22px;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_faq .btn_txt::before {
  display: block;
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("../img_top-co/ico_comment_question.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -1px;
  left: 0px;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_contact {
  font-family: inherit;
  font-weight: normal;
  font-size: 1.1rem;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_contact .btn_txt {
  position: relative;
  padding-left: 23px;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_contact .btn_txt::before {
  display: block;
  content: '';
  width: 17px;
  height: 14px;
  background-image: url("../img_cont/ico_mail.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 1px;
  left: 0px;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_shop {
  font-family: inherit;
  font-weight: normal;
  font-size: 1.1rem;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_shop .btn_txt {
  position: relative;
  padding-left: 21px;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_shop .btn_txt::before {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("../img_cmn/ico_info.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -1px;
  left: 0px;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_new_member {
  background-color: #797979;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_new_member .btn_txt {
  padding: 0 8px;
  color: #FFF;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_login .btn_txt {
  position: relative;
  padding-left: 25px;
}

.cont_header_info .header_info_box .header_right_box .header_right_top .btn_list .btn_login .btn_txt::before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("../img_cmn/ico_member_white_plus.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -4px;
  left: 0px;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li &gt; a {
  display: block;
  padding: 10px 18px 18px 18px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li &gt; a {
    padding: 10px 8px 18px 8px;
    font-size: 1.3rem;
  }
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down {
  position: relative;
  /* レスポンシブ対応 */
  /* hoverしたら表示されるメニュー
                --------------- */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down {
    position: static;
  }
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down &gt; a {
  display: block;
  pointer-events: none;
  position: relative;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down &gt; a::before {
  display: block;
  content: '';
  width: 7px;
  height: 14px;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  bottom: 7px;
  left: 50%;
  margin-left: -7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down .search_category_box_pc {
  margin: 0;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down .search_category_box_pc .category_list_box {
  padding: 20px 0px 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 1100px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 40px;
  left: -500px;
  z-index: 100;
  visibility: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down .search_category_box_pc .category_list_box {
    width: 100vw;
    top: 81px;
    left: 0px;
  }
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down .search_category_box_pc .brand_list_box {
  padding: 0px 0px 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 1100px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 40px;
  left: -590px;
  z-index: 100;
  visibility: hidden;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down .search_category_box_pc .brand_list_box {
    width: 100vw;
    top: 81px;
    left: 0px;
  }
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down:hover .category_list_box {
  position: absolute;
  top: 50px;
  left: -500px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down:hover .category_list_box {
    width: 100vw;
    top: 91px;
    left: 0px;
  }
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down:hover .brand_list_box {
  position: absolute;
  top: 50px;
  left: -590px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* レスポンシブ対応 */
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_right_box .header_gNav_box .gNav .gNav_list &gt; li.brn_down:hover .brand_list_box {
    width: 100vw;
    top: 91px;
    left: 0px;
  }
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box {
  margin: 0 10px 0 30px;
}

@media screen and (min-width: 768px) and (max-width: 1151px) {
  .cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box {
    margin: 0 10px 0 10px;
  }
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box .search_btn {
  width: 55px !important;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box .search_btn img {
  width: 27px !important;
  height: 27px !important;
  margin-top: 7px;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box .calendar_btn {
  width: 55px !important;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box .calendar_btn img {
  width: 28px !important;
  height: 24px !important;
  margin-top: 8px;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box .cart_btn {
  width: 55px !important;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box .cart_btn img {
  width: 26px !important;
  height: 25px !important;
  margin-top: 8px;
}

.cont_header_info .header_info_box .header_right_box .header_gNav_box .header_box .cart_btn .badge_cart {
  top: 10px !important;
  right: 6px !important;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ フッター
 * ================================================ */
/* ------------------------------------
 /* コピーライトの部分
 ------------------------------------ */
.footer_copyright {
  background-color: #6E6E6E;
  padding: 15px 0;
}

.footer_copyright .txt_copyright {
  text-align: center;
}

.footer_copyright .txt_copyright .copyright {
  color: #FFF;
  font-size: 1.0rem;
}

/* ------------------------------------
 /* カレンダー
 ------------------------------------ */
.foot_calendar_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .foot_calendar_box {
    width: 340px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.foot_calendar_box .calendar {
  margin: 40px 0 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .foot_calendar_box .calendar {
    margin: 0 0 0;
  }
}

.foot_calendar_box .calendar .calendar__tab {
  padding: 0 15px;
  /* PC */
  /* SE対応 */
}

@media screen and (min-width: 768px) {
  .foot_calendar_box .calendar .calendar__tab {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 350px) {
  .foot_calendar_box .calendar .calendar__tab {
    padding: 0 5px;
  }
}

.foot_calendar_box .calendar .calendar__body {
  background-color: #FFF;
  border: solid 15px #FFF;
  /* SE対応 */
}

@media screen and (max-width: 350px) {
  .foot_calendar_box .calendar .calendar__body {
    border: solid 5px #FFF;
  }
}

.foot_calendar_box .calendar .calendar__body .calendar__body_date {
  height: calc(335px / 6.5);
}

.foot_calendar_box .calendar .calendar__body .calendar__body_date_num {
  line-height: 1.8rem;
}

/*=================================================
  * ＜EC＞ フッター
  * ================================================ */
.cont_footer_info {
  /* ------------------------------------
  /* お問合せ関連
  ------------------------------------ */
  /* ------------------------------------
  /* フッターリンク
  ------------------------------------ */
  /* snsリンク
  --------------- */
}

.cont_footer_info .cont_inner {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .cont_inner {
    width: 1100px;
    margin: 0 auto;
  }
}

.cont_footer_info .footer_contact {
  padding: 40px 0;
  background-color: #FCF9F4;
}

.cont_footer_info .footer_contact .tl_center {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  /* PC */
}

.cont_footer_info .footer_contact .tl_center::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #E2E2E2;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_contact .tl_center {
    text-align: left;
  }
  .cont_footer_info .footer_contact .tl_center::after {
    display: none;
  }
}

.cont_footer_info .footer_contact .contact_box {
  position: relative;
}

.cont_footer_info .footer_contact .contact_box .flex_box_wrap {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_contact .contact_box .flex_box_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cont_footer_info .footer_contact .contact_box .flex_box_wrap .btn_box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 210px;
  }
  .cont_footer_info .footer_contact .contact_box .flex_box_wrap .bnr_btn_box {
    width: 410px;
  }
}

.cont_footer_info .footer_contact .contact_box .img_logo {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.cont_footer_info .footer_contact .contact_box .address_box {
  margin-bottom: 15px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_contact .contact_box .address_box {
    margin-right: 30px;
  }
}

.cont_footer_info .footer_contact .contact_box .address_box .txt_name {
  font-size: 1.4rem;
}

.cont_footer_info .footer_contact .contact_box .address_box .txt_address {
  font-size: 1.3rem;
}

.cont_footer_info .footer_contact .contact_box .info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 15px;
}

.cont_footer_info .footer_contact .contact_box .info_box .info_store {
  margin-right: 20px;
}

.cont_footer_info .footer_contact .contact_box .info_box .info_store .tl_info_store {
  font-size: 1.3rem;
  font-weight: bold;
}

.cont_footer_info .footer_contact .contact_box .info_box .info_store .txt_info_store {
  font-size: 1.3rem;
}

.cont_footer_info .footer_contact .contact_box .btn_contact {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_contact .contact_box .btn_contact {
    width: 200px;
    height: 40px;
    line-height: 4.0rem;
    background-image: none;
    margin: 0;
  }
}

.cont_footer_info .footer_contact .contact_box .btn_contact .btn_txt {
  position: relative;
  padding-left: 24px;
}

.cont_footer_info .footer_contact .contact_box .btn_contact .btn_txt::before {
  display: block;
  content: '';
  width: 18px;
  height: 14px;
  background-image: url("../img_cont/ico_mail.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 3px;
  left: 0px;
}

.cont_footer_info .footer_contact .contact_box .btn_box_parallel {
  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;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_contact .contact_box .btn_box_parallel {
    margin: 0;
    width: 420px;
  }
  .cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_gray_color_line {
    margin: 0px 10px 0 0;
  }
}

.cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_faq,
.cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_tel {
  width: 48%;
  background-image: none;
  height: 40px;
  line-height: 4.0rem;
}

.cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_tel {
  font-size: 1.6rem;
  /* SE対応 */
}

.cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_tel .btn_txt {
  position: relative;
  padding-left: 17px;
}

.cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_tel .btn_txt::before {
  display: block;
  content: '';
  width: 12px;
  height: 16px;
  background-image: url("../img_cont/ico_phone.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 2px;
  left: 0px;
}

@media screen and (max-width: 350px) {
  .cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_tel {
    font-size: 1.4rem;
  }
  .cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_tel .btn_txt {
    padding-left: 15px;
  }
  .cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_tel .btn_txt::before {
    top: 1px;
  }
}

.cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_faq {
  /* SE対応 */
}

.cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_faq .btn_txt {
  position: relative;
  padding-left: 25px;
}

.cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_faq .btn_txt::before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("../img_top-co/ico_comment_question.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -1px;
  left: 0px;
}

@media screen and (max-width: 350px) {
  .cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_faq {
    font-size: 1.4rem;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
  .cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_faq .btn_txt {
    padding-left: 20px;
  }
  .cont_footer_info .footer_contact .contact_box .btn_box_parallel .btn_faq .btn_txt::before {
    width: 18px;
    height: 18px;
  }
}

.cont_footer_info .footer_contact .contact_box .bnr_btn_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_contact .contact_box .bnr_btn_box {
    display: inline-block;
    margin-right: 30px;
  }
}

.cont_footer_info .footer_contact .contact_box .bnr_btn_box a {
  display: block;
}

.cont_footer_info .footer_contact .contact_box .bnr_btn_box a img {
  width: 100%;
  height: auto;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_contact .contact_box .bnr_btn_box a img {
    width: 100%;
    margin-top: 15px;
  }
}

.cont_footer_info .footer_link {
  padding: 30px 0;
  background-color: #575757;
  position: relative;
  /* PC */
  /* フッターナビ
    --------------- */
  /* ページトップスクロール
    --------------- */
}

.cont_footer_info .footer_link .footer_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cont_footer_info .footer_link .footer_link_box .left_box,
.cont_footer_info .footer_link .footer_link_box .right_box {
  width: 50%;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_link .footer_link_box .left_box,
  .cont_footer_info .footer_link .footer_link_box .right_box {
    width: inherit;
  }
}

.cont_footer_info .footer_link .footer_link_box .left_box .link_list_box,
.cont_footer_info .footer_link .footer_link_box .right_box .link_list_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_link .footer_link_box .left_box .link_list_box,
  .cont_footer_info .footer_link .footer_link_box .right_box .link_list_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.cont_footer_info .footer_link .footer_link_box .left_box .link_list,
.cont_footer_info .footer_link .footer_link_box .right_box .link_list {
  margin-bottom: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .footer_link .footer_link_box .left_box .link_list,
  .cont_footer_info .footer_link .footer_link_box .right_box .link_list {
    margin-bottom: 0px;
    margin-right: 50px;
  }
}

.cont_footer_info .footer_link .footer_link_box .left_box .link_list &gt; li .txt_short,
.cont_footer_info .footer_link .footer_link_box .right_box .link_list &gt; li .txt_short {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.cont_footer_info .footer_link .footer_link_box .left_box .link_list &gt; li .tl_link,
.cont_footer_info .footer_link .footer_link_box .right_box .link_list &gt; li .tl_link {
  margin-bottom: 15px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: 1.4rem;
  line-height: 1.8rem;
  color: #FFF;
}

.cont_footer_info .footer_link .footer_link_box .left_box .link_list &gt; li a,
.cont_footer_info .footer_link .footer_link_box .right_box .link_list &gt; li a {
  display: block;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #FFF;
  padding-left: 15px;
  position: relative;
  margin-bottom: 15px;
}

.cont_footer_info .footer_link .footer_link_box .left_box .link_list &gt; li a::before,
.cont_footer_info .footer_link .footer_link_box .right_box .link_list &gt; li a::before {
  display: block;
  content: '';
  width: 5px;
  height: 10px;
  background-image: url("../img_cmn/ico_arrow_white.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -5px;
}

.cont_footer_info .footer_link .page_top_box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.cont_footer_info .info_sns_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .info_sns_box {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.cont_footer_info .info_sns_box .ico_sns_instagram,
.cont_footer_info .info_sns_box .ico_sns_youtube {
  display: block;
  width: 45px;
  height: 45px;
  background: #FFF no-repeat center/50%;
  border-radius: 1px;
  margin-right: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info .info_sns_box .ico_sns_instagram,
  .cont_footer_info .info_sns_box .ico_sns_youtube {
    margin-right: 10px;
  }
}

.cont_footer_info .info_sns_box .ico_sns_youtube {
  background-image: url("../img_top-co/ico_youtube.svg");
}

.cont_footer_info .info_sns_box .ico_sns_instagram {
  background-image: url("../img_cont/ico_instagram.png");
}

/*=================================================
 * ＜CO＞ フッター
 * ================================================ */
.cont_footer_info_co {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co {
    background-color: #FCF9F4;
  }
}

.cont_footer_info_co .footer_link {
  /* PC */
  /* ------------------------------------
    /* フッターリンク
    ------------------------------------ */
  /* ------------------------------------
    /* ボトム　ボタン　
    ------------------------------------ */
  /* ------------------------------------
    /* ページトップに戻るボタン
    ------------------------------------ */
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co .footer_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 1100px;
    margin: 0 auto;
  }
}

.cont_footer_info_co .footer_link .nav_link_list {
  border-top: solid 2px #E2E2E2;
  border-bottom: solid 2px #E2E2E2;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co .footer_link .nav_link_list {
    width: 700px;
    border-top: none;
    border-bottom: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background-color: #FCF9F4;
    margin: 30px 0;
  }
}

.cont_footer_info_co .footer_link .nav_link_list &gt; li {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: solid 1px #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co .footer_link .nav_link_list &gt; li {
    width: 180px;
    border-bottom: none;
  }
}

.cont_footer_info_co .footer_link .nav_link_list &gt; li:nth-child(odd) {
  border-right: solid 2px #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co .footer_link .nav_link_list &gt; li:nth-child(odd) {
    border-right: none;
  }
}

.cont_footer_info_co .footer_link .nav_link_list &gt; li a {
  display: block;
  padding: 10px;
  font-size: 1.3rem;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co .footer_link .nav_link_list &gt; li a {
    padding: 0px 0px 0px 12px;
    margin: 5px 0;
  }
}

.cont_footer_info_co .footer_link .nav_link_list &gt; li a::after {
  display: block;
  content: '';
  width: 5px;
  height: 10px;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co .footer_link .nav_link_list &gt; li a::after {
    top: 50%;
    right: inherit;
    left: 0;
  }
}

.cont_footer_info_co .footer_link .nav_link_list &gt; li a .tl_link {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.cont_footer_info_co .footer_link .footer_link_bottom {
  background-color: #FCF9F4;
  padding: 10px 0 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co .footer_link .footer_link_bottom {
    width: 400px;
  }
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_online-shop .btn_txt {
  position: relative;
  padding-left: 28px;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_online-shop .btn_txt::before {
  display: inline-block;
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("../img_cmn/ico_cart_black.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -1px;
  left: 0px;
}

.cont_footer_info_co .footer_link .footer_link_bottom .cont_inner {
  width: inherit;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 0;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .left_btn_wrap {
  width: 50%;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .left_btn_wrap .link_list &gt; li a {
  display: block;
  font-size: 1.3rem;
  padding-left: 15px;
  line-height: 1.8rem;
  position: relative;
  margin-bottom: 15px;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .left_btn_wrap .link_list &gt; li a::before {
  display: block;
  content: '';
  width: 5px;
  height: 10px;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -5px;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .btn_login {
  height: 40px;
  line-height: 4.0rem;
  background-image: none;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .btn_login {
    width: 150px;
  }
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .btn_login .btn_txt {
  padding-left: 20px;
  position: relative;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .btn_login .btn_txt::before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 15px;
  background-image: url("../img_cmn/ico_member_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .btn_new_member {
  display: block;
  padding: 5px 10px 5px 20px;
  margin: 10px 0 20px;
  position: relative;
  color: #0a0a0a;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .btn_new_member .btn_txt {
  position: relative;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .btn_new_member .btn_txt::before {
  display: block;
  content: '';
  width: 5px;
  height: 10px;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: -15px;
  margin-top: -5px;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .sns_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .sns_btn_box .ico_sns_instagram,
.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .sns_btn_box .ico_sns_youtube {
  display: block;
  width: 45px;
  height: 45px;
  background: #FFF no-repeat center/50%;
  border-radius: 1px;
  margin-right: 5px;
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .sns_btn_box .ico_sns_youtube {
  background-image: url("../img_top-co/ico_youtube.svg");
}

.cont_footer_info_co .footer_link .footer_link_bottom .btn_box_wrap .right_btn_wrap .sns_btn_box .ico_sns_instagram {
  background-image: url("../img_cont/ico_instagram.png");
}

.cont_footer_info_co .footer_link .page_top_box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/* ------------------------------------
  共通
------------------------------------ */
.page_corporate .cont_news .page_tl_box {
  background-image: url("../img_cont/bg_tl_news.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_corporate .cont_news .page_tl_box {
    background-image: url(../img_cont/bg_tl_news_pc@2x.jpg);
  }
}

/*=================================================
  * お知らせ一覧表示　&lt;一覧&gt;
  * ================================================ */
.category_year_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .category_year_box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
}

.category_year_box .select_category_box {
  width: calc((100% * 260 / 335) - 10px);
  max-width: 270px;
  position: relative;
  margin-left: 10px;
}

.category_year_box .select_category_box::before {
  content: '';
  position: absolute;
  background-image: url(../img_cmn/ico_arrow_orange.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 6px;
  height: 10px;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  pointer-events: none;
}

.category_year_box .select_category_box .select_category_year {
  width: 100%;
  height: 40px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding-left: 30px;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #E2E2E2;
}

.category_year_box .select_category_box .select_category_year::-ms-expand {
  display: none;
}

.category_year_box .select_category_box .select_category_year:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.news_list_box {
  background-color: #FFF;
}

.news_list_box.news_list_detail {
  background-color: #FCF9F4;
  padding: 10px 0;
  /* PC */
}

.news_list_box.news_list_detail .news_list {
  background-color: #fff;
  /* PC */
}

@media screen and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list {
    background-color: unset;
  }
}

@media screen and (min-width: 768px) {
  .news_list_box.news_list_detail {
    padding: 20px 10px;
  }
  .news_list_box.news_list_detail .news_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list {
    border: none;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list .link_box_list {
    background-color: #fff;
    width: calc((100% - 20px) / 3);
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list .link_box_list {
    border-top: 1px solid #E2E2E2;
    margin-right: 10px;
  }
}

@media screen and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list .link_box_list:last-child {
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list .link_box_list:last-child {
    border-bottom: 1px solid #E2E2E2;
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list .link_box_list a {
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list .link_box_list a {
    padding: 20px 30px 20px 10px;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .news_list_box.news_list_detail .news_list .link_box_list a::after {
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (min-width: 768px) {
  .news_list_box.news_list_detail .news_list .link_box_list a::after {
    right: 10px;
  }
}

.news_list_box .news_list {
  border-top: solid 1px #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .news_list_box .news_list {
    width: 830px;
    margin: 0 auto;
  }
}

.news_list_box .news_list .link_box_list {
  border-bottom: solid 1px #E2E2E2;
  text-align: left;
}

.news_list_box .news_list .link_box_list a {
  position: relative;
  cursor: pointer;
  color: #292929;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .news_list_box .news_list .link_box_list a {
    padding: 25px 60px 25px 30px;
  }
}

.news_list_box .news_list .link_box_list a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news_list_box .news_list .link_box_list a::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  content: "";
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat;
  background-size: 6.5px auto;
  width: 6.5px;
  height: calc(6.5px * 1.87);
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* PC */
}

@media screen and (min-width: 768px) {
  .news_list_box .news_list .link_box_list a::after {
    right: 30px;
  }
}

.news_list_box .news_list .link_box_list a .ico_new_box {
  width: 50px;
}

.news_list_box .news_list .link_box_list a .cont_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
  margin: 0 20px 0 0;
}

/*=================================================
  * お知らせタイトル　&lt;共通&gt;
  * ================================================ */
.news_detail_box_wrap,
.news_list_box_wrap {
  margin-top: 40px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .news_detail_box_wrap,
  .news_list_box_wrap {
    margin-top: 60px;
  }
}

.category_box {
  margin-bottom: 5px;
}

.category_box .txt_date {
  margin-bottom: 2px;
}

.category_box .txt_date .date {
  font-size: 1.3rem;
  color: #464646;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.category_box .txt_date .new {
  font-size: 1.2rem;
  font-weight: bold;
  color: #F54242;
  margin-left: 8px;
}

/*=================================================
* お知らせ（詳細）
* ================================================ */
/* ------------------------------------
/* エディタ編集部分
------------------------------------ */
.article {
  padding: 0 0 0px;
  border-bottom: solid 1px #9E9E9E;
  /* タイトルボックス
  ------------------------------------ */
  /* メイン記事ボックス
  ------------------------------------ */
}

.article .article_header {
  border-bottom: 1px solid #15195B;
}

.article .article_header .category_box {
  margin-bottom: 20px;
}

.article .article_header h1 {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 3.4rem;
  margin-bottom: 20px;
}

.article .article_body {
  padding: 20px 0 30px;
  /* リンクテキスト
    ------------------------------------ */
  /* 見出しスタイル
    ------------------------------------ */
}

.article .article_body p {
  line-height: 2.4rem;
  margin: 20px 0;
}

.article .article_body img {
  margin: 0 0 20px;
  max-width: 100% !important;
  height: auto !important;
}

.article .article_body ul {
  font-size: 1.4rem;
  margin: 20px 0;
}

.article .article_body ul li {
  padding-left: 0.9em;
  text-indent: -.9em;
  margin: 8px 0;
}

.article .article_body ul li::before {
  content: "• ";
  color: #292929;
}

.article .article_body ol {
  counter-reset: li;
  font-size: 1.4rem;
  margin: 20px 0;
}

.article .article_body ol li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin: 10px 0;
}

.article .article_body ol li::before {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #292929;
  font-weight: bold;
  counter-increment: li;
  content: counter(li) ". ";
}

.article .article_body ol li:nth-child(n + 10) {
  padding-left: 2.7em;
  text-indent: -2.7em;
  margin: 10px 0;
}

.article .article_body blockquote {
  margin: 30px 0;
  padding: 30px 20px;
  background-color: #FCF9F4;
  position: relative;
}

.article .article_body blockquote::before {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  content: "";
  background: url("../img_cmn/ico_quote_gray01.svg") no-repeat;
  background-size: 13.7px auto;
  width: 13.7px;
  height: calc(13.7px * 0.88);
  left: 10px;
  top: 10px;
}

.article .article_body blockquote::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  content: "";
  background: url("../img_cmn/ico_quote_gray02.svg") no-repeat;
  background-size: 13.7px auto;
  width: 13.7px;
  height: calc(13.7px * 0.88);
  right: 10px;
  bottom: 10px;
}

.article .article_body blockquote p {
  margin: 0;
}

.article .article_body img {
  display: block;
  vertical-align: bottom;
  margin: 30px 0;
}

.article .article_body a {
  color: #1558D6;
  text-decoration: underline;
}

.article .article_body h1 {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2.0rem;
  line-height: 3.4rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article .article_body h2 {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  border-bottom: solid 1px #E2E2E2;
  font-size: 2.0rem;
  line-height: 3.4rem;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article .article_body h3 {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 3.0rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article .article_body h3::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #15195B;
  margin-right: 10px;
  position: relative;
  top: 0;
  left: 0;
}

.article .article_body h4 {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 3.4rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article .article_body h4::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #E2E2E2;
  margin-right: 10px;
  position: relative;
  top: 0;
  left: 0;
}

.article .article_body h5 {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #15195B;
  font-size: 1.8rem;
  line-height: 3.4rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article .article_body h6 {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 3.4rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.article .article_body .box_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 140px;
  margin: 40px auto 0;
}

.article .article_body .box_sns a {
  width: 30px;
  height: 30px;
  margin-right: 25px;
  background: no-repeat center/30px;
}

.article .article_body .box_sns a:last-of-type {
  margin-right: 0;
}

.article .article_body .box_sns a.sns_line {
  background-image: url("../img_cont/ico_line_circle.svg");
}

.article .article_body .box_sns a.sns_twitter {
  background-image: url("../img_cont/ico_twitter_circle.svg");
}

.article .article_body .box_sns a.sns_facebook {
  background-image: url("../img_cont/ico_facebook_circle.svg");
}

.newNews_box {
  position: relative;
  padding-top: 80px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .newNews_box {
    padding-top: 100px;
  }
}

.newNews_box::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 30px;
  background: url("../img_cont/ico_splash.svg") no-repeat center/60px auto;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* PC */
}

@media screen and (min-width: 768px) {
  .newNews_box::before {
    top: 60px;
  }
}

.newNews_box::after {
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  height: calc(100% - 100px);
  background-color: #FCF9F4;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
  z-index: -1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .newNews_box::after {
    display: none;
  }
}

.newNews_box .newNews_tl {
  font-weight: bold;
  font-size: 18px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.newNews_box .news_list_box_wrap {
  margin-top: 20px;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/* ------------------------------------
共通
------------------------------------ */
.cont_liaise {
  position: relative;
}

.cont_liaise .txt_note {
  color: #F54242;
}

.cont_liaise .msg_note {
  color: #F54242;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .cont_liaise .msg_note {
    margin: 20px 0;
  }
}

.cont_liaise.cont_liaise_complete .page_tl .page_tl_box, .cont_liaise.cont_liaise_confirm .page_tl .page_tl_box, .cont_liaise.cont_liaise_input .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_liaise.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .cont_liaise.cont_liaise_complete .page_tl .page_tl_box, .cont_liaise.cont_liaise_confirm .page_tl .page_tl_box, .cont_liaise.cont_liaise_input .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_liaise_pc.jpg");
    background-size: cover;
  }
}

.cont_liaise .retry_btn {
  width: 50%;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2px 0;
  background-color: #fff;
  border: 1px solid #E2E2E2;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .cont_liaise .retry_btn {
    width: 150px;
    height: 30px;
  }
}

.cont_liaise .retry_btn:focus, .cont_liaise .retry_btn:hover {
  outline: none;
}

.cont_liaise .retry_btn::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* ------------------------------------
/* お問い合わせフォーム(入力)
 ------------------------------------ */
.cont_liaise {
  /* 上部導入
    ------------------------------------ */
  /* formのスタイル
    ------------------------------------ */
  /* &lt;共通&gt;form_box
    --------------- */
  /* お問い合わせ内容、その他選択時
        --------------- */
  /* セレクトボックスのスタイル設定
          --------------- */
  /* radio,checkボタン
  --------------- */
}

.cont_liaise .main_box .return_btn {
  margin: 40px 0;
}

@media screen and (min-width: 768px) {
  .cont_liaise .main_box .return_btn {
    margin: 30px auto 60px;
    width: 350px;
    height: 44px;
  }
}

.cont_liaise .main_box .return_btn::before {
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/6px auto;
  left: unset;
  right: 10px;
}

.cont_liaise .parts_tl_01 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.cont_liaise .parts_tl_01 .change_color {
  color: #15195B;
}

@media screen and (min-width: 768px) {
  .cont_liaise .parts_tl_01 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.cont_liaise .process_box {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .cont_liaise .process_box {
    margin-bottom: 50px;
  }
}

.cont_liaise .parts_txt_01 {
  font-size: 1.3rem;
  line-height: 24px;
}

.cont_liaise .parts_txt_01.font_bold {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .cont_liaise .parts_txt_01 {
    font-size: 1.4rem;
    text-align: center;
  }
}

.cont_liaise .link_btn_box {
  margin: 20px 0 0;
}

@media screen and (min-width: 768px) {
  .cont_liaise .link_btn_box {
    margin: 30px 0 0;
  }
}

.cont_liaise .border_gray {
  width: 100%;
  border-top: 1px solid #E2E2E2;
  margin: 50px 0 30px;
}

.cont_liaise .contact_link_box {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .cont_liaise .contact_link_box {
    margin-top: 0;
  }
}

.cont_liaise .contact_link_box .txt_rapid {
  text-align: left;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .cont_liaise .contact_link_box .txt_rapid {
    text-align: center;
  }
}

.cont_liaise .contact_link_box .contact_link_bg {
  padding: 15px 20px 10px;
  margin: 10px auto 0;
}

@media screen and (min-width: 768px) {
  .cont_liaise .contact_link_box .contact_link_bg {
    height: 83px;
    width: 350px;
    display: block;
  }
}

.cont_liaise .contact_form {
  margin-top: 40px;
}

.cont_liaise .contact_form .btn_box_retry {
  text-align: left;
  margin-top: 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .cont_liaise .contact_form .btn_box_retry {
    position: absolute;
    left: 135px;
    bottom: 20px;
  }
}

.cont_liaise .contact_form .btn_box_retry::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img_cmn/ico_arrow_gray_left.svg") no-repeat center/6px auto;
  width: 6px;
  height: calc(6px * 1.5);
  pointer-events: none;
}

.cont_liaise .form_box {
  position: relative;
  /* エラーメッセージ
        --------------- */
  /* 必須アイコン
        --------------- */
  /* 任意アイコン
        --------------- */
}

.cont_liaise .form_box .form_table {
  width: 100%;
  table-layout: fixed;
}

.cont_liaise .form_box .error_message {
  color: #F54242;
  font-size: 1.3rem;
  margin-top: 5px;
  width: 49%;
}

.cont_liaise .form_box .ico_require {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 18px;
  margin-left: 10px;
  display: inline-block;
  color: #FFF;
  background-color: #15195B;
  padding: 1px 7px 0;
}

.cont_liaise .form_box .ico_option {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 18px;
  margin-left: 10px;
  display: inline-block;
  color: #FFF;
  background-color: #464646;
  padding: 1px 7px 0;
}

.cont_liaise .form_td,
.cont_liaise .form_th {
  display: block;
  position: relative;
}

.cont_liaise .form_th {
  padding: 20px 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

@media screen and (min-width: 768px) {
  .cont_liaise .form_th {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 0 10px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

@media screen and (min-width: 768px) {
  .cont_liaise tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px auto 0;
    width: 730px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_liaise tr:first-child .form_th {
  padding: 0 0 10px;
}

@media screen and (min-width: 768px) {
  .cont_liaise tr:first-child .form_th {
    padding: 10px 0 10px;
  }
}

.cont_liaise tr.form_tr_p-left {
  display: block;
  padding-left: 10px;
}

@media screen and (min-width: 768px) {
  .cont_liaise tr.form_tr_p-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px auto 0;
    width: 730px;
    padding-left: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_liaise .form_td {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cont_liaise .form_td {
    width: 470px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_liaise .form_td.input_box_parallel {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cont_liaise .form_td.input_box_parallel input[type="text"] {
  width: 49%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_liaise .zipcode span {
  display: inline-block;
}

.cont_liaise .zipcode input[type=text] {
  width: 465px;
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .cont_liaise .txt_th {
    font-size: 1.5rem;
  }
}

.cont_liaise .txt_th .txt_type {
  display: block;
  font-weight: normal;
}

.cont_liaise .txt_notice {
  font-size: 1.3rem;
}

.cont_liaise .txt_indent {
  padding-left: 1em;
  text-indent: -1em;
}

.cont_liaise .form_pp.form_pp_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_liaise .form_pp.form_pp_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_liaise .form_pp.form_pp_flex .txt_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_liaise .form_pp.form_pp_flex .txt_box {
    width: 390px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px 0 0;
  }
}

.cont_liaise .form_pp.form_pp_flex .check_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_liaise .form_pp.form_pp_flex .check_box {
    width: 340px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_liaise .form_pp .txt_box {
  padding: 0 0 10px;
  font-size: 1.3rem;
}

.cont_liaise .form_pp .txt_box .txt_link {
  text-decoration: underline;
  color: #0349CC;
  font-size: 1.3rem;
}

.cont_liaise .btn_box {
  text-align: center;
  margin: 40px auto 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .cont_liaise .btn_box {
    width: 350px;
    margin: 60px auto 0;
  }
}

.cont_liaise .btn_box.btn_submit_box .btn_submit {
  color: #FFF;
  width: 100%;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 0;
  background-color: #15195B;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
}

.cont_liaise .btn_box.btn_submit_box .btn_submit:focus, .cont_liaise .btn_box.btn_submit_box .btn_submit:hover {
  outline: none;
}

.cont_liaise .btn_box.btn_submit_box .btn_submit::-moz-focus-inner {
  border: none;
  padding: 0;
}

.cont_liaise .btn_box.btn_submit_box .btn_submit.btn_disabled {
  background-color: #6E6E6E;
}

.cont_liaise .btn_box.btn_submit_box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img_cmn/ico_arrow_white.svg") no-repeat center/6px auto;
  width: 6px;
  height: calc(6px * 1.5);
  pointer-events: none;
}

.cont_liaise .txt_notice {
  margin: 15px 0 5px;
}

.cont_liaise .ex {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

.cont_liaise button,
.cont_liaise input[type=email],
.cont_liaise input[type=password],
.cont_liaise input[type=tel],
.cont_liaise input[type=text],
.cont_liaise select,
.cont_liaise textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /** add */
  border-radius: 1px;
  border: 1px solid #C9C9C9;
}

.cont_liaise button::-webkit-input-placeholder,
.cont_liaise input[type=email]::-webkit-input-placeholder,
.cont_liaise input[type=password]::-webkit-input-placeholder,
.cont_liaise input[type=tel]::-webkit-input-placeholder,
.cont_liaise input[type=text]::-webkit-input-placeholder,
.cont_liaise select::-webkit-input-placeholder,
.cont_liaise textarea::-webkit-input-placeholder {
  color: #ACACAC;
}

.cont_liaise button:-ms-input-placeholder,
.cont_liaise input[type=email]:-ms-input-placeholder,
.cont_liaise input[type=password]:-ms-input-placeholder,
.cont_liaise input[type=tel]:-ms-input-placeholder,
.cont_liaise input[type=text]:-ms-input-placeholder,
.cont_liaise select:-ms-input-placeholder,
.cont_liaise textarea:-ms-input-placeholder {
  color: #ACACAC;
}

.cont_liaise button::-ms-input-placeholder,
.cont_liaise input[type=email]::-ms-input-placeholder,
.cont_liaise input[type=password]::-ms-input-placeholder,
.cont_liaise input[type=tel]::-ms-input-placeholder,
.cont_liaise input[type=text]::-ms-input-placeholder,
.cont_liaise select::-ms-input-placeholder,
.cont_liaise textarea::-ms-input-placeholder {
  color: #ACACAC;
}

.cont_liaise button::placeholder,
.cont_liaise input[type=email]::placeholder,
.cont_liaise input[type=password]::placeholder,
.cont_liaise input[type=tel]::placeholder,
.cont_liaise input[type=text]::placeholder,
.cont_liaise select::placeholder,
.cont_liaise textarea::placeholder {
  color: #ACACAC;
}

.cont_liaise textarea::-webkit-input-placeholder {
  color: #ACACAC;
  font-size: 1.5rem;
}

.cont_liaise textarea:-moz-placeholder {
  color: #ACACAC;
  font-size: 1.5rem;
}

.cont_liaise textarea:-ms-input-placeholder {
  color: #ACACAC;
  font-size: 1.5rem;
}

.cont_liaise input[type=email]::-ms-clear,
.cont_liaise input[type=password]::-ms-clear,
.cont_liaise input[type=tel]::-ms-clear,
.cont_liaise input[type=text]::-ms-clear {
  visibility: hidden;
}

.cont_liaise input[type=email]::-ms-reveal,
.cont_liaise input[type=password]::-ms-reveal,
.cont_liaise input[type=tel]::-ms-reveal,
.cont_liaise input[type=text]::-ms-reveal {
  visibility: hidden;
}

.cont_liaise select::-ms-expand {
  display: none;
}

.cont_liaise textarea {
  resize: none;
}

.cont_liaise select {
  padding: 9px 10px;
}

.cont_liaise input[type=email],
.cont_liaise input[type=password],
.cont_liaise input[type=tel],
.cont_liaise input[type=text],
.cont_liaise textarea {
  padding: 10px 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  font-size: 1.5rem;
}

.cont_liaise input[type=email].input_box_min,
.cont_liaise input[type=password].input_box_min,
.cont_liaise input[type=tel].input_box_min,
.cont_liaise input[type=text].input_box_min,
.cont_liaise textarea.input_box_min {
  width: 320px;
}

.cont_liaise button,
.cont_liaise input,
.cont_liaise select,
.cont_liaise textarea {
  font-family: inherit;
  font-size: 100%;
  padding: 10px 15px;
}

.cont_liaise .select_label {
  position: relative;
  border-radius: 0;
  z-index: 0;
}

.cont_liaise .select_label::after {
  content: '';
  position: absolute;
  display: block;
  width: calc(10px * 1.5);
  height: 10px;
  background: url("../img_cmn/ico_arrow_orange.svg") no-repeat center/auto 10px;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  z-index: 1;
  pointer-events: none;
}

.cont_liaise .select_label .select_item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  position: relative;
  padding: 10px 15px;
  outline: none;
  border-radius: 2px;
  background-color: #FFF;
}

.cont_liaise input[type=radio] {
  display: none;
}

.cont_liaise input[type=radio]:checked + .radio:before {
  opacity: 1;
}

.cont_liaise .radio {
  width: 100%;
  padding: 12px 10px 10px 42px;
  margin-bottom: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  background-color: #FCF9F4;
}

.cont_liaise .radio:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  margin-top: -7px;
  background-color: #15195B;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  opacity: 0;
}

.cont_liaise .radio:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E2E2E2;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cont_liaise input[type=checkbox] {
  display: none;
}

.cont_liaise input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}

.cont_liaise .checkbox {
  width: 100%;
  padding: 12px 10px 10px 42px;
  margin-bottom: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  background-color: #FCF9F4;
}

.cont_liaise .checkbox:before {
  display: block;
  content: '';
  width: 7px;
  height: 17px;
  border-right: 3px solid #15195B;
  border-bottom: 3px solid #15195B;
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 19px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}

.cont_liaise .checkbox:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E2E2E2;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cont_liaise .checkbox.checkbox_min {
  font-size: 1.3rem;
  color: #464646;
  padding: 10px 10px 10px 26px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.cont_liaise .checkbox.checkbox_min:before {
  width: 6px;
  height: 14px;
  top: 8px;
  left: 8px;
}

.cont_liaise .checkbox.checkbox_min:after {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
}

.cont_liaise .btn_box_change {
  text-align: left;
  margin-top: 15px;
  position: relative;
}

.cont_liaise .btn_box_change::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/6px auto;
  width: 6px;
  height: calc(6px * 1.5);
  pointer-events: none;
}

.cont_liaise .btn_box_change .change_btn {
  width: 100%;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2px 0;
  background-color: #fff;
  border: 1px solid #E2E2E2;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.cont_liaise .btn_box_change .change_btn:focus, .cont_liaise .btn_box_change .change_btn:hover {
  outline: none;
}

.cont_liaise .btn_box_change .change_btn::-moz-focus-inner {
  border: none;
  padding: 0;
}

/* ------------------------------------
/* お問い合わせフォーム(確認)
 ------------------------------------ */
@media screen and (min-width: 768px) {
  .cont_liaise_confirm {
    margin-bottom: 137px;
  }
}

.cont_liaise_confirm .btn_box {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .cont_liaise_confirm .btn_box {
    margin-top: 20px;
  }
}

.cont_liaise_confirm .contact_form .form_table {
  margin-bottom: 0;
}

.cont_liaise_confirm .contact_form .form_table .form_th {
  padding-top: 0;
}

.cont_liaise_confirm .contact_form .form_table .form_td {
  margin-bottom: 40px;
}

/* ------------------------------------
/* お問い合わせフォーム(完了)
 ------------------------------------ */
.cont_liaise_complete .parts_tl_02 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

@media screen and (min-width: 768px) {
  .cont_liaise_complete .parts_tl_02 {
    text-align: center;
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
}

.cont_liaise_complete .complete_msg {
  margin: 40px 0 0;
}

@media screen and (min-width: 768px) {
  .cont_liaise_complete .complete_msg {
    margin: 60px 0 0;
  }
}

.cont_liaise_complete .link_btn_box {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .cont_liaise_complete .link_btn_box {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .cont_liaise_complete .contact_link_box {
    margin-top: 0;
  }
}

/* ------------------------------------
 /* &lt;共有&gt;フォームステップ
 ------------------------------------ */
.contact_step {
  background-color: #FCF9F4;
  padding: 20px 0;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .contact_step {
    width: 830px;
    height: 120px;
    margin: 20px auto 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.form_step_box {
  margin: 0 auto 35px;
  padding: 0 15px;
  max-width: 400px;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .form_step_box {
    margin: 15px auto;
  }
}

.form_step_box::before {
  content: "";
  position: absolute;
  display: block;
  width: 65%;
  height: 1px;
  bottom: -22px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #E2E2E2;
}

.form_step_box ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.form_step_box li {
  width: 100px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.4rem;
  /* ステップ未着地
    --------------- */
  /* 現在のステップ地点
    --------------- */
}

@media screen and (min-width: 768px) {
  .form_step_box li {
    font-size: 1.3rem;
  }
}

.form_step_box li::before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  bottom: -34px;
  left: 50%;
  margin-left: -12px;
  background-color: #FFF;
  border: solid 1px #E2E2E2;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #464646;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2.4rem;
}

@media screen and (min-width: 768px) {
  .form_step_box li::before {
    margin-left: -14px;
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
    line-height: 2.8rem;
  }
}

.form_step_box li.step_do {
  color: #0a0a0a;
}

.form_step_box li.step_do::before {
  background-color: #15195B;
  border: solid 1px #15195B;
  color: #FFF;
}

.form_step_box li:nth-child(1)::before {
  content: "1";
}

.form_step_box li:nth-child(2)::before {
  content: "2";
}

.form_step_box li:nth-child(3)::before {
  content: "3";
}

.form_step_box li:nth-child(4)::before {
  content: "4";
}

/* ------------------------------------
共通
------------------------------------ */
.cont_faq {
  line-height: 24px;
}

.cont_faq .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_faq.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .cont_faq .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_faq_pc.jpg");
  }
}

/* ------------------------------------
/* FAQ　リスト
------------------------------------ */
.box_faq_category {
  width: 100%;
  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;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .box_faq_category {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-top: none;
    width: auto;
    padding: 30px 20px 20px 20px;
    background-color: #FCF9F4;
  }
}

.box_faq_category .faq_category_list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  width: 49.5%;
  border: 1px solid #E2E2E2;
  margin: 0.5px;
  padding: 1px;
}

@media screen and (min-width: 768px) {
  .box_faq_category .faq_category_list {
    width: inherit;
    min-width: 160px;
    border: 1px solid #E2E2E2;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #fff;
  }
}

.box_faq_category .faq_category_list .faq_category_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 10px 10px 50px;
  color: #292929;
  line-height: 40px;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  background: linear-gradient(90deg, #15195B 0%, #15195B 40px, #FFF 40px, #FFF 100%);
}

.box_faq_category .faq_category_list .faq_category_wrap .ico_arrow_category {
  width: 40px;
  content: '';
  position: absolute;
  top: 50%;
  left: 1px;
  background: url("../img_cmn/ico_arrow_white.svg") no-repeat center/auto;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  width: 38px;
  height: 86px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.box_faq_category .faq_category_list .faq_category_wrap .txt_category {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.faq_list_box {
  margin: 40px auto 40px;
}

@media screen and (min-width: 768px) {
  .faq_list_box {
    width: 830px;
    margin: 50px auto 40px;
  }
}

.faq_list_box .parts_tl_01 {
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .faq_list_box .parts_tl_01 {
    font-size: 2.2rem;
  }
}

.faq_list_box .faq_list .list_box .list_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  border-top: 1px solid #E2E2E2;
  position: relative;
}

@media screen and (min-width: 768px) {
  .faq_list_box .faq_list .list_box .list_question {
    padding: 30px 50px 30px 30px;
    font-size: 1.6rem;
  }
}

.faq_list_box .faq_list .list_box .list_question::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  height: 10px;
  width: calc(10px * 1.5);
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/auto 10px;
}

@media screen and (min-width: 768px) {
  .faq_list_box .faq_list .list_box .list_question::after {
    right: 30px;
  }
}

.faq_list_box .faq_list .list_box .list_question .ico_faq_q {
  color: #15195B;
  font-size: 1.4rem;
  margin-right: 10px;
  font-weight: bold;
}

.faq_list_box .faq_list .list_box .list_question .description_box {
  padding-right: 20px;
  position: relative;
}

.faq_list_box .faq_list .list_box .answer_box {
  background-color: #FCF9F4;
  margin-bottom: 20px;
  padding: 30px 0;
  border-bottom: 2px solid #15195B;
}

@media screen and (min-width: 768px) {
  .faq_list_box .faq_list .list_box .answer_box .description_box {
    padding: 0 50px;
  }
}

@media screen and (min-width: 768px) {
  .faq_list_box .faq_list .list_box .answer_box .description_box .txt_box {
    font-size: 1.6rem;
  }
}

.faq_list_box .faq_list .list_box .answer_box .related_page_link {
  width: 100%;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .faq_list_box .faq_list .list_box .answer_box .related_page_link {
    width: 350px;
  }
}

.faq_list_box .faq_list .list_box .answer_box .related_page_link .related_page_wrap {
  display: block;
  padding: 13px 10px;
  border: 1px solid #E2E2E2;
  background-color: #fff;
  position: relative;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .faq_list_box .faq_list .list_box .answer_box .related_page_link .related_page_wrap {
    padding: 15px 20px;
  }
}

.faq_list_box .faq_list .list_box .answer_box .related_page_link .related_page_wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: calc(6px * 1.5);
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/6px auto;
}

@media screen and (min-width: 768px) {
  .faq_list_box .faq_list .list_box .answer_box .related_page_link .related_page_wrap::after {
    padding-right: 10px;
  }
}

.faq_list_box .border_bottom {
  width: 100%;
  border-bottom: 1px solid #E2E2E2;
}

.link_ec_box {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .link_ec_box {
    padding: 0;
    margin-top: 80px;
    background-color: white;
  }
}

.link_ec_box .link_ec_wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  display: block;
}

.link_ec_box .link_ec_wrap .link_ec_bnr {
  width: 100%;
  display: block;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .link_ec_box .link_ec_wrap .link_ec_bnr {
    width: 830px;
    height: auto;
    margin: 0 auto;
  }
}

.contact_link_box {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.contact_link_box .contact_link_tl {
  font-size: 2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  position: relative;
  display: inline-block;
  line-height: 34px;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_tl {
    font-size: 2.2rem;
  }
}

.contact_link_box .contact_link_tl::after {
  content: '';
  background-color: #15195B;
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact_link_box .contact_link_txt {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_txt {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
}

.contact_link_box .contact_link_bg {
  padding: 30px 20px;
  background-color: #FCF9F4;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contact_link_box .contact_link_bg .mailform_link_tl,
.contact_link_box .contact_link_bg .phone_tl {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .mailform_link_tl,
  .contact_link_box .contact_link_bg .phone_tl {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .phone {
    width: 330px;
    height: 95px;
    margin-left: 200px;
  }
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .mail {
    width: 330px;
  }
}

.contact_link_box .contact_link_bg .btn_mailform_link {
  border: 1px solid #15195B;
  background-color: #fff;
  padding: 16px 0 9px;
  width: 100%;
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .btn_mailform_link {
    width: 330px;
    height: 75px;
    margin-left: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.contact_link_box .contact_link_bg .btn_mailform_link::after {
  content: '';
  position: absolute;
  background: url("../img_cont/ico_arrow_long_orange.svg") no-repeat center/50px auto;
  width: 50px;
  height: 5px;
  right: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact_link_box .contact_link_bg .btn_mailform_link .mail_back,
.contact_link_box .contact_link_bg .btn_mailform_link .mailform_txt {
  display: inline-block;
}

.contact_link_box .contact_link_bg .btn_mailform_link .mailform_txt {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: #464646;
  line-height: 24px;
  padding-left: 26px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .btn_mailform_link .mailform_txt {
    font-size: 1.6rem;
  }
}

.contact_link_box .contact_link_bg .btn_mailform_link .mailform_txt::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 15px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img_cont/ico_mail.svg") no-repeat center/20px auto;
}

.contact_link_box .contact_link_bg .btn_mailform_link .mail_back {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #15195B;
  line-height: 19px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  position: relative;
  top: -3px;
  display: block;
}

.contact_link_box .contact_link_bg .phone_tl {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .phone_tl {
    margin-top: 0px;
  }
}

.contact_link_box .contact_link_bg .btn_phone_link {
  border: 1px solid #E2E2E2;
  background-color: #fff;
  padding: 12px 0;
  width: 100%;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .btn_phone_link {
    border: none;
    margin-right: 10px;
    width: 310px;
    height: 54px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.contact_link_box .contact_link_bg .btn_phone_link .phone_number {
  display: inline-block;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #464646;
  padding-left: 10px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .btn_phone_link .phone_number {
    margin: 0px auto;
    font-size: 1.8rem;
  }
}

.contact_link_box .contact_link_bg .btn_phone_link .phone_number::before {
  content: '';
  position: absolute;
  width: 9px;
  height: 11px;
  background: url("../img_cont/ico_phone.svg") no-repeat center/9px auto;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contact_link_box .contact_link_bg .businesshours {
  margin-top: 5px;
  font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
  .contact_link_box .contact_link_bg .businesshours {
    margin-bottom: 20px;
  }
}

.contact_link_box .contact_link_bg .cnotact_link_txt2 {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

/* ------------------------------------
/* FAQ　詳細
------------------------------------ */
@media screen and (min-width: 768px) {
  .cont_faq_detail .faq_detail_box {
    width: 830px;
    margin: 0 auto;
  }
}

.cont_faq_detail .faq_detail_box .faq_list_box .parts_tl_01 {
  font-weight: normal;
  font-size: 1.2rem;
  color: #464646;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .cont_faq_detail .faq_detail_box .faq_list_box .parts_tl_01 {
    font-size: 1.3rem;
  }
}

.cont_faq_detail .faq_detail_box .faq_list_box .list_box .list_question {
  border-top: none;
}

.cont_faq_detail .faq_detail_box .faq_list_box .list_box .list_question .ico_faq_q {
  font-size: 2.2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.cont_faq_detail .faq_detail_box .faq_list_box .list_box .list_question .description_box {
  font-weight: bold;
  font-size: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .cont_faq_detail .faq_detail_box .faq_list_box .list_box .list_question .description_box {
    font-size: 2.2rem;
  }
}

.cont_faq_detail .faq_detail_box .faq_list_box .list_box .list_question .description_box::after {
  content: none;
}

.cont_faq_detail .faq_detail_box .border_bottom {
  border-bottom: none;
}

/* ------------------------------------
  共通
------------------------------------ */
.page_corporate .cont_blog .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_blog.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_corporate .cont_blog .page_tl .page_tl_box {
    background-image: url(../img_cont/bg_tl_blog_pc@2x.jpg);
    background-size: cover;
  }
}

/* ------------------------------------
  スタッフブログ
------------------------------------ */
/* ------------------------------------
  ブログ種類切り替えボタン
------------------------------------ */
.box_blog_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
  border-top: 1px solid #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .box_blog_type {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 800px;
    margin: 0 auto 60px;
    border: none;
    background-color: #fff;
    position: relative;
    z-index: 5;
  }
}

.box_blog_type .btn_blog_type {
  line-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  width: 50%;
  color: #292929;
  border-right: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  height: 40px;
  font-size: 1.3rem;
  /* PC */
  /* PC */
}

.box_blog_type .btn_blog_type .wrap_blog_type {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .box_blog_type .btn_blog_type {
    border-top: 1px solid #E2E2E2;
  }
  .box_blog_type .btn_blog_type:first-child {
    border-left: 1px solid #E2E2E2;
  }
}

.box_blog_type .btn_blog_type.btn_unable {
  pointer-events: none;
  background-color: #FCF9F4 !important;
}

.box_blog_type .btn_blog_type:nth-child(2n) {
  border-right: none;
  /* PC */
}

@media screen and (min-width: 768px) {
  .box_blog_type .btn_blog_type:nth-child(2n) {
    border-right: 1px solid #E2E2E2;
  }
}

.box_blog_type .btn_blog_type:hover .wrap_blog_type {
  color: #FFF;
}

@media screen and (min-width: 768px) {
  .box_blog_type .btn_blog_type.active {
    position: relative;
  }
  .box_blog_type .btn_blog_type.active::before {
    content: '';
    position: absolute;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    top: 34px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.box_blog_type .btn_blog_type:first-of-type.active {
  background-color: #15195B;
}

.box_blog_type .btn_blog_type:first-of-type.active .wrap_blog_type {
  color: #FFF;
}

.box_blog_type .btn_blog_type:first-of-type.active::before {
  /* PC */
}

@media screen and (min-width: 768px) {
  .box_blog_type .btn_blog_type:first-of-type.active::before {
    border-top: 11px solid #15195B;
  }
}

.box_blog_type .btn_blog_type:first-of-type:hover {
  background-color: #15195B;
}

.box_blog_type .btn_blog_type:nth-of-type(2).active {
  background-color: #15195B;
}

.box_blog_type .btn_blog_type:nth-of-type(2).active .wrap_blog_type {
  color: #FFF;
}

.box_blog_type .btn_blog_type:nth-of-type(2).active::before {
  /* PC */
}

@media screen and (min-width: 768px) {
  .box_blog_type .btn_blog_type:nth-of-type(2).active::before {
    border-top: 11px solid #15195B;
  }
}

.box_blog_type .btn_blog_type:nth-of-type(2):hover {
  background-color: #15195B;
}

.box_blog_type .btn_blog_type:nth-of-type(3).active {
  background-color: #6C6C01;
}

.box_blog_type .btn_blog_type:nth-of-type(3).active .wrap_blog_type {
  color: #FFF;
}

.box_blog_type .btn_blog_type:nth-of-type(3).active::before {
  /* PC */
}

@media screen and (min-width: 768px) {
  .box_blog_type .btn_blog_type:nth-of-type(3).active::before {
    border-top: 11px solid #6C6C01;
  }
}

.box_blog_type .btn_blog_type:nth-of-type(3):hover {
  background-color: #6C6C01;
}

.box_blog_type .btn_blog_type:last-of-type.active {
  background-color: #895603;
}

.box_blog_type .btn_blog_type:last-of-type.active .wrap_blog_type {
  color: #FFF;
}

.box_blog_type .btn_blog_type:last-of-type.active::before {
  /* PC */
}

@media screen and (min-width: 768px) {
  .box_blog_type .btn_blog_type:last-of-type.active::before {
    border-top: 11px solid #895603;
  }
}

.box_blog_type .btn_blog_type:last-of-type:hover {
  background-color: #895603;
}

/* ------------------------------------
  社長ブログ説明
------------------------------------ */
.blog_type {
  line-height: 2.1;
  padding: 30px 0;
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .blog_type {
    padding-top: 50px;
    margin: -60px 0 30px;
    position: relative;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    z-index: 1;
  }
}

.blog_type.show {
  display: block;
}

.blog_type:first-of-type {
  background-color: #FCF9F4;
  border: 1px solid #15195B;
}

.blog_type:nth-of-type(2) {
  background-color: #F4F4EC;
  border: 1px solid #6C6C01;
}

.blog_type:nth-of-type(3) {
  background-color: #F6F2EC;
  border: 1px solid #895603;
}

.blog_type .category_wrap {
  /* PC */
}

@media screen and (min-width: 768px) {
  .blog_type .category_wrap {
    width: calc(100% - 360px);
    margin: 0 auto;
  }
}

.blog_type .category_wrap .category_head {
  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;
  margin-bottom: 10px;
}

.blog_type .category_wrap .category_head .tl_category_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_type .category_wrap .category_head .tl_category_box img {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.blog_type .category_wrap .category_head .tl_category_box .tl_category {
  margin-left: 5px;
  font-weight: bold;
  font-size: 14px;
}

.blog_type .category_wrap .category_head .author {
  padding-right: 10px;
  color: #464646;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  position: relative;
}

.blog_type .category_wrap .category_head .author::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img_cmn/ico_arrow_gray_right.svg) no-repeat center/5px auto;
  width: 5px;
  height: calc(5px * 1.5);
}

.blog_type .category_wrap .txt_category {
  font-size: 1.3rem;
}

.blog_type .category_wrap .category_foot {
  margin-top: 20px;
}

.blog_type .category_wrap .category_foot .category_name {
  display: inline-block;
  padding: 0px 15px;
  color: #FFF;
  font-size: 1.2rem;
  margin-right: 5px;
}

.blog_type .category_wrap .category_foot .category_name.orange {
  background-color: #15195B;
}

.blog_type .category_wrap .category_foot .category_name.green {
  background-color: #6C6C01;
}

.blog_type .category_wrap .category_foot .category_name.brown {
  background-color: #895603;
}

/* ------------------------------------
  ブログ各カード
------------------------------------ */
.card_wrap {
  line-height: 2.1;
  width: 100%;
}

.card_wrap.staffblog_card_wrap {
  /* PC */
}

@media screen and (min-width: 768px) {
  .card_wrap.staffblog_card_wrap {
    width: 1015px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.card_wrap.staffblog_card_wrap .card {
  margin-bottom: 30px;
  /* PC */
}

.card_wrap.staffblog_card_wrap .card:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .card_wrap.staffblog_card_wrap .card {
    width: 31%;
    margin-top: 3.5%;
    margin-right: 3.5%;
    margin-bottom: 0;
  }
  .card_wrap.staffblog_card_wrap .card:nth-child(3n) {
    margin-right: 0;
  }
  .card_wrap.staffblog_card_wrap .card:nth-child(-n+3) {
    margin-top: 0;
  }
}

.card_wrap .card {
  width: 100%;
  background-color: #FFF;
}

.card_wrap .card .card_link {
  border: 1px solid #E2E2E2;
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
  border-radius: 1px;
  width: calc(100% - 30px);
  display: inline-block;
  padding: 15px 15px 20px 15px;
}

.card_wrap .card .card_link .card_img_box {
  position: relative;
  margin-bottom: 15px;
}

.card_wrap .card .card_link .card_img_box .card_img {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.card_wrap .card .card_link .card_img_box .category_name {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 15px;
  color: #FFF;
  font-size: 1.3rem;
}

.card_wrap .card .card_link .card_img_box .category_name.orange {
  background-color: #15195B;
}

.card_wrap .card .card_link .card_img_box .category_name.green {
  background-color: #6C6C01;
}

.card_wrap .card .card_link .card_img_box .category_name.brown {
  background-color: #895603;
}

.card_wrap .card .card_link .card_tl {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: bold;
  height: 21px;
  overflow: hidden;
}

.card_wrap .card .card_link .card_txt {
  font-size: 1.3rem;
  height: calc(2.4rem * 2);
  line-height: 2.4rem;
  overflow: hidden;
}

.card_wrap .card .card_link .card_foot {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.card_wrap .card .card_link .card_foot .blog_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card_wrap .card .card_link .card_foot .blog_category .ico_category {
  border-radius: 50%;
  margin-right: 10px;
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.card_wrap .card .card_link .card_foot .blog_category .card_category .category_tl {
  font-size: 1.2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

.card_wrap .card .card_link .card_foot .blog_category .card_category .txt_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}

.card_wrap .card .card_link .card_foot .blog_category .card_category .txt_date .date {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
}

.card_wrap .card .card_link .card_foot .blog_category .card_category .txt_date .new {
  font-size: 1.0rem;
  color: #F54242;
  margin-left: 8px;
}

.card_wrap .card .card_link .card_foot .readmore {
  padding-right: 12px;
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  position: relative;
}

.card_wrap .card .card_link .card_foot .readmore::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img_cmn/ico_arrow_gray_right.svg) no-repeat center/6px auto;
  width: 6px;
  height: calc(6px * 2.5);
}

/* ------------------------------------
  スタッフブログ 詳細ページ
------------------------------------ */
.cont_blog_detail .cont_edit_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_blog_detail .cont_edit_box {
    width: 730px;
    margin: 0 auto;
  }
}

.box_tl_blog_type {
  height: 90px;
  width: 100%;
  text-align: center;
}

.box_tl_blog_type.green {
  background-color: #F4F4EC;
}

.box_tl_blog_type .ico_storemanager {
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 50%;
  margin: 15px 0 5px;
}

.box_tl_blog_type .tl_blog_type {
  font-weight: bold;
  font-size: 1.5rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.article_header .category_name {
  display: inline-block;
  font-size: 1.3rem;
  padding: 2px 15px;
  margin-top: 5px;
  color: #FFF;
}

.article_header .category_name.orange {
  background-color: #15195B;
}

.article_header .category_name.green {
  background-color: #6C6C01;
}

.article_header .category_name.brown {
  background-color: #895603;
}

/* ------------------------------------
  スタッフブログ 詳細ページ その他おススメ
------------------------------------ */
.newCards_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .newCards_wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #FCF9F4;
    padding: 20px 0;
    margin-top: 20px;
  }
}

.newCards_wrap .newCard {
  margin-top: 20px;
  width: calc(50% - 15px/2);
  margin-right: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .newCards_wrap .newCard {
    background-color: #fff;
    width: 250px;
    margin-top: 0;
    padding: 10px 10px 15px;
  }
}

.newCards_wrap .newCard:nth-child(2n) {
  margin-right: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .newCards_wrap .newCard:nth-child(2n) {
    margin-right: 15px;
  }
}

.newCards_wrap .newCard:last-child {
  /* PC */
}

@media screen and (min-width: 768px) {
  .newCards_wrap .newCard:last-child {
    margin-right: 0;
  }
}

.newCards_wrap .newCard .newCard_link {
  display: inline-block;
  width: 100%;
}

.newCards_wrap .newCard .newCard_link .newCard_img_box {
  width: 100%;
  position: relative;
}

.newCards_wrap .newCard .newCard_link .newCard_img_box &gt; img {
  width: 100%;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .newCards_wrap .newCard .newCard_link .newCard_img_box &gt; img {
    height: 130px;
  }
}

.newCards_wrap .newCard .newCard_link .newCard_img_box .newCategory_name {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0px 8px;
  color: #FFF;
  font-size: 1.1rem;
}

.newCards_wrap .newCard .newCard_link .newCard_img_box .newCategory_name.orange {
  background-color: #15195B;
}

.newCards_wrap .newCard .newCard_link .newCard_img_box .newCategory_name.green {
  background-color: #6C6C01;
}

.newCards_wrap .newCard .newCard_link .newCard_img_box .newCategory_name.brown {
  background-color: #895603;
}

.newCards_wrap .newCard .newCard_link .newCard_tl {
  font-size: 1.2rem;
  margin: 10px 0 0px;
  font-weight: bold;
  height: 42px;
  overflow: hidden;
  /* PC */
}

@media screen and (min-width: 768px) {
  .newCards_wrap .newCard .newCard_link .newCard_tl {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}

.newCards_wrap .newCard .newCard_link .newCard_foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.newCards_wrap .newCard .newCard_link .newCard_foot .txt_date .date {
  font-size: 1.0rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .newCards_wrap .newCard .newCard_link .newCard_foot .txt_date .date {
    font-size: 1.1rem;
  }
}

.newCards_wrap .newCard .newCard_link .newCard_foot .txt_date .new {
  font-size: 1.0rem;
  color: #F54242;
  margin-left: 6px;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .newCards_wrap .newCard .newCard_link .newCard_foot .txt_date .new {
    font-size: 1.1rem;
  }
}

.newCards_wrap .newCard .newCard_link .newCard_foot .readmore {
  font-size: 1.1rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding-right: 7px;
  position: relative;
}

.newCards_wrap .newCard .newCard_link .newCard_foot .readmore::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img_cmn/ico_arrow_gray_right.svg) no-repeat center/3px auto;
  width: 3px;
  height: calc(3px * 2);
}

/* ------------------------------------
  共通
------------------------------------ */
.page_corporate .cont_staff .page_tl_box {
  background-image: url("../img_cont/bg_tl_staff.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_corporate .cont_staff .page_tl_box {
    background-image: url(../img_cont/bg_tl_staff_pc@2x.jpg);
  }
}

/* ------------------------------------
  スタッフ紹介ページ
------------------------------------ */
.staff_main_message {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_main_message {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}

.staff_main_message .main_message {
  position: relative;
}

.staff_main_message .main_message::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  left: -10px;
  background-color: #292929;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.staff_main_message .main_message::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  right: -10px;
  background-color: #292929;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.staff_card {
  margin-bottom: 50px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card {
    margin-bottom: 120px;
  }
}

.staff_card:nth-of-type(2n) .staff_img_box .staff_img {
  margin-left: 30px;
  width: calc(100% - 30px);
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card:nth-of-type(2n) .staff_img_box .staff_img {
    margin-left: calc(100% - 700px);
    width: 700px;
    height: 400px;
  }
}

.staff_card:nth-of-type(2n) .staff_img_box .staff_flag {
  left: 0;
  text-align-last: right;
}

.staff_card:nth-of-type(2n) .staff_img_box .staff_flag::before {
  right: unset;
  left: 100px;
}

.staff_card:nth-of-type(2n) .staff_img_box .staff_flag .staff_flag_content {
  left: unset;
  right: 100px;
}

.staff_card:nth-of-type(2n) .staff_pc_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card:nth-of-type(2n) .staff_pc_flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.staff_card:nth-of-type(2n) .staff_pc_flex .recommended_camp_box .recommended_flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.staff_card:nth-of-type(2n) .staff_pc_flex .recommended_camp_box .recommended_flex .camp_img {
  margin-left: 0;
  margin-right: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card:nth-of-type(2n) .staff_pc_flex .recommended_camp_box .recommended_flex .camp_img {
    margin-right: 30px;
  }
}

.staff_card:nth-of-type(6n + 1) .staff_img_box .staff_flag::before {
  background-image: url(../img_cont/ico_staff_profile_01.svg);
  width: 100px;
  height: 84px;
}

.staff_card:nth-of-type(6n + 2) .staff_img_box .staff_flag::before {
  background-image: url(../img_cont/ico_staff_profile_02.svg);
  width: 100px;
  height: 56px;
}

.staff_card:nth-of-type(6n + 3) .staff_img_box .staff_flag::before {
  background-image: url(../img_cont/ico_staff_profile_03.svg);
  width: 100px;
  height: 96px;
}

.staff_card:nth-of-type(6n + 4) .staff_img_box .staff_flag::before {
  background-image: url(../img_cont/ico_staff_profile_04.svg);
  width: 59px;
  height: 105px;
}

.staff_card:nth-of-type(6n + 5) .staff_img_box .staff_flag::before {
  background-image: url(../img_cont/ico_staff_profile_05.svg);
  width: 100px;
  height: 91px;
}

.staff_card:nth-of-type(6n + 6) .staff_img_box .staff_flag::before {
  background-image: url(../img_cont/ico_staff_profile_06.svg);
  width: 91.5px;
  height: 100px;
}

.staff_card .staff_img_box {
  position: relative;
  margin-bottom: 50px;
}

.staff_card .staff_img_box .staff_img {
  width: calc(100% - 30px);
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_img_box .staff_img {
    width: 700px;
    height: 400px;
  }
}

.staff_card .staff_img_box .staff_flag {
  background-color: rgba(240, 131, 0, 0.8);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  width: 60%;
  position: absolute;
  bottom: -30px;
  right: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_img_box .staff_flag {
    width: 500px;
    height: 280px;
    padding: 0;
    bottom: -50px;
  }
  .staff_card .staff_img_box .staff_flag::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    top: 50%;
    right: 100px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.staff_card .staff_img_box .staff_flag .staff_flag_content {
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_img_box .staff_flag .staff_flag_content {
    position: absolute;
    top: 50%;
    left: 100px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.staff_card .staff_img_box .staff_flag .staff_flag_content .staff_name {
  color: #FFF;
  font-size: 1.6rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_img_box .staff_flag .staff_flag_content .staff_name {
    font-size: 2.0rem;
  }
}

.staff_card .staff_img_box .staff_flag .staff_flag_content .staff_kana {
  color: #FFF;
  font-size: 1.0rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_img_box .staff_flag .staff_flag_content .staff_kana {
    font-size: 1.3rem;
  }
}

.staff_card .staff_img_box .staff_flag .staff_flag_content .staff_position {
  background-color: #fff;
  color: #15195B;
  display: inline-block;
  margin-top: 10px;
  padding: 3px 15px;
  font-size: 1.2rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_img_box .staff_flag .staff_flag_content .staff_position {
    font-size: 1.3rem;
  }
}

.staff_card .staff_pc_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_pc_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.staff_card .staff_pc_flex .staff_flex_inner {
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_pc_flex .staff_flex_inner {
    width: 500px;
    padding: 0;
    min-width: unset;
    margin: 0 50px;
  }
}

.staff_card .staff_pc_flex .staff_tl {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_pc_flex .staff_tl {
    font-size: 2.2rem;
  }
}

.staff_card .staff_pc_flex .staff_txt {
  font-size: 1.4rem;
  line-height: 2;
}

.staff_card .staff_pc_flex .recommended_camp_box {
  margin-top: 15px;
  background-color: #FCF9F4;
  padding: 20px 0;
  border-bottom: 1px solid #15195B;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_pc_flex .recommended_camp_box {
    width: 500px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-top: 50px;
    padding: 30px 30px 25px;
    border: 1px solid #15195B;
  }
  .staff_card .staff_pc_flex .recommended_camp_box .camp_box_inner {
    width: 100%;
  }
}

.staff_card .staff_pc_flex .recommended_camp_box .recommended_flex {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_pc_flex .recommended_camp_box .recommended_flex {
    margin-top: 0;
  }
}

.staff_card .staff_pc_flex .recommended_camp_box .recommended_flex .recommended_txt_box .recommended_tl {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_pc_flex .recommended_camp_box .recommended_flex .recommended_txt_box .recommended_tl {
    font-size: 1.8rem;
  }
}

.staff_card .staff_pc_flex .recommended_camp_box .recommended_flex .recommended_txt_box .recommended_txt {
  font-size: 1.2rem;
  line-height: 2.0rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_pc_flex .recommended_camp_box .recommended_flex .recommended_txt_box .recommended_txt {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}

.staff_card .staff_pc_flex .recommended_camp_box .recommended_flex .camp_img {
  width: 120px;
  height: 120px;
  margin-top: calc(13px + 20px);
  margin-left: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .staff_card .staff_pc_flex .recommended_camp_box .recommended_flex .camp_img {
    margin-top: 0;
    margin-left: 30px;
  }
}

.staffblog_bnr_inner {
  /* PC */
}

@media screen and (min-width: 768px) {
  .staffblog_bnr_inner {
    width: 670px;
    min-width: unset;
  }
}

.staffblog_bnr_inner .wrap_staffblog_bnr {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}

.staffblog_bnr_inner .wrap_staffblog_bnr .img_bnr_blog {
  width: 100%;
}

/*=================================================
 * &lt;全共通&gt;全ページ共通 商品モジュール
 * ================================================ */
/* ------------------------------------
 /* &lt;全共通&gt; jsスライダーswiperの設定
 ------------------------------------ */
/* &lt;全共通&gt; swiper1（商品詳細情報）
 ------------------------------------ */
.swiper-container.swiper_detail {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  /* ナビゲーションボタン（矢印）　js：swiperの設定上書き */
  /* ページネーション　js：swiperの設定上書き */
}

.swiper-container.swiper_detail img {
  width: 100%;
  height: 95vw;
  max-height: 678px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  display: block;
  /* PC */
}

@media screen and (min-width: 768px) {
  .swiper-container.swiper_detail img {
    height: 500px;
  }
}

.swiper-container.swiper_detail .swiper-button-next,
.swiper-container.swiper_detail .swiper-button-prev {
  color: #9E9E9E;
}

.swiper-container.swiper_detail .swiper-button-next:after,
.swiper-container.swiper_detail .swiper-button-prev:after {
  font-size: 25px;
}

.swiper-container.swiper_detail .swiper-pagination-bullet {
  background-color: #9E9E9E;
  opacity: 0.9;
}

.swiper-container.swiper_detail .swiper-pagination-bullet-active {
  background: #FFF;
  opacity: 0.9;
}

/* &lt;全共通&gt; swiper2（商品リスト）
 ------------------------------------ */
.swiper_recommend_wrap {
  width: 1000px;
  overflow: hidden;
  margin-bottom: 50px !important;
  /* PC */
}

@media screen and (min-width: 768px) {
  .swiper_recommend_wrap {
    width: 1000px;
    padding: 0 50px;
    margin-bottom: 60px !important;
  }
}

.swiper_recommend_wrap .swiper-container.swiper_recommend {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: visible;
  /* ナビゲーションボタン（矢印）　js：swiperの設定上書き */
}

.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  border: 1px solid #E2E2E2;
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
  border-radius: 1px;
  margin-bottom: 5px;
  position: relative;
}

.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-slide .btn_product_card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}

.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-next,
.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-prev {
  color: #15195B;
  background-color: #FCF9F4;
  border-radius: 1px;
  padding: 5px;
}

.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-next:after,
.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-prev:after {
  font-size: 25px;
  font-weight: bold;
}

.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-next.swiper-button-disabled,
.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-prev.swiper-button-disabled {
  color: #9E9E9E;
}

.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-next.swiper-button-disabled:after,
.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-prev.swiper-button-disabled:after {
  font-weight: normal;
}

.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-next {
  right: -50px;
}

.swiper_recommend_wrap .swiper-container.swiper_recommend .swiper-button-prev {
  left: -50px;
}

/* &lt;全共通&gt; swiper3（セット商品リスト）
 ------------------------------------ */
.swiper_set_wrap {
  width: 1000px;
  overflow: hidden;
  margin-bottom: 60px !important;
  /* PC */
}

@media screen and (min-width: 768px) {
  .swiper_set_wrap {
    padding: 0 50px;
  }
}

.swiper_set_wrap .swiper-container.swiper_set {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: visible;
  /* ナビゲーションボタン（矢印）　js：swiperの設定上書き */
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 300px;
  height: auto;
  border: 1px solid #E2E2E2;
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
  border-radius: 1px;
  margin-bottom: 5px;
  position: relative;
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-slide .btn_product_card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  position: relative;
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-slide .btn_product_card:hover {
  opacity: 1;
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-button-next,
.swiper_set_wrap .swiper-container.swiper_set .swiper-button-prev {
  color: #15195B;
  background-color: #FCF9F4;
  border-radius: 1px;
  padding: 5px;
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-button-next:after,
.swiper_set_wrap .swiper-container.swiper_set .swiper-button-prev:after {
  font-size: 25px;
  font-weight: bold;
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-button-next.swiper-button-disabled,
.swiper_set_wrap .swiper-container.swiper_set .swiper-button-prev.swiper-button-disabled {
  color: #9E9E9E;
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-button-next.swiper-button-disabled:after,
.swiper_set_wrap .swiper-container.swiper_set .swiper-button-prev.swiper-button-disabled:after {
  font-weight: normal;
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-button-next {
  right: -50px;
}

.swiper_set_wrap .swiper-container.swiper_set .swiper-button-prev {
  left: -50px;
}

/* ------------------------------------
 /* &lt;全共通&gt; キーワード検索
 ------------------------------------ */
.search_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #E2E2E2;
  -webkit-box-shadow: 1px 1px 1px #DEDEDE;
          box-shadow: 1px 1px 1px #DEDEDE;
  border-radius: 1px;
  padding: 2px;
  background-color: #FFF;
  /* PC */
}

@media screen and (min-width: 768px) {
  .search_box {
    width: 600px;
    margin: 0 auto;
  }
}

.search_box .input_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.search_box .input_box input[type="text"] {
  width: 100%;
  outline: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.3rem;
  padding: 11px 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .search_box .input_box input[type="text"] {
    font-size: 1.5rem;
    padding: 12px 15px;
  }
}

.search_box .btn_box {
  width: 54px;
  margin: 0;
  background-color: #15195B;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
}

.search_box .btn_box .btn_search {
  display: block;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  text-align: center;
}

.search_box .btn_box .btn_search img {
  width: 18px;
  height: 18px;
}

/* ------------------------------------
/* &lt;全共通（SP用）&gt; カテゴリ一覧検索
------------------------------------ */
.search_category_box_wrap {
  border-bottom: solid 2px #E2E2E2;
}

.search_category_box {
  margin-top: 30px;
  /* タイトル
  --------------- */
  /* &lt;全共通&gt; 商品一覧切替タブ
  --------------- */
  /* &lt;全共通（SP用）&gt; 切替タブによる表示制御（js使用）
  --------------- */
  /* &lt;全共通（SP用）&gt; 切替タブのカテゴリ一覧
  --------------- */
  /* &lt;全共通（SP用）&gt; 切替タブのブランド一覧
  --------------- */
}

.search_category_box .tl_box {
  position: relative;
  margin: 0 0 30px;
  padding: 30px 0 30px;
}

.search_category_box .tl_default {
  color: #FFF;
  text-align: center;
}

.search_category_box .tl_default .tl_txt {
  position: relative;
  font-size: 2.0rem;
  padding-left: 20px;
}

.search_category_box .tl_default .tl_txt::before {
  display: block;
  content: '';
  width: 26px;
  height: 26px;
  background-image: url("../img_cmn/ico_search.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -1px;
  left: -15px;
}

.search_category_box .tl_default .tl_txt::after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #FFF;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  margin-left: -12px;
}

.search_category_box .box_list_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #15195B;
  margin-top: 15px;
}

.search_category_box .box_list_type .btn_list_type,
.search_category_box .box_list_type .btn_list_type_menu {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0 2px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  background-color: #FFF;
  text-align: center;
}

.search_category_box .box_list_type .btn_list_type.active,
.search_category_box .box_list_type .btn_list_type_menu.active {
  background-color: #fbfbfb;
  font-weight: bold;
}

.search_category_box .list_type,
.search_category_box .list_type_menu {
  display: none;
}

.search_category_box .list_type.show,
.search_category_box .list_type_menu.show {
  display: block !important;
}

.search_category_box .category_list_box .category_list &gt; li {
  border-bottom: solid 1px #E2E2E2;
}

.search_category_box .category_list_box .category_list &gt; li:last-child {
  border-bottom: none;
}

.search_category_box .category_list_box .category_list &gt; li .large_category_box .txt_category {
  padding: 10px 0;
}

.search_category_box .category_list_box .category_list &gt; li .large_category_box .txt_category .ico_category img {
  width: 32px;
  height: 32px;
}

.search_category_box .category_list_box .category_list &gt; li .large_category_box .txt_category .txt_category_name {
  font-size: 1.6rem;
  margin-left: 10px;
}

.search_category_box .category_list_box .category_list &gt; li .small_category_box .small_category_list &gt; li {
  border-top: solid 1px #E2E2E2;
  background-color: #FCF9F4;
}

.search_category_box .category_list_box .category_list &gt; li .small_category_box .small_category_list &gt; li .small_category .txt_category {
  display: block;
  padding: 13px 25px 13px 20px;
  font-size: 1.4rem;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
}

.search_category_box .category_list_box .category_list &gt; li .label_open_close {
  position: relative;
  cursor: pointer;
}

.search_category_box .category_list_box .category_list &gt; li .label_open_close.label_open::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  content: "";
  background: url("../img_cmn/ico_minus.svg") no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  right: 0;
  top: 50%;
}

.search_category_box .category_list_box .category_list &gt; li .label_open_close.label_close::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  position: absolute;
  content: "";
  background: url("../img_cmn/ico_plus.svg") no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  right: 0;
  top: 50%;
}

.search_category_box .brand_list_box .brand_list &gt; li {
  border-bottom: solid 1px #E2E2E2;
}

.search_category_box .brand_list_box .brand_list &gt; li:last-child {
  border-bottom: none;
}

.search_category_box .brand_list_box .brand_list &gt; li .brand {
  display: block;
  padding: 8px 10px;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
}

.search_category_box .brand_list_box .brand_list &gt; li .brand .txt_brand .brand_name_kana {
  font-size: 1.5rem;
}

.search_category_box .brand_list_box .brand_list &gt; li .brand .txt_brand .brand_name {
  font-size: 1.0rem;
  line-height: 1.0rem;
}

/* ------------------------------------
/* &lt;全共通（PC用）&gt; カテゴリ一覧検索
------------------------------------ */
.search_category_box_wrap_pc {
  padding: 10px 0 30px;
}

.search_category_box_pc {
  margin-top: 50px;
  /* &lt;全共通（PC用）&gt; 商品一覧切替タブ
  --------------- */
  /* &lt;全共通（PC用）&gt; 切替タブによる表示制御（js使用）
  --------------- */
  /* &lt;全共通（PC用）&gt; 切替タブのカテゴリ一覧
  --------------- */
  /* &lt;全共通（PC用）&gt; 切替タブのブランド一覧
  --------------- */
}

.search_category_box_pc .tl_default {
  color: #FFF;
}

.search_category_box_pc .tl_default .tl_txt {
  position: relative;
}

.search_category_box_pc .tl_default .tl_txt::before {
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url("../img_cmn/ico_search.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -0px;
  left: -45px;
}

.search_category_box_pc .tl_default .tl_txt::after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 26px solid #FFF;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  margin-left: -26px;
}

.search_category_box_pc .box_list_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #15195B;
  margin-top: 65px;
}

.search_category_box_pc .box_list_type .btn_list_type_pc {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0 12px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  background-color: #FFF;
  text-align: center;
}

.search_category_box_pc .box_list_type .btn_list_type_pc.active {
  background-color: #fbfbfb;
  font-weight: bold;
}

.search_category_box_pc .list_type_pc {
  display: none;
}

.search_category_box_pc .list_type_pc.show {
  display: block !important;
}

.search_category_box_pc .category_list_box {
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
  background-color: #FFF;
}

.search_category_box_pc .category_list_box .category_list_box_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list {
  width: 550px;
  margin-right: 40px;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list li {
  width: 110px;
  height: 110px;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list li .btn_category {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  text-align: center;
  position: relative;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list li .btn_category::after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  background-image: url("../img_cmn/ico_cross_gray.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list li .btn_category:hover {
  background-color: #FCF9F4;
  opacity: 1;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list li .btn_category:hover::after {
  background-image: url("../img_cmn/ico_cross_orange.svg");
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list li .btn_category .ico_category {
  display: block;
  padding-bottom: 8px;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list li .btn_category .ico_category img {
  width: 54px;
  height: 54px;
}

.search_category_box_pc .category_list_box .category_list_box_inner .category_btn_list .category_list li .btn_category .txt_category_name {
  display: block;
  font-size: 1.1rem;
}

.search_category_box_pc .category_list_box .category_list_box_inner .product_btn_list {
  width: 255px;
  margin-left: 40px;
}

.search_category_box_pc .category_list_box .category_list_box_inner .product_btn_list .btn_box a {
  width: 100%;
}

.search_category_box_pc .brand_list_box {
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
  background-color: #FFF;
}

.search_category_box_pc .brand_list_box .brand_list {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 50px 50px;
}

.search_category_box_pc .brand_list_box .brand_list &gt; li {
  width: 30%;
  border-bottom: solid 1px #E2E2E2;
}

.search_category_box_pc .brand_list_box .brand_list &gt; li .btn_gary_color {
  width: 100%;
}

.search_category_box_pc .brand_list_box .brand_list &gt; li .brand {
  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: 20px 10px 8px;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
}

.search_category_box_pc .brand_list_box .brand_list &gt; li .brand .img_brand_logo {
  width: 48px;
}

.search_category_box_pc .brand_list_box .brand_list &gt; li .brand .img_brand_logo img {
  width: 28px;
  height: 28px;
}

.search_category_box_pc .brand_list_box .brand_list &gt; li .brand .txt_brand {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.search_category_box_pc .brand_list_box .brand_list &gt; li .brand .txt_brand .brand_name_kana {
  font-size: 1.4rem;
}

.search_category_box_pc .brand_list_box .brand_list &gt; li .brand .txt_brand .brand_name {
  font-size: 1.0rem;
  line-height: 1.0rem;
}

/* ------------------------------------
/* &lt;全共通&gt; 商品リスト
 ------------------------------------ */
.product_list_box {
  margin-bottom: 60px;
  /* &lt;全共通&gt; 商品リスト
  --------------- */
  /* &lt;全共通&gt; 商品カード
  --------------- */
}

.product_list_box .product_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box .product_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.product_list_box .product_list &gt; li {
  background-color: #FFF;
  width: 48%;
  border: 1px solid #E2E2E2;
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
  border-radius: 1px;
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box .product_list &gt; li {
    width: 200px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .product_list_box .product_list &gt; li:nth-child(5n) {
    margin-right: 0;
  }
}

.product_list_box .product_list a {
  display: block;
  height: 100%;
}

.product_list_box .product_card_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
  position: relative;
}

.product_list_box .product_card_box .product_img_box {
  position: relative;
}

.product_list_box .product_card_box .product_img_box img {
  position: relative;
  display: block;
  width: 100%;
  height: 42vw;
  max-height: 306px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box .product_card_box .product_img_box img {
    height: 200px;
  }
}

.product_list_box .product_card_box .product_img_box .flag_box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding-top: 2px;
  padding-left: 2px;
}

.product_list_box .product_card_box .product_img_box .flag_box .flag_new {
  color: #FFF;
  font-size: 0.9rem;
  font-weight: bolder;
  line-height: 0.9rem;
  padding: 2px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F54242;
  border: solid 1px #FFF;
  margin-left: 3px;
}

.product_list_box .product_card_box .product_img_box .flag_box .flag_little {
  color: #F54242;
  font-size: 0.9rem;
  font-weight: bolder;
  line-height: 0.9rem;
  padding: 2px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFF;
  border: solid 1px #F54242;
  border-radius: 50px;
  margin-left: 5px;
}

.product_list_box .product_card_box .product_img_box .product_category_box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.product_list_box .product_card_box .product_img_box .product_category_box .txt_category {
  color: #0a0a0a;
  font-size: 1.0rem;
  line-height: 1.0rem;
  font-weight: bolder;
  padding: 7px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.8);
}

.product_list_box .product_card_box .product_name_box {
  padding: 12px 12px 0px;
}

.product_list_box .product_card_box .product_name_box .product_name {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #464646;
}

.product_list_box .product_card_box .product_name_box .product_price {
  width: calc(100% - 20px);
  position: absolute;
  left: 10px;
  bottom: 5px;
}

.product_list_box .product_card_box .product_name_box .product_price .txt_price {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  padding-left: 13px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box .product_card_box .product_name_box .product_price .txt_price {
    font-size: 1.5rem;
  }
}

.product_list_box .product_card_box .product_name_box .product_price .txt_price::before {
  display: block;
  content: '';
  width: 8px;
  height: 10px;
  background-image: url("../img_cmn/img_en_mark.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box .product_card_box .product_name_box .product_price .txt_price::before {
    top: 52%;
  }
}

.product_list_box .product_card_box .product_name_box .product_price .ico_favorite {
  text-align: right;
}

.product_list_box .product_card_box .product_name_box .product_price .ico_favorite img {
  width: 13px;
  height: 12px;
}

.product_list_box .product_card_box .gray_cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 60, 0.4);
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}

.product_list_box .product_card_box .gray_cover .txt_gray_cover {
  color: #FFF;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bolder;
}

.product_list_box .btn_favorite {
  display: inline-block;
  text-align: right;
  position: absolute;
  bottom: 2px;
  right: 12px;
  line-height: 13px;
  padding: 10px;
  border-radius: 50%;
}

.product_list_box .btn_favorite img {
  width: 13px;
  height: 12px;
}

.product_list_box .btn_favorite:hover {
  background-color: #FFF3F3;
  opacity: 1;
}

.product_list_box .btn_favorite.active:hover {
  background-color: #E2E2E2;
  opacity: 1;
}

/* ------------------------------------
/* &lt;全共通&gt; 商品リスト (横配置ボタン付き)
 ------------------------------------ */
.product_list_box_02 {
  margin-bottom: 30px;
  /* &lt;全共通&gt; 商品リスト (横配置ボタン付き)
  --------------- */
  /* &lt;全共通&gt; 商品カード (横配置ボタン付き)
  --------------- */
}

.product_list_box_02 .product_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box_02 .product_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.product_list_box_02 .product_list &gt; li {
  background-color: #FFF;
  width: 80%;
  border: 1px solid #E2E2E2;
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
  border-radius: 1px;
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box_02 .product_list &gt; li {
    width: 300px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .product_list_box_02 .product_list &gt; li:nth-child(3n) {
    margin-right: 0;
  }
}

.product_list_box_02 .product_list a {
  display: block;
  height: 100%;
}

.product_list_box_02 .product_card_box {
  position: relative;
  width: 100%;
  height: 100%;
}

.product_list_box_02 .product_card_box .detail_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product_list_box_02 .product_card_box .product_img_box {
  width: 110px;
  position: relative;
}

.product_list_box_02 .product_card_box .product_img_box img {
  position: relative;
  display: block;
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box_02 .product_card_box .product_img_box img {
    height: 110px;
  }
}

.product_list_box_02 .product_card_box .product_name_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 17px 30px;
}

.product_list_box_02 .product_card_box .product_name_box .product_name {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #464646;
}

.product_list_box_02 .product_card_box .product_name_box .product_price {
  width: calc(100% - 144px);
  position: absolute;
  left: 127px;
  bottom: 0px;
}

.product_list_box_02 .product_card_box .product_name_box .product_price .txt_price {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  padding-left: 13px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box_02 .product_card_box .product_name_box .product_price .txt_price {
    font-size: 1.5rem;
  }
}

.product_list_box_02 .product_card_box .product_name_box .product_price .txt_price::before {
  display: block;
  content: '';
  width: 8px;
  height: 10px;
  background-image: url("../img_cmn/img_en_mark.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .product_list_box_02 .product_card_box .product_name_box .product_price .txt_price::before {
    top: 52%;
  }
}

.product_list_box_02 .gray_cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 60, 0.4);
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}

.product_list_box_02 .gray_cover .txt_gray_cover {
  color: #FFF;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bolder;
}

.product_list_box_02 .btn_favorite {
  display: inline-block;
  text-align: right;
  position: absolute;
  bottom: 57px;
  right: 17px;
  line-height: 13px;
  padding: 10px;
  border-radius: 50%;
}

.product_list_box_02 .btn_favorite img {
  width: 13px;
  height: 12px;
}

.product_list_box_02 .btn_favorite:hover {
  background-color: #FFF3F3;
  opacity: 1;
}

.product_list_box_02 .btn_favorite.active:hover {
  background-color: #E2E2E2;
  opacity: 1;
}

.product_list_box_02 .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 30px);
  margin: 0;
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.product_list_box_02 .btn_box .btn_detail {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 95px !important;
  height: 30px;
  line-height: 30px;
  background-image: none;
  margin: 0 15px 0 0;
}

.product_list_box_02 .btn_box .btn_cart {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 30px;
  line-height: 30px;
  margin: 0;
}

/*=================================================
 * &lt;共通&gt; 商品関連ページ共通 モジュール
 * ================================================ */
/* ------------------------------------
/* &lt;共通&gt; 商品一覧
 ------------------------------------ */
.cont_product {
  /* &lt;共通&gt; 商品ソート
   --------------- */
  /* &lt;共通&gt; 検索パス
   --------------- */
}

.cont_product .product_sort_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.cont_product .product_sort_select .tl_product_sort_box {
  width: 75px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.cont_product .product_sort_select .product_sort_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 34px;
}

.cont_product .product_sort_select .product_sort_detail .label_item {
  position: relative;
}

.cont_product .product_sort_select .product_sort_detail .label_item::after {
  display: block;
  content: '';
  width: 7px;
  height: 14px;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  pointer-events: none;
}

.cont_product .product_sort_select .product_sort_detail .select_item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  position: relative;
  padding: 5px 30px 5px 8px;
  outline: none;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: -10px;
}

.cont_product .search_result .product_path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.cont_product .search_result .product_path li {
  position: relative;
  padding: 0 5px 0 20px;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2px;
}

.cont_product .search_result .product_path li a {
  text-decoration: underline;
}

.cont_product .search_result .product_path li a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cont_product .search_result .product_path li::before {
  display: inline-block;
  content: '＞';
  font-size: 1.4rem;
  position: absolute;
  top: 4px;
  left: 0;
  color: #292929;
}

.cont_product .search_result .product_path li:first-child {
  text-indent: -1.2em;
}

.cont_product .search_result .product_path li:first-child::before {
  display: none;
}

/*=================================================
 * 「商品検索（商品一覧）」ページ
 * ================================================ */
.cont_product_search {
  /* ------------------------------------
  /* &lt;商品検索&gt; ボタン検索
  ------------------------------------ */
  /* ------------------------------------
  /* &lt;商品検索&gt; 検索結果
  ------------------------------------ */
}

.cont_product_search .tl_default {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_search .tl_default {
    font-size: 2.0rem;
    text-align: center;
    margin: 0 0 20px;
  }
}

.cont_product_search .search_btn_box {
  margin-top: 30px;
}

.cont_product_search .search_result_box {
  margin-top: 60px;
  /* &lt;商品検索&gt; タイトル（検索結果）
    --------------- */
}

.cont_product_search .search_result_box .tl_search {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 2.0rem;
  font-weight: bold;
  color: #0a0a0a;
  padding: 25px 0;
  background-color: #fbfbfb;
  border-top: solid 2px #15195B;
  text-align: center;
  margin-bottom: 20px;
}

/*=================================================
 * 「商品詳細」ページ
 * ================================================ */
.cont_product_detail {
  /* ------------------------------------
  /* &lt;商品詳細&gt; ２カラムwrap
  ------------------------------------ */
  /* ------------------------------------
  /* &lt;商品詳細&gt; aside
  ------------------------------------ */
  /* ------------------------------------
  /* &lt;商品詳細&gt; main
  ------------------------------------ */
  /* ------------------------------------
  /* &lt;商品詳細&gt; 商品情報（購入情報入力）
  ------------------------------------ */
  /* ------------------------------------
  /* &lt;商品詳細&gt; 商品購入に関する注意書き
  ------------------------------------ */
  /* ------------------------------------
  /* &lt;商品詳細&gt; 商品詳細情報
  ------------------------------------ */
  /* &lt;商品詳細&gt; アコーディオンリスト
  --------------- */
  /* ------------------------------------
  /* &lt;商品詳細&gt; 商品紹介ブログ（スタッフおすすめポイント）
  ------------------------------------ */
  /* ------------------------------------
  /* &lt;商品詳細&gt; ピックアップ動画
  ------------------------------------ */
  /* ------------------------------------
  /* &lt;商品詳細&gt; 商品レコメンドエリア
  ------------------------------------ */
}

.cont_product_detail .product_detail_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_detail_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1100px;
    margin: 0 auto;
  }
}

.cont_product_detail aside {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside {
    width: 200px;
    margin-right: 70px;
  }
  .cont_product_detail aside .search_category_box_wrap {
    border-bottom: solid 2px #E2E2E2;
  }
  .cont_product_detail aside .search_category_box {
    margin-top: 30px;
    /* PC */
    /* &lt;商品詳細&gt; 商品リスト切替タブ
        --------------- */
    /* &lt;商品詳細&gt; 切替タブによる表示制御（js使用）
        --------------- */
    /* &lt;商品詳細&gt; 切替タブのカテゴリ一覧
        --------------- */
    /* &lt;商品詳細&gt; 切替タブのブランド一覧
        --------------- */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_product_detail aside .search_category_box {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .box_list_type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: solid 1px #15195B;
    margin-top: 15px;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .box_list_type {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .box_list_type .btn_list_type,
  .cont_product_detail aside .search_category_box .box_list_type .btn_list_type_menu {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5px 0 2px;
    font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    background-color: #FFF;
    text-align: center;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .box_list_type .btn_list_type,
  .cont_product_detail aside .search_category_box .box_list_type .btn_list_type_menu {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .box_list_type .btn_list_type.active,
  .cont_product_detail aside .search_category_box .box_list_type .btn_list_type_menu.active {
    background-color: #fbfbfb;
    font-weight: bold;
  }
  .cont_product_detail aside .search_category_box .list_type,
  .cont_product_detail aside .search_category_box .list_type_menu {
    display: none;
  }
  .cont_product_detail aside .search_category_box .list_type.show,
  .cont_product_detail aside .search_category_box .list_type_menu.show {
    display: block !important;
  }
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li {
    border-bottom: solid 1px #E2E2E2;
  }
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li:last-child {
    border-bottom: none;
  }
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .large_category_box .txt_category {
    padding: 10px 0;
  }
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .large_category_box .txt_category .ico_category img {
    width: 32px;
    height: 32px;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .large_category_box .txt_category .ico_category img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .large_category_box .txt_category .txt_category_name {
    font-size: 1.6rem;
    margin-left: 10px;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .large_category_box .txt_category .txt_category_name {
    font-size: 1.3rem;
    line-height: 30px;
  }
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .small_category_box .small_category_list &gt; li {
    border-top: solid 1px #E2E2E2;
    background-color: #FCF9F4;
  }
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .small_category_box .small_category_list &gt; li.category_active {
    background-color: #fbfbfb;
    border-bottom: 1px solid #0a0a0a;
  }
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .small_category_box .small_category_list &gt; li .small_category .txt_category {
    display: block;
    padding: 13px 25px 13px 20px;
    font-size: 1.4rem;
    background-image: url("../img_cmn/ico_arrow_gray_right.svg");
    background-repeat: no-repeat;
    background-size: 7px;
    background-position: top 49% right 10px;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .small_category_box .small_category_list &gt; li .small_category .txt_category {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .label_open_close {
    position: relative;
    cursor: pointer;
  }
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .label_open_close.label_open::after {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    position: absolute;
    content: "";
    background: url("../img_cmn/ico_minus.svg") no-repeat;
    background-size: 32px auto;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    right: 0;
    top: 50%;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .label_open_close.label_open::after {
    width: 30px;
    width: 30px;
    margin-top: -15px;
  }
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .label_open_close.label_close::after {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    position: absolute;
    content: "";
    background: url("../img_cmn/ico_plus.svg") no-repeat;
    background-size: 32px auto;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    right: 0;
    top: 50%;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .category_list_box .category_list &gt; li .label_open_close.label_close::after {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}

@media screen and (min-width: 768px) {
  .cont_product_detail aside .search_category_box .brand_list_box .brand_list &gt; li {
    border-bottom: solid 1px #E2E2E2;
  }
  .cont_product_detail aside .search_category_box .brand_list_box .brand_list &gt; li.brand_active {
    background-color: #fbfbfb;
    border-bottom: 1px solid #0a0a0a;
  }
  .cont_product_detail aside .search_category_box .brand_list_box .brand_list &gt; li:last-child {
    border-bottom: none;
  }
  .cont_product_detail aside .search_category_box .brand_list_box .brand_list &gt; li .brand {
    display: block;
    padding: 8px 10px;
    background-image: url("../img_cmn/ico_arrow_gray_right.svg");
    background-repeat: no-repeat;
    background-size: 7px;
    background-position: top 49% right 10px;
  }
  .cont_product_detail aside .search_category_box .brand_list_box .brand_list &gt; li .brand .txt_brand .brand_name_kana {
    font-size: 1.5rem;
  }
  .cont_product_detail aside .search_category_box .brand_list_box .brand_list &gt; li .brand .txt_brand .brand_name {
    font-size: 1.0rem;
    line-height: 1.0rem;
  }
  .cont_product_detail aside .search_btn_box .btn_box .btn_gary_color {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cont_product_detail aside .search_btn_box .btn_box .btn_gary_color .btn_txt {
    font-size: 1.3rem;
  }
}

.cont_product_detail .main {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .main {
    width: 830px;
  }
}

.cont_product_detail .main .flex_product_detail_box {
  /* PC */
  /* ------------------------------------
      /* &lt;商品詳細&gt; 商品画像
      ------------------------------------ */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .main .flex_product_detail_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.cont_product_detail .main .flex_product_detail_box .product_img_box {
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .main .flex_product_detail_box .product_img_box {
    width: 500px;
    height: 500px;
    margin-right: 50px;
  }
}

.cont_product_detail .main .flex_product_detail_box .product_img_box .flag_box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding-top: 10px;
  padding-left: 5px;
}

.cont_product_detail .main .flex_product_detail_box .product_img_box .flag_box .flag_new {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bolder;
  line-height: 1.2rem;
  padding: 2px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F54242;
  border: solid 1px #FFF;
  margin-left: 5px;
}

.cont_product_detail .main .flex_product_detail_box .product_img_box .flag_box .flag_little {
  color: #F54242;
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 2px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFF;
  border: solid 1px #F54242;
  border-radius: 50px;
  margin-left: 5px;
}

.cont_product_detail .main .flex_product_detail_box .product_img_box .product_category_box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.cont_product_detail .main .flex_product_detail_box .product_img_box .product_category_box .txt_category {
  color: #0a0a0a;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: bolder;
  padding: 6px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.8);
}

.cont_product_detail .product_info_box {
  /* PC */
  /* PC時3カラム表示（下部表示） */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_box {
    width: 280px;
  }
}

.cont_product_detail .product_info_box.three_column {
  width: 100%;
  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;
  margin: 60px 0 50px;
  position: relative;
}

.cont_product_detail .product_info_box.three_column .img_box {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_box.three_column .img_box {
    width: 200px;
    height: 200px;
    position: relative;
  }
}

.cont_product_detail .product_info_box.three_column .img_box &gt; img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.cont_product_detail .product_info_box.three_column .product_select_box {
  width: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_box.three_column .product_select_box {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 34%;
  }
}

.cont_product_detail .product_info_box.three_column .product_select_box .product_price_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_box.three_column .product_select_box .product_price_box {
    padding: 0px 0 10px;
  }
}

.cont_product_detail .product_info_box.three_column .product_btn_box {
  width: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_box.three_column .product_btn_box {
    width: 34%;
  }
}

.cont_product_detail .product_info_box .product_price_box {
  padding: 0px 0 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_box .product_price_box {
    padding: 20px 0 10px;
  }
}

.cont_product_detail .product_info_box .product_price_box .product_name {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 70px;
  display: block;
  padding-left: 80px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_box .product_price_box .product_name {
    min-height: inherit;
    padding-left: 0px;
    font-size: 2.0rem;
  }
}

.cont_product_detail .product_info_box .product_price_box .product_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.cont_product_detail .product_info_box .product_price_box .product_price .txt_price {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.cont_product_detail .product_info_box .product_price_box .product_price .txt_price .txt_tax {
  font-size: 1.3rem;
  color: #464646;
}

.cont_product_detail .product_info_box .product_price_box .product_price .txt_price::before {
  display: block;
  content: '';
  width: 10px;
  height: 13px;
  background-image: url("../img_cmn/img_en_mark.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
}

.cont_product_detail .product_info_box .product_price_box .product_price .ico_favorite {
  width: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #ACACAC;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.cont_product_detail .product_info_box .product_price_box .product_price .ico_favorite.active {
  border: solid 1px #F54242;
}

.cont_product_detail .product_info_box .product_price_box .product_delivery {
  margin: 0 0 10px;
}

.cont_product_detail .product_info_box .product_price_box .product_delivery .txt_link_min_right {
  margin: 0;
}

.cont_product_detail .product_info_box .product_price_box .product_note {
  font-size: 1.3rem;
  color: #464646;
  margin: 0 0 10px;
}

.cont_product_detail .product_info_box .product_select_box .product_type_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

.cont_product_detail .product_info_box .product_select_box .product_type_select .tl_product_type_box {
  width: 75px;
}

.cont_product_detail .product_info_box .product_select_box .product_type_select .tl_product_type_box .tl_type {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_box .product_select_box .product_type_select .tl_product_type_box .tl_type {
    font-size: 1.6rem;
  }
}

.cont_product_detail .product_info_box .product_select_box .product_type_select .product_type_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 40px;
}

.cont_product_detail .product_info_box .product_select_box .product_type_select .product_type_detail .label_item {
  position: relative;
}

.cont_product_detail .product_info_box .product_select_box .product_type_select .product_type_detail .label_item::after {
  display: block;
  content: '';
  width: 7px;
  height: 14px;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  pointer-events: none;
}

.cont_product_detail .product_info_box .product_select_box .product_type_select .product_type_detail .select_item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  position: relative;
  padding: 8px 30px 8px 8px;
  outline: none;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: -10px;
}

.cont_product_detail .product_info_box .product_select_box .product_num_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.cont_product_detail .product_info_box .product_select_box .product_num_select .tl_product_num_box {
  width: 75px;
}

.cont_product_detail .product_info_box .product_select_box .product_num_select .tl_product_num_box .tl_num {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}

.cont_product_detail .product_info_box .product_select_box .product_num_select .product_num_detail {
  text-align: right;
}

.cont_product_detail .product_info_box .product_select_box .product_num_select .num_soldout {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 1.8rem;
  line-height: 4.0rem;
  color: #F54242;
  background-color: #E2E2E2;
}

.cont_product_detail .attention_whether_to {
  background-color: #FFF3F3;
  padding: 20px;
}

.cont_product_detail .attention_whether_to .txt_attention_whether {
  font-size: 1.3rem;
}

.cont_product_detail .btn_box .btn_gray_color,
.cont_product_detail .btn_box .btn_main_color,
.cont_product_detail .btn_box .btn_main_color_line {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .btn_box .btn_gray_color,
  .cont_product_detail .btn_box .btn_main_color,
  .cont_product_detail .btn_box .btn_main_color_line {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
}

.cont_product_detail .btn_box_txt_link {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .btn_box_txt_link {
    margin-bottom: 0;
  }
}

.cont_product_detail .btn_box_txt_link.btn_box_left .txt_link_min_left {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .btn_box_txt_link.btn_box_left .txt_link_min_left {
    font-size: 1.4rem;
  }
}

.cont_product_detail .product_info_detail_box {
  border-top: solid 1px #E2E2E2;
  border-bottom: solid 1px #E2E2E2;
  margin-top: 40px;
}

.cont_product_detail .product_info_detail_list &gt; li {
  border-bottom: solid 1px #E2E2E2;
}

.cont_product_detail .product_info_detail_list &gt; li:last-child {
  border-bottom: none;
}

.cont_product_detail .product_info_detail .tl_detail_block {
  padding: 20px 30px 20px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .tl_detail_block {
    padding: 20px 60px 20px 30px;
  }
}

.cont_product_detail .product_info_detail .tl_detail_block .tl_detail {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8em;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .tl_detail_block .tl_detail {
    font-size: 2.2rem;
  }
}

.cont_product_detail .product_info_detail .detail_box {
  padding: 0 0 25px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .detail_box {
    padding: 0 30px 40px;
  }
}

.cont_product_detail .product_info_detail .detail_box .detail_txt_block {
  font-size: 1.3rem;
  line-height: 2.4rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .detail_box .detail_txt_block {
    font-size: 1.4rem;
  }
}

.cont_product_detail .product_info_detail .detail_box .detail_list_block &gt; ul li {
  font-size: 1.3rem;
  line-height: 2.4rem;
  padding-left: 1.4em;
  text-indent: -1.4em;
  margin: 5px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .detail_box .detail_list_block &gt; ul li {
    font-size: 1.4rem;
  }
}

.cont_product_detail .product_info_detail .detail_box .detail_list_block &gt; ul li::before {
  content: "• ";
  color: #464646;
}

.cont_product_detail .product_info_detail .detail_box .detail_img_block &gt; ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .detail_box .detail_img_block &gt; ul {
    margin: 0;
  }
}

.cont_product_detail .product_info_detail .detail_box .detail_img_block &gt; ul li {
  width: 33.3%;
  padding: 0 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .detail_box .detail_img_block &gt; ul li {
    width: 142px;
    height: 142px;
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 0;
  }
  .cont_product_detail .product_info_detail .detail_box .detail_img_block &gt; ul li:nth-child(5n) {
    margin-right: 0;
  }
}

.cont_product_detail .product_info_detail .detail_box .detail_img_block &gt; ul li img {
  display: block;
  width: 100%;
  height: 28vw;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  margin: 0 auto;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .detail_box .detail_img_block &gt; ul li img {
    height: 100%;
  }
}

.cont_product_detail .product_info_detail .detail_box .detail_staff_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont_product_detail .product_info_detail .detail_box .detail_staff_block .img_box {
  width: 70px;
  margin-right: 20px;
}

.cont_product_detail .product_info_detail .detail_box .detail_staff_block .img_box img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 50%;
}

.cont_product_detail .product_info_detail .detail_box .detail_staff_block .name_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.3rem;
  line-height: 2.4rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .detail_box .detail_staff_block .name_box {
    font-size: 1.4rem;
  }
}

.cont_product_detail .product_info_detail .detail_box .detail_staff_block .name_box .txt_link_min_right {
  margin: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_info_detail .detail_box .detail_staff_block .name_box .txt_link_min_right {
    font-size: 1.4rem;
  }
}

.cont_product_detail .label_open_close {
  position: relative;
  cursor: pointer;
}

.cont_product_detail .label_open_close.label_open::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  position: absolute;
  content: "";
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat;
  background-size: 7px auto;
  width: 7px;
  height: 14px;
  margin-top: -7px;
  right: 20px;
  top: 50%;
}

.cont_product_detail .label_open_close.label_close::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  content: "";
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat;
  background-size: 7px auto;
  width: 7px;
  height: 14px;
  margin-top: -7px;
  right: 20px;
  top: 50%;
}

.cont_product_detail .product_blog_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  padding: 40px 20px 30px;
  background-color: #FCF9F4;
  margin: 80px -20px 0;
  position: relative;
  /* PC */
  /* &lt;商品詳細&gt; 商品紹介ブログリスト
    --------------- */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_blog_box {
    width: 100%;
    margin: 80px 0 0;
    padding: 40px 30px 30px;
  }
}

.cont_product_detail .product_blog_box .tl_date {
  margin-bottom: 5px;
}

.cont_product_detail .product_blog_box .tl_date .date {
  font-size: 1.2rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_blog_box .tl_date .date {
    font-size: 1.3rem;
  }
}

.cont_product_detail .product_blog_box .tl_date .new {
  font-size: 1.2rem;
  color: #F54242;
  margin-left: 6px;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_blog_box .tl_date .new {
    font-size: 1.3rem;
  }
}

.cont_product_detail .product_blog_box .tl_product_blog {
  padding-left: 40px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_blog_box .tl_product_blog {
    padding-left: 50px;
  }
}

.cont_product_detail .product_blog_box .tl_product_blog::before {
  display: inline-block;
  content: '';
  width: 70px;
  height: 70px;
  background-image: url("../img_cmn/ico_good.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  bottom: -10px;
  left: -8px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_blog_box .tl_product_blog::before {
    width: 85px;
    height: 85px;
    bottom: -15px;
    left: -10px;
  }
}

.cont_product_detail .product_blog_box .blog_lsit_box .product_info_detail_list &gt; li {
  border-bottom: none;
}

.cont_product_detail .product_blog_box .blog_lsit_box .tl_detail_box {
  position: relative;
}

.cont_product_detail .product_blog_box .blog_lsit_box .tl_detail_box::before {
  display: inline-block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #15195B;
  position: absolute;
  bottom: 0;
  left: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_blog_box .blog_lsit_box .tl_detail_box::before {
    width: calc(100% - 60px);
    position: absolute;
    bottom: 0;
    left: 30px;
  }
}

.cont_product_detail .product_blog_box .blog_lsit_box .tl_detail_box::after {
  right: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_blog_box .blog_lsit_box .tl_detail_box::after {
    right: 40px;
  }
}

.cont_product_detail .product_blog_box .blog_lsit_box .detail_box {
  padding: 0 20px 20px;
  background-color: #FFF;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .product_blog_box .blog_lsit_box .detail_box {
    padding: 0 40px 40px;
  }
}

.cont_product_detail .product_blog_box .blog_lsit_box .detail_box .article {
  border-bottom: 0;
}

.cont_product_detail .pickup_movie_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  padding: 60px 20px 10px;
  background-color: #FCF9F4;
  margin: 80px -20px 0;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .pickup_movie_box {
    width: 100%;
    padding: 60px 30px 10px;
    margin: 80px 0 0;
  }
}

.cont_product_detail .pickup_movie_box .tl_pickup_movie {
  padding-left: 50px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .pickup_movie_box .tl_pickup_movie {
    padding-left: 60px;
  }
}

.cont_product_detail .pickup_movie_box .tl_pickup_movie::before {
  display: inline-block;
  content: '';
  width: 70px;
  height: 70px;
  background-image: url("../img_cmn/ico_movie_02.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  bottom: -12px;
  left: -12px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .pickup_movie_box .tl_pickup_movie::before {
    width: 85px;
    height: 85px;
    bottom: -15px;
    left: -15px;
  }
}

.cont_product_detail .pickup_movie_box .all_movie .movie_list {
  margin-bottom: 0;
}

.cont_product_detail .pickup_movie_box .all_movie .movie_list &gt; li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
  /* PC */
}

.cont_product_detail .pickup_movie_box .all_movie .movie_list &gt; li:nth-child(2n) {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .cont_product_detail .pickup_movie_box .all_movie .movie_list &gt; li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 5%;
  }
  .cont_product_detail .pickup_movie_box .all_movie .movie_list &gt; li:nth-child(2n) {
    margin-right: 3.5%;
  }
  .cont_product_detail .pickup_movie_box .all_movie .movie_list &gt; li:nth-child(3n) {
    margin-right: 0;
  }
}

.cont_product_detail .pickup_movie_box .all_movie .movie_card .movie_box {
  margin-bottom: 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .pickup_movie_box .all_movie .movie_card .movie_box {
    margin-bottom: 5px;
  }
}

.cont_product_detail .pickup_movie_box .all_movie .movie_card .movie_box &gt; img {
  width: 100%;
  height: calc(100vw * 95 / 375);
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .pickup_movie_box .all_movie .movie_card .movie_box &gt; img {
    height: 140px;
  }
}

.cont_product_detail .recommend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .recommend {
    width: 1100px;
    position: relative;
    top: 0;
    left: -270px;
  }
}

.cont_product_detail .recommend .tl_recommend {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 0 25px;
  text-align: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_detail .recommend .tl_recommend {
    font-size: 2.0rem;
    margin: 0 0 30px;
  }
}

/*=================================================
 * 「カート」ページ
 * ================================================ */
.cont_product_cart {
  /* ------------------------------------
   /* &lt;カート&gt; ヘッドメッセージ
   ------------------------------------ */
  /* ------------------------------------
   /* &lt;カート&gt; ショッピングカート
   ------------------------------------ */
  /* &lt;カート&gt; カートリスト
   --------------- */
  /* ------------------------------------
   /* &lt;カート&gt; お支払いボタン
   ------------------------------------ */
  /* ------------------------------------
    /* &lt;カート&gt; お気に入り登録商品
    ------------------------------------ */
}

.cont_product_cart .page_tl {
  margin: 0;
}

.cont_product_cart .page_cont {
  background-color: #FCF9F4;
  padding: 20px 0;
  margin: 0;
}

.cont_product_cart .page_cont .topic_path {
  margin: 0;
}

.cont_product_cart .main_head_msg {
  background-color: #FCF9F4;
  padding: 20px 0 30px;
}

.cont_product_cart .main_head_msg .txt_head_msg {
  font-size: 1.3rem;
}

.cont_product_cart .cart_box_wrap {
  margin-top: 40px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box_wrap {
    width: 830px;
    margin: 0 auto;
  }
}

.cont_product_cart .tl_cart {
  padding: 0 10px 0 48px;
  line-height: 4.0rem;
  background-image: url("../img_cmn/ico_cart_black.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 42% left 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .tl_cart {
    margin-top: 60px;
  }
}

.cont_product_cart .cart_box .cart_list_box {
  /* &lt;カート&gt; カートリスト（合計）
       --------------- */
}

.cont_product_cart .cart_box .cart_list_box .cart_list {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list {
    border-top: 3px solid #E2E2E2;
    border-bottom: 3px solid #E2E2E2;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list &gt; li:last-child .cart_product_box {
  border-bottom: none;
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-bottom: solid 1px #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box {
    padding: 20px 50px;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_img_box {
  width: 30%;
  max-width: 160px;
  margin-right: 4%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_img_box {
    width: 100px;
    height: 100px;
    margin-right: 15px;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_img_box img {
  display: block;
  width: 100%;
  height: 27vw;
  max-height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_img_box img {
    height: 100%;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_name_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_name_box .txt_product_name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 5px 15px 0 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_name_box .txt_product_name {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 320px;
    font-size: 1.8rem;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_name_box .btn_delete {
  display: block;
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_name_box .btn_delete img {
  width: 12px;
  height: 14px;
  position: relative;
  top: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_name_box .btn_delete img {
    width: 13.7px;
    height: 17px;
    top: 2px;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_type {
  padding-top: 10px;
  font-size: 1.3rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_type {
    font-size: 1.4rem;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box {
  padding-top: 5px;
  font-size: 1.3rem;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box {
    padding-top: 0;
    width: 275px;
    margin-left: 340px;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_num_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_num_detail {
    padding-right: 0;
    margin-right: 45px;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_num_detail .tl_num {
  display: inline-block;
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_num_detail .txt_num {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_num_detail .txt_num {
    font-size: 1.5rem;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_price {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_price .txt_price {
  display: inline-block;
  position: relative;
  padding: 10px 0 10px 13px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_price .txt_price {
    font-size: 1.8rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list .cart_product_box .product_detail_box .product_price_box .product_price .txt_price::before {
  display: block;
  content: '';
  width: 8px;
  height: 11px;
  background-image: url("../img_cmn/img_en_mark.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.cont_product_cart .cart_box .cart_list_box .cart_list_sum {
  padding: 10px 20px 0;
  margin: 0 -20px;
  background-color: #FCF9F4;
  border-top: 1px solid #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list_sum {
    border-top: none;
    margin: 0;
    padding: 20px 50px 15px;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box {
  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;
}

.cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box .txt_sum {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box .txt_sum {
    font-size: 1.8rem;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box .sum_price {
  color: #464646;
  font-size: 1.3rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box .sum_price {
    font-size: 1.4rem;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box .sum_price .txt_price {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #292929;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0 0 0 15px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box .sum_price .txt_price {
    font-size: 2.2rem;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box .sum_price .txt_price::before {
  display: block;
  content: '';
  width: 10px;
  height: 13px;
  background-image: url("../img_cmn/img_en_mark.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list_sum .sum_box .sum_price .txt_price::before {
    font-size: 2.2rem;
  }
}

.cont_product_cart .cart_box .cart_list_box .cart_list_sum .postage {
  padding-top: 5px;
  font-size: 1.3rem;
  color: #464646;
  text-align: right;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .cart_box .cart_list_box .cart_list_sum .postage {
    font-size: 1.6rem;
  }
}

.cont_product_cart .payment_btn_box {
  margin: 20px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .payment_btn_box {
    width: 830px;
    margin: 30px auto 20px;
    position: relative;
  }
}

.cont_product_cart .payment_btn_box .attention_whether_to {
  background-color: #FFF3F3;
  padding: 20px;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .payment_btn_box .attention_whether_to {
    padding: 20px 0;
  }
}

.cont_product_cart .payment_btn_box .attention_whether_to .txt_attention_whether {
  font-size: 1.3rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .payment_btn_box .attention_whether_to .txt_attention_whether {
    text-align: center;
  }
}

.cont_product_cart .payment_btn_box .txt_note {
  font-size: 1.2rem;
  color: #464646;
  /* PC */
}

.cont_product_cart .payment_btn_box .txt_note &gt; a {
  color: #0349CC;
}

@media screen and (min-width: 768px) {
  .cont_product_cart .payment_btn_box .txt_note {
    text-align: center;
    font-size: 1.3rem;
  }
}

.cont_product_cart .payment_btn_box .txt_note a {
  text-decoration: underline;
}

.cont_product_cart .payment_btn_box .no_registration {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .payment_btn_box .no_registration .color_main {
    font-size: 1.4rem;
  }
}

.cont_product_cart .payment_btn_box .continue_shopping {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .payment_btn_box .continue_shopping {
    position: absolute;
    left: 0;
    top: 136px;
    width: 160px;
    height: 30px;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cont_product_cart .payment_btn_box .continue_shopping .btn_gray_color_line.btn_return {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
    line-height: 30px;
    background-size: 5px 7.5px;
  }
  .cont_product_cart .payment_btn_box .continue_shopping .btn_gray_color_line.btn_return .btn_txt {
    font-size: 1.3rem;
    font-weight: normal;
  }
}

.cont_product_cart .favorite_box_wrap {
  margin-top: 40px;
}

.cont_product_cart .tl_favorite {
  padding: 0 10px 0 45px;
  line-height: 4.0rem;
  background-image: url("../img_cmn/ico_heart_line_gray.svg");
  background-repeat: no-repeat;
  background-size: 17px;
  background-position: top 50% left 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_cart .tl_favorite {
    margin-bottom: 50px;
  }
}

.cont_product_cart .product_list_box {
  margin-top: 20px;
}

/*=================================================
 * ヴィンテージ一覧／ 限定一覧／ ガレージ一覧ページ
 * ================================================ */
.cont_pproduct-garage,
.cont_pproduct-limited,
.cont_pproduct-vintage {
  /* &lt;ヴィンテージ一覧&gt; 一覧タイトル
  --------------- */
  /* ポップアップの内容 */
}

.cont_pproduct-garage .search_result_box,
.cont_pproduct-limited .search_result_box,
.cont_pproduct-vintage .search_result_box {
  margin-top: 50px;
}

.cont_pproduct-garage .tl_box,
.cont_pproduct-limited .tl_box,
.cont_pproduct-vintage .tl_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cont_pproduct-garage .tl_box .tl_default,
.cont_pproduct-limited .tl_box .tl_default,
.cont_pproduct-vintage .tl_box .tl_default {
  margin: 0 10px 10px 0;
}

.cont_pproduct-garage .popup-description .tl_description,
.cont_pproduct-limited .popup-description .tl_description,
.cont_pproduct-vintage .popup-description .tl_description {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

.cont_pproduct-garage .popup-description .img_box,
.cont_pproduct-limited .popup-description .img_box,
.cont_pproduct-vintage .popup-description .img_box {
  padding: 10px 0;
}

.cont_pproduct-garage .popup-description .img_box img,
.cont_pproduct-limited .popup-description .img_box img,
.cont_pproduct-vintage .popup-description .img_box img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.cont_pproduct-garage .popup-description .description,
.cont_pproduct-limited .popup-description .description,
.cont_pproduct-vintage .popup-description .description {
  margin-top: 20px;
}

.cont_pproduct-garage .popup-description .description .txt_description,
.cont_pproduct-limited .popup-description .description .txt_description,
.cont_pproduct-vintage .popup-description .description .txt_description {
  font-size: 1.3rem;
  line-height: 2.4rem;
}

/*=================================================
 * 送料ページ
 * ================================================ */
.cont_product_delivery .main_head_msg {
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .main_head_msg {
    margin-bottom: 30px;
  }
}

.cont_product_delivery .main_head_msg .txt_head_msg {
  color: #F54242;
  font-size: 1.3rem;
}

.cont_product_delivery .delivery_table .tl_default_line {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .delivery_table .tl_default_line {
    padding-left: 0;
    padding-bottom: 40px;
  }
}

.cont_product_delivery .delivery_table .delivery_table_box {
  margin-top: -15px;
}

.cont_product_delivery .delivery_table .delivery_table_box .table_head {
  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;
}

.cont_product_delivery .delivery_table .delivery_table_box .table_head .txt_head {
  background-color: #15195B;
  color: #FFF;
  font-weight: bold;
  padding: 10px 5px;
  text-align: center;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.cont_product_delivery .delivery_table .delivery_table_box .table_head .txt_head.head_area {
  width: 30%;
  border-right: solid 1px #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .delivery_table .delivery_table_box .table_head .txt_head.head_area {
    width: 250px;
  }
}

.cont_product_delivery .delivery_table .delivery_table_box .table_head .txt_head.head_prefectures {
  width: 30%;
  border-right: solid 1px #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .delivery_table .delivery_table_box .table_head .txt_head.head_prefectures {
    width: 600px;
  }
}

.cont_product_delivery .delivery_table .delivery_table_box .table_head .txt_head.head_postage {
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .delivery_table .delivery_table_box .table_head .txt_head.head_postage {
    width: 250px;
  }
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box:nth-child(2n + 1) {
  background-color: #FCF9F4;
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box:nth-child(2n + 1) .postage {
  background-color: #FCF9F4;
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box .area_neme {
  width: 30%;
  border-right: solid 1px #ACACAC;
  border-bottom: solid 1px #ACACAC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .delivery_table .delivery_table_box .area_group_box .area_neme {
    width: 250px;
    border-left: 1px solid #ACACAC;
  }
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box .area_neme .txt_area_neme {
  padding: 10px 5px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  font-weight: bold;
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box .prefectures {
  width: 30%;
  border-right: solid 1px #ACACAC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .delivery_table .delivery_table_box .area_group_box .prefectures {
    width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
  }
  .cont_product_delivery .delivery_table .delivery_table_box .area_group_box .prefectures::before {
    content: '';
    position: absolute;
    border-right: 1px dotted #ACACAC;
    height: 100%;
    top: 0;
    left: 200px;
  }
  .cont_product_delivery .delivery_table .delivery_table_box .area_group_box .prefectures::after {
    content: '';
    position: absolute;
    border-right: 1px dotted #ACACAC;
    height: 100%;
    top: 0;
    left: 400px;
  }
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box .prefectures .txt_prefectures {
  padding: 10px 5px;
  text-align: center;
  border-bottom: 1px solid #ACACAC;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .delivery_table .delivery_table_box .area_group_box .prefectures .txt_prefectures {
    width: calc(100% / 3);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: none;
  }
  .cont_product_delivery .delivery_table .delivery_table_box .area_group_box .prefectures .txt_prefectures:nth-child(3n + 1) {
    position: relative;
  }
  .cont_product_delivery .delivery_table .delivery_table_box .area_group_box .prefectures .txt_prefectures:nth-child(3n + 1)::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 1px;
    background-color: #ACACAC;
    bottom: 0;
    left: 0;
  }
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box .postage {
  width: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: solid 1px #ACACAC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_product_delivery .delivery_table .delivery_table_box .area_group_box .postage {
    width: 250px;
    border-right: 1px solid #ACACAC;
  }
}

.cont_product_delivery .delivery_table .delivery_table_box .area_group_box .postage .txt_postage {
  padding: 10px 5px;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
}

.cont_product_delivery .delivery_table .txt_box {
  margin-top: 20px;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * &lt;共通&gt;商品ページ
 * ================================================ */
.cont_pay .page_tl {
  margin: 0;
}

/* ------------------------------------
 /* フォームステップ
 ------------------------------------ */
.main_head_step {
  background-color: #FCF9F4;
  padding: 30px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .main_head_step {
    padding: 30px 0 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.form_step_block {
  margin-bottom: 50px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_step_block {
    margin-bottom: 60px;
  }
}

.form_step_block .detail_box {
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_step_block .detail_box {
    width: 730px;
    margin: 30px auto 0;
  }
}

.form_step_block .detail_box .txt_detail {
  font-size: 1.3rem;
  margin-bottom: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_step_block .detail_box .txt_detail {
    font-size: 1.4rem;
  }
}

.form_step_block .detail_box .txt_detail.txt_note {
  color: #F54242;
}

.payment_check_box {
  background: #FFF;
  padding: 25px 20px;
  border: 1px solid #FFF;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .payment_check_box {
    width: 830px;
    padding: 0px;
    margin: 0 auto 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: -webkit-gradient(linear, left top, right top, from(#E2E2E2), color-stop(35%, #E2E2E2), color-stop(35%, #FFF), to(#FFF));
    background: linear-gradient(90deg, #E2E2E2 0%, #E2E2E2 35%, #FFF 35%, #FFF 100%);
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .payment_check_box.check_order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .payment_check_box .check_order_left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: inherit;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 40px;
  }
  .payment_check_box .check_order_right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 65%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 40px;
  }
}

.payment_check_box .btn_box_step_retry {
  position: relative;
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .payment_check_box .btn_box_step_retry {
    width: 180px;
    margin: 0 auto;
  }
}

.payment_check_box .btn_box_step_retry::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img_cmn/ico_arrow_gray_left.svg") no-repeat center/6px auto;
  width: 6px;
  height: calc(6px * 1.5);
  pointer-events: none;
}

.payment_check_box .btn_box_step_retry .retry_step_btn {
  width: 50%;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2px 0;
  background-color: #fff;
  border: 1px solid #E2E2E2;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .payment_check_box .btn_box_step_retry .retry_step_btn {
    width: 100%;
    height: 30px;
  }
}

.payment_check_box .btn_box_step_retry .retry_step_btn:focus, .payment_check_box .btn_box_step_retry .retry_step_btn:hover {
  outline: none;
}

.payment_check_box .btn_box_step_retry .retry_step_btn::-moz-focus-inner {
  border: none;
  padding: 0;
}

.payment_check_box .tl_order {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .payment_check_box .tl_order {
    font-size: 1.6rem;
  }
}

.payment_check_box .payment_check_list &gt; li {
  margin-bottom: 15px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .payment_check_box .payment_check_list &gt; li {
    font-size: 1.5rem;
  }
}

.payment_check_box .payment_check_list &gt; li:last-child {
  margin-bottom: 0;
}

.payment_check_box .payment_check_list &gt; li.tl_txt {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.payment_check_box .payment_check_list &gt; li.txt_group_under {
  margin-bottom: 0;
}

.txt_guide {
  font-size: 1.3rem;
  margin: 40px 0 20px;
}

@media screen and (min-width: 768px) {
  .txt_guide {
    width: 830px;
    margin: 30px auto 30px;
    font-size: 1.4rem;
  }
}

.sent_msg_box {
  margin: 40px 0;
}

@media screen and (min-width: 768px) {
  .sent_msg_box {
    text-align: center;
  }
}

.sent_msg_box .txt_msg {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #0a0a0a;
}

.sent_msg_box .txt_msg.txt_bold {
  font-weight: bold;
}

.sent_msg_box .order_info_box {
  margin-bottom: 20px;
  padding: 20px;
  border: solid 1px #15195B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FCF9F4;
}

@media screen and (min-width: 768px) {
  .sent_msg_box .order_info_box {
    display: inline-block;
    margin-bottom: 30px;
    padding: 20px 80px;
    min-width: 500px;
    max-width: 830px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.sent_msg_box .order_info_box .order_info {
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.sent_msg_box .order_info_box .txt_order_info {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.sent_msg_box .order_info_box .txt_order_info .tl_info {
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
}

.sent_msg_box .order_info_box .txt_order_info .txt_info {
  display: inline-block;
  font-size: 1.5rem;
}

.form_back_btn {
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_back_btn {
    width: 830px;
    margin: 0 auto;
  }
}

.btn_box_retry {
  text-align: left;
  margin-top: 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .btn_box_retry {
    position: absolute;
    left: 0px;
    bottom: 20px;
  }
}

.btn_box_retry::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img_cmn/ico_arrow_gray_left.svg") no-repeat center/6px auto;
  width: 6px;
  height: calc(6px * 1.5);
  pointer-events: none;
}

table .td_same_order {
  width: 100% !important;
}

/* ------------------------------------
/* 会員パスワード登録
------------------------------------ */
.member_pass_box {
  border: solid 5px #fbfbfb;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 40px -20px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .member_pass_box {
    width: 830px;
    margin: 40px auto;
  }
}

.member_pass_box .txt_member_pass_box {
  padding: 15px 20px;
}

.member_pass_box .txt_member_pass_box .ico_option {
  position: absolute;
  top: -23px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 18px;
  display: inline-block;
  color: #FFF;
  background-color: #464646;
  padding: 2px 7px;
}

.member_pass_box .txt_member_pass_box .txt_member_pass {
  font-size: 1.3rem;
  line-height: 2.1rem;
}

.member_pass_box .txt_member_pass_box .txt_member_pass .txt_note {
  color: #0a0a0a;
}

.member_pass_box .input_pass_box {
  padding: 15px 20px;
  background-color: #F4F4F4;
  /* PC */
}

@media screen and (min-width: 768px) {
  .member_pass_box .input_pass_box {
    padding: 0px 20px 30px 20px;
  }
}

/* ------------------------------------
/* 1.お支払い方法（タブ切替）
------------------------------------ */
.form_box .payment_method_step .form_table {
  /* お支払い方法 詳細
       --------------- */
  /* ラジオボタン　タブ切替
       --------------- */
}

.form_box .payment_method_step .form_table .form_tub {
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_method_step .form_table .form_tub {
    width: 100%;
    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;
  }
  .form_box .payment_method_step .form_table .form_tub .radio {
    width: 340px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .form_box .payment_method_step .form_table .form_tub .radio.radio_01 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .form_box .payment_method_step .form_table .form_tub .radio.radio_02 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .form_box .payment_method_step .form_table .form_tub .radio.radio_03 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .form_box .payment_method_step .form_table .form_tub .paymethod {
    width: 390px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .form_box .payment_method_step .form_table .form_tub .paymethod.method_01 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .form_box .payment_method_step .form_table .form_tub .paymethod.method_02 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .form_box .payment_method_step .form_table .form_tub .paymethod.method_03 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

.form_box .payment_method_step .form_table .paymethod .tl_radio_details {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.form_box .payment_method_step .form_table .paymethod .txt_radio_details {
  font-size: 1.3rem;
  /* SE */
}

@media screen and (min-width: 768px) {
  .form_box .payment_method_step .form_table .paymethod .txt_radio_details {
    font-size: 1.4rem;
  }
}

.form_box .payment_method_step .form_table .paymethod .card_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

.form_box .payment_method_step .form_table .paymethod .card_list &gt; li img {
  width: auto;
  height: 36px;
}

.form_box .payment_method_step .form_table .method_01 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_method_step .form_table .method_01 {
    padding: 20px 30px 20px 0;
  }
}

.form_box .payment_method_step .form_table input.method01_show:checked ~ .method_01 {
  padding: 20px 0;
  height: auto;
  opacity: 1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_method_step .form_table input.method01_show:checked ~ .method_01 {
    padding: 20px 30px 20px 0;
  }
}

.form_box .payment_method_step .form_table .method_02 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_method_step .form_table .method_02 {
    padding: 20px 30px 20px 0;
  }
}

.form_box .payment_method_step .form_table input.method02_show:checked ~ .method_02 {
  padding: 20px 0;
  height: auto;
  opacity: 1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_method_step .form_table input.method02_show:checked ~ .method_02 {
    padding: 20px 30px 20px 0;
  }
}

.form_box .payment_method_step .form_table .method_03 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_method_step .form_table .method_03 {
    padding: 20px 30px 20px 0;
  }
}

.form_box .payment_method_step .form_table input.method03_show:checked ~ .method_03 {
  padding: 20px 0;
  height: auto;
  opacity: 1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_method_step .form_table input.method03_show:checked ~ .method_03 {
    padding: 20px 30px 20px 0;
  }
}

/* ------------------------------------
/* 注文内容確認
------------------------------------ */
.form_box {
  /* 注文内容確認
   --------------- */
}

.form_box .payment_check_box .pay_check_box {
  border-bottom: solid 1px #E2E2E2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.form_box .payment_check_box .pay_check_box .check_pay_box {
  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: 0 0 2px;
}

@media screen and (min-width: 768px) {
  .form_box .payment_check_box .pay_check_box .check_pay_box {
    padding: 0 0 6px;
  }
}

@media screen and (min-width: 768px) {
  .form_box .payment_check_box .pay_check_box .check_pay_box .tl_check_pay {
    font-size: 1.6rem;
  }
}

.form_box .payment_check_box .pay_check_box .check_pay_box .txt_check_pay {
  margin: 15px 0 5px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #464646;
}

@media screen and (min-width: 768px) {
  .form_box .payment_check_box .pay_check_box .check_pay_box .txt_check_pay {
    font-size: 1.4rem;
  }
}

.form_box .payment_check_box .pay_check_box .check_pay_box .num_check_pay {
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .form_box .payment_check_box .pay_check_box .check_pay_box .num_check_pay {
    font-size: 1.8rem;
  }
}

.form_box .payment_check_box .pay_sum_check_box .check_sum_box {
  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: 0 0 2px;
}

.form_box .payment_check_box .pay_sum_check_box .check_sum_box .tl_check_sum {
  font-size: 1.6rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_check_box .pay_sum_check_box .check_sum_box .tl_check_sum {
    font-size: 1.8rem;
  }
}

.form_box .payment_check_box .pay_sum_check_box .check_sum_box .num_check_sum {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2.2rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_box .payment_check_box .pay_sum_check_box .check_sum_box .num_check_sum {
    font-size: 2.4rem;
  }
}

.form_box .payment_check_box .pay_sum_check_box .check_method_box {
  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: 0 0 2px;
}

.form_box .payment_check_box .pay_sum_check_box .check_method_box .txt_check_method {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* ------------------------------------
/* 郵便番号または住所検索
------------------------------------ */
.form_th_address {
  padding: 30px 0 0 !important;
}

/* ポップアップの内容 */
.popup-address {
  margin: 0;
  width: 100%;
  height: 70vh;
  background-color: #FCF9F4;
}

.popup-address .tl_search_address_box {
  background-color: #15195B;
  text-align: center;
  padding: 15px 10px;
}

.popup-address .tl_search_address_box .tl_search_address {
  display: inline-block;
  color: #FFF;
  font-weight: bold;
  padding: 0 0 0px 20px;
  position: relative;
}

.popup-address .tl_search_address_box .tl_search_address:before {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("../img_cmn/ico_search.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0px;
}

.popup-address .tl_search_address_box .tl_search_address .txt_min {
  font-size: 1.2rem;
  font-weight: normal;
}

.popup-address .search_address_box {
  background-color: #FFF;
  padding: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .popup-address .search_address_box {
    padding: 30px 50px;
  }
}

.popup-address .search_address_box .txt_search_address {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.popup-address .btn_box {
  margin: 12px 0 0;
  width: 100%;
}

.popup-address .btn_box::after {
  display: none;
}

.popup-address .btn_box .btn_gray_color_line {
  width: 100%;
}

.popup-address .btn_box .btn_main_color {
  width: 100%;
}

.popup-address .result_address_box {
  background-color: #FCF9F4;
  padding: 20px 10px 30px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .popup-address .result_address_box {
    padding: 20px 50px 30px;
  }
}

.popup-address .result_address_box::before {
  display: block;
  content: '';
  width: 14px;
  height: 22px;
  background-image: url(../img_cmn/ico_arrow_gray_strong.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -7px;
}

.popup-address .result_address_box .txt_result {
  text-align: center;
  padding-bottom: 10px;
  font-size: 1.3rem;
}

.popup-address .result_address_box .result_post_code {
  margin-bottom: 6px;
}

.popup-address .result_address_box .result_post_code .txt_post_code {
  color: #0a0a0a;
}

/*=================================================
 * 届先情報入力 ページ
 * ================================================ */
.cont_pay-input_payment {
  /* ------------------------------------
  /* 1.お支払い方法（タブ切替）
  ------------------------------------ */
  /* ------------------------------------
  /* 2.ご注文者情報（ご請求先）
  ------------------------------------ */
}

.cont_pay-input_payment .payment_form {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_pay-input_payment .payment_form {
    margin-top: 50px;
  }
}

.cont_pay-input_payment .payment_step_01 {
  /* お支払い方法 詳細
     --------------- */
  /* ラジオボタン　タブ切替
     --------------- */
}

.cont_pay-input_payment .payment_step_01 .paymethod .tl_radio_details {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.cont_pay-input_payment .payment_step_01 .paymethod .txt_radio_details {
  font-size: 1.3rem;
}

.cont_pay-input_payment .payment_step_01 .paymethod .card_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

.cont_pay-input_payment .payment_step_01 .paymethod .card_list &gt; li img {
  width: auto;
  height: 36px;
}

.cont_pay-input_payment .payment_step_01 .method_01 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.cont_pay-input_payment .payment_step_01 input.method01_show:checked ~ .method_01 {
  padding: 20px 0;
  height: auto;
  opacity: 1;
}

.cont_pay-input_payment .payment_step_01 .method_02 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.cont_pay-input_payment .payment_step_01 input.method02_show:checked ~ .method_02 {
  padding: 20px 0;
  height: auto;
  opacity: 1;
}

.cont_pay-input_payment .payment_step_01 .method_03 {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.cont_pay-input_payment .payment_step_01 input.method03_show:checked ~ .method_03 {
  padding: 20px 0;
  height: auto;
  opacity: 1;
}

.cont_pay-input_payment .form_payment_step .get_email_box {
  margin-top: 6px;
}

.cont_pay-input_payment .form_payment_step .txt_box_min {
  font-size: 1.3rem;
  line-height: 2.1rem;
  margin-top: 10px;
  text-indent: -1em;
  padding-left: 1em;
}

/*=================================================
 * お支払い方法選択 ページ
 * ================================================ */
.pay-input-destination {
  /* ------------------------------------
  /* 3.お届け日
  ------------------------------------ */
}

.pay-input-destination .payment_form {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .pay-input-destination .payment_form {
    margin-top: 50px;
  }
}

.pay-input-destination .form_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .pay-input-destination .form_box {
    width: 830px;
    margin: 0 auto 0;
  }
}

.pay-input-destination .deliver_step_03 {
  margin-top: 40px;
}

/*=================================================
 * 注文確認 ページ
 * ================================================ */
.pay-check {
  background-color: #FCF9F4;
}

.pay-check .form_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .pay-check .form_box {
    width: 830px;
    margin: 0 auto 0;
  }
}

.pay-check .form_box .btn_box_retry {
  margin-top: 20px;
}

/*=================================================
 * 送信完了 ページ
 * ================================================ */
.pay-sent .txt_caution {
  margin-top: 10px;
  font-weight: bold;
}

/*=================================================
 * &lt;共通&gt;ヴィンテージブログ
 * ================================================ */
/* ------------------------------------
  ブログリスト
------------------------------------ */
.vinblog_card_wrap {
  width: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.vinblog_card_wrap .card {
  margin-top: 10px;
  background-color: #fff;
  /* PC */
}

.vinblog_card_wrap .card:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap .card {
    width: calc((100% - 30px) / 2);
    margin-top: 30px;
    position: relative;
  }
  .vinblog_card_wrap .card:nth-child(2n + 1) {
    margin-right: 30px;
  }
  .vinblog_card_wrap .card:first-child, .vinblog_card_wrap .card:nth-child(2) {
    margin-top: 0;
  }
}

.vinblog_card_wrap .card .card_link {
  display: block;
  width: calc(100% - 20px);
  padding: 15px 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap .card .card_link {
    padding: 25px;
    width: unset;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.vinblog_card_wrap .card .card_link .card_tl {
  line-height: 22px;
  height: 22px;
  overflow: hidden;
  margin: 0 0 10px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap .card .card_link .card_tl {
    height: unset;
    max-height: 44px;
    margin-bottom: 20px;
  }
}

.vinblog_card_wrap .card .card_link .card_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap .card .card_link .card_flex {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.vinblog_card_wrap .card .card_link .card_flex .card_flex_left {
  padding-right: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap .card .card_link .card_flex .card_flex_left {
    width: 330px;
    padding-right: 0;
    margin-right: 20px;
    padding-bottom: 56px;
  }
}

.vinblog_card_wrap .card .card_link .card_flex .card_flex_left .txt_vinblog_card {
  font-size: 1.2rem;
  max-height: 63px;
  line-height: 21px;
  overflow: hidden;
  margin-bottom: 20px;
}

.vinblog_card_wrap .card .card_link .card_flex .card_flex_left .card_foot {
  margin: 0;
  position: relative;
  bottom: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap .card .card_link .card_flex .card_flex_left .card_foot {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 330px;
  }
}

.vinblog_card_wrap .card .card_link .card_flex .card_img_box {
  width: 90px;
  height: 90px;
  margin-bottom: 0;
  margin-top: 32px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap .card .card_link .card_flex .card_img_box {
    width: 135px;
    height: 135px;
  }
}

.vinblog_card_wrap .card .card_link .card_flex .card_img_box .card_img {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_card_wrap .card .card_link .card_flex .card_img_box .card_img {
    width: 135px;
    height: 135px;
  }
}

/* ------------------------------------
  ブログ投稿メッセージ
------------------------------------ */
.thank_user_box_wrap {
  padding: 0 20px;
}

.thank_user_box {
  margin-top: 40px;
  text-align: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .thank_user_box {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}

.thank_user_box .thank_user {
  font-weight: bold;
  font-size: 1.5rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  display: inline-block;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .thank_user_box .thank_user {
    font-size: 1.6rem;
  }
}

.thank_user_box .thank_user::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 22px;
  background-color: #9E9E9E;
  -webkit-transform: translateY(-30%) rotate(-30deg);
          transform: translateY(-30%) rotate(-30deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.thank_user_box .thank_user::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  width: 1px;
  height: 22px;
  background-color: #9E9E9E;
  -webkit-transform: translateY(-30%) rotate(30deg);
          transform: translateY(-30%) rotate(30deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.thank_user_box .txt_let_us {
  font-size: 1.3rem;
  text-align: center;
  margin: 15px 0 20px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .thank_user_box .txt_let_us {
    font-size: 1.4rem;
    margin: 25px 0 25px 0;
  }
}

.thank_user_box .txt_msg {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  margin-top: 15px;
}

.vinblog_thank_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_thank_flex {
    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;
  }
}

.vinblog_thank_flex .expect_blog_box {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_thank_flex .expect_blog_box {
    margin: 0;
    margin-right: 30px;
  }
}

.vinblog_thank_flex .expect_blog_box img {
  width: 50px;
  height: 50px;
}

.vinblog_thank_flex .expect_blog_box .expect_blog_txt {
  background-color: #FCF9F4;
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding: 15px 18px;
  margin-left: 15px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_thank_flex .expect_blog_box .expect_blog_txt {
    font-size: 1.4rem;
  }
}

.vinblog_thank_flex .expect_blog_box .expect_blog_txt::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid transparent;
  border-right: 20px solid #FCF9F4;
  z-index: -1;
}

.vinblog_thank_flex .expect_blog_box .expect_blog_txt::after {
  content: '';
  position: absolute;
  left: -26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 18px solid transparent;
  border-right: 18px solid #FCF9F4;
  z-index: 0;
}

/*=================================================
 * &lt;共通&gt;ヴィンテージブログ(一覧)
 * ================================================ */
.cont_user_blog .newNews_tl {
  color: #15195B;
}

.cont_user_blog .new_user_blog_wrap {
  margin-top: 25px;
  padding: 10px 0;
  background-color: #fbfbfb;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_user_blog .new_user_blog_wrap {
    padding: 20px 0;
  }
}

.cont_user_blog .new_user_blog_wrap .card_wrap {
  /* PC */
}

.cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_flex .card_img_box {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .cont_user_blog .new_user_blog_wrap .card_wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 0 10px;
  }
  .cont_user_blog .new_user_blog_wrap .card_wrap .card {
    width: calc((100% - 40px) / 3);
    /* PC */
  }
  .cont_user_blog .new_user_blog_wrap .card_wrap .card:first-of-type {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_user_blog .new_user_blog_wrap .card_wrap .card {
    margin-right: 10px;
    margin-top: 0;
  }
  .cont_user_blog .new_user_blog_wrap .card_wrap .card:last-child {
    margin-right: 0;
  }
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link {
    padding: 20px 15px;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_tl {
    height: 22px;
    margin-bottom: 15px;
    width: unset;
  }
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_flex .card_flex_left {
    width: 225px;
    margin-right: 10px;
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (min-width: 768px) {
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_flex .card_flex_left {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_flex .card_flex_left .txt_vinblog_card {
    margin-bottom: 10px;
  }
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_flex .card_flex_left .card_foot {
    /* PC */
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (min-width: 768px) {
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_flex .card_flex_left .card_foot {
    position: static;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_flex .card_img_box {
    width: 90px;
    height: 90px;
    margin-top: 0;
  }
  .cont_user_blog .new_user_blog_wrap .card_wrap .card .card_link .card_flex .card_img_box img {
    width: 90px;
    height: 90px;
  }
}

/* ------------------------------------
  ヴィンテージブログ(詳細)
------------------------------------ */
.cont_user_blog_detail .news_detail_box_wrap {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_user_blog_detail .news_detail_box_wrap {
    width: 730px;
    margin: 0 auto;
  }
}

.cont_user_blog_detail .article {
  border-bottom: solid 1px #9E9E9E;
  padding-bottom: 0;
  position: relative;
}

.cont_user_blog_detail .article::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 10px 7px;
  border-color: #FFF transparent transparent transparent;
  bottom: -19px;
  left: 50%;
  z-index: 2;
  margin-left: -7px;
}

.cont_user_blog_detail .article::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 10px 7px;
  border-color: #9E9E9E transparent transparent transparent;
  bottom: -21px;
  left: 50%;
  margin-left: -7px;
}

.cont_user_blog_detail .article .article_header {
  border: none;
}

.cont_user_blog_detail .blog_author_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.cont_user_blog_detail .blog_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont_user_blog_detail .blog_category .ico_category {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.cont_user_blog_detail .blog_category .card_category {
  margin-left: 10px;
}

.cont_user_blog_detail .blog_category .card_category .category_tl {
  font-size: 1.2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

.cont_user_blog_detail .blog_category .card_category .txt_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}

.cont_user_blog_detail .blog_category .card_category .txt_date .date {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
}

.cont_user_blog_detail .blog_category .card_category .txt_date .new {
  font-size: 1.0rem;
  color: #F54242;
  margin-left: 8px;
}

.cont_user_blog_detail .box_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cont_user_blog_detail .box_sns a {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  background: no-repeat center/30px;
}

.cont_user_blog_detail .box_sns a:last-of-type {
  margin-right: 0;
}

.cont_user_blog_detail .box_sns a.sns_line {
  background-image: url("../img_cont/ico_line_circle.svg");
}

.cont_user_blog_detail .box_sns a.sns_facebook {
  background-image: url("../img_cont/ico_facebook_circle.svg");
}

.cont_user_blog_detail .box_sns a.sns_twitter {
  background-image: url("../img_cont/ico_twitter_circle.svg");
}

.cont_user_blog_detail .box_sns a.sns_instagram {
  background-image: url("../img_cont/ico_instagram.png");
}

.cont_user_blog_detail .user_info_box {
  padding: 10px 30px 30px;
  margin: 10px 10px 0;
  background-image: url(../img_cont/img_book.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 90px 70px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_user_blog_detail .user_info_box {
    width: 730px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    background-position: 200px 10px;
  }
}

.cont_user_blog_detail .user_info_box .box_title {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 15px auto;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_user_blog_detail .user_info_box .box_title {
    margin: 30px auto 15px;
  }
}

.cont_user_blog_detail .user_info_box .user_info_text {
  margin: 10px auto;
  font-size: 1.3rem;
}

.cont_user_blog_detail .user_info_box .user_info {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.cont_user_blog_detail .user_info_box .user_info .ico_author {
  width: 50px;
  height: 50px;
}

.cont_user_blog_detail .user_info_box .sns_box {
  text-align: center;
}

.cont_user_blog_detail .user_sns {
  background-color: #FCF9F4;
  display: inline-block;
  padding: 0 5px 0 20px;
}

.cont_user_blog_detail .user_sns .sns a {
  font-size: 13px;
  position: relative;
  padding: 0 10px;
  display: inline-block;
}

.cont_user_blog_detail .user_sns .sns a::before {
  display: inline-block;
  content: '/';
  font-size: 1.2rem;
  position: absolute;
  top: 1px;
  left: -4px;
  color: #292929;
}

.cont_user_blog_detail .user_sns .sns a:first-child {
  text-indent: -1.2em;
}

.cont_user_blog_detail .user_sns .sns a:first-child::before {
  display: none;
}

.cont_user_blog_detail .from_crossorange_staff {
  background-color: #FCF9F4;
  padding: 20px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_user_blog_detail .from_crossorange_staff {
    margin: 0 -1000px;
  }
  .cont_user_blog_detail .from_crossorange_staff .from_crossorange_inner {
    width: 730px;
  }
}

.cont_user_blog_detail .from_crossorange_staff .from_crossorange_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.cont_user_blog_detail .from_crossorange_staff .from_crossorange_flex .logo_circle {
  margin: 0 10px 0 0;
}

.cont_user_blog_detail .from_crossorange_staff .from_crossorange_flex .from_crossorange_tl {
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #0a0a0a;
  font-size: 1.4rem;
  margin: 0;
}

.cont_user_blog_detail .from_crossorange_staff .from_txt_box {
  padding: 25px 20px;
  background-color: #fff;
  border: 1px solid #9E9E9E;
  position: relative;
}

.cont_user_blog_detail .from_crossorange_staff .from_txt_box::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 25px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid #9E9E9E;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.cont_user_blog_detail .from_crossorange_staff .from_txt_box::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 25px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid #FFF;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
}

.cont_user_blog_detail .from_crossorange_staff .from_txt_box .from_txt_box_moutain {
  position: absolute;
  top: 0;
  right: 0;
  width: 188px;
}

.cont_user_blog_detail .from_crossorange_staff .from_txt_box .from_txt_box_moutain::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 37px;
  background: url(../img_cont/ico_mountain.svg) no-repeat center/100% auto;
}

.cont_user_blog_detail .from_crossorange_staff .from_txt_box .from_crossorange_txt {
  margin: 0;
  font-size: 1.3rem;
  line-height: 23px;
}

.cont_user_blog_detail .thank_user_bg {
  background-color: #FFF;
  margin-top: 50px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_user_blog_detail .thank_user_bg {
    width: 730px;
    margin: 50px auto 0;
  }
}

.cont_user_blog_detail .thank_user_bg .thank_user_box {
  margin-top: 0;
}

.cont_user_blog_detail .thank_user_bg .thank_user_orange {
  background-color: #fbfbfb;
  padding: 30px 0 30px;
}

.cont_user_blog_detail .thank_user_bg .thank_user_orange .txt_let_us {
  font-size: 1.3rem;
  margin: 15px 0 20px 0;
  text-align: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_user_blog_detail .thank_user_bg .thank_user_orange .txt_let_us {
    font-size: 1.4rem;
  }
}

.cont_user_blog_detail .thank_user_bg .thank_user_orange .btn_post_wrap {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_user_blog_detail .thank_user_bg .thank_user_orange .btn_post_wrap {
    width: 335px;
    margin: 0 auto;
  }
}

/* ------------------------------------
  共通
------------------------------------ */
.page_ec .cont_blog .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_blog.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* ------------------------------------
  ビンテージブログ投稿(一覧：ログイン済)
------------------------------------ */
.cont_post_blog .flex_tl_post_vintage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .flex_tl_post_vintage {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 40px;
  }
}

.cont_post_blog .flex_tl_post_vintage .tl_post_vintage {
  font-weight: bold;
  font-size: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .flex_tl_post_vintage .tl_post_vintage {
    margin-right: 45px;
    font-size: 2.4rem;
  }
}

.cont_post_blog .flex_tl_post_vintage .link_how_to_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont_post_blog .flex_tl_post_vintage .link_how_to_post .ico_hatena {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url("../img_cmn/ico_question.svg") no-repeat center/17px auto;
}

.cont_post_blog .flex_tl_post_vintage .link_how_to_post .how_to_txt {
  font-size: 1.2rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .flex_tl_post_vintage .link_how_to_post .how_to_txt {
    font-size: 1.3rem;
  }
}

.cont_post_blog .vinblog_author_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.cont_post_blog .vinblog_author_flex .author_link_gray {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: solid 1px #E2E2E2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 15px 20px;
  margin: 10px 0 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FCF9F4;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_link_gray {
    width: 330px;
    margin: 0;
    display: block;
    padding: 30px;
  }
}

.cont_post_blog .vinblog_author_flex .author_link_gray .author_tl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_link_gray .author_tl {
    padding-bottom: 20px;
  }
}

.cont_post_blog .vinblog_author_flex .author_link_gray .author_tl .vintage_author {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  margin-right: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_link_gray .author_tl .vintage_author {
    width: 38px;
    height: 38px;
  }
}

.cont_post_blog .vinblog_author_flex .author_link_gray .author_tl .author_name {
  font-size: 1.3rem;
  line-height: 1.8rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_link_gray .author_tl .author_name {
    font-size: 1.4rem;
  }
}

.cont_post_blog .vinblog_author_flex .author_link_gray .account_config {
  width: 100px;
  font-size: 1.2rem;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  text-align: right;
  /* PC */
}

.cont_post_blog .vinblog_author_flex .author_link_gray .account_config .account_config_link {
  position: relative;
  padding-right: 10px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
}

.cont_post_blog .vinblog_author_flex .author_link_gray .account_config .account_config_link::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: calc(5px * 1.5);
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/5px auto;
}

.cont_post_blog .vinblog_author_flex .author_flex_left {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_flex_left {
    margin: 0 0 0 40px;
    width: 730px;
  }
}

.cont_post_blog .vinblog_author_flex .author_flex_left .count_posted,
.cont_post_blog .vinblog_author_flex .author_flex_left .count_published {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #464646;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .count_posted {
  margin-bottom: 10px;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .count_impossible,
.cont_post_blog .vinblog_author_flex .author_flex_left .saving_article {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  margin: 25px 0 10px;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_flex_left .count_impossible,
  .cont_post_blog .vinblog_author_flex .author_flex_left .saving_article {
    font-size: 1.5rem;
  }
}

.cont_post_blog .vinblog_author_flex .author_flex_left .count_impossible {
  color: #F54242;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .saving_article {
  color: #0a0a0a;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving {
  padding: 15px 20px;
  -webkit-box-shadow: 0 0 5px #DEDEDE;
          box-shadow: 0 0 5px #DEDEDE;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible,
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_saving {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left,
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 20px;
    border-right: 1px solid #E2E2E2;
  }
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left .txt_date,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left .txt_date {
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #464646;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left .tl_card_impossible,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left .tl_card_saving,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left .tl_card_impossible,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left .tl_card_saving {
  font-weight: bold;
  font-size: 1.4rem;
  padding: 5px 0 10px;
  border-bottom: 1px solid #E2E2E2;
  color: #464646;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left .tl_card_impossible,
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left .tl_card_saving,
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left .tl_card_impossible,
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left .tl_card_saving {
    border-bottom: none;
  }
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left .tl_card_saving,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left .tl_card_saving {
  margin-bottom: 15px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_left .tl_card_saving,
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_left .tl_card_saving {
    margin-bottom: 0;
  }
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right,
  .cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 20px;
  }
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right .reason_impossible,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right .reason_impossible {
  color: #F54242;
  font-size: 1.3rem;
  padding: 10px 0 15px;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right .flex_btn_bottom,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right .flex_btn_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right .flex_btn_bottom .btn_delete,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right .flex_btn_bottom .btn_fix,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right .flex_btn_bottom .btn_delete,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right .flex_btn_bottom .btn_fix {
  width: calc(50% - 15px / 2);
  padding: 3px 0;
  text-align: center;
  display: inline-block;
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  border: 1px solid #ACACAC;
  cursor: pointer;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right .flex_btn_bottom .btn_delete,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right .flex_btn_bottom .btn_delete {
  background-color: #E2E2E2;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right .flex_btn_bottom .btn_fix,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right .flex_btn_bottom .btn_fix {
  position: relative;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_impossible .card_post_right .flex_btn_bottom .btn_fix::after,
.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right .flex_btn_bottom .btn_fix::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: calc(6px * 1.5);
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/6px auto;
}

.cont_post_blog .vinblog_author_flex .author_flex_left .card_saving .card_post_right .flex_btn_bottom {
  margin-top: 15px;
}

.cont_post_blog.cont_post_blog_list .btn_main_color {
  margin: 30px 0 75px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog.cont_post_blog_list .btn_main_color {
    margin-bottom: 30px;
    width: 355px;
  }
}

.cont_post_blog .how_to_post {
  font-size: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .how_to_post {
    font-size: 2.4rem;
    margin-top: 90px;
  }
}

.cont_post_blog .border_gray.hand_and_pen {
  position: relative;
  margin-bottom: 30px;
}

.cont_post_blog .border_gray.hand_and_pen::before {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #E2E2E2;
  position: absolute;
  top: 0;
  left: 0;
}

.cont_post_blog .border_gray.hand_and_pen::after {
  content: '';
  position: absolute;
  width: 58px;
  height: calc(58px * 7 / 6);
  bottom: 0;
  right: -2px;
  background: url("../img_cont/ico_hand_and_pen_gray.svg") no-repeat center/58px auto;
}

.cont_post_blog .flow_to_publish {
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin: 0 0 25px;
}

.cont_post_blog .flex_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.cont_post_blog .flex_step .ico_step {
  color: #0a0a0a;
  width: 46px;
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-right: 5px;
  font-weight: bold;
  padding-top: 5px;
}

.cont_post_blog .flex_step .ico_step .step_num {
  font-size: 1.8rem;
}

.cont_post_blog .flex_step .step_to_publish {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: bold;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog .flex_step .step_to_publish {
    font-size: 1.8rem;
  }
}

.cont_post_blog .txt_step {
  line-height: 24px;
  margin: 10px 10px 20px;
  padding: 0 0 15px 20px;
  border-left: 1px solid #15195B;
  font-size: 1.3rem;
}

.cont_post_blog .txt_step .txt_step_attention {
  margin-top: 15px;
  padding-left: 1.4em;
  text-indent: -1.4em;
}

.cont_post_blog .txt_step .txt_step_attention .ico_step_attention {
  margin-right: 5px;
}

/* ------------------------------------
  ヴィンテージブログ投稿(入力画面)
------------------------------------ */
.vinblog_form .bg_gray_pc {
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_form .bg_gray_pc {
    background-color: #FCF9F4;
    padding: 40px 0;
  }
}

.vinblog_form .bg_gray_pc .bg_gray_inner {
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_form .bg_gray_pc .bg_gray_inner {
    width: 730px;
    margin: 0 auto;
  }
}

.vinblog_form .bg_gray_pc .bg_gray_inner .tl_vinblog_posting {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
  color: #464646;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_form .bg_gray_pc .bg_gray_inner .tl_vinblog_posting {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
}

.vinblog_form .bg_gray_pc .bg_gray_inner .tl_vinblog_posting.tl_title {
  margin-top: 50px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_form .bg_gray_pc .bg_gray_inner .tl_vinblog_posting.tl_title {
    margin-top: 0;
  }
}

.vinblog_form .bg_gray_pc .bg_gray_inner .vinblog_file_upload {
  border: 1px solid #E2E2E2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .vinblog_form .bg_gray_pc .bg_gray_inner .vinblog_file_upload {
    background-color: #fff;
  }
}

.vinblog_form .bg_gray_pc .bg_gray_inner .vinblog_file_upload .txt_file_upload {
  padding-left: 15px;
  width: calc(100% - 110px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #ACACAC;
}

.vinblog_form .bg_gray_pc .bg_gray_inner .vinblog_file_upload .upload_ico_box {
  border: 1px solid #9E9E9E;
  padding: 5px 8px;
  width: 100px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #464646;
  cursor: pointer;
}

.vinblog_form .bg_gray_pc .bg_gray_inner .vinblog_file_upload .upload_ico_box .ico_picture {
  width: 16px;
  height: 16px;
  position: relative;
  top: -4px;
}

.vinblog_form .bg_gray_pc .bg_gray_inner .blog_img_box img {
  max-width: 100%;
  padding: 10px 5px 0 0;
}

.content_ec.cont_post_blog_form {
  padding-top: 10px !important;
  min-height: calc(100vh - 130px);
}

.flex_form_btn {
  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: fixed;
  top: 0;
  left: 20px;
  background-color: #fff;
  width: calc(100% - 40px - 120px - 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .flex_form_btn {
    position: relative;
    top: unset;
    left: unset;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 335px;
    padding-top: 40px;
    padding-bottom: 0;
  }
}

.flex_form_btn .btn_form_cancel {
  height: 35px;
  line-height: 35px;
  display: block;
  padding-right: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .flex_form_btn .btn_form_cancel {
    height: 30px;
    line-height: 30px;
    width: 150px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #ACACAC;
    text-align: center;
    margin-right: 35px;
  }
}

.flex_form_btn .btn_form_cancel .txt_btn_cancel {
  padding-left: 10px;
  position: relative;
}

.flex_form_btn .btn_form_cancel .txt_btn_cancel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background-image: url("../img_cmn/ico_arrow_gray_left.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  margin-top: -1px;
  pointer-events: none;
  /* PC */
}

@media screen and (min-width: 768px) {
  .flex_form_btn .btn_form_cancel .txt_btn_cancel::before {
    left: -10px;
  }
}

.flex_form_btn .flex_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_form_btn .flex_right .btn_save .submit_btn_save {
  border: 1px solid #9E9E9E;
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  display: block;
  border-radius: 0;
  width: 80px;
  height: 35px;
  line-height: 35px;
  background-color: #fff;
  font-weight: bold;
  color: #464646;
  cursor: pointer;
  /* PC */
}

@media screen and (min-width: 768px) {
  .flex_form_btn .flex_right .btn_save .submit_btn_save {
    width: 150px;
    height: 30px;
    line-height: 30px;
  }
}

.flex_form_tl {
  margin: 0;
}

.flex_form_tl .form_author_img {
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 50%;
  margin-right: 10px;
}

.flex_form_tl .input_form_tl {
  height: 65px;
  width: 100%;
  font-size: 1.5rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #E2E2E2;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  /* PC */
}

@media screen and (min-width: 768px) {
  .flex_form_tl .input_form_tl {
    background-color: #fff;
  }
}

.flex_form_tl .input_form_tl::-webkit-input-placeholder {
  color: #ACACAC;
  color: #464646;
}

.flex_form_tl .input_form_tl:-ms-input-placeholder {
  color: #ACACAC;
  color: #464646;
}

.flex_form_tl .input_form_tl::-ms-input-placeholder {
  color: #ACACAC;
  color: #464646;
}

.flex_form_tl .input_form_tl::placeholder {
  color: #ACACAC;
  color: #464646;
}

.flex_form_tl .input_form_tl:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form_textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #E2E2E2;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1.4rem;
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_textarea {
    background-color: #fff;
  }
}

.form_textarea::-webkit-input-placeholder {
  color: #ACACAC;
  color: #464646;
}

.form_textarea:-ms-input-placeholder {
  color: #ACACAC;
  color: #464646;
}

.form_textarea::-ms-input-placeholder {
  color: #ACACAC;
  color: #464646;
}

.form_textarea::placeholder {
  color: #ACACAC;
  color: #464646;
}

.form_textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form_textarea.input_form_txt {
  height: unset;
  min-height: calc(72px + 20px);
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_textarea.input_form_txt {
    min-height: 600px;
  }
}

.ico_fixed_wrap {
  position: fixed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 678px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0 20px;
}

.ico_fixed_wrap .ico_fixed {
  width: 100%;
  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;
}

.ico_fixed_wrap .ico_fixed .ico_picture_wrap {
  margin-right: 20px;
}

.ico_fixed_wrap .ico_fixed .ico_picture_wrap .ico_picture {
  position: relative;
  top: -2px;
}

.ico_fixed_wrap .ico_fixed .ico_stamp_wrap {
  margin-right: 20px;
}

.form_post_box .vinblog_form_post {
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_post_box .vinblog_form_post {
    text-align: center;
  }
}

.form_post_box .vinblog_form_post .btn_post {
  display: inline-block;
  position: fixed;
  top: 0;
  right: 20px;
  padding: 10px 0 10px 10px;
  background-color: #fff;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_post_box .vinblog_form_post .btn_post {
    position: relative;
    top: unset;
    right: unset;
    padding: 0;
    top: -30px;
  }
  .form_post_box .vinblog_form_post .btn_post::after {
    content: '';
    position: absolute;
    background-image: url("../img_cmn/ico_arrow_white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 6px;
    height: 9px;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.form_post_box .vinblog_form_post .btn_post::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 49%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("../img_cont/ico_check_circle.svg") no-repeat center/15px auto;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_post_box .vinblog_form_post .btn_post::before {
    left: 130px;
  }
}

.form_post_box .vinblog_form_post .btn_post .submit_btn_post {
  background-color: #15195B;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #fff;
  border-radius: 0;
  border: none;
  display: block;
  font-size: 1.3rem;
  width: 120px;
  height: 35px;
  line-height: 35px;
  padding-left: 20px;
  font-weight: bold;
  cursor: pointer;
  /* PC */
}

@media screen and (min-width: 768px) {
  .form_post_box .vinblog_form_post .btn_post .submit_btn_post {
    height: 50px;
    line-height: 50px;
    width: 350px;
    font-size: 1.4rem;
  }
}

.form_post_box .vinblog_form_post .btn_post .txt_btn_post {
  padding-left: 20px;
}

/* ------------------------------------
  ヴィンテージブログ投稿(入力画面)
------------------------------------ */
.cont_post_blog_setting .detail_box {
  margin-bottom: 40px;
}

.cont_post_blog_setting .detail_box .txt_detail {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.cont_post_blog_setting .detail_box .txt_detail.txt_note {
  color: #F54242;
}

.cont_post_blog_setting .tl_default_line {
  border: none;
  padding-bottom: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog_setting .tl_default_line {
    padding-left: 0;
  }
}

.cont_post_blog_setting .form_box .form_table .account_option_td {
  font-size: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog_setting .form_box .form_table .account_option_td {
    width: 400px;
  }
}

.cont_post_blog_setting .form_box .form_table .account_option_td .vinblog_account_label {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 7px;
  margin-bottom: 7px;
  cursor: pointer;
}

.cont_post_blog_setting .form_box .form_table .account_option_td .vinblog_account_label .vinblog_account_imgbox {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #9E9E9E;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_post_blog_setting .form_box .form_table .account_option_td .vinblog_account_label .vinblog_account_imgbox .img_vinblog_account {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_post_blog_setting .form_box .form_table .account_option_td .account_ico_radio:checked + .vinblog_account_imgbox {
  border: 2px solid #0a0a0a;
}

.cont_post_blog_setting .form_box .btn_form_cancel_box {
  position: relative;
  margin-top: 15px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog_setting .form_box .btn_form_cancel_box {
    top: -63px;
  }
}

.cont_post_blog_setting .form_box .btn_form_cancel_box .btn_form_cancel {
  display: block;
  width: 50%;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 0;
  background-color: #fff;
  border: 1px solid #E2E2E2;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  border-radius: 0;
  text-align: center;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog_setting .form_box .btn_form_cancel_box .btn_form_cancel {
    width: 150px;
  }
}

.cont_post_blog_setting .form_box .btn_form_cancel_box .btn_form_cancel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img_cmn/ico_arrow_gray_left.svg") no-repeat center/6px auto;
  width: 6px;
  height: calc(6px * 1.5);
  pointer-events: none;
}

.cont_post_blog_setting .my_account_gray {
  background-color: #FCF9F4;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_post_blog_setting .my_account_gray {
    margin-bottom: 40px;
  }
}

.cont_post_blog_setting .my_account_gray .img_my_account {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #0a0a0a;
  margin-right: 10px;
}

.cont_post_blog_setting .my_account_gray .name_my_account {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.cont_post_blog_form .preview_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_post_blog_form .width100 {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_post_blog_form .image_box {
  display: inline-block;
  width: calc((100% - 5px) / 2);
  margin-right: 5px;
  margin-bottom: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_post_blog_form .image_box:nth-child(2n) {
  margin-right: 0;
}

.cont_post_blog_form .ico_stamp_wrap {
  display: none;
}

.cont_post_blog_form .ico_fixed_wrap .ico_fixed .ico_picture_wrap {
  margin-right: 0;
}

.cont_post_blog_form .input_display_none {
  display: none;
}

/*=================================================
 * &lt;共通&gt;会員ページ
 * ================================================ */
/*=================================================
 * ログインページ
 * ================================================ */
.cont_member-login .page_tl {
  margin-bottom: 20px;
}

.cont_member-login .tl_default {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-login .tl_default {
    font-size: 2.4rem;
    text-align: center;
  }
}

.cont_member-login .login_box {
  background-color: #FCF9F4;
  padding: 30px 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 480px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-login .login_box {
    max-width: 730px;
  }
}

.cont_member-login .login_box .form_box {
  width: 75%;
  margin: 0 auto;
  min-width: 280px;
}

.cont_member-login .login_box .form_box .form_table tr {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-login .login_box .form_box .form_table tr {
    width: 490px;
  }
}

.cont_member-login .login_box .form_box .form_table .form_th {
  padding: 10px 0 5px;
}

.cont_member-login .login_box .form_box .form_table .form_td {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-login .login_box .form_box .form_table .form_td {
    width: 350px;
  }
}

.cont_member-login .login_box .form_box .btn_box_login {
  margin-top: 20px;
}

.cont_member-login .login_box .form_box .btn_box_txt_link {
  min-height: 30px;
}

.cont_member-login .login_box .form_box .btn_box_txt_link .txt_link_min_right {
  margin: 0;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-weight: normal;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-login .login_box .form_box .btn_box_txt_link .txt_link_min_right {
    margin: 0 auto;
  }
}

.cont_member-login .btn_box_member_regist {
  width: 75%;
}

/*=================================================
 * ご登録者情報入力 ページ
 * ================================================ */
.member-input-regist .page_tl {
  margin: 0;
}

.member-input-regist .member_form {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .member-input-regist .member_form {
    margin-top: 50px;
  }
}

.member-input-regist .form_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .member-input-regist .form_box {
    width: 830px;
    margin: 0 auto 0;
  }
}

/*=================================================
 * お届け情報入力 ページ（不要になったページ）
 * ================================================ */
/*=================================================
 * 会員登録確認 ページ
 * ================================================ */
.member-check {
  background-color: #FCF9F4;
}

.member-check .page_tl {
  margin: 0;
}

.member-check .form_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .member-check .form_box {
    width: 830px;
    margin: 0 auto 0;
  }
}

/*=================================================
 * 会員登録完了 ページ
 * ================================================ */
.member-sent .page_tl {
  margin: 0;
}

/*=================================================
 * 会員メニューページ
 * ================================================ */
.cont_member-menu .page_tl {
  margin-bottom: 20px;
}

.cont_member-menu .tl_default_line {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-menu .tl_default_line {
    font-size: 2.4rem;
    text-align: center;
  }
}

.cont_member-menu .tl_default {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-menu .tl_default {
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 20px;
  }
}

.cont_member-menu .member_menu_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-menu .member_menu_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cont_member-menu .member_menu_box .left_box {
    width: 350px;
    margin-right: 30px;
  }
  .cont_member-menu .member_menu_box .right_box {
    width: 350px;
    margin-left: 30px;
  }
}

.cont_member-menu .menu_btn_list {
  margin-bottom: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-menu .menu_btn_list {
    margin-bottom: 0px;
  }
}

.cont_member-menu .menu_btn_list &gt; li {
  margin-bottom: 10px;
  /* PC */
}

.cont_member-menu .menu_btn_list &gt; li:last-child {
  margin-bottom: 0px;
}

@media screen and (min-width: 768px) {
  .cont_member-menu .menu_btn_list &gt; li {
    margin-bottom: 20px;
  }
}

.cont_member-menu .menu_btn_list &gt; li .btn_box {
  margin: 0;
}

.cont_member-menu .menu_btn_list &gt; li .btn_box .btn_list_event {
  position: relative;
}

.cont_member-menu .menu_btn_list &gt; li .btn_box .btn_list_event::after {
  display: block;
  content: '';
  width: 32px;
  height: 32px;
  background-image: url("../img_cmn/ico_event_orange-l.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -16px;
}

.cont_member-menu .menu_btn_list &gt; li .btn_box .btn_list_repair {
  position: relative;
}

.cont_member-menu .menu_btn_list &gt; li .btn_box .btn_list_repair::after {
  display: block;
  content: '';
  width: 32px;
  height: 32px;
  background-image: url("../img_cmn/ico_repair_orange-l.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -16px;
}

.cont_member-menu .btn_post_wrap {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.cont_member-menu .btn_logout {
  background-image: none;
}

/*=================================================
  * 会員情報確認／変更
  * ================================================ */
.cont_member-info-deliver,
.cont_member-info-regist {
  background-color: #FCF9F4;
}

.cont_member-info-deliver .form_box,
.cont_member-info-regist .form_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-info-deliver .form_box,
  .cont_member-info-regist .form_box {
    width: 830px;
    margin: 0 auto 0;
  }
}

.cont_member-info-deliver .form_box .tl_default,
.cont_member-info-regist .form_box .tl_default {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-info-deliver .form_box .tl_default,
  .cont_member-info-regist .form_box .tl_default {
    font-size: 2.4rem;
  }
}

.cont_member-info-deliver .form_box .tl_default .ico_option,
.cont_member-info-regist .form_box .tl_default .ico_option {
  position: relative;
  top: -3px;
}

.cont_member-info-deliver .btn_box_wrap,
.cont_member-info-regist .btn_box_wrap {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_member-info-deliver .btn_box_wrap,
  .cont_member-info-regist .btn_box_wrap {
    width: 830px;
    margin: 0 auto;
  }
}

.cont_member-info-deliver .btn_box_wrap .btn_box_txt_link,
.cont_member-info-regist .btn_box_wrap .btn_box_txt_link {
  min-height: 30px;
}

.cont_member-info-deliver .btn_box_wrap .btn_box_txt_link .txt_link_min_right,
.cont_member-info-regist .btn_box_wrap .btn_box_txt_link .txt_link_min_right {
  margin: 0;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-weight: normal;
}

/*=================================================
 * &lt;共通&gt;会員情報ページ
 * ================================================ */
.cont_setting .tl_default_line {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_setting .tl_default_line {
    font-size: 2.4rem;
    text-align: center;
  }
}

.cont_setting .detail_box {
  margin-bottom: 40px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_setting .detail_box {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: solid 1px #E2E2E2;
  }
}

.cont_setting .detail_box .txt_detail {
  font-size: 1.3rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_setting .detail_box .txt_detail {
    font-size: 1.4rem;
  }
}

.cont_setting .detail_box .txt_detail .txt_note {
  color: #0a0a0a;
}

.cont_setting .txt_link_min_left {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-weight: normal;
}

/*=================================================
 * パスワードをお忘れの場合 ページ
 * ================================================ */
/*=================================================
 * セキュリティコードの入力 ページ
 * ================================================ */
/*=================================================
 * パスワードの再設定 ページ
 * ================================================ */
.cont_password-setting .setting_inner_box {
  margin: 20px -20px -20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_password-setting .setting_inner_box {
    width: 730px;
    margin: 60px auto -40px;
  }
}

.cont_password-setting .setting_inner_box .txt_application_attention {
  font-size: 1.3rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_password-setting .setting_inner_box .txt_application_attention {
    text-align: center;
  }
}

/*=================================================
 * メールマガジン停止 ページ
 * ================================================ */
.cont_magazine_setting .detail_box {
  margin-bottom: 40px;
}

.cont_magazine_setting .detail_box .txt_detail {
  font-size: 1.3rem;
}

.cont_magazine_setting .detail_box .txt_detail .txt_note {
  color: #F54242;
}

/*=================================================
 * アカウント削除 ページ
 * ================================================ */
.cont_account_setting .detail_box {
  padding: 0;
  margin: 0;
  border-bottom: none;
}

.cont_account_setting .detail_box .setting_inner_box {
  margin: 20px -20px 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_account_setting .detail_box .setting_inner_box {
    width: 730px;
    margin: 20px auto 0px;
  }
}

.cont_account_setting .detail_box .setting_inner_box .confirm_list {
  display: inline-block;
  text-align: left;
  font-size: 1.4rem;
}

.cont_account_setting .detail_box .setting_inner_box .confirm_list &gt; li {
  padding-left: 0.9em;
  text-indent: -.9em;
  margin: 8px 0;
}

.cont_account_setting .detail_box .setting_inner_box .confirm_list &gt; li::before {
  content: "• ";
  color: #292929;
  font-size: 1.0rem;
  padding-right: 5px;
  position: relative;
  top: -2px;
}

/*=================================================
 * &lt;共通&gt;注文履歴ページ
 * ================================================ */
/*=================================================
 * 注文履歴
 * ================================================ */
.cont_history-list {
  /* 注文履歴リスト
   --------------- */
}

.cont_history-list .tl_box {
  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-bottom: 10px;
}

.cont_history-list .tl_box .tl_history {
  width: 100px;
  margin-bottom: 0;
}

.cont_history-list .tl_box .select_view_box {
  width: 150px;
  height: 34px;
}

.cont_history-list .tl_box .select_view_box .label_item {
  position: relative;
}

.cont_history-list .tl_box .select_view_box .label_item::after {
  display: block;
  content: '';
  width: 7px;
  height: 14px;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  pointer-events: none;
}

.cont_history-list .tl_box .select_view_box .select_item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  position: relative;
  padding: 5px 30px 5px 8px;
  outline: none;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: -10px;
}

.cont_history-list .history_box .history_list &gt; li {
  border-top: solid 3px #9E9E9E;
  border-bottom: solid 2px #E2E2E2;
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 3px #DEDEDE;
          box-shadow: 1px 1px 3px #DEDEDE;
}

.cont_history-list .history_box .history_list_box {
  padding-bottom: 10px;
}

.cont_history-list .history_box .history_list_box .btn_detail_box {
  position: relative;
  background-color: #FCF9F4;
  padding: 18px 0 10px;
}

.cont_history-list .history_box .history_list_box .btn_detail_box .btn_txt {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 1.3rem;
}

.cont_history-list .history_box .history_list_box .btn_detail_box .btn_txt span {
  position: relative;
  padding-right: 17px;
}

.cont_history-list .history_box .history_list_box .btn_detail_box .btn_txt span::after {
  display: block;
  content: '';
  width: 25px;
  height: 25px;
  background-image: url("../img_cmn/ico_plus-d.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -3px;
  right: -5px;
}

.cont_history-list .history_box .history_list_box .btn_detail_box .history_detail_list li {
  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: 1.3rem;
  margin-bottom: 5px;
}

.cont_history-list .history_box .history_list_box .btn_detail_box .history_detail_list li .tl_item {
  width: 80px;
}

.cont_history-list .history_box .history_list_box .btn_detail_box .history_detail_list li .txt_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cont_history-list .history_box .history_list_box .btn_detail_box .history_detail_list li .txt_item .item_block {
  display: block;
}

.cont_history-list .history_box .history_list_box .btn_detail_box .history_detail_list li .txt_item.txt_note {
  color: #F54242;
  font-weight: bold;
}

.cont_history-list .history_box .history_list_box .btn_detail_box.label_open .btn_txt span::after {
  background-image: url("../img_cmn/ico_minus-d.svg");
}

.cont_history-list .history_box .history_list_box .btn_detail_box.label_open .history_detail_list {
  display: none;
}

.cont_history-list .history_box .history_list_box .history_detail_box_wrap {
  background-color: #FCF9F4;
  padding: 0 0 20px;
}

.cont_history-list .history_box .history_list_box .history_detail_box_wrap .history_detail_box {
  margin-bottom: 20px;
}

.cont_history-list .history_box .history_list_box .history_detail_box_wrap .history_detail_box .tl_history_detail {
  font-weight: bold;
  margin-bottom: 5px;
}

.cont_history-list .history_box .history_list_box .history_detail_box_wrap .history_detail_box .history_detail_list li {
  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: 1.3rem;
  margin-bottom: 5px;
}

.cont_history-list .history_box .history_list_box .history_detail_box_wrap .history_detail_box .history_detail_list li .tl_item {
  width: 110px;
}

.cont_history-list .history_box .history_list_box .history_detail_box_wrap .history_detail_box .history_detail_list li .txt_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cont_history-list .history_box .history_list_box .history_detail_box_wrap .history_detail_box .history_detail_list li .txt_item .item_block {
  display: block;
}

.cont_history-list .history_box .history_list_box .history_detail_box_wrap .history_detail_box .history_detail_list li .txt_item.txt_note {
  color: #F54242;
  font-weight: bold;
}

.cont_history-list .history_box .history_list_box .product_list &gt; li {
  border-bottom: solid 1px #E2E2E2;
}

.cont_history-list .history_box .history_list_box .product_list &gt; li:last-child {
  border-bottom: none;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_img_box {
  width: 30%;
  max-width: 160px;
  margin-right: 4%;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_img_box .product_img {
  display: block;
  width: 100%;
  height: 27vw;
  max-height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_detail_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_detail_box .product_name_box .txt_product_name {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 0px 15px 5px 0;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_detail_box .product_type {
  font-size: 1.3rem;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_detail_box .product_price_box {
  font-size: 1.3rem;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_detail_box .product_price_box .product_price {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_detail_box .product_price_box .product_price .txt_price {
  display: inline-block;
  position: relative;
  padding: 10px 0 10px 13px;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_detail_box .product_price_box .product_price .txt_price::before {
  display: block;
  content: '';
  width: 8px;
  height: 11px;
  background-image: url("../img_cmn/img_en_mark.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.cont_history-list .history_box .history_list_box .product_list .history_product_box .product_detail_box .product_price_box .btn_link_detail .txt_link_min_right {
  color: #464646;
  font-weight: normal;
  font-size: 1.2rem;
}

.cont_history-list .btn_box {
  margin-top: 40px;
}

/* ------------------------------------
  共通
------------------------------------ */
.cont_gallery .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_gallery.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .cont_gallery .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_gallery_pc.jpg");
    background-size: cover;
  }
}

/* ------------------------------------
  ギャラリー
------------------------------------ */
.cont_gallery {
  /* カテゴリタブ切替
  --------------- */
  /* 切替タブによる表示制御（js使用）
  --------------- */
  /* ギャラリー一覧
  --------------- */
}

.cont_gallery .box_gallery_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .cont_gallery .box_gallery_type {
    width: 1100px;
    height: 50px;
  }
}

.cont_gallery .box_gallery_type .btn_gallery_type {
  width: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
  font-size: 1.3rem;
  background-color: #FFF;
  text-align: center;
  border-bottom: solid 1px #E2E2E2;
}

@media screen and (min-width: 768px) {
  .cont_gallery .box_gallery_type .btn_gallery_type {
    font-size: 1.6rem;
    cursor: pointer;
  }
}

.cont_gallery .box_gallery_type .btn_gallery_type.active {
  color: #0a0a0a;
  font-weight: bold;
  border-top: solid 2px #15195B;
  border-left: solid 1px #E2E2E2;
  border-right: solid 1px #E2E2E2;
  border-bottom: none;
}

.cont_gallery .box_gallery_type .btn_gallery_type:first-of-type.active {
  border-left: none;
}

.cont_gallery .box_gallery_type .btn_gallery_type:last-of-type.active {
  border-right: none;
}

.cont_gallery .box_gallery_type .btn_gallery_type .txt_gallery_name {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .cont_gallery .box_gallery_type .btn_gallery_type .txt_gallery_name {
    font-size: 16px;
  }
}

.cont_gallery .gallery_type {
  display: none;
}

.cont_gallery .gallery_type.show {
  display: block !important;
}

.cont_gallery .gallery_type {
  margin: 30px 0;
}

@media screen and (min-width: 768px) {
  .cont_gallery .gallery_type {
    margin: 40px 0 60px;
  }
}

.cont_gallery .gallery_type .gallery_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}

.cont_gallery .gallery_type .gallery_list li {
  width: 33.3%;
  padding: 0 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .cont_gallery .gallery_type .gallery_list li {
    width: 260px;
    padding: 0 8px 16px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}

.cont_gallery .gallery_type .gallery_list li img {
  display: block;
  width: 100%;
  height: 28vw;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (min-width: 768px) {
  .cont_gallery .gallery_type .gallery_list li img {
    max-height: inherit;
    height: 260px;
  }
}

.cont_gallery .sns_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .cont_gallery .sns_btn_box {
    margin: 0 auto;
  }
}

.cont_gallery .sns_btn_box .ico_sns_instagram,
.cont_gallery .sns_btn_box .ico_sns_youtube {
  display: block;
  width: 60px;
  height: 60px;
  background: #FFF no-repeat center/50%;
  border-radius: 1px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .cont_gallery .sns_btn_box .ico_sns_instagram,
  .cont_gallery .sns_btn_box .ico_sns_youtube {
    height: 32px;
  }
}

.cont_gallery .sns_btn_box .ico_sns_youtube {
  background-image: url("../img_top-co/ico_youtube.svg");
}

.cont_gallery .sns_btn_box .ico_sns_instagram {
  background-image: url("../img_cont/ico_instagram.png");
}

@media screen and (min-width: 768px) {
  .cont_gallery .sns_btn_box .insta {
    padding: 5px;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .cont_gallery .sns_btn_box .instabutton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: solid 1px;
    padding: 11px 39px;
    color: #464646;
    margin: 0 auto;
  }
  .cont_gallery .sns_btn_box .insta_li {
    margin: 30px auto 20px;
  }
  .cont_gallery .sns_btn_box .before {
    background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/6px auto;
    width: 32px;
  }
}

@media screen and (min-width: 768px) {
  .insta_btn_box {
    text-align: center;
    width: 100%;
  }
  .insta_btn_box .insta_btn {
    position: relative;
    width: 350px;
    height: 50px;
    line-height: 45px;
    display: inline-block;
    border: 1px solid #464646;
    /* PC */
  }
  .insta_btn_box .insta_btn:hover {
    opacity: 0.8;
  }
  .insta_btn_box .insta_btn::before {
    content: '';
    position: absolute;
    width: 6px;
    height: calc(6px * 1.5);
    background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/6px auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10px;
  }
  .insta_btn_box .insta_btn .ico_list {
    font-size: 14px;
    font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-weight: bold;
  }
  .insta_btn_box .ico_instagram {
    background-image: url("../img_cont/ico_instagram.png");
    background: #FFF no-repeat center/50%;
    position: absolute;
  }
}

/* ------------------------------------
  共通
------------------------------------ */
.page_corporate .cont_repair .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_repair.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .page_corporate .cont_repair .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_repair_pc.jpg");
    background-size: cover;
  }
}

/* ------------------------------------
  080_repair.html
------------------------------------ */
.cont_repair_list .tl_default_line {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .tl_default_line {
    margin-bottom: 30px;
  }
}

.cont_repair_list .contact_link_flex {
  margin-top: 20px;
}

.cont_repair_list .contact_link_flex .phone {
  padding: 15px 20px;
  background-color: #FCF9F4;
}

.cont_repair_list .contact_link_flex .phone .btn_box .btn_phone_link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #9E9E9E;
  background-color: #fff;
}

.cont_repair_list .contact_link_flex .phone .btn_box .btn_phone_link .phone_number {
  position: relative;
  padding-left: 15px;
  font-weight: bold;
  font-size: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.cont_repair_list .contact_link_flex .phone .btn_box .btn_phone_link .phone_number::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 13px;
  background-image: url(../img_cont/ico_phone.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.cont_repair_list .contact_link_flex .phone .txt_contact_link {
  font-size: 1.2rem;
  text-align: center;
}

.cont_repair_list .contact_link_flex .mail {
  padding: 15px 20px;
  background-color: #fff;
  padding-bottom: 0;
}

.cont_repair_list .contact_link_flex .mail .btn_box {
  margin-top: 0;
  margin-bottom: 0;
}

.cont_repair_list .contact_link_flex .mail .btn_box .btn_mailform_link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #9E9E9E;
  background-color: #fff;
  position: relative;
}

.cont_repair_list .contact_link_flex .mail .btn_box .btn_mailform_link::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: calc(6px * 1.5);
  background-image: url(../img_cmn/ico_arrow_gray_right.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}

.cont_repair_list .contact_link_flex .mail .btn_box .btn_mailform_link .form_link {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding-left: 20px;
  position: relative;
}

.cont_repair_list .contact_link_flex .mail .btn_box .btn_mailform_link .form_link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background-image: url(../img_cont/ico_mail.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.cont_repair_list .repair_flow_box .repair_flow_inner {
  background-color: #DDDDDD;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box {
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 50px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box {
    width: 830px;
    margin: 0 auto;
    padding: 25px 30px 30px 125px;
    margin-bottom: 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box:last-child {
  margin-bottom: 0;
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box:last-child::after {
  display: none;
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box::before {
  content: '';
  position: absolute;
  border-top: 12px solid #15195B;
  border-left: 32px solid #15195B;
  border-bottom: 12px solid transparent;
  border-right: 32px solid transparent;
  left: 0;
  top: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box::before {
    border-top: 15px solid #15195B;
    border-left: 40px solid #15195B;
    border-bottom: 15px solid transparent;
    border-right: 40px solid transparent;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 40px;
  background-color: #15195B;
  bottom: -25px;
  left: calc(50% - 1px);
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .txt_step {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  color: #0a0a0a;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .txt_step {
    position: absolute;
    left: 30px;
    top: 50px;
    font-size: 1.8rem;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .txt_step .step_number {
  font-size: 2.4rem;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .txt_step .step_number {
    font-size: 4rem;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .tl_step_box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .step_img_box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .txt_step_flex {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .box_check_red {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .tl_step_box {
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  font-size: 1.7rem;
  line-height: 2.4rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .tl_step_box {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-right: 20px;
    margin-bottom: 0;
    width: 360px;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .txt_step_flex {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .txt_step_flex {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .txt_step_flex.unique_mb_sp {
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .txt_step_flex.unique_mb_sp {
    margin-bottom: 0;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .txt_step_flex.unique_mb_pc {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .txt_step_flex.unique_mb_pc {
    margin-top: 5px;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .txt_step_flex.txt_indent {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .step_img_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .step_img_box {
    width: 295px;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .step_img_box.step_one {
  padding-bottom: 20px;
  border-bottom: 1px dotted #6E6E6E;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .step_img_box.step_one {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .step_img_box .img_repair_step {
  width: 100%;
  height: auto;
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .box_check_red {
  padding: 20px 20px 20px 50px;
  margin-right: -20px;
  margin-left: -20px;
  margin-bottom: 20px;
  background-color: #FFF3F3;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .box_check_red {
    margin-top: 20px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 20px 30px 20px 60px;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .box_check_red .txt_check_item {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 2.1rem;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .box_check_red .txt_check_item {
    margin-bottom: 15px;
  }
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .box_check_red .txt_check_item:last-child {
  margin-bottom: 0;
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .repair_step_flex .box_check_red .txt_check_item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 3px;
  width: 20px;
  height: 17px;
  background-image: url(../img_cont/ico_check_list.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex .phone {
    padding-right: 15px;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex .phone .btn_box {
    margin-top: 0;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex .phone .btn_box .btn_phone_link {
    width: 310px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex .phone .txt_contact_link {
    font-size: 1.3rem;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex .mail {
    background-color: #FCF9F4;
    padding-left: 0;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex .mail .btn_box .btn_mailform_link {
    padding: 0;
    width: 310px;
    height: 45px;
    line-height: 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 10px;
  }
  .cont_repair_list .repair_flow_box .repair_flow_inner .repair_step_box .contact_link_flex .mail .txt_contact_link {
    font-size: 1.3rem;
    text-align: center;
  }
}

.cont_repair_list .repair_charges_reference {
  padding-top: 60px;
}

.cont_repair_list .repair_charges_reference .txt_reference_box {
  margin-bottom: 30px;
}

.cont_repair_list .repair_charges_reference .txt_reference_box .txt_charges_reference {
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_charges_reference .txt_reference_box .txt_charges_reference {
    margin-bottom: 5px;
  }
  .cont_repair_list .repair_charges_reference .txt_reference_box .txt_charges_reference:first-of-type {
    margin-bottom: 20px;
  }
}

.cont_repair_list .repair_charges_reference .txt_reference_box .txt_charges_reference.txt_indent {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.cont_repair_list .repair_charges_reference .txt_reference_box .txt_charges_reference.txt_red {
  font-weight: bold;
  color: #F54242;
}

.cont_repair_list .repair_charges_reference .subtl_charges_reference {
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_charges_reference .subtl_charges_reference {
    font-size: 2rem;
  }
}

.cont_repair_list .repair_charges_reference .charges_table {
  border: 1px solid #ACACAC;
  margin-bottom: 50px;
  width: 100%;
}

.cont_repair_list .repair_charges_reference .charges_table .thead_tr {
  border-bottom: 1px solid #ACACAC;
}

.cont_repair_list .repair_charges_reference .charges_table .thead_tr .thead_th {
  width: calc(100% * (160 / 335));
  color: #FFF;
  background-color: #15195B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_charges_reference .charges_table .thead_tr .thead_th {
    font-size: 1.5rem;
  }
}

.cont_repair_list .repair_charges_reference .charges_table .thead_tr .thead_th:first-child {
  border-right: 1px solid #FFF;
}

.cont_repair_list .repair_charges_reference .charges_table .thead_tr .thead_th:nth-child(2) {
  width: calc(100% * (175 / 335));
}

.cont_repair_list .repair_charges_reference .charges_table .tbody_tr {
  border-bottom: 1px solid #ACACAC;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.cont_repair_list .repair_charges_reference .charges_table .tbody_tr:nth-child(2n) {
  background-color: #FCF9F4;
}

.cont_repair_list .repair_charges_reference .charges_table .tbody_tr .tbody_th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% * (160 / 335));
  font-weight: bold;
  font-size: 1.3rem;
  padding: 17px 10px;
  border-right: 1px solid #ACACAC;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_charges_reference .charges_table .tbody_tr .tbody_th {
    padding-left: 30px;
    font-size: 1.5rem;
  }
}

.cont_repair_list .repair_charges_reference .charges_table .tbody_tr .tbody_td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 17px 0;
  vertical-align: middle;
  width: calc(100% * 175 / 335 / 2);
  position: relative;
  text-align: center;
  /* PC */
}

.cont_repair_list .repair_charges_reference .charges_table .tbody_tr .tbody_td:first-of-type {
  border-right: 1px dotted #ACACAC;
}

.cont_repair_list .repair_charges_reference .charges_table .tbody_tr .tbody_td:nth-of-type(2) {
  font-size: 1.3rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_charges_reference .charges_table .tbody_tr .tbody_td:nth-of-type(2) {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_charges_reference .charges_table .tbody_tr .tbody_td {
    font-size: 1.5rem;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_left {
  margin-bottom: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_left {
    margin-bottom: 0;
    margin-right: 30px;
    width: 400px;
    text-align: center;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .tl_request_phone {
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 16px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .tl_request_phone {
    font-size: 1.8rem;
    padding-left: 0;
    text-align: center;
    display: inline-block;
    padding-left: 23px;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .tl_request_phone::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 15px;
  background-image: url(../img_cont/ico_phone.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .tl_request_phone::before {
    width: 16px;
    height: 20px;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone {
    height: 200px;
    padding: 35px 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone .btn_box .btn_phone_link {
  border: 1px solid #15195B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone .btn_box .btn_phone_link .phone_number {
  color: #0a0a0a;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone .btn_box .btn_phone_link .phone_number {
    font-size: 2.2rem;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone .btn_box .btn_phone_link .phone_number::before {
  background-image: url(../img_cont/ico_phone_orange.svg);
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone .btn_box .btn_phone_link .phone_number::before {
    width: 12px;
    height: 16px;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone .txt_contact_link {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_left .contact_link_flex .phone .txt_contact_link {
    font-size: 1.3rem;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_right {
    width: 400px;
    text-align: center;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .tl_request_form {
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .tl_request_form {
    text-align: center;
    font-size: 1.8rem;
    padding-left: 30px;
    text-align: center;
    display: inline-block;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .tl_request_form::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background-image: url(../img_cont/ico_mail.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .tl_request_form::before {
    width: 22px;
    height: 18px;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .bg_red {
  background-color: #FFF3F3;
  padding: 20px;
  margin: 0 -20px;
  text-align: left;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .bg_red {
    margin: 0;
    height: 76px;
    padding: 15px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .txt_request_login {
  margin-top: 20px;
  text-align: left;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .txt_request_login {
    margin-top: 16px;
    padding: 0 20px;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .btn_box {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .btn_box {
    margin-top: 16px;
    margin-bottom: 0;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .btn_box .btn_repairform_link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border: 1px solid #9E9E9E;
  background-color: #fff;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .btn_box .btn_repairform_link::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: calc(6px * 1.5);
  background-image: url(../img_cmn/ico_arrow_gray_right.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .btn_box .btn_repairform_link .txt_btn_repairform {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding-left: 20px;
  position: relative;
}

.cont_repair_list .repair_request_box .repair_request_flex .repair_request_right .btn_box .btn_repairform_link .txt_btn_repairform::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background-image: url(../img_cont/ico_mail.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

/* ------------------------------------
  ランタン修理 メインページ
------------------------------------ */
.cont_repair .repair_product_box {
  margin-bottom: 50px;
}

.cont_repair .repair_product_box .txt_repair_product {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair .repair_product_box .txt_repair_product {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.cont_repair .repair_product_box .repair_contact_box .txt_repair_contact {
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair .repair_product_box .repair_contact_box .txt_repair_contact {
    margin-bottom: 40px;
  }
}

/* ------------------------------------
  repairお問い合わせ
------------------------------------ */
.cont_repair.repair-input .page_tl {
  margin-bottom: 0;
}

/* ------------------------------------
  repair確認
------------------------------------ */
.cont_repair.repair-check {
  background-color: #FCF9F4;
  margin-bottom: unset;
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-check .repair_form {
    max-width: 830px;
    margin: auto;
  }
}

.cont_repair.repair-check .form_box .txt_guide {
  margin-bottom: 30px;
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-check .form_box .txt_guide {
    font-size: 14px;
  }
}

.cont_repair.repair-check .form_box .payment_check_box .pay_check_box {
  border-bottom: solid 1px #E2E2E2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.cont_repair.repair-check .form_box .payment_check_box .pay_check_box .check_pay_box {
  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: 0 0 2px;
}

.cont_repair.repair-check .form_box .payment_check_box .pay_check_box .check_pay_box .num_check_pay {
  font-size: 1.5rem;
}

.cont_repair.repair-check .form_box .payment_check_box .pay_sum_check_box .check_sum_box {
  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: 0 0 2px;
}

.cont_repair.repair-check .form_box .payment_check_box .pay_sum_check_box .check_sum_box .tl_check_sum {
  font-size: 1.6rem;
}

.cont_repair.repair-check .form_box .payment_check_box .pay_sum_check_box .check_sum_box .num_check_sum {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2.0rem;
}

.cont_repair.repair-check .form_box .payment_check_box .pay_sum_check_box .check_method_box {
  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: 0 0 2px;
}

.cont_repair.repair-check .form_box .payment_check_box .pay_sum_check_box .check_method_box .txt_check_method {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* ------------------------------------
  repair完了
------------------------------------ */
.cont_repair.repair-sent .page_tl {
  margin-bottom: unset;
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .sent_msg_box {
    text-align: center;
  }
}

.cont_repair.repair-sent .sent_box .sent_msg_box .txt_msg {
  color: #15195B;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .sent_msg_box .txt_order_info {
    line-height: 1.5rem;
  }
}

.cont_repair.repair-sent .sent_box .sent_msg_box .txt_order_info .info_title {
  font-weight: bold;
}

.cont_repair.repair-sent .sent_box .repair_step_box {
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 50px;
  position: relative;
  border: 1px solid #ACACAC;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box {
    width: calc(830px + 2px);
    margin: 0 auto;
    padding: 25px 30px 30px 125px;
    margin-bottom: 45px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box:last-child {
  margin-bottom: 0;
}

.cont_repair.repair-sent .sent_box .repair_step_box:last-child::after {
  display: none;
}

.cont_repair.repair-sent .sent_box .repair_step_box::before {
  content: '';
  position: absolute;
  border-top: 12px solid #15195B;
  border-left: 32px solid #15195B;
  border-bottom: 12px solid transparent;
  border-right: 32px solid transparent;
  left: 0;
  top: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box::before {
    border-top: 15px solid #15195B;
    border-left: 40px solid #15195B;
    border-bottom: 15px solid transparent;
    border-right: 40px solid transparent;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .txt_step {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  color: #0a0a0a;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .txt_step {
    position: absolute;
    left: 30px;
    top: 50px;
    font-size: 1.8rem;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .txt_step .step_number {
  font-size: 2.4rem;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .txt_step .step_number {
    font-size: 4rem;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .tl_step_box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .step_img_box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .txt_step_flex {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .box_check_red {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .tl_step_box {
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  font-size: 1.7rem;
  line-height: 2.4rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .tl_step_box {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-right: 20px;
    margin-bottom: 0;
    width: 360px;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .txt_step_flex {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .txt_step_flex {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .txt_step_flex.unique_mb_sp {
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .txt_step_flex.unique_mb_sp {
    margin-bottom: 0;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .txt_step_flex.unique_mb_pc {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .txt_step_flex.unique_mb_pc {
    margin-top: 10px;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .txt_step_flex.txt_indent {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .step_img_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .step_img_box {
    width: 295px;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .step_img_box.step_one {
  padding-bottom: 20px;
  border-bottom: 1px dotted #6E6E6E;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .step_img_box.step_one {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .step_img_box .img_repair_step {
  width: 100%;
  height: auto;
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .box_check_red {
  padding: 20px 20px 20px 50px;
  margin-right: -20px;
  margin-left: -20px;
  margin-bottom: 20px;
  background-color: #FFF3F3;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .box_check_red {
    margin-top: 20px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    width: 100%;
    padding: 20px 30px 20px 60px;
  }
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .box_check_red .txt_check_item {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 2.1rem;
  position: relative;
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .box_check_red .txt_check_item:last-child {
  margin-bottom: 0;
}

.cont_repair.repair-sent .sent_box .repair_step_box .repair_step_flex .box_check_red .txt_check_item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 3px;
  width: 20px;
  height: 17px;
  background-image: url(../img_cont/ico_check_list.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.cont_repair.repair-sent .sent_box .repair_step_box .btn_box {
  margin-top: 30px;
  padding-right: calc(125px - 30px);
}

/* ------------------------------------
  共通
------------------------------------ */
.cont_cleaning .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_cleaning.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .cont_cleaning .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_cleaning_pc.jpg");
    background-size: cover;
  }
}

/* ------------------------------------
  テントクリーニング メインページ
------------------------------------ */
.cont_cleaning .cleaning_product_box .txt_cleaning_product {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .cont_cleaning .cleaning_product_box .txt_cleaning_product {
    font-size: 2.0rem;
  }
}

.cont_cleaning .cleaning_product_box .cleaning_contact_box .txt_cleaning_contact {
  margin-bottom: 20px;
}

/* ------------------------------------
  共通
------------------------------------ */
.page_corporate .cont_event .page_tl_box {
  background-image: url("../img_cont/bg_tl_event.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_corporate .cont_event .page_tl_box {
    background-image: url("../img_cont/bg_tl_event_pc@2x.jpg");
  }
}

/* ------------------------------------
/* カレンダー
------------------------------------ */
.calendar &gt; * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.calendar .calendar__tab {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  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;
  /* SP */
}

.calendar .calendar__tab .calendar__select_month {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #9E9E9E;
}

.calendar .calendar__tab .calendar__select_month:first-child::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
  width: 7px;
  height: calc(7px * 1.5);
  background: url("../img_cmn/ico_arrow_white.svg") no-repeat center/100% 100%;
  pointer-events: none;
}

.calendar .calendar__tab .calendar__select_month:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 7px;
  height: calc(7px * 1.5);
  background: url("../img_cmn/ico_arrow_white.svg") no-repeat center/100% 100%;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .calendar .calendar__tab {
    margin-bottom: 10px;
  }
}

.calendar .calendar__body {
  border-left: #ebf1fb 1px solid;
  /* SP */
}

@media screen and (max-width: 767px) {
  .calendar .calendar__body {
    font-size: 1.0rem;
  }
}

@media screen and (max-width: 767px) and (max-width: 350px) {
  .calendar .calendar__body {
    font-size: 0.8rem;
  }
}

.calendar .calendar__body &gt; * {
  width: calc(100% / 7);
  height: calc((100vw - 40px) / 5.5);
  max-height: calc((678px - 40px) / 7);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .calendar .calendar__body &gt; * {
    height: calc(335px / 5.5);
  }
}

.calendar .calendar__body &gt; div {
  border-right: #ebf1fb 1px solid;
  border-bottom: #ebf1fb 1px solid;
}

.calendar .calendar__body .calendar__body_dow {
  display: block;
  text-align: center;
  color: #FFF;
  background-color: #848484;
  font-weight: bold;
  height: 23px;
  line-height: 23px;
}

.calendar .calendar__body .calendar__body_date .calendar__link {
  display: block;
  width: 100%;
  height: 100%;
}

.calendar .calendar__body .calendar__body_date .calendar__body_date_num {
  padding-left: 5px;
}

.calendar .calendar__body .calendar__body_date:nth-child(7n) {
  background-color: #EAF6FF;
}

.calendar .calendar__body .calendar__body_date:nth-child(7n) .calendar__body_date_num {
  color: #0078DD;
}

.calendar .calendar__body .calendar__body_date:nth-child(7n-6) {
  background-color: #FFF2F2;
}

.calendar .calendar__body .calendar__body_date:nth-child(7n-6) .calendar__body_date_num {
  color: #F54242;
}

.calendar .calendar__body .calendar__body_date.disable {
  background-color: #EEE;
  cursor: no-drop;
  display: block;
}

.calendar .calendar__body .calendar__body_date.disable .calendar__body_date_num {
  visibility: hidden;
}

.calendar .calendar__body .calendar__body_date .calendar__body_date_box {
  text-align: center;
  font-size: 1.0rem;
  letter-spacing: -1px;
  line-height: 14px;
}

@media screen and (max-width: 350px) {
  .calendar .calendar__body .calendar__body_date .calendar__body_date_box {
    font-size: 0.8rem;
    line-height: 13px;
  }
}

/* ------------------------------------
/* イベントrスト
------------------------------------ */
.status_flag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .status_flag {
    margin-bottom: 5px;
  }
}

.status_flag span {
  padding: 4px 8px 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-right: 3px;
  margin-bottom: 6px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .status_flag span {
    padding: 6px 12px 5px;
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}

.status_flag span:last-child {
  margin-right: 0;
}

.status_flag .status_now {
  background-color: #15195B;
  color: #FFF;
}

.status_flag .status_held {
  border: 1px solid #15195B;
  color: #0a0a0a;
}

.status_flag .status_accepting {
  border: 1px solid #F54242;
  color: #F54242;
}

.status_flag .status_closed {
  border: 1px solid #6E6E6E;
}

.status_flag .status_end {
  background-color: #6E6E6E;
  color: #fff;
}

.event_list {
  margin-bottom: 50px;
}

.event_list .event_card {
  margin-top: 25px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_list .event_card:first-child {
    margin-top: 0;
  }
}

.event_list .event_card.event_end .event_card_wrap {
  padding: 10px 0;
  background-color: #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_list .event_card.event_end .event_card_wrap {
    padding: 0;
  }
}

.event_list .event_card .event_card_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event_list .event_card .event_card_wrap .event_card_img {
  width: calc(150px / 335px);
  height: 32vw;
  max-height: 204px;
  margin-right: 13px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.event_list .event_card .event_card_wrap .event_card_content {
  width: calc(60% - 15px);
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_list .event_card .event_card_wrap .event_card_content {
    width: 100%;
    padding: 12px 0;
  }
}

.event_list .event_card .event_card_wrap .event_card_content .date_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_list .event_card .event_card_wrap .event_card_content .date_box {
    margin-bottom: 5px;
  }
}

.event_list .event_card .event_card_wrap .event_card_content .date_box .txt_date {
  display: inline-block;
  font-size: 0;
}

.event_list .event_card .event_card_wrap .event_card_content .date_box .txt_date .date {
  font-size: 1.3rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_list .event_card .event_card_wrap .event_card_content .date_box .txt_date .date {
    font-size: 1.6rem;
  }
}

.event_list .event_card .event_card_wrap .event_card_content .date_box .txt_date .date:last-of-type {
  margin-right: 8px;
}

.event_list .event_card .event_card_wrap .event_card_content .event_card_tl {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_list .event_card .event_card_wrap .event_card_content .event_card_tl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.event_list .event_card .event_card_wrap .event_card_content .event_card_txt {
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_list .event_card .event_card_wrap .event_card_content .event_card_txt {
    margin-bottom: 10px;
    max-height: 50px;
    overflow: hidden;
  }
}

.event_list .event_card .event_card_wrap .event_card_content .readmore {
  font-size: 1.2rem;
  padding-right: 15px;
  position: relative;
  color: #464646;
}

.event_list .event_card .event_card_wrap .event_card_content .readmore::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: calc(6px * 1.5);
  background: url("../img_cmn/ico_arrow_gray_right.svg") no-repeat center/100%;
}

/*=================================================
  * イベント一覧
  * ================================================ */
.cont_event .tl_section {
  font-size: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event .tl_section {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

.cont_event .tl_section.application {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #0a0a0a;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event .tl_section.application {
    text-align: center;
  }
}

.cont_event .border_gray {
  width: 100%;
  border-top: 1px solid #E2E2E2;
  margin: 15px 0 20px;
}

.cont_event .pc_none .page_nav {
  margin-bottom: 50px;
}

.cont_event .col-md-12 {
  width: 100%;
  position: relative;
  min-height: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* SP */
}

/* PC */
@media screen and (min-width: 768px) {
  .event_flex_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .event_flex_box .event_inner_left {
    width: 700px;
    margin: 0;
  }
  .event_flex_box .event_inner_left .event_list .event_card .event_card_wrap {
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
  }
  .event_flex_box .event_inner_right {
    width: 335px;
  }
}

/*=================================================
 * イベント詳細
 * ================================================ */
.cont_event_detail {
  /* ------------------------------------
  /* ナビゲーションボタン（矢印）　js：swiperの設定上書き
  ------------------------------------ */
  /* ------------------------------------
  /* ページネーション　js：swiperの設定上書き
  ------------------------------------ */
}

.cont_event_detail .event_inner_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .event_inner_box {
    width: 830px;
    margin: 0 auto;
    padding: 30px 30px 40px;
    border-top: 1px solid #E2E2E2;
  }
  .cont_event_detail .event_inner_box:last-child {
    border-bottom: 1px solid #E2E2E2;
  }
  .cont_event_detail .event_inner_box.nopadding {
    padding: 0;
    border: none;
  }
  .cont_event_detail .event_inner_box.nopadding:last-child {
    border: none;
  }
}

.cont_event_detail .tl_section {
  margin-bottom: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .tl_section {
    width: 830px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.2rem;
  }
}

.cont_event_detail .border_gray {
  margin-top: 50px;
  margin-bottom: 30px;
}

.cont_event_detail .date_tl_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
}

.cont_event_detail .tl_sub_section {
  font-size: 1.4rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin: 30px 0 20px;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .tl_sub_section {
    margin-top: 0;
  }
}

.cont_event_detail .event_img_box {
  margin: 20px 0 25px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .event_img_box {
    width: 830px;
    margin: 0 auto 50px;
  }
}

.cont_event_detail .event_img_box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.cont_event_detail .detail_img_block &gt; ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .detail_img_block &gt; ul {
    margin: 0;
  }
}

.cont_event_detail .detail_img_block &gt; ul li {
  width: 33.3%;
  padding: 0 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .detail_img_block &gt; ul li {
    width: 150px;
    height: 150px;
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 0;
  }
  .cont_event_detail .detail_img_block &gt; ul li:nth-child(5n) {
    margin-right: 0;
  }
}

.cont_event_detail .detail_img_block &gt; ul li img {
  display: block;
  width: 100%;
  height: 28vw;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  margin: 0 auto;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .detail_img_block &gt; ul li img {
    height: 100%;
  }
}

.cont_event_detail .swiper-button-next,
.cont_event_detail .swiper-button-prev {
  color: #9E9E9E;
}

.cont_event_detail .swiper-button-next::after,
.cont_event_detail .swiper-button-prev::after {
  font-size: 25px;
}

.cont_event_detail .swiper-pagination-bullet {
  background-color: #9E9E9E;
  opacity: 0.9;
}

.cont_event_detail .swiper-pagination-bullet-active {
  background: #FFF;
  opacity: 0.9;
}

.cont_event_detail .txt_application_login {
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .txt_application_login {
    text-align: center;
  }
}

.cont_event_detail .box_link .to_application_form {
  display: block;
  background-color: #15195B;
  color: #FFF;
  height: 50px;
  text-align: center;
  line-height: 50px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_event_detail .box_link .to_application_form {
    width: 350px;
    margin: 0 auto;
  }
}

.cont_event_detail .box_link .to_application_form::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background-image: url("../img_cmn/ico_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.cont_event_detail .box_link .to_application_form .to_appli_span {
  padding-left: 20px;
  position: relative;
  font-weight: bold;
}

.cont_event_detail .box_link .to_application_form .to_appli_span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background-image: url("../img_cmn/ico_mail_white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

/*=================================================
 * イベント申込（入力）
 * ================================================ */
.event_input .page_tl {
  margin: 0;
}

.event_input .repair_form {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_input .repair_form {
    margin-top: 50px;
  }
}

.event_input .form_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_input .form_box {
    width: 830px;
    margin: 0 auto;
  }
}

/*=================================================
 * イベント申込（確認）
 * ================================================ */
.event_check {
  background-color: #FCF9F4;
}

.event_check .page_tl {
  margin: 0;
}

.event_check .form_box {
  /* PC */
}

@media screen and (min-width: 768px) {
  .event_check .form_box {
    width: 830px;
    margin: 0 auto;
  }
}

/*=================================================
 * イベント申込（完了）
 * ================================================ */
.cont_event_sent .page_tl {
  margin: 0;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
  * ピックアップ動画 &lt;共通&gt;
  * ================================================ */
/* ------------------------------------
/* 動画リスト
------------------------------------ */
.all_movie {
  /* タイトル
  --------------- */
  /* 動画リスト
  --------------- */
}

.all_movie .tl_all_movie {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .all_movie .tl_all_movie {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

.all_movie .movie_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
  /* PC */
}

.all_movie .movie_list &gt; li {
  width: 100%;
  margin-bottom: 8%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .all_movie .movie_list &gt; li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 5%;
  }
  .all_movie .movie_list &gt; li:nth-child(3n) {
    margin-right: 0;
  }
}

.all_movie .movie_card .movie_box {
  margin-bottom: 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .all_movie .movie_card .movie_box {
    margin-bottom: 5px;
  }
}

.all_movie .movie_card .movie_box &gt; img {
  width: 100%;
  height: calc(100vw * 196 / 375);
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .all_movie .movie_card .movie_box &gt; img {
    height: 196px;
  }
}

.all_movie .movie_card .txt_date {
  margin: 8px 0 3px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* PC */
}

@media screen and (min-width: 768px) {
  .all_movie .movie_card .txt_date {
    margin-bottom: 5px;
  }
}

.all_movie .movie_card .txt_date .date {
  font-size: 1.2rem;
  color: #464646;
  /* PC */
}

@media screen and (min-width: 768px) {
  .all_movie .movie_card .txt_date .date {
    font-size: 1.3rem;
  }
}

.all_movie .movie_card .txt_date .new {
  font-size: 1.2rem;
  font-weight: bold;
  color: #F54242;
  margin-left: 8px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .all_movie .movie_card .txt_date .new {
    font-size: 1.3rem;
  }
}

.all_movie .movie_card .txt_movie {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .all_movie .movie_card .txt_movie {
    font-size: 1.6rem;
    line-height: inherit;
  }
}

.cont_movie {
  /* ------------------------------------
  /* おすすめ動画
  ------------------------------------ */
}

.cont_movie .recommend_movie {
  margin-top: 80px;
  /* PC */
  /* タイトル
    --------------- */
  /* 動画リスト
    --------------- */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie {
    margin-top: 100px;
  }
}

.cont_movie .recommend_movie .tl_recommend_movie {
  font-weight: bold;
  font-size: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  color: #0a0a0a;
  position: relative;
  margin-bottom: 15px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .tl_recommend_movie {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

.cont_movie .recommend_movie .tl_recommend_movie::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 30px;
  background: url("../img_cont/ico_splash.svg") no-repeat center/60px auto;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.cont_movie .recommend_movie .movie_list_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  padding: 25px 20px 10px;
  margin: 0 -20px;
  background-color: #FCF9F4;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list_box {
    width: 100%;
    padding: 40px 50px;
  }
}

.cont_movie .recommend_movie .movie_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.cont_movie .recommend_movie .movie_list &gt; li {
  width: 100%;
  margin-bottom: 6%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list &gt; li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 0;
  }
  .cont_movie .recommend_movie .movie_list &gt; li:nth-child(3n) {
    margin-right: 0;
  }
}

.cont_movie .recommend_movie .movie_list .movie_card .movie_box {
  margin-bottom: 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list .movie_card .movie_box {
    margin-bottom: 5px;
  }
}

.cont_movie .recommend_movie .movie_list .movie_card .movie_box &gt; img {
  width: 100%;
  height: calc(100vw * 196 / 375);
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list .movie_card .movie_box &gt; img {
    height: calc(100vw * 196 / 1200);
  }
}

.cont_movie .recommend_movie .movie_list .movie_card .txt_date {
  margin-bottom: 3px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list .movie_card .txt_date {
    margin-bottom: 5px;
  }
}

.cont_movie .recommend_movie .movie_list .movie_card .txt_date .date {
  font-size: 1.2rem;
  color: #464646;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list .movie_card .txt_date .date {
    font-size: 1.3rem;
  }
}

.cont_movie .recommend_movie .movie_list .movie_card .txt_date .new {
  font-size: 1.2rem;
  font-weight: bold;
  color: #F54242;
  margin-left: 8px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list .movie_card .txt_date .new {
    font-size: 1.3rem;
  }
}

.cont_movie .recommend_movie .movie_list .movie_card .txt_movie {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie .recommend_movie .movie_list .movie_card .txt_movie {
    font-size: 1.6rem;
    line-height: inherit;
  }
}

/*=================================================
  * ピックアップ動画　&lt;一覧&gt;
  * ================================================ */
.cont_movie_list {
  /* ------------------------------------
  /* ページネーション
  ------------------------------------ */
}

.cont_movie_list .page_list {
  margin-top: 20px;
}

/*=================================================
  * ピックアップ動画　&lt;詳細&gt;
  * ================================================ */
.cont_movie_detail {
  /* ------------------------------------
  /* メイン要素
  ------------------------------------ */
  /* ------------------------------------
  /* タイトル
  ------------------------------------ */
  /* ------------------------------------
  /* ピックアップ動画
  ------------------------------------ */
  /* ------------------------------------
  /* 対象商品の動画リスト
  ------------------------------------ */
  /* ------------------------------------
  /* おすすめ動画
  ------------------------------------ */
}

.cont_movie_detail .main {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .main {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100vw;
    margin: 0;
  }
}

.cont_movie_detail .tl_box {
  margin-bottom: 10px;
}

.cont_movie_detail .tl_box .tl_date {
  margin-bottom: 5px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.cont_movie_detail .tl_box .tl_date .date {
  font-size: 1.3rem;
  color: #464646;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .tl_box .tl_date .date {
    font-size: 1.4rem;
  }
}

.cont_movie_detail .tl_box .tl_date .new {
  font-size: 1.3rem;
  font-weight: bold;
  color: #F54242;
  margin-left: 8px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .tl_box .tl_date .new {
    font-size: 1.4rem;
  }
}

.cont_movie_detail .tl_box .tl_pickup_movie {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .tl_box .tl_pickup_movie {
    font-size: 2.6rem;
  }
}

.cont_movie_detail .pickup_movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  /* PC */
  /* メイン動画
    --------------- */
  /* 商品情報
    --------------- */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    max-width: 1530px;
    padding: 0 30px;
    position: relative;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 768px) and (min-width: 1200px) {
  .cont_movie_detail .pickup_movie {
    padding: 0 50px;
  }
}

.cont_movie_detail .pickup_movie .movie_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .movie_box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 70%;
    padding-right: 3%;
  }
}

.cont_movie_detail .pickup_movie .movie_box &gt; iframe {
  width: 100vw;
  height: 50vh;
  min-height: 300px;
  margin: 0 -20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .movie_box &gt; iframe {
    width: 100%;
    height: 60vh;
    min-height: inherit;
    margin: 0;
  }
}

.cont_movie_detail .pickup_movie .movie_box .movie_product {
  width: 100%;
  margin-top: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .movie_box .movie_product {
    margin-top: 30px;
  }
}

.cont_movie_detail .pickup_movie .movie_box .movie_product .tl_product_list {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .movie_box .movie_product .tl_product_list {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.cont_movie_detail .pickup_movie .movie_box .movie_product .movie_product_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 25px;
  width: 100%;
  overflow-x: scroll;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .movie_box .movie_product .movie_product_list {
    margin: 0 auto;
  }
}

.cont_movie_detail .pickup_movie .movie_box .movie_product .movie_product_list &gt; li {
  margin: 0 2% 0 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .movie_box .movie_product .movie_product_list &gt; li {
    margin: 0 1% 0 0;
  }
}

.cont_movie_detail .pickup_movie .movie_box .movie_product .movie_product_list &gt; li a {
  display: block;
  text-decoration: none;
  width: calc(100vw * 75 / 375);
  height: calc(100vw * 75 / 375);
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .movie_box .movie_product .movie_product_list &gt; li a {
    width: calc(100vw * 100 / 1200);
    height: calc(100vw * 100 / 1200);
  }
}

.cont_movie_detail .pickup_movie .movie_box .movie_product .movie_product_list &gt; li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cont_movie_detail .pickup_movie .product_info_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px;
  border: solid 1px #15195B;
  background-color: #FFF;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .product_info_box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 30%;
    max-width: 300px;
  }
}

.cont_movie_detail .pickup_movie .product_info_box::before {
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  height: calc(100% + 70px);
  background-color: #fbfbfb;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
  z-index: -1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .pickup_movie .product_info_box::before {
    display: none;
  }
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_name .img_box {
  width: 75px;
  height: 75px;
  margin: 0 10px 10px 0;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_name .img_box &gt; img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_name .txt_name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 140px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_price .txt_price {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_price .txt_price .txt_tax {
  font-size: 1.3rem;
  color: #464646;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_price .txt_price::before {
  display: block;
  content: '';
  width: 10px;
  height: 13px;
  background-image: url("../img_cmn/img_en_mark.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -7px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_price .ico_favorite {
  width: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #ACACAC;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_price .ico_favorite &gt; img {
  width: 14px;
  height: 12px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_price .ico_favorite.active {
  border: solid 1px #F54242;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_delivery {
  margin: 0 0 10px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_delivery .txt_link_min_right {
  margin: 0;
}

.cont_movie_detail .pickup_movie .product_info_box .product_price_box .product_note {
  font-size: 1.3rem;
  color: #464646;
  margin: 0 0 10px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_type_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_type_select .tl_product_type_box {
  width: 75px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_type_select .tl_product_type_box .tl_type {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_type_select .product_type_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 40px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_type_select .product_type_detail .label_item {
  position: relative;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_type_select .product_type_detail .label_item::after {
  display: block;
  content: '';
  width: 7px;
  height: 14px;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  pointer-events: none;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_type_select .product_type_detail .select_item {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  position: relative;
  padding: 8px 30px 8px 8px;
  outline: none;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: -10px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_num_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_num_select .tl_product_num_box {
  width: 75px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_num_select .tl_product_num_box .tl_num {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_num_select .product_num_detail {
  text-align: right;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .product_num_select .num_soldout {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 1.8rem;
  line-height: 4.0rem;
  color: #F54242;
  background-color: #E2E2E2;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .attention_whether_to {
  background-color: #FFF3F3;
  padding: 20px;
}

.cont_movie_detail .pickup_movie .product_info_box .product_select_box .attention_whether_to .txt_attention_whether {
  font-size: 1.3rem;
}

.cont_movie_detail .all_movie {
  margin-top: 60px;
  /* タイトル
    --------------- */
  /* 動画リスト
    --------------- */
}

.cont_movie_detail .all_movie .tl_all_movie {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .tl_all_movie {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

.cont_movie_detail .all_movie .movie_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .movie_list {
    margin-bottom: 20px;
  }
}

.cont_movie_detail .all_movie .movie_list &gt; li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
  /* PC */
}

.cont_movie_detail .all_movie .movie_list &gt; li:nth-child(2n) {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .movie_list &gt; li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 5%;
  }
  .cont_movie_detail .all_movie .movie_list &gt; li:nth-child(2n) {
    margin-right: 3.5%;
  }
  .cont_movie_detail .all_movie .movie_list &gt; li:nth-child(3n) {
    margin-right: 0;
  }
}

.cont_movie_detail .all_movie .movie_card .movie_box {
  margin-bottom: 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .movie_card .movie_box {
    margin-bottom: 5px;
  }
}

.cont_movie_detail .all_movie .movie_card .movie_box &gt; img {
  width: 100%;
  height: calc(100vw * 95 / 375);
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .movie_card .movie_box &gt; img {
    height: 196px;
  }
}

.cont_movie_detail .all_movie .movie_card .txt_date {
  margin-bottom: 3px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .movie_card .txt_date {
    margin-bottom: 5px;
  }
}

.cont_movie_detail .all_movie .movie_card .txt_date .date {
  font-size: 1.2rem;
  color: #464646;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .movie_card .txt_date .date {
    font-size: 1.3rem;
  }
}

.cont_movie_detail .all_movie .movie_card .txt_date .new {
  font-size: 1.2rem;
  font-weight: bold;
  color: #F54242;
  margin-left: 8px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .movie_card .txt_date .new {
    font-size: 1.3rem;
  }
}

.cont_movie_detail .all_movie .movie_card .txt_movie {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .all_movie .movie_card .txt_movie {
    font-size: 1.6rem;
    line-height: inherit;
  }
}

.cont_movie_detail .recommend_movie {
  margin-top: 80px;
  /* PC */
  /* タイトル
    --------------- */
  /* 動画リスト
    --------------- */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie {
    margin-top: 100px;
  }
}

.cont_movie_detail .recommend_movie .tl_recommend_movie {
  font-weight: bold;
  font-size: 1.8rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  color: #0a0a0a;
  position: relative;
  margin-bottom: 15px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .tl_recommend_movie {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

.cont_movie_detail .recommend_movie .tl_recommend_movie::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 30px;
  background: url("../img_cont/ico_splash.svg") no-repeat center/60px auto;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.cont_movie_detail .recommend_movie .movie_list_box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  padding: 25px 20px 10px;
  margin: 0 -20px;
  background-color: #FCF9F4;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list_box {
    width: 100%;
    padding: 40px 50px;
    margin: 0 0px;
  }
}

.cont_movie_detail .recommend_movie .movie_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.cont_movie_detail .recommend_movie .movie_list &gt; li {
  width: 100%;
  margin-bottom: 8%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list &gt; li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 0;
  }
  .cont_movie_detail .recommend_movie .movie_list &gt; li:nth-child(3n) {
    margin-right: 0;
  }
}

.cont_movie_detail .recommend_movie .movie_list .movie_card .movie_box {
  margin-bottom: 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list .movie_card .movie_box {
    margin-bottom: 5px;
  }
}

.cont_movie_detail .recommend_movie .movie_list .movie_card .movie_box &gt; img {
  width: 100%;
  height: calc(100vw * 196 / 375);
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list .movie_card .movie_box &gt; img {
    height: 196px;
  }
}

.cont_movie_detail .recommend_movie .movie_list .movie_card .txt_date {
  margin-bottom: 3px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list .movie_card .txt_date {
    margin-bottom: 5px;
  }
}

.cont_movie_detail .recommend_movie .movie_list .movie_card .txt_date .date {
  font-size: 1.2rem;
  color: #464646;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list .movie_card .txt_date .date {
    font-size: 1.3rem;
  }
}

.cont_movie_detail .recommend_movie .movie_list .movie_card .txt_date .new {
  font-size: 1.2rem;
  font-weight: bold;
  color: #F54242;
  margin-left: 8px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list .movie_card .txt_date .new {
    font-size: 1.3rem;
  }
}

.cont_movie_detail .recommend_movie .movie_list .movie_card .txt_movie {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_movie_detail .recommend_movie .movie_list .movie_card .txt_movie {
    font-size: 1.6rem;
    line-height: inherit;
  }
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/* ------------------------------------
  共通
------------------------------------ */
.cont_blog .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_blog.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.btn_long_arrow {
  display: block;
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
  padding: 8px 0;
  border: 1px solid #9E9E9E;
  font-size: 1.3rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  position: relative;
  background-color: #fff;
  /* PC */
}

@media screen and (min-width: 768px) {
  .btn_long_arrow {
    width: 360px;
    padding: 10px 0;
    font-size: 1.4rem;
    margin: 40px auto 80px;
  }
}

.btn_long_arrow::after {
  content: '';
  position: absolute;
  background: url(../img_top-co/ico_arrow_long_gray.svg) no-repeat center/100%;
  width: 50px;
  height: 5px;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ------------------------------------
  トップページ
------------------------------------ */
.top_co .inner_before {
  position: relative;
  padding-top: 25px;
}

.top_co .inner_before::before {
  content: '';
  position: absolute;
  display: block;
  width: 90px;
  height: 25px;
  background: url(../img_cont/img_cont_tl_before.svg) no-repeat 50%/100%;
  top: 0;
  left: 0;
}

.top_co .tl_section {
  font-size: 2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_co .tl_section {
    display: inline-block;
    font-size: 3.2rem;
    line-height: 5.0rem;
    margin-left: 30px;
    letter-spacing: 2px;
  }
}

.top_co .sub_tl_section {
  font-size: 1.2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_co .sub_tl_section {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 5.0rem;
    margin-left: 10px;
    margin-bottom: 0px;
  }
}

.top_news_box {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_news_box {
    margin-top: 60px;
  }
}

.top_news_box .inner_before .news_list_box_wrap {
  margin-top: 20px;
}

.top_news_box .inner_before .news_list_box_wrap .news_list_box .news_list {
  border: none;
}

.top_news_box .inner_before .news_list_box_wrap .news_list_box .news_list .link_box_list a {
  padding: 12px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_news_box .inner_before .news_list_box_wrap .news_list_box .news_list .link_box_list a {
    padding: 20px 60px 20px 30px;
  }
}

.top_news_box .inner_before .btn_long_arrow {
  margin-top: 40px;
  margin-bottom: 50px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_news_box .inner_before .btn_long_arrow {
    margin-bottom: 80px;
  }
}

.top_about_box {
  overflow: hidden;
  padding: 45px 0 40px;
  background-color: #FCF9F4;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_about_box {
    background-color: inherit;
    position: relative;
  }
  .top_about_box::before {
    display: block;
    content: '';
    width: 200%;
    height: 95%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
    background-color: #FCF9F4;
    position: absolute;
    top: -20px;
    left: 50%;
    z-index: -1;
    margin-left: -100%;
  }
}

.top_about_box .sub_tl_section {
  width: 800px;
}

.top_about_box .card_about {
  background-color: #fff;
  margin: 0 auto 30px;
  max-width: 500px;
  vertical-align: top;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_about_box .card_about {
    display: inline-block;
    width: 330px;
    margin: 30px 0px 30px;
  }
}

.top_about_box .card_about:first-of-type {
  margin-top: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_about_box .card_about:first-of-type {
    margin: 30px 20px 0 30px;
  }
}

.top_about_box .card_about:last-of-type {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_about_box .card_about:last-of-type {
    margin: 30px 30px 0 20px;
  }
}

.top_about_box .card_about .img_about_wrap {
  position: relative;
}

.top_about_box .card_about .img_about_wrap .img_card_about {
  display: block;
  height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.top_about_box .card_about .img_about_wrap .about_number_wrap {
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
  bottom: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  line-height: 44px;
  font-weight: bold;
}

.top_about_box .card_about .img_about_wrap .about_number_wrap .about_number {
  color: #0a0a0a;
  font-size: 1.5rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.top_about_box .card_about .card_about_foot {
  background-color: #fff;
  padding: 30px 20px 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_about_box .card_about .card_about_foot {
    height: 260px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.top_about_box .card_about .card_about_foot .tl_card_about {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 20px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.top_about_box .card_about .card_about_foot .txt_card_about {
  font-size: 1.3rem;
  margin-top: 15px;
}

.top_about_box .card_about .card_about_foot .txt_card_about .border_orange {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fbfbfb), color-stop(90%, transparent));
  background: linear-gradient(transparent 70%, #fbfbfb 70% 90%, transparent 90% 0%);
}

.top_gallery_box {
  padding: 50px 0 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_gallery_box {
    padding: 20px 0 0;
  }
}

.top_gallery_box .btn_long_arrow {
  margin-top: 40px;
}

.top_event_box {
  overflow: hidden;
  margin-top: 50px;
  background-color: #fbfbfb;
  padding: 45px 0 60px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_event_box {
    background-color: inherit;
    position: relative;
  }
  .top_event_box::before {
    display: block;
    content: '';
    width: 200%;
    height: 95%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
    background-color: #fbfbfb;
    position: absolute;
    top: -20px;
    left: 50%;
    z-index: -1;
    margin-left: -100%;
  }
}

.top_event_box .inner_before {
  background-color: #fff;
  padding-top: 20px;
}

.top_event_box .inner_before::before {
  top: -5px;
}

.top_event_box .event_list {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_event_box .event_list {
    padding: 30px 30px 10px;
    margin-bottom: 30px;
  }
}

.top_event_box .event_list .event_card .event_card_wrap .event_card_img {
  width: 385px;
}

.top_event_box .event_list .event_card .event_card_wrap .event_card_content {
  width: 645px;
  padding: 10px 30px 10px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top_event_box .btn_long_arrow {
  margin-top: 20px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.top_repairing_box {
  padding-top: 50px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_repairing_box {
    padding: 50px 0px 100px;
  }
}

.top_repairing_box .repairing_txt {
  font-size: 1.4rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_repairing_box .repairing_txt {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 30px 30px 20px;
  }
}

.top_repairing_box .flex_repairing {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_repairing_box .flex_repairing {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.top_repairing_box .flex_repairing a:last-child {
  border: 2px solid #9E9E9E;
  background-color: #F0F0F0;
}

.top_repairing_box .flex_repairing .inner_flex_repairing {
  width: calc((100% - 15px) / 2);
  border: 2px solid #15195B;
  -webkit-box-shadow: 1px 1px 3px #E2E2E2;
          box-shadow: 1px 1px 3px #E2E2E2;
  background-color: #FCF9F4;
  margin-right: 15px;
  height: calc(100vw * 32 / 75);
  max-width: 250px;
  max-height: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_repairing_box .flex_repairing .inner_flex_repairing {
    width: 170px;
    height: 170px;
  }
}

.top_repairing_box .flex_repairing .inner_flex_repairing:nth-child(2) {
  margin-right: 0;
}

.top_repairing_box .flex_repairing .inner_flex_repairing .repairing_middle,
.top_repairing_box .flex_repairing .inner_flex_repairing .cleaning_middle {
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top_repairing_box .flex_repairing .inner_flex_repairing .repairing_middle .ripairing_img,
.top_repairing_box .flex_repairing .inner_flex_repairing .cleaning_middle .ripairing_img {
  height: 50px;
}

.top_repairing_box .flex_repairing .inner_flex_repairing .repairing_middle .inner_flex_tl,
.top_repairing_box .flex_repairing .inner_flex_repairing .cleaning_middle .inner_flex_tl {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.top_repairing_box .flex_repairing .inner_flex_repairing .repairing_middle .inner_flex_txt,
.top_repairing_box .flex_repairing .inner_flex_repairing .cleaning_middle .inner_flex_txt {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.top_repairing_box .repairing_note {
  background-color: #FCF9F4;
  margin-top: 20px;
  padding: 15px 15px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_repairing_box .repairing_note {
    background-color: inherit;
    margin-bottom: 0;
    padding: 0 30px 0;
  }
}

.top_repairing_box .repairing_note .repairing_note_txt {
  text-indent: -1.3em;
  padding-left: 1.3em;
  font-size: 1.3rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_repairing_box .repairing_note .repairing_note_txt {
    width: 620px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-bottom: 5px;
    text-indent: -1.4em;
    padding-left: 1.4em;
    font-size: 1.4rem;
  }
}

.top_blog_box {
  padding-top: 50px;
}

.top_blog_box .blog_list {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_blog_box .blog_list {
    padding: 0 30px 0;
  }
}

.top_blog_box .blog_list .blog_slider {
  /* &lt;JS&gt;slick上書き ここから
      --------------- */
  /* &lt;JS&gt;slick上書き ここまで
      --------------- */
}

.top_blog_box .blog_list .blog_slider .slick-prev {
  display: none !important;
}

.top_blog_box .blog_list .blog_slider .next {
  position: absolute;
  top: 50%;
  right: 45px;
}

.top_blog_box .blog_list .blog_slider .slick-list {
  position: relative;
}

.top_blog_box .blog_list .blog_slider .slick-track {
  position: relative !important;
  left: -35px !important;
}

.top_blog_box .blog_list .blog_slider .card {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 15px;
}

.top_blog_box .blog_list .blog_slider .card .card_link .card_img_box {
  margin-bottom: 10px;
}

.top_blog_box .blog_list .blog_slider .card .card_link .card_img_box .card_img {
  height: 150px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.top_blog_box .blog_list .blog_slider .card .card_link .card_tl {
  margin-bottom: 10px;
}

.top_blog_box .blog_list .blog_slider .card .card_link .card_foot {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}

.top_blog_box .btn_long_arrow.staff_blog {
  margin-top: 40px;
  margin-bottom: 50px;
}

.top_blog_box .top_blog_gray {
  padding: 40px 0 30px;
  text-align: center;
  background-color: #FCF9F4;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_blog_box .top_blog_gray {
    padding: 20px 0 30px;
    background-color: inherit;
  }
}

.top_blog_box .top_blog_gray .staff_correspond {
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  color: #0a0a0a;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

.top_blog_box .top_blog_gray .staff_correspond::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 1px;
  height: 22px;
  background-color: #575757;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.top_blog_box .top_blog_gray .staff_correspond::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  width: 1px;
  height: 22px;
  background-color: #575757;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.top_blog_box .top_blog_gray .staff_jump {
  width: 100%;
  height: 90px;
  background: url(../img_top-co/img_jump.jpg) no-repeat center/100%;
  background-size: cover;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_blog_box .top_blog_gray .staff_jump {
    height: 200px;
  }
}

.top_blog_box .top_blog_gray .btn_long_arrow {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_blog_box .top_blog_gray .btn_long_arrow {
    margin: -15 auto 40px;
  }
}

.top_info_box {
  border-top: solid 15px #B9B9B9;
  padding: 40px 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: linear-gradient(180deg, #FFF 0%, #FFF 200px, #FCF9F4 200px, #FCF9F4 100%);
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_info_box {
    background: linear-gradient(180deg, #FCF9F4 0%, #FCF9F4 200px, #FCF9F4 200px, #FCF9F4 100%);
  }
}

.top_info_box .cont_inner {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_info_box .cont_inner {
    width: 1100px;
    margin: 0 auto;
    position: relative;
  }
}

.top_info_box .tl_section {
  font-size: 2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
}

.top_info_box .tl_section::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #15195B;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.top_info_box .sub_tl_section {
  font-size: 1.2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 20px;
}

.top_info_box .img_info {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_info_box .img_info {
    display: none;
  }
}

.top_info_box .access_box {
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_info_box .access_box {
    width: 700px;
  }
}

.top_info_box .access_box .shop_logo {
  width: 108px;
  height: auto;
  margin: 20px 0 10px;
}

.top_info_box .access_box .top_shop_postcode {
  display: inline-block;
  margin-right: 10px;
}

.top_info_box .access_box .top_shop_address {
  display: inline-block;
}

.top_info_box .access_box .btn_access {
  width: 130px;
  background-image: none;
  margin-top: 10px;
  margin-bottom: 20px;
  position: absolute;
  top: 20px;
  right: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_info_box .access_box .btn_access {
    width: 150px;
    top: 80px;
    right: 260px;
  }
}

.top_info_box .access_box .btn_access .btn_txt {
  padding-left: 20px;
  position: relative;
}

.top_info_box .access_box .btn_access .btn_txt::before {
  display: inline-block;
  content: '';
  width: 12px;
  height: 18px;
  background-image: url("../img_top-co/ico_map_pin_white.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.top_info_box .hours_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0 30px;
}

.top_info_box .hours_box .flex_info_content {
  margin-right: 20px;
}

.top_info_box .hours_box .flex_info_content .tl_flex_info {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8rem;
}

.top_info_box .hours_box .flex_info_content .txt_flex_info {
  font-size: 1.4rem;
}

.top_info_box .link_ec_wrap {
  display: block;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 400px;
  margin: 20px auto 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_info_box .link_ec_wrap {
    max-width: 650px;
    margin: 20px 0 0;
  }
}

.top_info_box .link_ec_wrap .link_ec_bnr {
  width: 100%;
}

.top_contact_box .contact_link_box {
  margin-top: 30px;
}

.top_contact_box .contact_link_box .tl_section {
  font-size: 2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  position: relative;
}

.top_contact_box .contact_link_box .tl_section::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background-color: #15195B;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.top_contact_box .contact_link_box .sub_tl_section {
  font-size: 1.2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.top_contact_box .contact_link_box .contact_link_bg .txt_link_faq {
  font-size: 1.4rem;
  display: inline-block;
  padding-left: 30px;
  position: relative;
  margin-bottom: 5px;
}

.top_contact_box .contact_link_box .contact_link_bg .txt_link_faq::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 24px;
  background: url(../img_top-co/ico_comment_question.svg) no-repeat center/100%;
}

.top_contact_box .contact_link_box .contact_link_bg .btn_faq_link {
  border-color: #9E9E9E;
  padding: 10px 0;
  margin-bottom: 25px;
}

.top_contact_box .contact_link_box .contact_link_bg .btn_faq_link::after {
  background-image: url(../img_top-co/ico_arrow_long_gray.svg);
}

.top_ec {
  padding-bottom: 0px !important;
  /* ------------------------------------
  /* &lt;共通&gt;
  ------------------------------------ */
  /* ------------------------------------
  /* メインスライダー
  ------------------------------------ */
  /* ------------------------------------
  /* 新着商品一覧
  ------------------------------------ */
  /* ------------------------------------
  /* おすすめ商品一覧
  ------------------------------------ */
  /* ------------------------------------
  /* ガレージ商品一覧
  ------------------------------------ */
  /* ------------------------------------
  /* 商品カテゴリー／ブランド一覧
  ------------------------------------ */
  /* SP表示 */
  /* PC表示 */
  /* ------------------------------------
  /* 商品紹介動画・ブログ
  ------------------------------------ */
  /* ------------------------------------
  /* ヴィンテージ商品一覧
  ------------------------------------ */
  /* ------------------------------------
  /* ヴィンテージブログ一覧
  ------------------------------------ */
  /* ------------------------------------
  /* お知らせ
  ------------------------------------ */
  /* ------------------------------------
  /*　サイトの特長
  ------------------------------------ */
  /* ------------------------------------
  /*　お支払い／配送について
  ------------------------------------ */
  /* ------------------------------------
  /*バナースライダー
  ------------------------------------ */
}

.top_ec .list_tl_box {
  margin: 60px 0 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .list_tl_box {
    margin: 110px 0 35px;
    text-align: center;
  }
}

.top_ec .list_tl_box a {
  border-bottom: solid 1px #0a0a0a;
  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;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .list_tl_box a {
    display: inline-block;
  }
}

.top_ec .list_tl_box a .tl_product_list {
  width: inherit;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  line-height: 2.6rem;
  color: #0a0a0a;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .list_tl_box a .tl_product_list {
    font-size: 4.2rem;
    line-height: 4.8rem;
  }
}

.top_ec .list_tl_box a .btn_box_txt_link {
  width: inherit;
  min-height: inherit;
}

.top_ec .list_tl_box a .btn_box_txt_link .txt_link_min_right {
  margin: 0 0 0 auto;
}

.top_ec .list_tl_box .ti_txt_min {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  margin: 5px 0 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .list_tl_box .ti_txt_min {
    font-size: 1.4rem;
  }
}

.top_ec .btn_down_list {
  margin: 10px 0 20px;
}

.top_ec .btn_down_list .list_click_box {
  display: block;
  padding: 10px;
  text-align: center;
  background-color: #FCF9F4;
}

.top_ec .btn_down_list .list_click_box .btn_more {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  display: inline-block;
  position: relative;
  padding-right: 20px;
}

.top_ec .btn_down_list .list_click_box .btn_more:before {
  display: inline-block;
  content: '';
  width: 7px;
  height: 12px;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.top_ec .recommend_list {
  position: relative;
}

.top_ec .recommend_list::before {
  display: block;
  content: '';
  width: 200%;
  height: 106%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  background-color: #FBE3D0;
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: -1;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  margin-left: -100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .recommend_list::before {
    -webkit-transform: rotate(6deg);
            transform: rotate(6deg);
  }
}

.top_ec .recommend_list .recommend_top7_wrap {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .recommend_list .recommend_top7_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 {
    width: 450px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 li {
    width: 425px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 li .product_img_box img {
    height: 415px;
    max-height: 415px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 li .product_img_box .flag_box .flag_new {
    font-size: 1.1rem;
    line-height: 1.1rem;
    padding: 4px 10px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 li .product_img_box .flag_box .flag_little {
    font-size: 1.1rem;
    line-height: 1.1rem;
    padding: 4px 10px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 li .product_img_box .product_category_box .txt_category {
    font-size: 1.2rem;
    line-height: 1.2rem;
    padding: 7px 12px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 li .product_name_box .product_name {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 li .product_name_box .product_price .txt_price {
    font-size: 2.2rem;
    padding-left: 18px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top1 li .product_name_box .product_price .txt_price::before {
    width: 12px;
    height: 14px;
    margin-top: -7px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top2-7 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top2-7 li:nth-child(3n) {
    margin-right: 0px;
  }
  .top_ec .recommend_list .recommend_top7_wrap .recommend_top2-7 li:nth-child(5n) {
    margin-right: 25px;
  }
}

.top_ec .search_category_box_wrap {
  margin: 60px 0;
}

.top_ec .search_category_box_wrap_pc {
  position: relative;
}

.top_ec .search_category_box_wrap_pc .search_category_box_pc {
  margin-bottom: 30px;
}

.top_ec .search_category_box_wrap_pc .tl_default {
  text-align: center;
  font-size: 2.6rem;
  margin: 0 0 30px;
}

.top_ec .search_category_box_wrap_pc .btn_favorite_list .btn_txt::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.top_ec .product_blog_movie {
  padding: 60px 0;
  position: relative;
  /* PC */
  /* タイトル
    --------------- */
  /* 商品ピックアップ動画
    --------------- */
  /* 商品紹介ブログ
    --------------- */
  /* もっと見るボタン
    --------------- */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie {
    padding: 60px 0;
  }
}

.top_ec .product_blog_movie::before {
  display: block;
  content: '';
  width: 200%;
  height: calc(100% - 40px);
  background-color: rgba(255, 255, 255, 0.8);
  background-repeat: no-repeat;
  background-position: 50%;
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 0;
  margin-left: -100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie::before {
    height: 100%;
    top: 0px;
  }
}

.top_ec .product_blog_movie .tl_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box {
    margin-bottom: 40px;
  }
}

.top_ec .product_blog_movie .tl_box .tl_product_movie {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 70px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  color: #0a0a0a;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box .tl_product_movie {
    padding-left: 160px;
    font-size: 3.8rem;
  }
}

.top_ec .product_blog_movie .tl_box .tl_product_movie::before {
  display: block;
  content: '';
  width: 20px;
  height: 1px;
  background-color: #0a0a0a;
  background-size: 100%;
  position: absolute;
  top: 20px;
  left: 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box .tl_product_movie::before {
    width: 80px;
    top: 50%;
    left: 0px;
  }
}

.top_ec .product_blog_movie .tl_box .tl_product_movie::after {
  display: inline-block;
  content: '';
  width: 46px;
  height: 46px;
  background-image: url("../img_cmn/ico_movie.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 20px;
  left: 22px;
  margin-top: -22px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box .tl_product_movie::after {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 87px;
    margin-top: -36px;
  }
}

.top_ec .product_blog_movie .tl_box .tl_product_movie .txt_min {
  display: block;
  font-size: 1.2rem;
  color: #292929;
  position: relative;
  top: 0px;
  left: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box .tl_product_movie .txt_min {
    display: inline;
    font-size: 1.4rem;
    margin-left: 15px;
    top: -1px;
    left: 0;
  }
}

.top_ec .product_blog_movie .tl_box .tl_product_blog {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 60px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  color: #0a0a0a;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box .tl_product_blog {
    padding-left: 147px;
    font-size: 3.8rem;
  }
}

.top_ec .product_blog_movie .tl_box .tl_product_blog::before {
  display: block;
  content: '';
  width: 20px;
  height: 1px;
  background-color: #0a0a0a;
  background-size: 100%;
  position: absolute;
  top: 20px;
  left: 0px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box .tl_product_blog::before {
    width: 80px;
    top: 50%;
    left: 0px;
  }
}

.top_ec .product_blog_movie .tl_box .tl_product_blog::after {
  display: inline-block;
  content: '';
  width: 40px;
  height: 40px;
  background-image: url("../img_cmn/ico_point.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 20px;
  left: 24px;
  margin-top: -27px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box .tl_product_blog::after {
    width: 65px;
    height: 65px;
    top: 50%;
    left: 87px;
    margin-top: -49px;
  }
}

.top_ec .product_blog_movie .tl_box .tl_product_blog .txt_min {
  display: block;
  font-size: 1.2rem;
  color: #292929;
  position: relative;
  top: 0px;
  left: 2px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .tl_box .tl_product_blog .txt_min {
    display: inline;
    font-size: 1.4rem;
    margin-left: 15px;
    top: -1px;
    left: 0;
  }
}

.top_ec .product_blog_movie .product_movie_wrap {
  position: relative;
  /* SP */
}

@media screen and (max-width: 767px) {
  .top_ec .product_blog_movie .product_movie_wrap .product_movie {
    overflow-x: scroll;
  }
  .top_ec .product_blog_movie .product_movie_wrap .product_movie .movie_list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: calc(95% * 3);
    margin-bottom: 0px;
  }
  .top_ec .product_blog_movie .product_movie_wrap .product_movie .movie_list &gt; li {
    margin-right: 3%;
    margin-bottom: 0;
  }
}

.top_ec .product_blog_movie .product_blog_wrap {
  position: relative;
  /* SP */
}

@media screen and (max-width: 767px) {
  .top_ec .product_blog_movie .product_blog_wrap {
    margin-top: 60px;
  }
  .top_ec .product_blog_movie .product_blog_wrap .product_blog {
    overflow-x: scroll;
  }
  .top_ec .product_blog_movie .product_blog_wrap .product_blog .staffblog_card_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(95% * 3);
    margin-bottom: 0px;
  }
  .top_ec .product_blog_movie .product_blog_wrap .product_blog .staffblog_card_wrap .card {
    margin-right: 3%;
    margin-bottom: 0;
  }
}

.top_ec .product_blog_movie .btn_box {
  margin: 30px 0 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .product_blog_movie .btn_box {
    width: 250px;
    margin: 10px 0;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.top_ec .product_blog_movie .btn_box .btn_main_color {
  height: 36px;
  line-height: 3.6rem;
}

.top_ec .vintage_list .list_tl_box a {
  border-bottom: solid 1px #483F37;
}

.top_ec .vintage_list .list_tl_box a .tl_product_list {
  color: #483F37;
  font-size: 2.4rem;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .vintage_list .list_tl_box a .tl_product_list {
    font-size: 4.2rem;
    font-weight: normal;
  }
}

.top_ec .vintage_list .list_tl_box a .txt_link_min_right {
  color: #483F37;
}

.top_ec .vintage_list .list_tl_box a .txt_link_min_right::after {
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
}

.top_ec .vintage_list .btn_main_color {
  background-color: #464646;
}

.top_ec .vintage_brog {
  position: relative;
  padding: 1px 0 20px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .vintage_brog {
    margin: 90px 0 0;
    padding: 1px 0 40px;
  }
}

.top_ec .vintage_brog::before {
  display: block;
  content: '';
  width: 200%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  background-color: #FCF9F4;
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: -1;
  margin-left: -100%;
  border-bottom: solid 1px #6E6E6E;
}

.top_ec .vintage_brog .list_tl_box {
  margin: 40px 0 20px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .vintage_brog .list_tl_box {
    margin: 60px 0 35px;
  }
}

.top_ec .vintage_brog .list_tl_box::before {
  display: block;
  content: '';
  width: 230px;
  height: 184px;
  background-image: url("../img_top-ec/img_tree_ring.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -120px;
  margin-left: -115px;
  z-index: -1;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .vintage_brog .list_tl_box::before {
    width: 301px;
    height: 241px;
    margin-top: -160px;
    margin-left: -150px;
  }
}

.top_ec .vintage_brog .list_tl_box a {
  border-bottom: solid 1px #483F37;
}

.top_ec .vintage_brog .list_tl_box a .tl_product_list {
  color: #483F37;
  font-size: 2.4rem;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .vintage_brog .list_tl_box a .tl_product_list {
    font-size: 4.2rem;
    font-weight: normal;
  }
}

.top_ec .vintage_brog .list_tl_box a .txt_link_min_right {
  color: #483F37;
}

.top_ec .vintage_brog .list_tl_box a .txt_link_min_right::after {
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
}

.top_ec .vintage_brog .btn_box {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .vintage_brog .btn_box {
    margin-top: 40px;
  }
}

.top_ec .vintage_brog .vintage_brog_post {
  background-color: #FCF9F4;
  padding: 25px 0 25px;
  margin-top: 40px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .vintage_brog .vintage_brog_post {
    padding: 20px 0 25px;
    margin-top: 50px;
  }
}

.top_ec .vintage_brog .vintage_brog_post .thank_user_box {
  margin: 0;
}

.top_ec .vintage_brog .vintage_brog_post .expect_blog_box .expect_blog_txt {
  background-color: #FFF;
}

.top_ec .vintage_brog .vintage_brog_post .expect_blog_box .expect_blog_txt::before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid transparent;
  border-right: 20px solid #FFF;
}

.top_ec .vintage_brog .vintage_brog_post .expect_blog_box .expect_blog_txt::after {
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 18px solid transparent;
  border-right: 18px solid #FFF;
}

.top_ec .news .news_list {
  border-top: none;
}

.top_ec .news .news_list .link_box_list a {
  padding: 12px 0;
}

.top_ec .news .btn_box {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .news .btn_box {
    margin-top: 40px;
  }
}

.top_ec .ec_feature .feature {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .ec_feature .feature {
    margin-top: 140px;
  }
}

.top_ec .ec_feature .feature .feature_list {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .ec_feature .feature .feature_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top_ec .ec_feature .feature .feature_list &gt; li {
  margin-bottom: 10px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .ec_feature .feature .feature_list &gt; li {
    padding: 0 40px;
  }
}

.top_ec .ec_feature .feature .feature_list &gt; li .feature_box .tl_feature {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  color: #0a0a0a;
  margin-bottom: 5px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.top_ec .ec_feature .feature .feature_list &gt; li .feature_box .tl_feature .num_feature {
  font-size: 2.0rem;
}

.top_ec .ec_feature .feature .feature_list &gt; li .feature_box .txt_feature_box {
  position: relative;
}

.top_ec .ec_feature .feature .feature_list &gt; li .feature_box .txt_feature_box::after {
  display: block;
  content: '';
  width: 75px;
  height: 75px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .ec_feature .feature .feature_list &gt; li .feature_box .txt_feature_box::after {
    width: 80px;
    height: 80px;
    top: -140px;
    right: 50%;
    margin-right: -40px;
  }
}

.top_ec .ec_feature .feature .feature_list &gt; li .feature_box .txt_feature_box .txt_feature {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  line-height: 2.0rem;
  padding-right: 90px;
  min-height: 90px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .ec_feature .feature .feature_list &gt; li .feature_box .txt_feature_box .txt_feature {
    font-size: 1.4rem;
    line-height: 2.1rem;
    padding-right: 0px;
  }
}

.top_ec .ec_feature .feature .feature_list &gt; li .feature_box.feature_01 .txt_feature_box::after {
  background-image: url("../img_top-ec/img_feature01.svg");
}

.top_ec .ec_feature .feature .feature_list &gt; li .feature_box.feature_02 .txt_feature_box::after {
  background-image: url("../img_top-ec/img_feature02.svg");
}

.top_ec .ec_feature .feature .feature_list &gt; li .feature_box.feature_03 .txt_feature_box::after {
  background-image: url("../img_top-ec/img_feature03.svg");
}

.top_ec .payment_method {
  margin-top: 40px;
  background-color: #FCF9F4;
  border-top: solid 5px #B9B9B9;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .payment_method {
    margin-top: 140px;
    padding-bottom: 20px;
    background-color: inherit;
    border-top: none;
    position: relative;
    border-bottom: solid 1px #E2E2E2;
  }
  .top_ec .payment_method::before {
    display: block;
    content: '';
    width: 200%;
    height: 110%;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
    background-color: #FCF9F4;
    position: absolute;
    top: -50px;
    left: 50%;
    z-index: -1;
    margin-left: -100%;
    border-top: solid 5px #B9B9B9;
  }
}

.top_ec .payment_method .tl_payment_method {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 36px;
  background-image: url("../img_cmn/ico_money_gray.svg");
  background-repeat: no-repeat;
  background-size: 28px;
  margin: 20px 0 5px;
}

.top_ec .payment_method .tl_payment_delivery {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 36px;
  background-image: url("../img_cmn/ico_box_gray.svg");
  background-repeat: no-repeat;
  background-size: 28px;
  margin: 20px 0 5px;
}

.top_ec .payment_method .tl_sub_txt {
  font-size: 1.3rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .payment_method .tl_sub_txt {
    padding: 10px 40px;
  }
}

.top_ec .payment_method .method_list {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .payment_method .method_list {
    padding: 5px 40px;
  }
}

.top_ec .payment_method .method_list &gt; li {
  border-bottom: solid 1px #E2E2E2;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .payment_method .method_list &gt; li {
    border-bottom: none;
  }
}

.top_ec .payment_method .method_list &gt; li .method {
  padding: 15px 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .payment_method .method_list &gt; li .method {
    padding: 0;
  }
}

.top_ec .payment_method .method_list &gt; li .method .tl_method {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.top_ec .payment_method .method_list &gt; li .method .tl_min_method {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0 5px;
}

.top_ec .payment_method .method_list &gt; li .method .txt_link_min_right {
  margin-left: 0;
  margin-top: 15px;
  font-size: 1.4rem;
}

.top_ec .payment_method .method_list &gt; li .method .card_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}

.top_ec .payment_method .method_list &gt; li .method .card_list &gt; li img {
  width: auto;
  height: 36px;
}

.top_ec .payment_method .method_list.method_list_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .payment_method .method_list.method_list_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top_ec .payment_method .method_list.method_list_flex &gt; li {
  /* PC */
}

@media screen and (min-width: 768px) {
  .top_ec .payment_method .method_list.method_list_flex &gt; li {
    width: 290px;
    padding-right: 20px;
    border-right: solid 1px #E2E2E2;
    margin-right: 20px;
  }
  .top_ec .payment_method .method_list.method_list_flex &gt; li:last-child {
    padding-right: 0px;
    border-right: none;
    margin-right: 0px;
  }
}

.top_ec .swiper-bnr-ec {
  margin-top: 10px;
  position: relative;
}

.top_ec .swiper-bnr-ec .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_ec .swiper-bnr-ec .swiper-slide .swiper-slide_wrap {
  display: block;
  width: 100%;
  height: 100%;
}

.top_ec .swiper-bnr-ec .swiper-slide .swiper-slide_wrap img {
  width: 100%;
  height: 100%;
}

.top_ec .swiper-bnr-ec .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 100%;
  border: 2px solid #9E9E9E;
  background-color: #FFF;
}

.top_ec .swiper-bnr-ec .swiper-pagination-bullet:focus {
  outline: none;
}

.top_ec .swiper-bnr-ec .swiper-pagination-bullet-active {
  background-color: #15195B;
  border-color: #15195B;
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec {
  position: absolute;
  bottom: -50px;
  left: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  /* SNSボタンボックス
      --------------- */
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .bnr_vinblog_box {
  display: inline-block;
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .bnr_vinblog_box a {
  display: inline-block;
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .bnr_vinblog_box.flag_new {
  position: relative;
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .bnr_vinblog_box.flag_new::before {
  display: block;
  content: '';
  width: 60px;
  height: 25px;
  background-image: url("../img_cmn/ico_new.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -30px;
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .sns_btn_box {
  display: inline-block;
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .sns_btn_box .ico_sns_instagram,
.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .sns_btn_box .ico_sns_youtube {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #FFF no-repeat center/50%;
  margin-left: 5px;
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .sns_btn_box .ico_sns_youtube {
  background-image: url("../img_top-co/ico_youtube.svg");
}

.top_ec .swiper-bnr-ec .swiper_absolute_btn_ec .sns_btn_box .ico_sns_instagram {
  background-image: url("../img_cont/ico_instagram.png");
}

.top_ec .swiper-container-horizontal &gt; .swiper-pagination-bullets, .top_ec .swiper-pagination-custom, .top_ec .swiper-pagination-fraction {
  bottom: unset;
}

/* ------------------------------------
  クロスオレンジの特長
------------------------------------ */
.page_corporate .cont_aboutus .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_aboutus.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_corporate .cont_aboutus .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_aboutus_pc@2x.jpg");
    background-size: cover;
  }
}

.cont_aboutus .aboutus_box .card_about {
  background-color: #fbfbfb;
  margin-bottom: 40px;
  padding-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about {
    margin-right: -1000px;
    margin-left: 115px;
    padding: 350px 115px 50px;
    margin-top: 110px;
    position: relative;
  }
  .cont_aboutus .aboutus_box .card_about:nth-child(2) {
    margin-right: 115px;
    margin-left: -1000px;
    text-align: right;
  }
  .cont_aboutus .aboutus_box .card_about:nth-child(2) .img_about_wrap {
    right: -115px;
    left: unset;
  }
  .cont_aboutus .aboutus_box .card_about:nth-child(2) .card_about_foot {
    display: inline-block;
  }
  .cont_aboutus .aboutus_box .card_about:nth-child(2) .card_about_foot .card_foot_flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .cont_aboutus .aboutus_box .card_about:nth-child(2) .card_about_foot .card_foot_flex .relation_list {
    margin-left: 0;
    margin-right: 30px;
  }
}

.cont_aboutus .aboutus_box .card_about .img_about_wrap {
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .img_about_wrap {
    position: absolute;
    width: 830px;
    height: 450px;
    left: -115px;
    top: -50px;
  }
  .cont_aboutus .aboutus_box .card_about .img_about_wrap::before {
    content: '';
    position: absolute;
    width: 790px;
    height: 410px;
    border: 1px solid #FFF;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.cont_aboutus .aboutus_box .card_about .img_about_wrap .img_card_about {
  display: block;
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .img_about_wrap .img_card_about {
    width: 100%;
    height: 100%;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot {
  background-color: #fff;
  padding: 30px 0px 20px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .card_about_foot {
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
    width: 870px;
    padding: 60px 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .about_number_wrap {
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  line-height: 44px;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .card_about_foot .about_number_wrap {
    width: 80px;
    height: 40px;
    top: -40px;
    line-height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 40px 40px 0 0;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .about_number_wrap .about_number {
  color: #0a0a0a;
  font-size: 1.5rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .card_about_foot .about_number_wrap .about_number {
    font-size: 2.6rem;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .tl_card_about {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 20px;
  color: #0a0a0a;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .card_about_foot .tl_card_about {
    font-size: 2.4rem;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .txt_card_about {
  margin-top: 15px;
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .txt_card_about .border_orange {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fbfbfb), color-stop(90%, transparent));
  background: linear-gradient(transparent 70%, #fbfbfb 70% 90%, transparent 90% 0%);
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .img_features_box {
  margin-top: 30px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .img_features_box {
    width: 350px;
    height: 240px;
    margin-top: 0;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .img_features_box img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .img_features_box img {
    width: 100%;
    height: 100%;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .relation_list {
  margin: 25px 0 0;
  text-align: left;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .relation_list {
    margin-left: 30px;
    width: 350px;
    margin-top: 0;
  }
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .relation_list &gt; li {
  border-top: solid 1px #E2E2E2;
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .relation_list &gt; li:last-child {
  border-bottom: solid 1px #E2E2E2;
}

.cont_aboutus .aboutus_box .card_about .card_about_foot .card_foot_flex .relation_list &gt; li a {
  display: block;
  padding: 13px 10px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bolder;
  position: relative;
  cursor: pointer;
  background-image: url(../img_cmn/ico_arrow_gray_right.svg);
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
}

/* ------------------------------------
  会社情報
------------------------------------ */
.cont_company .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_company.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_company .page_tl .page_tl_box {
    background-image: url(../img_cont/bg_tl_company_pc.jpg);
    background-size: cover;
  }
}

.cont_company {
  /* 会社概要
  --------------- */
  /* アクセス
  --------------- */
  /* 沿革
  --------------- */
}

@media screen and (min-width: 768px) {
  .cont_company .info_title {
    font-size: 22px;
    width: 830px;
    margin: 0 auto 40px;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .company_info .pc_title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .company_info .info_list {
    width: 830px;
    margin: 0 auto;
  }
}

.cont_company .company_info .info_list &gt; li {
  border-top: solid 1px #E2E2E2;
}

.cont_company .company_info .info_list &gt; li:last-child {
  border-bottom: solid 1px #E2E2E2;
}

.cont_company .company_info .info_list &gt; li .info_box {
  padding: 20px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .cont_company .company_info .info_list &gt; li .info_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cont_company .company_info .info_list &gt; li .info_box .tl_info {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .cont_company .company_info .info_list &gt; li .info_box .tl_info {
    font-size: 16px;
    width: 300px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px;
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .company_info .info_list &gt; li .info_box .txt_info {
    font-size: 16px;
    width: 530px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 30px;
  }
}

.cont_company .company_info .info_list &gt; li .info_box .btn_access {
  position: absolute;
  top: 20px;
  right: 0;
  width: 120px;
  background-image: none;
}

.cont_company .company_info .info_list &gt; li .info_box .btn_access .btn_txt {
  padding-left: 20px;
  position: relative;
}

.cont_company .company_info .info_list &gt; li .info_box .btn_access .btn_txt::before {
  display: inline-block;
  content: '';
  width: 12px;
  height: 18px;
  background-image: url("../img_top-co/ico_map_pin_white.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.cont_company .access_info {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .cont_company .access_info {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .access_info .display_change {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 830px;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .access_info .display_change .access_box {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .access_info .display_change .access1 {
    margin-right: 15px;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .access_info .display_change .access2 {
    margin-left: 15px;
  }
}

.cont_company .access_info .tl_info {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 20px 0 15px;
}

@media screen and (min-width: 768px) {
  .cont_company .access_info .tl_info {
    font-size: 18px;
    margin: 0 0 20px;
  }
}

.cont_company .access_info .car_access {
  padding-left: 30px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .cont_company .access_info .car_access {
    font-size: 16px;
  }
}

.cont_company .access_info .car_access::before {
  display: inline-block;
  content: '';
  width: 22px;
  height: 18px;
  background-image: url("../img_cmn/ico_car.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.cont_company .access_info .img_access_map {
  margin: 10px 0 30px;
}

@media screen and (min-width: 768px) {
  .cont_company .access_info .img_access_map {
    margin-top: 30px;
  }
}

.cont_company .access_info .img_access_map img {
  width: 100%;
  height: auto;
  max-width: 400px;
  border: solid 1px #E2E2E2;
}

@media screen and (min-width: 768px) {
  .cont_company .access_info .btn_box {
    width: 350px;
    height: 44px;
    margin: 0 auto;
  }
}

.cont_company .history_info {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .cont_company .history_info {
    margin-top: 80px;
  }
}

.cont_company .history_info .history_list {
  border-left: solid 1px #15195B;
  margin-left: 20px;
}

@media screen and (min-width: 768px) {
  .cont_company .history_info .history_list {
    margin: 0 auto;
    width: 830px;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .history_info .history_list &gt; li .history_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.cont_company .history_info .history_list &gt; li .history_box .tl_date {
  display: inline-block;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #0a0a0a;
  padding: 5px 5px 5px 20px;
  margin-bottom: 15px;
  margin-left: -10px;
  border-bottom: solid 1px #15195B;
}

@media screen and (min-width: 768px) {
  .cont_company .history_info .history_list &gt; li .history_box .tl_date {
    width: 250px;
    font-size: 16px;
    margin-bottom: 35px;
    padding: 5px 5px 5px 40px;
  }
}

@media screen and (min-width: 768px) {
  .cont_company .history_info .history_list &gt; li .history_box .last_box {
    margin-bottom: 15px;
  }
}

.cont_company .history_info .history_list &gt; li .history_box .txt_history {
  padding: 0px 5px 15px 15px;
}

@media screen and (min-width: 768px) {
  .cont_company .history_info .history_list &gt; li .history_box .txt_history {
    margin-left: 50px;
    font-size: 16px;
  }
}

/* ------------------------------------
  個人情報保護方針
------------------------------------ */
.cont_pp .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_pp.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_pp .page_tl .page_tl_box {
    background-image: url(../img_cont/bg_tl_pp_pc.jpg);
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .cont_pp .pp_box_wrap {
    width: 830px;
    margin: 0 auto;
  }
}

.cont_pp .pp_box_wrap .pp_top_box {
  margin-bottom: 50px;
}

.cont_pp .pp_box_wrap .pp_box {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .cont_pp .pp_box_wrap .pp_box {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .cont_pp .pp_box_wrap .pp_box .tl_default {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/* ------------------------------------
  利用規約 ページ
------------------------------------ */
.page_corporate .cont_terms-of-use .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_termsofuse.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .page_corporate .cont_terms-of-use .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_termsofuse_pc@2x.jpg");
    background-size: cover;
  }
}

.inner_termsofuse {
  /* PC */
}

@media screen and (min-width: 768px) {
  .inner_termsofuse {
    width: 830px;
    margin: 0 auto;
  }
}

.cont_terms-of-use .terms_top_box {
  margin-bottom: 50px;
}

.cont_terms-of-use .terms_box {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .cont_terms-of-use .terms_box {
    margin-bottom: 50px;
  }
}

.cont_terms-of-use .terms_box .tl_default {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_terms-of-use .terms_box .tl_default {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.cont_terms-of-use .terms_box .txt_tl_sub {
  margin-bottom: 20px;
}

.cont_terms-of-use .terms_box .terms_list &gt; li {
  border-top: solid 1px #E2E2E2;
}

.cont_terms-of-use .terms_box .terms_list &gt; li:last-child {
  border-bottom: solid 1px #E2E2E2;
}

.cont_terms-of-use .terms_box .terms_list &gt; li .terms {
  padding: 20px 0;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_terms-of-use .terms_box .terms_list &gt; li .terms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
  }
}

.cont_terms-of-use .terms_box .terms_list &gt; li .terms .tl_terms {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_terms-of-use .terms_box .terms_list &gt; li .terms .tl_terms {
    width: 300px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px;
    margin-bottom: 0;
  }
}

.cont_terms-of-use .terms_box .terms_list &gt; li .terms .txt_terms {
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_terms-of-use .terms_box .terms_list &gt; li .terms .txt_terms {
    width: 530px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 30px;
  }
}

.cont_terms-of-use .terms_box .num_list {
  counter-reset: number 1;
}

.cont_terms-of-use .terms_box .num_list &gt; li {
  position: relative;
  padding-left: 2em;
  padding-bottom: 1em;
}

.cont_terms-of-use .terms_box .num_list &gt; li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  left: 0;
  top: 0;
}

.cont_terms-of-use .terms_box .num_list_02 {
  counter-reset: num;
  margin-left: 2em;
}

.cont_terms-of-use .terms_box .num_list_02 &gt; li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
}

.cont_terms-of-use .terms_box .num_list_02 &gt; li:first-child {
  margin-top: 1em;
}

.cont_terms-of-use .terms_box .num_list_02 &gt; li:nth-child(n + 11) {
  padding-left: 3em;
}

.cont_terms-of-use .terms_box .num_list_02 &gt; li::before {
  position: absolute;
  counter-increment: num;
  content: counter(num, cjk-ideographic);
  display: inline-block;
  left: 0;
  top: 0;
}

/* ------------------------------------
  サイトマップ ページ
------------------------------------ */
.cont_sitemap .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_sitemap.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .cont_sitemap .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_sitemap_pc.jpg");
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_gray_color_line {
    width: 350px;
    margin: 0 auto;
  }
  .cont_sitemap .pc_change {
    margin-top: 80px;
  }
  .cont_sitemap .pc_change2 {
    margin-top: 80px;
  }
  .cont_sitemap .display_change {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 830px;
    margin: 0 auto;
  }
  .cont_sitemap .left_btn_wrap {
    width: 50%;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .cont_sitemap .left_btn_wrap .btn_box {
    margin: 10px 0 30px;
  }
  .cont_sitemap .right_btn_wrap {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .cont_sitemap .right_btn_wrap .btn_box {
    margin: 10px 0 30px;
  }
}

.cont_sitemap .tl_default_line {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

@media screen and (min-width: 768px) {
  .cont_sitemap .tl_default_line {
    font-size: 22px;
    text-align: center;
    border-bottom: unset;
    padding-bottom: unset;
    margin-bottom: unset;
  }
}

.cont_sitemap .tl_default_line.shop_title {
  border-bottom: unset;
  margin-bottom: unset;
  padding-bottom: unset;
  padding-left: unset;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .cont_sitemap .tl_default_line.shop_title {
    font-size: 18px;
  }
}

.cont_sitemap .btn_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 25px 0;
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_box_wrap {
    display: block;
  }
  .cont_sitemap .btn_box_wrap.right_btn_wrap {
    padding-left: 40px;
  }
  .cont_sitemap .btn_box_wrap .flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 830px;
    margin: 0 auto;
  }
  .cont_sitemap .btn_box_wrap .flex_wrap li {
    margin-left: 5px;
    padding: 0 30px;
  }
}

.cont_sitemap .btn_box_wrap.sub_box {
  border-top: solid 1px #E2E2E2;
  padding: 25px 0;
}

.cont_sitemap .btn_box_wrap.delete_top_margin {
  margin-top: unset;
}

.cont_sitemap .btn_box_wrap .btn_wrap {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cont_sitemap .btn_box_wrap .link_list {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_box_wrap .link_list {
    margin-bottom: unset;
  }
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_box_wrap .link_list .display_change {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 830px;
    margin: 0 auto;
  }
  .cont_sitemap .btn_box_wrap .link_list .display_change .left_btn_wrap {
    width: 50%;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .cont_sitemap .btn_box_wrap .link_list .display_change .left_btn_wrap .btn_box {
    margin: 10px 0 30px;
  }
  .cont_sitemap .btn_box_wrap .link_list .display_change .right_btn_wrap {
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
  }
  .cont_sitemap .btn_box_wrap .link_list .display_change .right_btn_wrap .btn_box {
    margin: 10px 0 30px;
  }
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_box_wrap .link_list &gt; li .btn_box {
    margin-bottom: 30px;
  }
}

.cont_sitemap .btn_box_wrap .link_list &gt; li .btn_box .orange_line {
  border: solid 1px #15195B;
  color: #15195B;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_box_wrap .link_list &gt; li .btn_box .orange_line {
    height: 44px;
    margin: 0 auto;
  }
}

.cont_sitemap .btn_box_wrap .link_list &gt; li .txt_short {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.cont_sitemap .btn_box_wrap .link_list &gt; li .tl_link {
  margin-bottom: 15px;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: 1.4rem;
  line-height: 1.8rem;
}

.cont_sitemap .btn_box_wrap .link_list &gt; li .no_box {
  display: block;
  font-size: 1.3rem;
  padding-left: 15px;
  position: relative;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_box_wrap .link_list &gt; li .no_box {
    font-size: 1.4rem;
  }
}

.cont_sitemap .btn_box_wrap .link_list &gt; li .no_box::before {
  display: block;
  content: '';
  width: 5px;
  height: 10px;
  background-image: url("../img_cmn/ico_arrow_gray_right.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
}

.cont_sitemap .btn_box_wrap .btn_login {
  height: 40px;
  line-height: 4.0rem;
  background-image: none;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-size: 7px;
  background-position: top 49% right 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_box_wrap .btn_login {
    width: 350px;
    margin: 0 auto 20px;
  }
}

.cont_sitemap .btn_box_wrap .btn_login .btn_txt {
  padding-left: 20px;
  position: relative;
}

.cont_sitemap .btn_box_wrap .btn_login .btn_txt::before {
  display: inline-block;
  content: '';
  width: 14px;
  height: 15px;
  background-image: url("../img_cmn/ico_member_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cont_sitemap .btn_box_wrap .btn_new_member {
  display: block;
  padding: 5px 10px 5px 20px;
  margin: 10px 0 20px;
  position: relative;
  color: #0a0a0a;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .cont_sitemap .btn_box_wrap .btn_new_member {
    text-align: center;
  }
}

.cont_sitemap .btn_box_wrap .btn_new_member .btn_txt {
  position: relative;
}

.cont_sitemap .btn_box_wrap .btn_new_member .btn_txt::before {
  display: block;
  content: '';
  width: 5px;
  height: 10px;
  background-image: url("../img_cmn/ico_arrow_orange.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: -15px;
  margin-top: -5px;
}

.cont_sitemap .btn_box_wrap .sns_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cont_sitemap .btn_box_wrap .sns_btn_box .ico_sns_instagram,
.cont_sitemap .btn_box_wrap .sns_btn_box .ico_sns_youtube {
  display: block;
  width: 45px;
  height: 45px;
  background: #FCF9F4 no-repeat center/50%;
  border-radius: 1px;
  margin-right: 5px;
}

.cont_sitemap .btn_box_wrap .sns_btn_box .ico_sns_youtube {
  background-image: url("../img_top-co/ico_youtube.svg");
}

.cont_sitemap .btn_box_wrap .sns_btn_box .ico_sns_instagram {
  background-image: url("../img_cont/ico_instagram.png");
}

/* ------------------------------------
404エラー ページ
------------------------------------ */
.cont_error .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_error.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media screen and (min-width: 768px) {
  .cont_error .page_tl .page_tl_box {
    background-image: url("../img_cont/bg_tl_error_pc.jpg");
    background-size: cover;
  }
}

.cont_error .msg_notfound_box {
  margin-bottom: 30px;
  padding-bottom: 170px;
  position: relative;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_error .msg_notfound_box {
    margin-bottom: 120px;
    padding-bottom: 150px;
    text-align: center;
  }
}

.cont_error .msg_notfound_box::before {
  display: block;
  content: '';
  width: 100%;
  height: 200px;
  background-image: url("../img_cmn/bg_error.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_error .msg_notfound_box::before {
    width: 505px;
    height: 203px;
  }
}

.cont_error .msg_notfound_box .tl_error_msg {
  font-size: 3.0rem;
  font-weight: bold;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_error .msg_notfound_box .tl_error_msg {
    font-size: 5.0rem;
  }
}

.cont_error .msg_notfound_box .txt_error_msg {
  color: #464646;
  font-size: 1.8rem;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_error .msg_notfound_box .txt_error_msg {
    font-size: 2.8rem;
  }
}

/* ------------------------------------
  特定商取引について
------------------------------------ */
.cont_terms-of-sale .page_tl .page_tl_box {
  background-image: url("../img_cont/bg_tl_termsofsale.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  /* PC */
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .page_tl .page_tl_box {
    background-image: url(../img_cont/bg_tl_termsofsale_pc.jpg);
    background-size: cover;
  }
}

.cont_terms-of-sale .terms_box {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .terms_box {
    width: 830px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .terms_box.box2 {
    margin-top: 80px;
  }
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .terms_box .tl_default {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

.cont_terms-of-sale .terms_box .terms_list .contact_link_box {
  margin-top: 20px;
}

.cont_terms-of-sale .terms_box .terms_list &gt; li {
  border-top: solid 1px #E2E2E2;
}

.cont_terms-of-sale .terms_box .terms_list &gt; li:last-child {
  border-bottom: solid 1px #E2E2E2;
}

.cont_terms-of-sale .terms_box .terms_list &gt; li .terms {
  padding: 20px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .terms_box .terms_list &gt; li .terms {
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.cont_terms-of-sale .terms_box .terms_list &gt; li .terms .tl_terms {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .terms_box .terms_list &gt; li .terms .tl_terms {
    width: 300px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px;
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .terms_box .terms_list &gt; li .terms .txt_terms {
    width: 530px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 30px;
  }
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .contact_link_box {
    width: 830px;
    margin: 50px auto;
  }
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .contact_link_box .phone {
    width: 50%;
    margin-left: 50px;
  }
}

@media screen and (min-width: 768px) {
  .cont_terms-of-sale .contact_link_box .mail {
    width: 50%;
    margin-right: 50px;
  }
}
/*# sourceMappingURL=style.css.map */</pre></body></html>