@charset "UTF-8";
/* ======================= VARIABLE ====== */
/* ======================= IMPORT ====== */
/*=================

      mixin.scss

=======================*/
/*=================

      font.scss

=======================*/
@font-face {
  font-family: 'BLACKJAR';
  font-weight: normal;
  font-style: normal;
  src: local("BLACKJAR"), url("../fonts/BLACKJAR.woff2") format("woff2"), url("../fonts/BLACKJAR.woff") format("woff");
}

/*=================

      common.scss

=======================*/
.common_wrap {
  padding: 0 16px;
}

.common_inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.common_inner_s {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.common_right_wrap {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: auto;
  margin-right: 0;
}

.common_filter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

/* フェードイン(初期値) */
.scroll_up {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  /* 下に50pxの位置から */
  -webkit-transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, transform .8s;
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.scroll_up.is-show {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
  transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  /* フェード開始を0.2秒遅らせる */
}

/*common_sec_title*/
.common_sec_title_wrap {
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_wrap {
    margin: 0 0 48px;
  }
}

.common_sec_title_wrap .common_sec_title_ja {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 32px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_wrap .common_sec_title_ja {
    font-size: 22px;
  }
}

.common_sec_title_wrap .common_sec_title_ja:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #323335;
}

.common_sec_title_wrap .common_sec_title_ja.c_w {
  color: #FFF;
}

.common_sec_title_wrap .common_sec_title_ja.c_w:after {
  background-color: #FFF;
}

.common_sec_title_wrap .common_sec_title_en {
  text-align: center;
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_wrap .common_sec_title_en {
    font-size: 12px;
  }
}

.common_sec_title_wrap .common_sec_title_en.c_w {
  color: #FFF;
}

.common_sec_title_wrap .common_sec_text {
  text-align: center;
  margin: 32px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
}

@media only screen and (max-width: 640px) {
  .common_sec_title_wrap .common_sec_text {
    margin: 24px 0 0;
    font-size: 14px;
  }
}

/*common_btn*/
.common_btn_wrap {
  margin: 64px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_btn_wrap {
    margin: 40px 0 0;
  }
}

.common_btn_wrap .common_more_btn {
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 40px;
  background-color: #CAC1B9;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  margin: 0 auto;
  padding: 4px 24px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .common_btn_wrap .common_more_btn {
    font-size: 14px;
    height: 56px;
  }
}

.common_btn_wrap .common_more_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -8px;
  width: 28px;
  height: 1px;
  background-color: #323335;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .common_btn_wrap .common_more_btn:hover:after {
    right: -16px;
  }
}

.common_btn_wrap .common_back_btn {
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 40px;
  background-color: #CAC1B9;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  margin: 0 auto;
  padding: 4px 24px;
  text-align: center;
}

.common_btn_wrap .common_back_btn.mt_10 {
  margin: 10px auto 0;
}

@media only screen and (max-width: 640px) {
  .common_btn_wrap .common_back_btn {
    font-size: 14px;
    height: 56px;
  }
}

.common_btn_wrap .common_back_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -8px;
  width: 28px;
  height: 1px;
  background-color: #323335;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .common_btn_wrap .common_back_btn:hover:after {
    left: -16px;
  }
}

/*common_select*/
.common_select {
  color: #838383 !important;
}

.common_select.active {
  color: #323335 !important;
}

/*common_pankuzu*/
.common_pankuzu_wrap {
  background-color: #FFF;
  padding: 10px 0;
  overflow-x: scroll;
}

.common_pankuzu_wrap .common_pankuzu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
}

.common_pankuzu_wrap .common_pankuzu_list .common_panluzu_item {
  margin: 0 28px 0 0;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  white-space: nowrap;
}

.common_pankuzu_wrap .common_pankuzu_list .common_panluzu_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -15px;
  width: 4px;
  height: 7px;
  background-image: url(../images/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.common_pankuzu_wrap .common_pankuzu_list .common_panluzu_item:last-child {
  margin: 0 0 0 0;
}

.common_pankuzu_wrap .common_pankuzu_list .common_panluzu_item:last-child:after {
  content: none;
}

.common_pankuzu_wrap .common_pankuzu_list .common_panluzu_item .common_pankuzu_link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.common_pankuzu_wrap .common_pankuzu_list .common_panluzu_item .common_pankuzu_link img {
  width: 10px;
  margin: 0 4px 0 0;
}

/*common_page_title_block*/
.common_page_title_block {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F1ED), color-stop(60%, #F6F1ED), color-stop(60%, #FFF), to(#FFF));
  background: linear-gradient(180deg, #F6F1ED 0%, #F6F1ED 60%, #FFF 60%, #FFF 100%);
}

.common_page_title_block_inner {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: auto;
  margin-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 350px;
  padding: 40px 40px 40px 80px;
  position: relative;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 840px) {
  .common_page_title_block_inner {
    padding: 40px 40px 40px 40px;
  }
}

@media only screen and (max-width: 640px) {
  .common_page_title_block_inner {
    padding: 20px 20px 20px 20px;
    min-height: 240px;
  }
}

.common_page_title_block_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.common_page_title_block_inner .common_page_title_content {
  position: relative;
}

.common_page_title_block_inner .common_page_title_content .common_page_title_ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 26px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block_inner .common_page_title_content .common_page_title_ja {
    font-size: 22px;
    margin: 0 0 22px;
  }
}

.common_page_title_block_inner .common_page_title_content .common_page_title_ja:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 40px;
  height: 1px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block_inner .common_page_title_content .common_page_title_ja:after {
    bottom: -12px;
  }
}

.common_page_title_block_inner .common_page_title_content .common_page_title_en {
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 26px;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block_inner .common_page_title_content .common_page_title_en {
    font-size: 12px;
    margin: 0 0 22px;
  }
}

.common_page_title_block_inner .common_page_title_content .common_page_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block_inner .common_page_title_content .common_page_text {
    font-size: 14px;
  }
}

.common_page_section {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .common_page_section {
    padding: 60px 0 80px;
  }
}

.common_page_section:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -30px;
  width: 260px;
  height: 452px;
  background-image: url(../images/common/bg_img_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .common_page_section:before {
    width: 172px;
    height: 299px;
    right: -26px;
  }
}

.common_page_section:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -30px;
  width: 313px;
  height: 316px;
  background-image: url(../images/common/bg_img_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .common_page_section:after {
    width: 187px;
    height: 189px;
  }
}

/*common_paging*/
.common_paging_wrap {
  margin: 64px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_paging_wrap {
    margin: 48px 0 0;
  }
}

.common_paging_wrap .common_paging_list {
  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;
}

.common_paging_wrap .common_paging_list .common_paging_item {
  margin: 0 12px;
}

@media only screen and (max-width: 640px) {
  .common_paging_wrap .common_paging_list .common_paging_item {
    margin: 0 8px;
  }
}

.common_paging_wrap .common_paging_list .common_paging_item .common_paging_prev {
  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;
  width: 40px;
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_paging_wrap .common_paging_list .common_paging_item .common_paging_prev {
    width: 36px;
    height: 44px;
  }
}

@media only screen and (min-width: 960px) {
  .common_paging_wrap .common_paging_list .common_paging_item .common_paging_prev:hover {
    opacity: 0.7;
  }
}

.common_paging_wrap .common_paging_list .common_paging_item .common_paging_prev img {
  display: block;
  width: 8px;
}

.common_paging_wrap .common_paging_list .common_paging_item .common_paging_next {
  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;
  width: 40px;
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_paging_wrap .common_paging_list .common_paging_item .common_paging_next {
    width: 36px;
    height: 44px;
  }
}

@media only screen and (min-width: 960px) {
  .common_paging_wrap .common_paging_list .common_paging_item .common_paging_next:hover {
    opacity: 0.7;
  }
}

.common_paging_wrap .common_paging_list .common_paging_item .common_paging_next img {
  display: block;
  width: 8px;
}

.common_paging_wrap .common_paging_list .common_paging_item .common_paging_link {
  width: 40px;
  height: 50px;
  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;
  background-color: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  border: 1px solid #323335;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_paging_wrap .common_paging_list .common_paging_item .common_paging_link {
    width: 36px;
    height: 44px;
    font-size: 16px;
  }
}

@media only screen and (min-width: 960px) {
  .common_paging_wrap .common_paging_list .common_paging_item .common_paging_link:hover {
    opacity: 0.7;
  }
}

.common_paging_wrap .common_paging_list .common_paging_item .common_paging_link.active {
  color: #FFF;
  background-color: #323335;
}

/*common_popup*/
.common_popup_block {
  display: none;
  max-width: 600px;
  width: 95%;
  background: #FFF;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  padding: 80px 40px;
  border-radius: 20px;
  z-index: 200000;
  -webkit-box-shadow: 0px 0px 20px rgba(100, 100, 100, 0.8);
  box-shadow: 0px 0px 20px rgba(100, 100, 100, 0.8);
  max-height: 80vh;
  overflow-y: scroll;
}

@media only screen and (max-width: 640px) {
  .common_popup_block {
    padding: 60px 24px 40px;
  }
}

.common_popup_block .common_popup_close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
}

.common_popup_block .common_popup_close img {
  width: 100%;
}

.common_popup_block .common_thanks_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 48px;
}

.common_popup_item_list .common_popup_item_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 0 16px;
  border-bottom: 1px solid #BABABA;
  margin: 0 0 16px;
}

.common_popup_item_list .common_popup_item_item .common_popup_item_item_img {
  width: 80px;
  height: 80px;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_popup_item_list .common_popup_item_item .common_popup_item_item_img {
    width: 50px;
    height: 50px;
  }
}

.common_popup_item_list .common_popup_item_item .common_popup_item_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.common_popup_item_list .common_popup_item_item .common_popup_item_item_title_wrap {
  width: calc(100% - 240px);
}

@media only screen and (max-width: 640px) {
  .common_popup_item_list .common_popup_item_item .common_popup_item_item_title_wrap {
    width: calc(100% - 190px);
  }
}

.common_popup_item_list .common_popup_item_item .common_popup_item_item_title_wrap .common_popup_item_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 21px;
  max-height: calc(21px*2);
}

@media only screen and (max-width: 640px) {
  .common_popup_item_list .common_popup_item_item .common_popup_item_item_title_wrap .common_popup_item_item_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.common_popup_item_list .common_popup_item_item .common_popup_item_item_title_wrap .common_popup_item_item_title_type {
  margin: 8px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #838383;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_popup_item_list .common_popup_item_item .common_popup_item_item_title_wrap .common_popup_item_item_title_type {
    margin: 4px 0 0;
    font-size: 10px;
  }
}

.common_popup_item_list .common_popup_item_item .common_popup_item_item_text {
  text-align: right;
  width: 120px;
  margin: 0 0 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #EB6262;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_popup_item_list .common_popup_item_item .common_popup_item_item_text {
    font-size: 11px;
    width: 100px;
  }
}

/*common_form*/
.common_error_main {
  width: 100%;
  text-align: center;
  padding: 20px;
  border: 1px solid #EB6262;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #EB6262;
  line-height: 1.5;
  margin: 0 0 32px;
}

.common_error_main a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #EB6262;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media only screen and (max-width: 640px) {
  .common_error_main {
    padding: 10px;
    font-size: 14px;
    margin: 0 0 20px;
  }
}

.common_error_text {
  margin: 10px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #EB6262;
  line-height: 1.5;
}

.common_error_text.center {
  text-align: center;
}

.common_error_text a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #EB6262;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.common_error_list {
  width: 100%;
  border: 1px solid #EB6262;
  margin: 0 0 32px;
  padding: 20px;
}

@media only screen and (max-width: 640px) {
  .common_error_list {
    padding: 10px;
    margin: 0 0 20px;
  }
}

.common_error_list .common_error_item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #EB6262;
  line-height: 1.5;
  margin: 0 0 20px;
  padding: 0 0 0 16px;
  position: relative;
}

.common_error_list .common_error_item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #EB6262;
}

.common_error_list .common_error_item:last-child {
  margin: 0 0 0;
}

@media only screen and (max-width: 640px) {
  .common_error_list .common_error_item {
    font-size: 14px;
  }
}

.common_form_list .common_form_item {
  margin: 0 0 32px;
}

.common_form_list .common_form_item:last-child {
  margin: 0 0 0;
}

.common_form_list .common_form_item .common_form_item_title {
  padding: 0 0 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 16px;
}

.common_form_list .common_form_item .common_form_item_title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #CAC1B9;
}

.common_form_list .common_form_item .common_form_item_title .required {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #EB6262;
  line-height: 1.5;
  margin: 0 0 0 8px;
}

.common_form_list .common_form_item .common_form_item_title .supplement {
  font-size: 13px;
  margin: 0 0 0 8px;
}

.common_form_list .common_form_item .common_form_item_text {
  margin: 0 0 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
  line-height: 1.5;
}

.common_form_list .common_form_item .common_form_item_text a {
  color: #323335;
  text-decoration: underline;
}

.common_form_list .common_form_item .common_form_flex_wrap {
  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;
  width: 100%;
}

.common_form_list .common_form_item .common_form_flex_wrap.j_sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input {
  width: calc((100% - 20px) /2);
  background-color: #EFEFEF;
  border: none;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input::-webkit-input-placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input::-ms-input-placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input::placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_select {
  width: calc((100% - 20px) /2);
  background-color: #EFEFEF;
  border: none;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-position: right 16px center;
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input_80 {
  width: 80px;
  background-color: #EFEFEF;
  border: none;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input_80 {
    width: 56px;
  }
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input_80::-webkit-input-placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input_80::-ms-input-placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_flex_wrap .common_form_flex_input_80::placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_flex_post {
  margin: 0 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.common_form_list .common_form_item .common_form_input_wrap {
  width: 100%;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_input_100 {
  width: 100%;
  background-color: #EFEFEF;
  border: none;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_input_100::-webkit-input-placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_input_100::-ms-input-placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_input_100::placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_select_100 {
  width: 100%;
  background-color: #EFEFEF;
  border: none;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-position: right 16px center;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_texrarea_100 {
  width: 100%;
  height: 200px;
  background-color: #EFEFEF;
  border: none;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  resize: none;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_texrarea_100::-webkit-input-placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_texrarea_100::-ms-input-placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_texrarea_100::placeholder {
  color: #838383;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_icon_input_label {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #FFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_input_file {
  display: none;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_icon_input_img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #F1F1F1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_icon_input_img .common_form_icon_input_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 26px;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_icon_input_img .common_form_icon_input_btn img {
  width: 100%;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_cover_input_label {
  display: block;
  width: 300px;
  height: 100px;
  border: 2px solid #FFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_icon_input_cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #F1F1F1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_icon_input_cover .common_form_icon_input_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 26px;
}

.common_form_list .common_form_item .common_form_input_wrap .common_form_icon_input_cover .common_form_icon_input_btn img {
  width: 100%;
}

.common_form_auto_check_wrap.center {
  text-align: center;
}

.common_form_auto_check_label {
  cursor: pointer;
  display: inline-block;
  padding: 5px 5px 5px 26px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.common_form_auto_check_label:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #F1F1F1;
}

.common_form_auto_check_label:after {
  content: "";
  border-right: 3px solid #323335;
  border-bottom: 3px solid #323335;
  display: block;
  height: 9px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 5px;
}

.common_form_auto_check {
  display: none;
}

.common_form_auto_check:checked + .common_form_auto_check_label::after {
  opacity: 1;
}

.common_form_submit_btn_wrap {
  margin: 64px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_form_submit_btn_wrap {
    margin: 40px 0 0;
  }
}

.common_form_submit_btn_wrap .common_form_submit_note_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 16px;
}

.common_form_submit_btn_wrap .common_form_submit_note_text a {
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.common_form_submit_btn_wrap .common_form_submit_btn {
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 40px;
  background-color: #CAC1B9;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  margin: 0 auto;
  padding: 4px 24px;
  text-align: center;
}

.common_form_submit_btn_wrap .common_form_submit_btn.bg_gray {
  background-color: #F1F1F1;
}

@media only screen and (max-width: 640px) {
  .common_form_submit_btn_wrap .common_form_submit_btn {
    font-size: 14px;
    height: 56px;
  }
}

.common_form_submit_btn_wrap .common_form_submit_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -8px;
  width: 28px;
  height: 1px;
  background-color: #323335;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .common_form_submit_btn_wrap .common_form_submit_btn:hover:after {
    right: -16px;
  }
}

.common_form_submit_btn_wrap .common_back_text_btn {
  margin: 32px 0 0;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.common_form_submit_btn_wrap .common_back_text_btn img {
  width: 6px;
  margin: 0 8px 0 0;
}

.common_box_wrap {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 48px 24px;
}

@media only screen and (max-width: 640px) {
  .common_box_wrap {
    padding: 24px 16px;
  }
}

.common_box_wrap .common_box_inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.common_box_wrap .common_box_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
}

.common_box_wrap .common_box_text a {
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media only screen and (max-width: 640px) {
  .common_box_wrap .common_box_text {
    font-size: 14px;
  }
}

.common_no_deta_wrap .common_no_deta_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .common_no_deta_wrap .common_no_deta_text {
    font-size: 14px;
  }
}

.common_form_notice_box {
  margin: 40px 0 0;
  width: 100%;
  padding: 24px;
  border: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  .common_form_notice_box {
    margin: 32px 0 0;
    padding: 16px;
  }
}

.common_form_notice_box .common_form_notice_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 8px;
  margin: 0 0 16px;
  border-bottom: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  .common_form_notice_box .common_form_notice_box_title {
    font-size: 16px;
  }
}

.common_form_notice_box .common_form_notice_list {
  padding: 0 0 0 20px;
  list-style: disc;
}

.common_form_notice_box .common_form_notice_list .common_form_notice_item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .common_form_notice_box .common_form_notice_list .common_form_notice_item {
    font-size: 13px;
  }
}

.common_form_notice_box .common_form_notice_list .common_form_notice_item:last-child {
  margin: 0 0 0;
}

/*=================

      header.scss

=======================*/
.header_wrap {
  width: 100%;
  height: 130px;
}

@media only screen and (max-width: 1400px) {
  .header_wrap {
    height: 80px;
  }
}

.pc_header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 130px;
  padding: 0 50px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.pc_header_inner .pc_header_top {
  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;
  width: 100%;
  padding: 24px 0;
  height: 84px;
}

.pc_header_inner .pc_header_top .pc_header_logo {
  display: block;
  width: 200px;
}

.pc_header_inner .pc_header_top .pc_header_logo img {
  width: 100%;
}

.pc_header_inner .pc_header_top .pc_header_top_menu {
  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;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_sns_list {
  margin: 0 32px 0 0;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_sns_list .pc_header_sns_item {
  margin: 0 16px 0 0;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_sns_list .pc_header_sns_item:last-child {
  margin: 0 0 0 0;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_sns_list .pc_header_sns_item .pc_header_sns_link {
  display: block;
  width: 30px;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_sns_list .pc_header_sns_item .pc_header_sns_link img {
  width: 100%;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_search_wrap {
  position: relative;
  margin: 0 32px 0 0;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_search_wrap .pc_header_search_input {
  padding: 5px 30px 5px 10px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #FAF7F5;
  border-radius: 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_search_wrap .pc_header_search_input::-webkit-input-placeholder {
  color: #838383;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_search_wrap .pc_header_search_input::-ms-input-placeholder {
  color: #838383;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_search_wrap .pc_header_search_input::placeholder {
  color: #838383;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_search_wrap .pc_header_search_submit_btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 16px;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_search_wrap .pc_header_search_submit_btn img {
  width: 100%;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list {
  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;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item {
  margin: 0 24px 0 0;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item:last-child {
  margin: 0 0 0 0;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item .register_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 20px;
  border-radius: 30px;
  width: 100px;
  background: linear-gradient(130deg, #d5ac5f 0%, #bc9854 100%);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item .mypage_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 20px;
  border-radius: 30px;
  width: 100px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_icon_link {
  display: block;
  height: 20px;
  position: relative;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_icon_link img {
  height: 100%;
  width: auto;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_icon_link .cart_num_wrap {
  position: absolute;
  top: -10px;
  right: -10px;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_icon_link .cart_num_wrap .cart_num_inner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #323335;
  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;
}

.pc_header_inner .pc_header_top .pc_header_top_menu .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_icon_link .cart_num_wrap .cart_num_inner .cart_num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: #FFF;
  line-height: 1;
  letter-spacing: 0;
}

.pc_header_inner .pc_header_bottom {
  padding: 0 0 24px;
  height: 46px;
}

.pc_header_inner .pc_header_bottom .pc_header_bottom_menu_list {
  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;
}

.pc_header_inner .pc_header_bottom .pc_header_bottom_menu_list .pc_header_bottom_menu_item .pc_header_bottom_menu_link {
  display: block;
  padding: 0 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
}

.pc_header_inner .pc_header_bottom .pc_header_bottom_menu_list .pc_header_bottom_menu_item .pc_header_bottom_menu_link:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 14px;
  background-color: #323335;
}

.pc_header_inner .pc_header_bottom .pc_header_bottom_menu_list .pc_header_bottom_menu_item:last-child .pc_header_bottom_menu_link:after {
  content: none;
}

.sp_header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #FFF;
  z-index: 1000;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.sp_header .sp_header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 80px;
}

.sp_header .sp_header_content .sp_header_logo {
  display: block;
  width: 160px;
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_logo {
    width: 140px;
  }
}

.sp_header .sp_header_content .sp_header_logo img {
  display: block;
  width: 100%;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap {
  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;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_list {
  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;
  margin: 0 32px 0 0;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_list .sp_header_icon_menu_item {
  margin: 0 0 0 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_list .sp_header_icon_menu_item .sp_header_icon_menu_link {
  display: block;
  width: 18px;
  position: relative;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_list .sp_header_icon_menu_item .sp_header_icon_menu_link.s_16 {
  width: 16px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_list .sp_header_icon_menu_item .sp_header_icon_menu_link img {
  width: 100%;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_list .sp_header_icon_menu_item .sp_header_icon_menu_link .item_num_wrap {
  position: absolute;
  top: -12px;
  right: -12px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_list .sp_header_icon_menu_item .sp_header_icon_menu_link .item_num_wrap .item_num_inner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #323335;
  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;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_list .sp_header_icon_menu_item .sp_header_icon_menu_link .item_num_wrap .item_num_inner .item_num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn {
  width: 48px;
  height: 40px;
  border-radius: 3px;
  background-color: #323335;
  position: relative;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span {
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  height: 1px;
  background-color: #FFF;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span:nth-of-type(1n) {
  left: 12px;
  top: 16px;
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span:nth-of-type(2n) {
  left: 12px;
  top: 22px;
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn.active span:nth-of-type(1n) {
  top: 13px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-32deg);
  transform: translateY(6px) rotate(-32deg);
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn.active span:nth-of-type(2n) {
  top: 25px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(32deg);
  transform: translateY(-6px) rotate(32deg);
  width: 24px;
}

.sp_header_menu {
  display: none;
}

.sp_header_menu.active {
  display: block;
}

.sp_header_menu .sp_header_menu_inner {
  position: fixed;
  z-index: 1000;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  overflow-y: scroll;
  padding: 30px 0;
  background-color: #FFF;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list {
  margin: 0 0 48px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #838383;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 24px 0 24px 20px;
  position: relative;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #323335;
}

.sp_header_menu .sp_header_menu_inner .sp_header_sns_menu_list {
  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;
}

.sp_header_menu .sp_header_menu_inner .sp_header_sns_menu_list .sp_header_sns_menu_item {
  margin: 0 16px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_sns_menu_list .sp_header_sns_menu_item .sp_header_sns_menu_link {
  display: block;
  width: 32px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_sns_menu_list .sp_header_sns_menu_item .sp_header_sns_menu_link img {
  width: 100%;
}

/*=================

      footer.scss

=======================*/
.footer_wrap {
  background-color: #323335;
  padding: 60px 0 44px;
}

@media only screen and (max-width: 640px) {
  .footer_wrap {
    padding: 40px 0 32px;
  }
}

.footer_logo_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 40px;
}

.footer_logo_sns .footer_logo {
  display: block;
  width: 260px;
  margin: 0 40px 0 0;
}

@media only screen and (max-width: 640px) {
  .footer_logo_sns .footer_logo {
    width: 200px;
    margin: 0 24px 0 0;
  }
}

.footer_logo_sns .footer_logo img {
  width: 100%;
}

.footer_logo_sns .footer_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer_logo_sns .footer_sns_list .footer_sns_item {
  margin: 0 16px 0 0;
}

.footer_logo_sns .footer_sns_list .footer_sns_item .footer_sns_link {
  display: block;
  width: 30px;
}

.footer_logo_sns .footer_sns_list .footer_sns_item .footer_sns_link img {
  width: 100%;
}

.footer_menu_block_wrap {
  padding: 0 0 54px;
  border-bottom: 1px solid #FFF;
  margin: 0 0 54px;
}

@media only screen and (max-width: 640px) {
  .footer_menu_block_wrap {
    padding: 0 0 32px;
    margin: 0 0 32px;
  }
}

.footer_menu_block_wrap .footer_menu_block {
  margin: 0 0 48px;
}

.footer_menu_block_wrap .footer_menu_block:last-child {
  margin: 0 0 0;
}

.footer_menu_block_wrap .footer_menu_block .footer_menu_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .footer_menu_block_wrap .footer_menu_block .footer_menu_block_title {
    font-size: 14px;
    margin: 0 0 16px;
  }
}

.footer_menu_block_wrap .footer_menu_block .footer_menu_block_title img {
  width: 18px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .footer_menu_block_wrap .footer_menu_block .footer_menu_block_title img {
    width: 14px;
  }
}

.footer_menu_block_wrap .footer_menu_block .footer_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -20px;
}

.footer_menu_block_wrap .footer_menu_block .footer_menu_list .footer_menu_item {
  width: 240px;
  margin: 0 30px 20px 0;
}

@media only screen and (max-width: 640px) {
  .footer_menu_block_wrap .footer_menu_block .footer_menu_list .footer_menu_item {
    width: 150px;
    margin: 0 20px 20px 0;
  }
}

.footer_menu_block_wrap .footer_menu_block .footer_menu_list .footer_menu_item .footer_menu_link {
  display: block;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .footer_menu_block_wrap .footer_menu_block .footer_menu_list .footer_menu_item .footer_menu_link {
    font-size: 12px;
  }
}

@media only screen and (min-width: 960px) {
  .footer_menu_block_wrap .footer_menu_block .footer_menu_list .footer_menu_item .footer_menu_link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.footer_main_menu_block {
  padding: 0 0 54px;
  border-bottom: 1px solid #FFF;
  margin: 0 0 24px;
}

.footer_main_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -20px;
}

.footer_main_menu_list .footer_main_menu_item {
  margin: 0 60px 20px 0;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .footer_main_menu_list .footer_main_menu_item {
    margin: 0 40px 20px 0;
  }
}

.footer_main_menu_list .footer_main_menu_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -30px;
  width: 1px;
  height: 12px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .footer_main_menu_list .footer_main_menu_item:after {
    right: -20px;
  }
}

.footer_main_menu_list .footer_main_menu_item:last-child:after {
  content: none;
}

.footer_main_menu_list .footer_main_menu_item .footer_main_menu_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .footer_main_menu_list .footer_main_menu_item .footer_main_menu_link {
    font-size: 13px;
  }
}

.footer_copy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .footer_copy {
    font-size: 11px;
  }
}

/*=================

      top.scss

=======================*/
/*fv_top_menu*/
.fv_top_menu {
  padding: 24px 0;
  background-color: #FAF7F5;
}

.fv_wrap {
  margin: 0 0 24px;
}

.fv_wrap .fv_inner {
  width: 100%;
  position: relative;
}

.fv_wrap .fv_inner .fv_slide_list .fv_slide_item {
  margin: 0 20px;
  height: 586px;
  width: 500px;
}

@media only screen and (max-width: 840px) {
  .fv_wrap .fv_inner .fv_slide_list .fv_slide_item {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 640px) {
  .fv_wrap .fv_inner .fv_slide_list .fv_slide_item {
    margin: 0 5px;
    width: 320px;
    height: 560px;
  }
}

.fv_wrap .fv_inner .fv_slide_list .fv_slide_item .fv_slide_item_inner {
  height: 100% !important;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fv_wrap .fv_inner .fv_title_wrap {
  position: absolute;
  bottom: 48px;
  left: 20%;
  max-width: 60%;
}

@media only screen and (max-width: 840px) {
  .fv_wrap .fv_inner .fv_title_wrap {
    left: 40px;
    max-width: calc(100% - 80px);
  }
}

@media only screen and (max-width: 640px) {
  .fv_wrap .fv_inner .fv_title_wrap {
    left: 16px;
    max-width: calc(100% - 32px);
  }
}

.fv_wrap .fv_inner .fv_title_wrap .fv_title {
  margin: 0 0 32px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #323335;
  line-height: 1.2;
  letter-spacing: 0;
}

@media only screen and (max-width: 640px) {
  .fv_wrap .fv_inner .fv_title_wrap .fv_title {
    font-size: 18px;
  }
}

.fv_wrap .fv_inner .fv_title_wrap .fv_title span {
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .fv_wrap .fv_inner .fv_title_wrap .fv_title span {
    padding: 10px 12px;
    margin: 0 0 10px;
  }
}

.fv_wrap .fv_inner .fv_title_wrap .fv_title span.big {
  font-size: 40px;
}

@media only screen and (max-width: 640px) {
  .fv_wrap .fv_inner .fv_title_wrap .fv_title span.big {
    font-size: 28px;
  }
}

.fv_wrap .fv_inner .fv_title_wrap .fv_title span:last-child {
  margin: 0 0 0;
}

.fv_wrap .fv_inner .fv_title_wrap .fv_sub_title {
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
}

@media only screen and (max-width: 640px) {
  .fv_wrap .fv_inner .fv_title_wrap .fv_sub_title {
    padding: 10px 12px;
    font-size: 16px;
  }
}

.top_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

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

.top_menu_list .top_menu_item {
  width: calc(100% / 3);
}

@media only screen and (max-width: 640px) {
  .top_menu_list .top_menu_item {
    width: 100%;
  }
}

.top_menu_list .top_menu_item .top_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 124px;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 640px) {
  .top_menu_list .top_menu_item .top_menu_link {
    height: 96px;
  }
}

.top_menu_list .top_menu_item .top_menu_link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #FAF7F5;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  .top_menu_list .top_menu_item .top_menu_link:before {
    width: 100%;
    height: 2px;
  }
}

.top_menu_list .top_menu_item .top_menu_link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

@media only screen and (min-width: 960px) {
  .top_menu_list .top_menu_item .top_menu_link:hover {
    opacity: 0.7;
  }
}

.top_menu_list .top_menu_item .top_menu_link .top_menu_title_wrap {
  text-align: center;
}

.top_menu_list .top_menu_item .top_menu_link .top_menu_title_wrap .top_menu_title_icon {
  width: 24px;
  margin: 0 auto 4px;
}

@media only screen and (max-width: 640px) {
  .top_menu_list .top_menu_item .top_menu_link .top_menu_title_wrap .top_menu_title_icon {
    width: 20px;
  }
}

.top_menu_list .top_menu_item .top_menu_link .top_menu_title_wrap .top_menu_title_icon img {
  width: 100%;
}

.top_menu_list .top_menu_item .top_menu_link .top_menu_title_wrap .top_menu_title_ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 4px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .top_menu_list .top_menu_item .top_menu_link .top_menu_title_wrap .top_menu_title_ja {
    font-size: 16px;
  }
}

.top_menu_list .top_menu_item .top_menu_link .top_menu_title_wrap .top_menu_title_en {
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .top_menu_list .top_menu_item .top_menu_link .top_menu_title_wrap .top_menu_title_en {
    font-size: 11px;
  }
}

.top_menu_list .top_menu_item:first-child .top_menu_link::before {
  content: none;
}

/*top_recommend_item*/
.top_recommend_item {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .top_recommend_item {
    padding: 60px 0 80px;
  }
}

.top_recommend_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -58px;
  background-image: url(../images/common/bg_img01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 260px;
}

@media only screen and (max-width: 640px) {
  .top_recommend_item:after {
    width: 165px;
    height: 215px;
    left: -20px;
  }
}

.recommend_item_block_wrap .recommend_item_block {
  margin: 0 0 56px;
}

.recommend_item_block_wrap .recommend_item_block:last-child {
  margin: 0 0 0;
}

.recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn {
    margin: 0 0 16px;
  }
}

.recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_title {
  width: calc(100% - 168px);
  padding: 0 0 0 28px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_title {
    width: calc(100% - 140px);
    font-size: 16px;
    padding: 0 0 0 20px;
  }
}

.recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_title::before {
    width: 10px;
    height: 10px;
  }
}

.recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_btn {
  width: 144px;
  height: 30px;
  margin: 0 0 0 24px;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #CAC1B9;
  border-radius: 30px;
}

@media only screen and (max-width: 640px) {
  .recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_btn {
    width: 124px;
    margin: 0 0 0 16px;
  }
}

@media only screen and (min-width: 960px) {
  .recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_btn:hover {
    opacity: 0.7;
  }
}

.recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_btn img {
  width: 5px;
  margin: 0 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .recommend_item_block_wrap .recommend_item_block .recommend_item_block_title_btn .recommend_item_block_btn img {
    margin: 0 0 0 8px;
  }
}

.recommend_item_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 840px) {
  .recommend_item_box_wrap {
    display: block;
    margin: 0 0 0;
  }
}

.recommend_item_box_wrap .recommend_item_box {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: calc((100% - 40px) /2);
  margin: 0 40px 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 840px) {
  .recommend_item_box_wrap .recommend_item_box {
    width: 100%;
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .recommend_item_box_wrap .recommend_item_box {
    margin: 0 0 20px 0;
  }
}

.recommend_item_box_wrap .recommend_item_box:nth-of-type(2n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 640px) {
  .recommend_item_box_wrap .recommend_item_box:nth-of-type(2n) {
    margin: 0 0 20px 0;
  }
}

@media only screen and (max-width: 840px) {
  .recommend_item_box_wrap .recommend_item_box:last-child {
    margin: 0 0 0 0;
  }
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap {
  position: relative;
  width: 204px;
  height: 204px;
}

@media only screen and (max-width: 640px) {
  .recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap {
    width: 160px;
    height: 160px;
  }
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_favorite_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_favorite_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_favorited_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_favorited_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_new {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 50px;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_new img {
  width: 100%;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_img_wrap .recommend_item_box_label {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 2px 6px;
  background-color: #FFF;
  border: 2px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #323335;
  line-height: 1.5;
  max-width: 100%;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 204px);
  padding: 12px 24px;
  background-color: #FAF7F5;
}

@media only screen and (max-width: 640px) {
  .recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail {
    width: calc(100% - 160px);
    padding: 8px 8px;
  }
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_brand {
  display: inline-block;
  padding: 4px 8px;
  background-color: #FFF;
  border: 1px solid #BABABA;
  margin: 0 0 8px;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_brand span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  letter-spacing: 0;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

@media only screen and (max-width: 640px) {
  .recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_brand span {
    font-size: 11px;
    line-height: 14px;
    max-height: calc(14px*1);
  }
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_category_wrap {
  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;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_category_wrap .recommend_item_box_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 12px 8px 0;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_category_wrap .recommend_item_box_sub_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #323335;
  padding: 0 0 0 10px;
  position: relative;
  margin: 0 0 8px;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_category_wrap .recommend_item_box_sub_category::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 1px;
  background-color: #323335;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_title {
    -webkit-line-clamp: 1;
    max-height: calc(24px*1);
  }
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.4;
  letter-spacing: 0;
}

@media only screen and (max-width: 640px) {
  .recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_price {
    font-size: 20px;
  }
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_price span {
  margin: 0 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #838383;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_price span {
    font-size: 10px;
    margin: 0 0 0 8px;
  }
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_group_buy_goal {
  margin: 8px 0 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #323335;
  line-height: 1.5;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_group_buy_goal span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_group_buy_meter_wrap {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  border: 1px solid #323335;
  background-color: #FFF;
  position: relative;
}

.recommend_item_box_wrap .recommend_item_box .recommend_item_box_detail .recommend_item_box_group_buy_meter_wrap .recommend_item_box_group_buy_meter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 10px;
  background-color: #323335;
  max-width: 100%;
}

@media only screen and (min-width: 960px) {
  .recommend_item_box_wrap .recommend_item_box:hover .recommend_item_box_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*top_new_item*/
.top_new_item {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .top_new_item {
    padding: 60px 0 80px;
  }
}

.top_new_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .top_new_item:after {
    width: 195px;
    height: 223px;
  }
}

/*simple_item_search*/
.simple_item_search {
  padding: 32px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .simple_item_search {
    padding: 24px 0;
  }
}

.simple_search_title_select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

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

.simple_search_title_select .simple_search_title {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .simple_search_title_select .simple_search_title {
    width: 150px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 640px) {
  .simple_search_title_select .simple_search_title {
    width: 100%;
    margin: 0 0 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.simple_search_title_select .simple_search_title img {
  width: 14px;
  margin: 0 4px 0 0;
}

.simple_search_title_select .simple_search_select_wrap {
  width: calc(100% - 330px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 840px) {
  .simple_search_title_select .simple_search_select_wrap {
    width: calc(100% - 240px);
  }
}

@media only screen and (max-width: 640px) {
  .simple_search_title_select .simple_search_select_wrap {
    width: 100%;
    display: block;
  }
}

.simple_search_title_select .simple_search_select_wrap .simple_search_select {
  width: calc((100% - 60px) /3);
  margin: 0 20px 0 0;
  border: 0;
  outline: 0;
  border-radius: 3px;
  background-color: #FAF7F5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: 12px 6px;
  background-position: right 10px center;
  padding: 10px 20px 10px 10px;
}

@media only screen and (max-width: 640px) {
  .simple_search_title_select .simple_search_select_wrap .simple_search_select {
    width: 100%;
    margin: 0 0 8px;
  }
}

.simple_search_title_select .simple_search_submit_btn {
  width: 150px;
  height: 44px;
  border-radius: 30px;
  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;
  background-color: #CAC1B9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
}

@media only screen and (max-width: 840px) {
  .simple_search_title_select .simple_search_submit_btn {
    width: 90px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 640px) {
  .simple_search_title_select .simple_search_submit_btn {
    width: 100%;
    height: 36px;
  }
}

/*top_item_ranking*/
.top_item_ranking {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .top_item_ranking {
    padding: 60px 0 80px;
  }
}

.top_item_ranking:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-image: url(../images/common/bg_img03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 275px;
  height: 320px;
}

@media only screen and (max-width: 640px) {
  .top_item_ranking:after {
    width: 198px;
    height: 231px;
  }
}

.top_item_ranking_block_wrap .top_item_ranking_block {
  margin: 0 0 56px;
}

.top_item_ranking_block_wrap .top_item_ranking_block:last-child {
  margin: 0 0 0;
}

.top_item_ranking_block_wrap .top_item_ranking_block_title_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .top_item_ranking_block_wrap .top_item_ranking_block_title_btn {
    margin: 0 0 16px;
  }
}

.top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_title {
  width: calc(100% - 168px);
  padding: 0 0 0 28px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_title {
    width: calc(100% - 140px);
    font-size: 16px;
    padding: 0 0 0 20px;
  }
}

.top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_title::before {
    width: 10px;
    height: 10px;
  }
}

.top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_btn {
  width: 144px;
  height: 30px;
  margin: 0 0 0 24px;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #CAC1B9;
  border-radius: 30px;
}

@media only screen and (max-width: 640px) {
  .top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_btn {
    width: 124px;
    margin: 0 0 0 16px;
  }
}

@media only screen and (min-width: 960px) {
  .top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_btn:hover {
    opacity: 0.7;
  }
}

.top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_btn img {
  width: 5px;
  margin: 0 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .top_item_ranking_block_wrap .top_item_ranking_block_title_btn .top_item_ranking_block_btn img {
    margin: 0 0 0 8px;
  }
}

/*top_newspaper*/
.top_newspaper {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .top_newspaper {
    padding: 60px 0 80px;
  }
}

@media only screen and (max-width: 1100px) {
  .top_newspaper .common_wrap {
    padding: 0 0;
  }
}

.top_newspaper_top_block_wrap {
  overflow-x: scroll;
}

.top_newspaper_top_block {
  display: block;
  background-color: #FFF;
  padding: 20px;
  position: relative;
  width: 1100px;
  height: 680px;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block {
    width: 820px;
    height: 504px;
  }
}

@media only screen and (min-width: 960px) {
  .top_newspaper_top_block:hover {
    opacity: 0.7;
  }
}

.top_newspaper_top_block .top_newspaper_top_main_img {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_main_img {
    width: 300px;
    height: 300px;
  }
}

.top_newspaper_top_block .top_newspaper_top_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_top_block .top_newspaper_top_main_title {
  position: absolute;
  top: 58px;
  left: 278px;
  z-index: 2;
  padding: 20px;
  background-color: #323335;
  width: 248px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  top: 50px;
  left: 200px;
  font-size: 22px;
  padding: 12px;
}

.top_newspaper_top_block .top_newspaper_top_01_img01 {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  width: 230px;
  height: 230px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_01_img01 {
    top: 16px;
    left: 16px;
    width: 172px;
    height: 172px;
  }
}

.top_newspaper_top_block .top_newspaper_top_01_img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_top_block .top_newspaper_top_01_img02 {
  position: absolute;
  top: 280px;
  left: 90px;
  z-index: 1;
  width: 208px;
  height: 138px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_01_img02 {
    top: 208px;
    left: 66px;
    width: 155px;
    height: 103px;
  }
}

.top_newspaper_top_block .top_newspaper_top_01_img02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_top_block .top_newspaper_top_01_sub_title {
  position: absolute;
  display: inline-block;
  top: 448px;
  left: 20px;
  z-index: 2;
  max-width: 334px;
  padding: 16px 12px;
  background-color: #CAC1B9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_01_sub_title {
    max-width: 300px;
    top: 320px;
    left: 16px;
    padding: 12px 10px;
  }
}

.top_newspaper_top_block .top_newspaper_top_01_title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 12px 24px 12px 0;
  background-image: url(../images/top/img_newspaper_num01.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 60px;
  width: 344px;
  min-height: 90px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_01_title {
    font-size: 20px;
    background-size: auto 36px;
    min-height: 56px;
  }
}

.top_newspaper_top_block .top_newspaper_top_02_img01 {
  position: absolute;
  top: 78px;
  right: 20px;
  z-index: 1;
  width: 200px;
  height: 172px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_02_img01 {
    top: 36px;
    right: 16px;
    width: 150px;
    height: 130px;
  }
}

.top_newspaper_top_block .top_newspaper_top_02_img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_top_block .top_newspaper_top_02_sub_title {
  position: absolute;
  display: inline-block;
  top: 78px;
  right: 188px;
  z-index: 2;
  max-width: 240px;
  padding: 10px 12px;
  background-color: #CAC1B9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_02_sub_title {
    top: 56px;
    right: 140px;
    max-width: 180px;
    font-size: 14px;
  }
}

.top_newspaper_top_block .top_newspaper_top_02_title {
  position: absolute;
  display: inline-block;
  top: 254px;
  right: 20px;
  max-width: 340px;
  z-index: 3;
  min-height: 40px;
  padding: 12px 0 12px 54px;
  background-image: url(../images/top/img_newspaper_num02.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: auto 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_02_title {
    top: 188px;
    right: 16px;
    font-size: 20px;
    background-size: auto 22px;
    padding: 8px 0 8px 32px;
  }
}

.top_newspaper_top_block .top_newspaper_top_03_title {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  min-width: 94px;
  height: 290px;
  padding: 30px 20px 0 8px;
  background-image: url(../images/top/img_newspaper_num03.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 80px auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_03_title {
    bottom: 16PX;
    height: 212px;
    padding: 20px 10px 0 10px;
    background-size: 40px auto;
    font-size: 20px;
    min-width: 54px;
  }
}

.top_newspaper_top_block .top_newspaper_top_03_img01 {
  position: absolute;
  bottom: 50px;
  right: 128px;
  z-index: 1;
  width: 230px;
  height: 262px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_03_img01 {
    bottom: 36px;
    right: 96px;
    width: 170px;
    height: 196px;
  }
}

.top_newspaper_top_block .top_newspaper_top_03_img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_top_block .top_newspaper_top_03_sub_title {
  position: absolute;
  display: inline-block;
  bottom: 20px;
  right: 148px;
  z-index: 2;
  max-width: 240px;
  padding: 10px 12px;
  background-color: #CAC1B9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_top_block .top_newspaper_top_03_sub_title {
    bottom: 16px;
    right: 110px;
    max-width: 180px;
    font-size: 14px;
    padding: 8px 10px;
  }
}

.top_newspaper_bottom_block_wrap {
  overflow-x: scroll;
}

.top_newspaper_bottom_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 1100px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block {
    width: 900px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left {
  display: block;
  width: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#CAC1B9), color-stop(50%, #CAC1B9), color-stop(50%, #FFF), to(#FFF));
  background: linear-gradient(90deg, #CAC1B9 0%, #CAC1B9 50%, #FFF 50%, #FFF 100%);
  padding: 30px 40px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left {
    padding: 20px 24px;
  }
}

@media only screen and (min-width: 960px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left:hover {
    opacity: 0.7;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  color: #323335;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 39px;
  max-height: calc(39px*1);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_title {
    font-size: 22px;
    line-height: 33px;
    max-height: calc(33px*1);
    margin: 0 0 16px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_sub_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 30px;
  max-height: calc(30px*1);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_sub_title {
    font-size: 18px;
    line-height: 27px;
    max-height: calc(27px*1);
    margin: 0 0 16px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left {
  width: calc((100% - 40px) /2);
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left {
    width: calc((100% - 30px) /2);
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 22px;
  max-height: calc(22px*4);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_text {
    margin: 0 0 16px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img01 {
  width: 176px;
  height: 104px;
  margin: 0 0 20px auto;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img01 {
    width: 144px;
    height: 86px;
    margin: 0 0 16px auto;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img02 {
  width: 176px;
  height: 104px;
  margin: 0 auto 38px 0;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img02 {
    width: 144px;
    height: 86px;
    margin: 0 auto 20px 0;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img03 {
  width: 210px;
  height: 210px;
  margin: 0 auto 24px;
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img03 {
    width: 160px;
    height: 160px;
    margin: 0 auto 16px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img04 {
  width: 100%;
  height: 128px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img04 {
    height: 108px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_left .top_newspaper_bottom_left_content_left_img04 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_right {
  width: calc((100% - 40px) /2);
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_right {
    width: calc((100% - 30px) /2);
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_right .top_newspaper_bottom_left_content_right_img01 {
  width: 100%;
  height: 160px;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_right .top_newspaper_bottom_left_content_right_img01 {
    height: 120px;
    margin: 0 0 24px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_right .top_newspaper_bottom_left_content_right_img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_right .top_newspaper_bottom_left_content_right_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  line-height: 20px;
  max-width: calc(20px*11);
  max-height: 550px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_left .top_newspaper_bottom_left_content .top_newspaper_bottom_left_content_right .top_newspaper_bottom_left_content_right_text {
    -webkit-line-clamp: 10;
    max-width: calc(20px*10);
    max-height: 452px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right {
  width: 50%;
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right {
    padding: 0 0 0 24px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top {
  display: block;
  width: 100%;
  background-color: #FFF;
  position: relative;
  padding: 30px;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top {
    padding: 20px 24px;
    margin: 0 0 20px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 274px;
  height: 82px;
  background-color: #CAC1B9;
}

@media only screen and (min-width: 960px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top:hover {
    opacity: 0.7;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  color: #323335;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 39px;
  max-width: calc(39px*2);
  height: 360px;
  margin: 0 0 0 22px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_title {
    font-size: 22px;
    line-height: 33px;
    max-width: calc(33px*2);
    height: 290px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_img_text {
  width: calc(100% - 100px);
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_img_text {
    width: calc(100% - 88px);
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_img_text .top_newspaper_bottom_right_top_img {
  width: 100%;
  height: 180px;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_img_text .top_newspaper_bottom_right_top_img {
    height: 130px;
    margin: 0 0 20px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_img_text .top_newspaper_bottom_right_top_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_img_text .top_newspaper_bottom_right_top_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 17;
  -webkit-box-orient: vertical;
  line-height: 20px;
  max-width: calc(20px*17);
  max-height: 162px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_top .top_newspaper_bottom_right_top_img_text .top_newspaper_bottom_right_top_text {
    -webkit-line-clamp: 14;
    max-width: calc(20px*14);
    max-height: 140px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: calc((100% - 20px) /2);
  padding: 24px 16px;
  background-color: #FFF;
  position: relative;
  z-index: 0;
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 48px;
  height: 124px;
  background-color: #CAC1B9;
}

@media only screen and (min-width: 960px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left:hover {
    opacity: 0.7;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left .top_newspaper_bottom_right_bottom_left_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 30px;
  max-width: calc(30px*1);
  height: 378px;
  margin: 0 0 0 22px;
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left .top_newspaper_bottom_right_bottom_left_img_text {
  width: calc(100% - 52px);
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left .top_newspaper_bottom_right_bottom_left_img_text .top_newspaper_bottom_right_bottom_left_img {
  width: 100%;
  height: 127px;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left .top_newspaper_bottom_right_bottom_left_img_text .top_newspaper_bottom_right_bottom_left_img {
    height: 82px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left .top_newspaper_bottom_right_bottom_left_img_text .top_newspaper_bottom_right_bottom_left_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left .top_newspaper_bottom_right_bottom_left_img_text .top_newspaper_bottom_right_bottom_left_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #323335;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-width: calc(18px*10);
  max-height: 230px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_left .top_newspaper_bottom_right_bottom_left_img_text .top_newspaper_bottom_right_bottom_left_text {
    -webkit-line-clamp: 7;
    max-width: calc(18px*7);
    max-height: 276px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: calc((100% - 20px) /2);
  padding: 24px 16px;
  background-color: #FFF;
  position: relative;
  z-index: 0;
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 78px;
  height: 76px;
  background-color: #CAC1B9;
}

@media only screen and (min-width: 960px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right:hover {
    opacity: 0.7;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right .top_newspaper_bottom_right_bottom_right_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 30px;
  max-width: calc(30px*1);
  height: 378px;
  margin: 0 0 0 22px;
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right .top_newspaper_bottom_right_bottom_right_img_text {
  width: calc(100% - 52px);
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right .top_newspaper_bottom_right_bottom_right_img_text .top_newspaper_bottom_right_bottom_right_img {
  width: 100%;
  height: 127px;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right .top_newspaper_bottom_right_bottom_right_img_text .top_newspaper_bottom_right_bottom_right_img {
    height: 82px;
  }
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right .top_newspaper_bottom_right_bottom_right_img_text .top_newspaper_bottom_right_bottom_right_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right .top_newspaper_bottom_right_bottom_right_img_text .top_newspaper_bottom_right_bottom_right_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #323335;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-width: calc(18px*10);
  max-height: 230px;
}

@media only screen and (max-width: 640px) {
  .top_newspaper_bottom_block .top_newspaper_bottom_right .top_newspaper_bottom_right_bottom_wrap .top_newspaper_bottom_right_bottom_right .top_newspaper_bottom_right_bottom_right_img_text .top_newspaper_bottom_right_bottom_right_text {
    -webkit-line-clamp: 7;
    max-width: calc(18px*7);
    max-height: 276px;
  }
}

/*top_column*/
.top_column {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .top_column {
    padding: 60px 0 80px;
  }
}

.top_column:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img04.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 350px;
  height: 456px;
}

@media only screen and (max-width: 640px) {
  .top_column:after {
    width: 250px;
    height: 325px;
    right: -80px;
  }
}

/*top_information*/
.top_information {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .top_information {
    padding: 60px 0 80px;
  }
}

.top_information:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-image: url(../images/common/bg_img05.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 256px;
  height: 424px;
}

@media only screen and (max-width: 640px) {
  .top_information:after {
    width: 152px;
    height: 252px;
  }
}

/*top_sns*/
.top_sns {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .top_sns {
    padding: 60px 0 80px;
  }
}

.top_sns:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -80px;
  right: -30px;
  background-image: url(../images/common/bg_img06.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 382px;
  height: 523px;
}

@media only screen and (max-width: 640px) {
  .top_sns:after {
    width: 194px;
    height: 265px;
    bottom: -32px;
  }
}

.top_sns_list {
  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;
  width: 100%;
  margin: 0 0 -20px;
}

@media only screen and (max-width: 840px) {
  .top_sns_list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top_sns_list .top_sns_item {
  width: calc((100% - 80px) /5);
  margin: 0 20px 20px 0;
  overflow: hidden;
}

@media only screen and (max-width: 840px) {
  .top_sns_list .top_sns_item {
    width: 100px;
    margin: 0 10px 20px 10px;
  }
}

@media only screen and (max-width: 640px) {
  .top_sns_list .top_sns_item {
    margin: 0 6px 12px 6px;
  }
}

.top_sns_list .top_sns_item:nth-of-type(5n) {
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 840px) {
  .top_sns_list .top_sns_item:nth-of-type(5n) {
    margin: 0 10px 20px 10px;
  }
}

.top_sns_list .top_sns_item .top_sns_link {
  display: block;
  width: 100%;
  height: 100%;
}

.top_sns_list .top_sns_item .top_sns_link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (min-width: 960px) {
  .top_sns_list .top_sns_item .top_sns_link:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*top_limited_item*/
.top_limited_item {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #faf7f5 0%, #e0cec2 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .top_limited_item {
    padding: 60px 0 80px;
  }
}

.top_limited_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-image: url(../images/common/bg_img05.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 256px;
  height: 424px;
}

@media only screen and (max-width: 640px) {
  .top_limited_item:after {
    width: 152px;
    height: 252px;
  }
}

/*top_group_buy_item*/
.top_group_buy_item {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #FFEBC4 0%, #FAF7F5 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .top_group_buy_item {
    padding: 60px 0 80px;
  }
}

.top_group_buy_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img04.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 350px;
  height: 456px;
}

@media only screen and (max-width: 640px) {
  .top_group_buy_item:after {
    width: 250px;
    height: 325px;
    right: -80px;
  }
}

/*=================

      shop.scss

=======================*/
.item_block_wrap .item_block {
  margin: 0 0 56px;
}

.item_block_wrap .item_block:last-child {
  margin: 0 0 0;
}

.item_block_wrap .item_block .item_block_title_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .item_block_wrap .item_block .item_block_title_btn {
    margin: 0 0 16px;
  }
}

.item_block_wrap .item_block .item_block_title_btn .item_block_title {
  width: calc(100% - 168px);
  padding: 0 0 0 28px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .item_block_wrap .item_block .item_block_title_btn .item_block_title {
    width: calc(100% - 140px);
    font-size: 16px;
    padding: 0 0 0 20px;
  }
}

.item_block_wrap .item_block .item_block_title_btn .item_block_title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .item_block_wrap .item_block .item_block_title_btn .item_block_title::before {
    width: 10px;
    height: 10px;
  }
}

.item_block_wrap .item_block .item_block_title_btn .item_block_btn {
  width: 144px;
  height: 30px;
  margin: 0 0 0 24px;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #CAC1B9;
  border-radius: 30px;
}

@media only screen and (max-width: 640px) {
  .item_block_wrap .item_block .item_block_title_btn .item_block_btn {
    width: 124px;
    margin: 0 0 0 16px;
  }
}

@media only screen and (min-width: 960px) {
  .item_block_wrap .item_block .item_block_title_btn .item_block_btn:hover {
    opacity: 0.7;
  }
}

.item_block_wrap .item_block .item_block_title_btn .item_block_btn img {
  width: 5px;
  margin: 0 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .item_block_wrap .item_block .item_block_title_btn .item_block_btn img {
    margin: 0 0 0 8px;
  }
}

.item_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 640px) {
  .item_box_wrap {
    margin: 0 0 -20px;
  }
}

.item_box_wrap .item_box {
  width: calc((100% - 80px) /5);
  margin: 0 20px 40px 0;
}

@media only screen and (max-width: 840px) {
  .item_box_wrap .item_box {
    width: calc((100% - 40px) /2);
    margin: 0 40px 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .item_box_wrap .item_box {
    width: calc((100% - 20px) /2);
    margin: 0 20px 20px 0;
  }
}

.item_box_wrap .item_box:nth-of-type(5n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 840px) {
  .item_box_wrap .item_box:nth-of-type(5n) {
    margin: 0 40px 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .item_box_wrap .item_box:nth-of-type(5n) {
    margin: 0 20px 20px 0;
  }
}

@media only screen and (max-width: 840px) {
  .item_box_wrap .item_box:nth-of-type(2n) {
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .item_box_wrap .item_box:nth-of-type(2n) {
    margin: 0 0 20px 0;
  }
}

.item_box_wrap .item_box .item_box_img_wrap {
  width: 100%;
  position: relative;
  margin: 0 0 10px;
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_favorite_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_favorite_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_favorited_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_favorited_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_new {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 50px;
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_new img {
  width: 100%;
}

.item_box_wrap .item_box .item_box_img_wrap .item_box_label {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 2px 6px;
  background-color: #FFF;
  border: 2px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #323335;
  line-height: 1.5;
  max-width: 100%;
}

@media only screen and (max-width: 640px) {
  .item_box_wrap .item_box .item_box_img_wrap .item_box_label {
    font-size: 11px;
  }
}

.item_box_wrap .item_box .item_box_detail {
  display: block;
}

.item_box_wrap .item_box .item_box_detail .item_box_brand {
  padding: 2px 8px;
  background-color: #FFF;
  border: 1px solid #BABABA;
  text-align: center;
  width: 100%;
  margin: 0 0 8px;
}

.item_box_wrap .item_box .item_box_detail .item_box_brand span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  letter-spacing: 0;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

.item_box_wrap .item_box .item_box_detail .item_box_category_wrap {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.item_box_wrap .item_box .item_box_detail .item_box_category_wrap .item_box_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 12px 8px 0;
}

.item_box_wrap .item_box .item_box_detail .item_box_category_wrap .item_box_sub_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #323335;
  padding: 0 0 0 10px;
  position: relative;
  margin: 0 0 8px;
}

.item_box_wrap .item_box .item_box_detail .item_box_category_wrap .item_box_sub_category::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 1px;
  background-color: #323335;
}

.item_box_wrap .item_box .item_box_detail .item_box_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .item_box_wrap .item_box .item_box_detail .item_box_title {
    font-size: 13px;
    line-height: 21px;
    max-height: calc(21px*2);
  }
}

.item_box_wrap .item_box .item_box_detail .item_box_price {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.4;
  letter-spacing: 0;
}

@media only screen and (max-width: 640px) {
  .item_box_wrap .item_box .item_box_detail .item_box_price {
    font-size: 20px;
  }
}

.item_box_wrap .item_box .item_box_detail .item_box_price span {
  margin: 0 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #838383;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .item_box_wrap .item_box .item_box_detail .item_box_price span {
    font-size: 10px;
    margin: 0 0 0 8px;
  }
}

.item_box_wrap .item_box .item_box_detail .item_box_group_buy_goal {
  margin: 8px 0 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #323335;
  line-height: 1.5;
}

.item_box_wrap .item_box .item_box_detail .item_box_group_buy_goal span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
}

.item_box_wrap .item_box .item_box_detail .item_box_group_buy_meter_wrap {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  border: 1px solid #323335;
  background-color: #FFF;
  position: relative;
}

.item_box_wrap .item_box .item_box_detail .item_box_group_buy_meter_wrap .item_box_group_buy_meter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 10px;
  background-color: #323335;
  max-width: 100%;
}

@media only screen and (min-width: 960px) {
  .item_box_wrap .item_box:hover .item_box_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*ranking_item_box*/
.ranking_item_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 640px) {
  .ranking_item_box_wrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
    width: auto;
    margin: 0 0 0;
  }
}

.ranking_item_box_wrap .ranking_item_box {
  width: calc((100% - 80px) /3);
  margin: 0 40px 40px 0;
  padding: 20px;
  background-color: #FFF;
  position: relative;
}

@media only screen and (max-width: 840px) {
  .ranking_item_box_wrap .ranking_item_box {
    width: calc((100% - 40px) /3);
    margin: 0 20px 40px 0;
    padding: 16px;
  }
}

@media only screen and (max-width: 640px) {
  .ranking_item_box_wrap .ranking_item_box {
    width: 180px;
    margin: 0 16px 0 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 10px;
  }
}

.ranking_item_box_wrap .ranking_item_box:nth-of-type(3n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 640px) {
  .ranking_item_box_wrap .ranking_item_box:nth-of-type(3n) {
    margin: 0 16px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .ranking_item_box_wrap .ranking_item_box:last-child {
    margin: 0 0 0 0;
  }
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_rank {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 50px;
  z-index: 2;
}

@media only screen and (max-width: 840px) {
  .ranking_item_box_wrap .ranking_item_box .ranking_item_box_rank {
    width: 38px;
  }
}

@media only screen and (max-width: 640px) {
  .ranking_item_box_wrap .ranking_item_box .ranking_item_box_rank {
    width: 32px;
  }
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_rank img {
  width: 100%;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap {
  width: 100%;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 0 20px;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_favorite_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_favorite_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_favorited_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_favorited_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_new {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 50px;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_new img {
  width: 100%;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_img_wrap .ranking_item_box_label {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 2px 6px;
  background-color: #FFF;
  border: 2px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #323335;
  line-height: 1.5;
  max-width: 100%;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail {
  display: block;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_brand {
  padding: 2px 8px;
  background-color: #FFF;
  border: 1px solid #BABABA;
  text-align: center;
  width: 100%;
  margin: 0 0 8px;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_brand span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  letter-spacing: 0;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_category_wrap {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_category_wrap .ranking_item_box_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 12px 8px 0;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_category_wrap .ranking_item_box_sub_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #323335;
  padding: 0 0 0 10px;
  position: relative;
  margin: 0 0 8px;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_category_wrap .ranking_item_box_sub_category::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 1px;
  background-color: #323335;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_title {
    font-size: 13px;
    line-height: 21px;
    max-height: calc(21px* 2);
  }
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_price {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.4;
  letter-spacing: 0;
}

@media only screen and (max-width: 640px) {
  .ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_price {
    font-size: 20px;
  }
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_price span {
  margin: 0 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #838383;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_price span {
    font-size: 10px;
    margin: 0 0 0 8px;
  }
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_group_buy_goal {
  margin: 8px 0 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #323335;
  line-height: 1.5;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_group_buy_goal span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_group_buy_meter_wrap {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  border: 1px solid #323335;
  background-color: #FFF;
  position: relative;
}

.ranking_item_box_wrap .ranking_item_box .ranking_item_box_detail .ranking_item_box_group_buy_meter_wrap .ranking_item_box_group_buy_meter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 10px;
  background-color: #323335;
  max-width: 100%;
}

@media only screen and (min-width: 960px) {
  .ranking_item_box_wrap .ranking_item_box:hover .ranking_item_box_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*item_search*/
.item_search {
  padding: 100px 0;
  background-color: #FAF7F5;
  background-image: url(../images/shop/bg_search.svg);
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .item_search {
    padding: 60px 0;
  }
}

.item_search::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -112px;
  left: -220px;
  width: 638px;
  height: 642px;
  background-image: url(../images/shop/bg_img_search.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .item_search::before {
    width: 334px;
    height: 337px;
    top: -80px;
    left: -96px;
  }
}

.item_search:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -267px;
  right: -248px;
  width: 706px;
  height: 706px;
  background-image: url(../images/shop/bg_img_search.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .item_search:after {
    width: 374px;
    height: 374px;
    bottom: -100px;
    right: -100px;
  }
}

.item_search_block_wrap .item_search_block {
  margin: 0 0 80px;
}

.item_search_block_wrap .item_search_block:last-child {
  margin: 0 0 0;
}

.item_search_block_wrap .item_search_block .item_search_block_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 0 32px;
}

.item_search_block_wrap .item_search_block .item_search_block_title_wrap .item_search_block_title {
  width: 220px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 0 0 0 10px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_block_title_wrap .item_search_block_title {
    width: 180px;
    font-size: 18px;
  }
}

.item_search_block_wrap .item_search_block .item_search_block_title_wrap .item_search_block_title::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(../images/shop/bg_icon_search.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: -6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.item_search_block_wrap .item_search_block .item_search_block_title_wrap .item_search_block_title_border {
  width: calc(100% - 220px);
  height: 1px;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_block_title_wrap .item_search_block_title_border {
    width: calc(100% - 180px);
  }
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -32px;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap {
    display: block;
  }
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box {
  display: block;
  width: calc((100% - 96px) /4);
  margin: 0 32px 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 960px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box {
    width: calc((100% - 32px) /2);
  }
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box {
    width: 100%;
    margin: 0 0 16px 0;
  }
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box:nth-of-type(4n) {
  margin: 0 0 32px 0;
}

@media only screen and (max-width: 960px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box:nth-of-type(4n) {
    margin: 0 32px 32px 0;
  }
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box:nth-of-type(4n) {
    margin: 0 0 16px 0;
  }
}

@media only screen and (max-width: 960px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box:nth-of-type(2n) {
    margin: 0 0 32px 0;
  }
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box:nth-of-type(2n) {
    margin: 0 0 16px 0;
  }
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_img_wrap {
  width: 90px;
  height: 90px;
  padding: 12px 12px;
  background-color: #FFF;
  overflow: hidden;
  margin: 0 10px 0 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_img_wrap {
    width: 70px;
    height: 70px;
  }
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_img_wrap .item_search_brand_box_img {
  width: 100%;
  height: 100%;
  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;
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_img_wrap .item_search_brand_box_img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_detail {
  width: calc(100% - 100px);
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_detail {
    width: calc(100% - 80px);
  }
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_detail .item_search_brand_box_title {
  padding: 0 0 4px;
  margin: 0 0 8px;
  border-bottom: 1px dashed #323335;
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_detail .item_search_brand_box_title span {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 21px;
  max-height: calc(21px*2);
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_detail .item_search_brand_box_title span {
    -webkit-line-clamp: 1;
    max-height: calc(21px*1);
  }
}

.item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box .item_search_brand_box_detail .item_search_brand_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: #838383;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 16px;
  max-height: calc(16px*2);
}

@media only screen and (min-width: 960px) {
  .item_search_block_wrap .item_search_block .item_search_brand_box_wrap .item_search_brand_box:hover .item_search_brand_box_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block {
  margin: 0 0 64px;
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block:last-child {
  margin: 0 0 0;
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn {
    margin: 0 0 16px;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_title {
  width: calc(100% - 168px);
  padding: 0 0 0 28px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_title {
    width: calc(100% - 140px);
    font-size: 16px;
    padding: 0 0 0 20px;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_title::before {
    width: 10px;
    height: 10px;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_btn {
  width: 144px;
  height: 30px;
  margin: 0 0 0 24px;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  background-color: #CAC1B9;
  border-radius: 30px;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_btn {
    width: 124px;
    margin: 0 0 0 16px;
  }
}

@media only screen and (min-width: 960px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_btn:hover {
    opacity: 0.7;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_btn img {
  width: 5px;
  margin: 0 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_type_block_title_btn .item_search_category_type_block_btn img {
    margin: 0 0 0 8px;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 32px;
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item:last-child {
  margin: 0 0 0;
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_img_block {
  width: 168px;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_img_block {
    width: 90px;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_img_block .item_search_category_item_img {
  width: 120px;
  height: 120px;
  background-color: #FFF;
  border-radius: 50%;
  position: relative;
  padding: 24px;
  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;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_img_block .item_search_category_item_img {
    width: 70px;
    height: 70px;
    padding: 12px;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_img_block .item_search_category_item_img:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 99%;
  margin-top: -13px;
  border: 13px solid transparent;
  border-left: 13px solid #FFF;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_img_block .item_search_category_item_img:after {
    left: 98%;
    margin-top: -8px;
    border: 8px solid transparent;
    border-left: 8px solid #FFF;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_img_block .item_search_category_item_img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block {
  width: calc(100% - 168px);
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block {
    width: calc(100% - 90px);
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_category_item_category_title_link {
  display: inline-block;
  position: relative;
  padding: 6px 42px 6px 20px;
  border-radius: 30px;
  background-color: #323335;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_category_item_category_title_link {
    padding: 4px 22px 4px 10px;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_category_item_category_title_link:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 6px;
  height: 8px;
  background-image: url(../images/common/icon_arrow_right_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_category_item_category_title_link:after {
    right: 10px;
  }
}

@media only screen and (min-width: 960px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_category_item_category_title_link:hover {
    opacity: 0.7;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_category_item_category_title_link .item_search_category_item_category_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_category_item_category_title_link .item_search_category_item_category_title {
    font-size: 14px;
  }
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_sub_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -12px;
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_sub_category_list .item_search_sub_category_item {
  margin: 0 12px 12px 0;
}

.item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_sub_category_list .item_search_sub_category_item .item_search_sub_category_link {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 30px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_sub_category_list .item_search_sub_category_item .item_search_sub_category_link {
    padding: 4px 8px;
    font-size: 12px;
  }
}

@media only screen and (min-width: 960px) {
  .item_search_block_wrap .item_search_block .item_search_category_type_block_wrap .item_search_category_type_block .item_search_category_list .item_search_category_item .item_search_category_item_detail_block .item_search_sub_category_list .item_search_sub_category_item .item_search_sub_category_link:hover {
    background-color: #323335;
    color: #FFF;
  }
}

/*item_list*/
.item_list_info_block {
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .item_list_info_block {
    margin: 0 0 24px;
  }
}

.item_list_info_block .item_list_info_num {
  text-align: right;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 10px;
  border-bottom: 1px solid #323335;
  margin: 0 0 20px;
}

.item_list_info_block .item_list_info_num .total {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  margin: 0 6px 0 0;
}

@media only screen and (max-width: 640px) {
  .item_list_info_block .item_list_info_num .total {
    font-size: 20px;
  }
}

.item_list_info_block .item_list_info_num .show {
  margin: 0 0 0 6px;
}

.item_list_info_block .item_list_info_select {
  outline: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: url(../images/common/icon_arrow_bottom.svg) 90% center no-repeat #FFF;
  background-size: 11px;
  width: 180px;
  height: 38px;
  padding: 0 10px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .item_list_info_block .item_list_info_select {
    height: 32px;
  }
}

.item_sub_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 28px;
}

@media only screen and (max-width: 640px) {
  .item_sub_category_list {
    margin: 0 0 20px;
  }
}

.item_sub_category_list .item_sub_category_item {
  margin: 0 12px 12px 0;
}

.item_sub_category_list .item_sub_category_item .item_sub_category_link {
  display: inline-block;
  padding: 6px 10px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  border-radius: 20px;
}

@media only screen and (max-width: 640px) {
  .item_sub_category_list .item_sub_category_item .item_sub_category_link {
    font-size: 13px;
  }
}

@media only screen and (min-width: 960px) {
  .item_sub_category_list .item_sub_category_item .item_sub_category_link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.item_sub_category_list .item_sub_category_item .item_sub_category_link.active {
  background-color: #323335;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #FFF;
}

.item_category_editor_block {
  margin: 100px 0 0;
  padding: 48px 24px;
  border: 1px solid #CFCFCF;
  background-color: rgba(255, 255, 255, 0.68);
}

@media only screen and (max-width: 640px) {
  .item_category_editor_block {
    margin: 64px 0 0;
    padding: 24px 12px;
  }
}

.item_category_editor_block .item_category_editor_block_inner {
  max-width: 900px;
  margin: 0 auto;
}

.item_category_editor_block .item_category_editor_block_title {
  padding: 8px 20px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .item_category_editor_block .item_category_editor_block_title {
    font-size: 20px;
    padding: 8px 12px;
    margin: 0 0 32px;
  }
}

#item_category_editor p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor p {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#item_category_editor p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#item_category_editor div {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor div {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#item_category_editor div a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#item_category_editor img {
  display: block;
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor img {
    margin: 0 0 32px;
  }
}

#item_category_editor ol {
  list-style: decimal;
  padding: 30px 40px 30px 50px;
  background-color: #FAF7F5;
  border-radius: 20px;
  border: 1px dashed #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor ol {
    padding: 20px 20px 20px 40px;
    margin: 0 0 32px;
  }
}

#item_category_editor ol li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor ol li {
    font-size: 14px;
  }
}

#item_category_editor ol li:last-child {
  margin: 0 0 0;
}

#item_category_editor ul {
  padding: 30px 40px;
  background-color: #FAF7F5;
  border-radius: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor ul {
    padding: 20px 20px;
    margin: 0 0 32px;
  }
}

#item_category_editor ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 16px;
  border-bottom: 1px dashed #323335;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor ul li {
    font-size: 14px;
  }
}

#item_category_editor ul li:last-child {
  margin: 0 0 0;
}

#item_category_editor h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 24px;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor h2 {
    font-size: 22px;
    padding: 0 0 0 16px;
    margin: 0 0 32px;
  }
}

#item_category_editor h2:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  background-color: #CAC1B9;
}

@media only screen and (max-width: 640px) {
  #item_category_editor h2:before {
    width: 4px;
  }
}

#item_category_editor h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 16px;
  margin: 0 0 40px;
  border-bottom: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  #item_category_editor h3 {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

#item_category_editor h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_category_editor h4 {
    font-size: 16px;
    margin: 0 0 32px;
  }
}

.item_brand_editor_block {
  margin: 100px 0 0;
  padding: 48px 24px;
  border: 1px solid #CFCFCF;
  background-color: rgba(255, 255, 255, 0.68);
}

@media only screen and (max-width: 640px) {
  .item_brand_editor_block {
    margin: 64px 0 0;
    padding: 24px 12px;
  }
}

.item_brand_editor_block .item_brand_editor_block_inner {
  max-width: 900px;
  margin: 0 auto;
}

.item_brand_editor_block .item_brand_editor_block_title {
  padding: 8px 20px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .item_brand_editor_block .item_brand_editor_block_title {
    font-size: 20px;
    padding: 8px 12px;
    margin: 0 0 32px;
  }
}

.item_brand_editor_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 0 40px;
  border-bottom: 1px dashed #BABABA;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .item_brand_editor_detail {
    display: block;
    padding: 0 0 32px;
    margin: 0 0 32px;
  }
}

.item_brand_editor_detail .item_brand_editor_detail_img {
  width: 200px;
  height: 200px;
  padding: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  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;
  margin: 0 40px 0 0;
}

@media only screen and (max-width: 840px) {
  .item_brand_editor_detail .item_brand_editor_detail_img {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (max-width: 640px) {
  .item_brand_editor_detail .item_brand_editor_detail_img {
    margin: 0 auto 20px;
    padding: 16px;
  }
}

.item_brand_editor_detail .item_brand_editor_detail_img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
}

.item_brand_editor_detail .item_brand_editor_detail_text {
  width: calc(100% - 240px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 3;
}

@media only screen and (max-width: 840px) {
  .item_brand_editor_detail .item_brand_editor_detail_text {
    width: calc(100% - 160px);
  }
}

@media only screen and (max-width: 640px) {
  .item_brand_editor_detail .item_brand_editor_detail_text {
    width: 100%;
  }
}

#item_brand_editor p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor p {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#item_brand_editor p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#item_brand_editor div {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor div {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#item_brand_editor div a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#item_brand_editor img {
  display: block;
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor img {
    margin: 0 0 32px;
  }
}

#item_brand_editor ol {
  list-style: decimal;
  padding: 30px 40px 30px 50px;
  background-color: #FAF7F5;
  border-radius: 20px;
  border: 1px dashed #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor ol {
    padding: 20px 20px 20px 40px;
    margin: 0 0 32px;
  }
}

#item_brand_editor ol li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor ol li {
    font-size: 14px;
  }
}

#item_brand_editor ol li:last-child {
  margin: 0 0 0;
}

#item_brand_editor ul {
  padding: 30px 40px;
  background-color: #FAF7F5;
  border-radius: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor ul {
    padding: 20px 20px;
    margin: 0 0 32px;
  }
}

#item_brand_editor ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 16px;
  border-bottom: 1px dashed #323335;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor ul li {
    font-size: 14px;
  }
}

#item_brand_editor ul li:last-child {
  margin: 0 0 0;
}

#item_brand_editor h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 24px;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor h2 {
    font-size: 22px;
    padding: 0 0 0 16px;
    margin: 0 0 32px;
  }
}

#item_brand_editor h2:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  background-color: #CAC1B9;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor h2:before {
    width: 4px;
  }
}

#item_brand_editor h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 16px;
  margin: 0 0 40px;
  border-bottom: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor h3 {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

#item_brand_editor h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #item_brand_editor h4 {
    font-size: 16px;
    margin: 0 0 32px;
  }
}

.item_search_buy_type_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -24px;
}

@media only screen and (max-width: 840px) {
  .item_search_buy_type_box_wrap {
    display: block;
    margin: 0 0 0;
  }
}

.item_search_buy_type_box_wrap .item_search_buy_type_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 48px) / 3);
  margin: 0 24px 24px 0;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 16px;
  border-radius: 10px;
}

@media only screen and (max-width: 840px) {
  .item_search_buy_type_box_wrap .item_search_buy_type_box {
    width: 100%;
    margin: 0 0 16px 0;
  }
}

.item_search_buy_type_box_wrap .item_search_buy_type_box:nth-of-type(3n) {
  margin: 0 0 24px 0;
}

@media only screen and (max-width: 840px) {
  .item_search_buy_type_box_wrap .item_search_buy_type_box:nth-of-type(3n) {
    margin: 0 0 16px 0;
  }
}

@media only screen and (max-width: 840px) {
  .item_search_buy_type_box_wrap .item_search_buy_type_box:last-child {
    margin: 0 0 0 0;
  }
}

.item_search_buy_type_box_wrap .item_search_buy_type_box .item_search_buy_type_box_img {
  width: 80px;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 640px) {
  .item_search_buy_type_box_wrap .item_search_buy_type_box .item_search_buy_type_box_img {
    width: 60px;
  }
}

.item_search_buy_type_box_wrap .item_search_buy_type_box .item_search_buy_type_box_img img {
  width: 100%;
}

.item_search_buy_type_box_wrap .item_search_buy_type_box .item_search_buy_type_box_detail {
  width: calc(100% - 100px);
}

@media only screen and (max-width: 640px) {
  .item_search_buy_type_box_wrap .item_search_buy_type_box .item_search_buy_type_box_detail {
    width: calc(100% - 80px);
  }
}

.item_search_buy_type_box_wrap .item_search_buy_type_box .item_search_buy_type_box_detail .item_search_buy_type_box_title {
  padding: 0 16px 0 0;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.item_search_buy_type_box_wrap .item_search_buy_type_box .item_search_buy_type_box_detail .item_search_buy_type_box_title:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 6px;
  height: 8px;
  background-image: url(../images/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.item_search_buy_type_box_wrap .item_search_buy_type_box .item_search_buy_type_box_detail .item_search_buy_type_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
  line-height: 1.5;
}

/*item_detail*/
.item_detail_content_block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 64px;
}

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

.item_detail_content_block .item_detail_content_img {
  width: 500px;
  margin: 0 40px 0 0;
}

@media only screen and (max-width: 960px) {
  .item_detail_content_block .item_detail_content_img {
    width: 100%;
    margin: 0 0 64px;
  }
}

@media only screen and (max-width: 640px) {
  .item_detail_content_block .item_detail_content_img {
    margin: 0 0 48px;
  }
}

.item_detail_content_block .item_detail_content_detail {
  width: calc(100% - 540px);
}

@media only screen and (max-width: 960px) {
  .item_detail_content_block .item_detail_content_detail {
    width: 100%;
  }
}

.item_detail_img_wrap {
  margin: 0 0 20px;
}

.itemdetail_main_pic_list {
  width: 100%;
  margin: 0 0 24px;
}

@media only screen and (max-width: 960px) {
  .itemdetail_main_pic_list {
    max-width: 500px;
    margin: 0 auto 16px;
  }
}

@media only screen and (max-width: 640px) {
  .itemdetail_main_pic_list {
    margin: 0 0 16px;
  }
}

.itemdetail_main_pic_list .item {
  width: 100%;
  height: 100%;
  display: none;
}

.itemdetail_main_pic_list .item.active {
  display: block;
}

.itemdetail_main_pic_list .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.itemdetail_pic_menu .itemdetail_sub_pic_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -14px;
}

@media only screen and (max-width: 640px) {
  .itemdetail_pic_menu .itemdetail_sub_pic_list {
    margin: 0 0 8px;
  }
}

.itemdetail_pic_menu .itemdetail_sub_pic_list .item {
  width: calc((100% - 70px) /6);
  margin: 0 14px 14px 0;
  cursor: pointer;
  border: 1px solid #BABABA;
}

@media only screen and (max-width: 640px) {
  .itemdetail_pic_menu .itemdetail_sub_pic_list .item {
    width: calc((100% - 40px) /6);
    margin: 0 8px 8px 0;
  }
}

.itemdetail_pic_menu .itemdetail_sub_pic_list .item:nth-of-type(6n) {
  margin: 0 0 14px 0;
}

@media only screen and (max-width: 640px) {
  .itemdetail_pic_menu .itemdetail_sub_pic_list .item:nth-of-type(6n) {
    margin: 0 0 8px 0;
  }
}

.itemdetail_pic_menu .itemdetail_sub_pic_list .item.active {
  border: 2px solid #323335;
}

.itemdetail_pic_menu .itemdetail_sub_pic_list .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.item_detail_popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 1000000;
  width: 100%;
}

.item_detail_popup .item_detail_popup_img {
  width: 80%;
  max-width: 640px;
  max-height: calc(100vh - 160px);
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .item_detail_popup .item_detail_popup_img {
    width: 100%;
  }
}

.item_detail_popup .item_detail_popup_img .item_detail_popup_img_inner {
  overflow-y: scroll;
  max-height: calc(100vh - 160px);
}

.item_detail_popup .item_detail_popup_img .item_detail_popup_img_inner img {
  width: 100%;
}

.item_detail_popup .item_detail_popup_img .item_detail_popup_close_btn {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
}

@media only screen and (max-width: 640px) {
  .item_detail_popup .item_detail_popup_img .item_detail_popup_close_btn {
    right: 8px;
  }
}

.item_detail_popup .item_detail_popup_img .item_detail_popup_close_btn img {
  width: 100%;
}

.item_detail_favourite_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.item_detail_favourite_num img {
  width: 16px;
  margin: 0 8px 0 0;
}

.item_detail_brand {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  padding: 4px 10px;
  border: 1px solid #BABABA;
  margin: 0 0 12px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .item_detail_brand {
    font-size: 12px;
    padding: 4px 8px;
  }
}

.item_detail_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .item_detail_title {
    font-size: 18px;
  }
}

.item_detail_num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #838383;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

.item_detail_shop_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .item_detail_shop_link {
    font-size: 13px;
  }
}

.item_detail_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  color: #323335;
  line-height: 1.4;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .item_detail_price {
    font-size: 32px;
  }
}

.item_detail_price span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
  line-height: 1.5;
  margin: 0 0 0 14px;
}

@media only screen and (max-width: 640px) {
  .item_detail_price span {
    font-size: 12px;
  }
}

.item_detail_select_box {
  background-color: #F1F1F1;
  padding: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .item_detail_select_box {
    padding: 10px;
    margin: 0 0 32px;
  }
}

.item_detail_select_box .item_detail_select_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .item_detail_select_box .item_detail_select_box_title {
    margin: 0 0 16px;
  }
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block {
  margin: 0 0 20px;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 8px;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_block_title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -10px;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_btn_list .item_detail_select_btn_item {
  margin: 0 10px 10px 0;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_btn_list .item_detail_select_btn_item .item_detail_select_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 10px 20px;
  background-color: #FFF;
  border-radius: 3px;
  border: 1px dashed #BABABA;
  min-width: 100px;
  height: 100%;
  text-align: left;
}

@media only screen and (max-width: 640px) {
  .item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_btn_list .item_detail_select_btn_item .item_detail_select_btn {
    padding: 10px 6px;
    min-width: 70px;
  }
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_btn_list .item_detail_select_btn_item .item_detail_select_btn.active {
  border: 2px solid #CAC1B9;
  background-color: #FAF7F5;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_btn_list .item_detail_select_btn_item .item_detail_select_btn .item_detail_select_btn_inner .item_detail_select_btn_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_btn_list .item_detail_select_btn_item .item_detail_select_btn .item_detail_select_btn_inner .item_detail_select_btn_item_text {
    font-size: 14px;
  }
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_select_btn_list .item_detail_select_btn_item .item_detail_select_btn .item_detail_select_btn_inner .item_detail_select_btn_item_soldout {
  margin: 4px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #EB6262;
  line-height: 1.5;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_input_btn_num_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_input_btn_num_wrap .item_detail_input_num_block {
  width: calc(100% - 104px);
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_input_btn_num_wrap .item_detail_input_num_block .item_detail_input_num {
  width: 100%;
  height: 44px;
  border-radius: 3px;
  border: 1px solid #BABABA;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_input_btn_num_wrap .item_detail_btn_num_block {
  width: 92px;
  margin: 0 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_input_btn_num_wrap .item_detail_btn_num_block .item_detail_btn_num_btn {
  width: 44px;
  height: 44px;
  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: 3px;
  border: 1px solid #323335;
  background-color: #FFF;
}

.item_detail_select_box .item_detail_select_block_wrap .item_detail_select_block .item_detail_input_btn_num_wrap .item_detail_btn_num_block .item_detail_btn_num_btn img {
  display: block;
  width: 14px;
}

.item_detail_select_box .item_add_cart_btn {
  width: 100%;
  height: 60px;
  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;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .item_detail_select_box .item_add_cart_btn {
    font-size: 14px;
    height: 56px;
  }
}

.item_detail_select_box .item_add_cart_btn img {
  width: 24px;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .item_detail_select_box .item_add_cart_btn img {
    width: 20px;
    margin: 0 8px 0 0;
  }
}

.item_detail_select_box .item_detail_error_text {
  margin: 8px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #EB6262;
  line-height: 1.5;
}

.item_detail_select_box .item_detail_favourite_btn {
  margin: 20px auto 0;
  width: 100%;
  max-width: 300px;
  height: 44px;
  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;
  background-color: #FFF;
  border: 1px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .item_detail_select_box .item_detail_favourite_btn {
    font-size: 13px;
  }
}

.item_detail_select_box .item_detail_favourite_btn img {
  width: 16px;
  margin: 0 8px 0 0;
}

.item_detail_select_box .item_detail_favourited_btn {
  margin: 20px auto 0;
  width: 100%;
  max-width: 300px;
  height: 44px;
  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;
  background-color: #BABABA;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .item_detail_select_box .item_detail_favourited_btn {
    font-size: 13px;
  }
}

.item_detail_select_box .item_detail_favourited_btn img {
  width: 16px;
  margin: 0 8px 0 0;
}

.item_detail_about_list .item_detail_about_item {
  margin: 0 0 48px;
}

.item_detail_about_list .item_detail_about_item:last-child {
  margin: 0 0 0;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_item_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_item_title_wrap {
    margin: 0 0 24px;
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_item_title_wrap .item_detail_about_item_title {
  width: 106px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_item_title_wrap .item_detail_about_item_title {
    font-size: 16px;
    width: 84px;
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_item_title_wrap .item_detail_about_item_title_border {
  width: calc(100% - 106px);
  height: 1px;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_item_title_wrap .item_detail_about_item_title_border {
    width: calc(100% - 84px);
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 20px;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item:last-child {
  margin: 0 0 0;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_title {
  width: 120px;
  margin: 0 10px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_title {
    width: 90px;
    font-size: 13px;
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_category_wrap {
  width: calc(100% - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_category_wrap {
    width: calc(100% - 100px);
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_category_wrap .item_detail_about_sub_item_category_link {
  display: block;
  padding: 0 0 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_category_wrap .item_detail_about_sub_item_category_link {
    font-size: 13px;
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_category_wrap .item_detail_about_sub_item_category_link::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #323335;
  position: absolute;
  top: 10px;
  left: 6px;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_category_wrap .item_detail_about_sub_item_category_link:first-child {
  padding: 0 0 0 0;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_category_wrap .item_detail_about_sub_item_category_link:first-child::before {
  content: none;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_text {
  width: calc(100% - 130px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_text {
    width: calc(100% - 100px);
    font-size: 13px;
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_text a {
  color: #323335;
  text-decoration: underline;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail {
  width: calc(100% - 130px);
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail {
    width: calc(100% - 100px);
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_sub_item_detail_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_sub_item_detail_text {
    font-size: 13px;
  }
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item {
  margin: 0 0 12px;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item:last-child {
  margin: 0 0 0;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item .item_detail_about_receipt_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 4px;
  padding: 0 0 0 12px;
  position: relative;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item .item_detail_about_receipt_item_title:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #323335;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item .item_detail_about_receipt_item_address_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  margin: 0 0 4px;
  position: relative;
  padding: 0 0 0 20px;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item .item_detail_about_receipt_item_address_link::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/shop/icon_map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item .item_detail_about_receipt_item_tel_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  margin: 0 0 4px;
  padding: 0 0 0 20px;
  position: relative;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item .item_detail_about_receipt_item_tel_link::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/shop/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.item_detail_about_list .item_detail_about_item .item_detail_about_sub_list .item_detail_about_sub_item .item_detail_about_sub_item_detail .item_detail_about_receipt_list .item_detail_about_receipt_item .item_detail_about_receipt_item_note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
  line-height: 2;
}

.item_detail_about_item_text {
  font-size: 14px;
  color: #323335;
  line-height: 2.5;
}

.item_detail_about_item_text_more_btn {
  outline: none;
  float: right;
  background: none;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  letter-spacing: 1.5px;
}

.item_detail_about_item_text_more_btn:after {
  content: "";
  background: url(../images/common/icon_arrow_bottom.svg) center center no-repeat;
  background-size: contain;
  width: 10px;
  height: 8px;
  display: inline-block;
  vertical-align: 1px;
  margin: 0 0 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.item_detail_about_item_text_more_btn span:after {
  content: "続きを表示する";
  display: inline-block;
}

.item_detail_about_item_text_more_btn.active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.item_detail_about_item_text_more_btn.active span:after {
  content: "続きを閉じる";
}

.item_share_block {
  padding: 60px 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 640px) {
  .item_share_block {
    padding: 40px 20px;
    display: block;
  }
}

.item_share_block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.item_share_block .item_share_link {
  width: calc((100% - 40px) /2);
  padding: 16px;
  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: 1px solid #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .item_share_block .item_share_link {
    width: 100%;
    font-size: 14px;
    margin: 0 0 16px;
  }
}

@media only screen and (max-width: 640px) {
  .item_share_block .item_share_link:last-child {
    margin: 0 0 0;
  }
}

.item_share_block .item_share_link img {
  width: 30px;
  margin: 0 10px 0 0;
}

@media only screen and (max-width: 640px) {
  .item_share_block .item_share_link img {
    width: 24px;
    margin: 0 8px 0 0;
  }
}

@media only screen and (min-width: 960px) {
  .item_share_block .item_share_link:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/*shop_list*/
.shop_search_select_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 32px;
}

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

.shop_search_select_wrap .shop_search_select {
  display: block;
  width: 240px;
  margin: 0 20px 0 0;
  background-color: #FAF7F5;
  border: 0;
  outline: 0;
  border-radius: 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: 12px 6px;
  background-position: right 10px center;
  padding: 10px 20px 10px 10px;
}

@media only screen and (max-width: 640px) {
  .shop_search_select_wrap .shop_search_select {
    width: 100%;
    margin: 0 0 16px 0;
  }
}

.shop_search_select_wrap .shop_search_select:last-child {
  margin: 0 0 0 0;
}

.shop_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 640px) {
  .shop_box_wrap {
    display: block;
    margin: 0 0 0;
  }
}

.shop_box_wrap .shop_box {
  display: block;
  width: calc((100% - 80px) /3);
  margin: 0 40px 40px 0;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 0 0 70px;
}

@media only screen and (max-width: 840px) {
  .shop_box_wrap .shop_box {
    width: calc((100% - 40px) /2);
  }
}

@media only screen and (max-width: 640px) {
  .shop_box_wrap .shop_box {
    width: 100%;
    margin: 0 0 32px 0;
  }
}

.shop_box_wrap .shop_box:nth-of-type(3n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 840px) {
  .shop_box_wrap .shop_box:nth-of-type(3n) {
    margin: 0 40px 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .shop_box_wrap .shop_box:nth-of-type(3n) {
    margin: 0 0 32px 0;
  }
}

@media only screen and (max-width: 840px) {
  .shop_box_wrap .shop_box:nth-of-type(2n) {
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .shop_box_wrap .shop_box:nth-of-type(2n) {
    margin: 0 0 32px 0;
  }
}

@media only screen and (max-width: 640px) {
  .shop_box_wrap .shop_box:last-child {
    margin: 0 0 0 0;
  }
}

.shop_box_wrap .shop_box .shop_box_img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.shop_box_wrap .shop_box .shop_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.shop_box_wrap .shop_box .shop_box_detail {
  padding: 20px 16px 0;
}

.shop_box_wrap .shop_box .shop_box_detail .shop_box_category {
  display: inline-block;
  padding: 4px 12px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 10px;
}

.shop_box_wrap .shop_box .shop_box_detail .shop_box_title {
  padding: 0 0 10px;
  margin: 0 0 20px;
  border-bottom: 1px solid #323335;
}

.shop_box_wrap .shop_box .shop_box_detail .shop_box_title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 27px;
  max-height: calc(27px*1);
}

.shop_box_wrap .shop_box .shop_box_detail .shop_box_address_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shop_box_wrap .shop_box .shop_box_detail .shop_box_address_wrap .shop_box_address_icon {
  width: 15px;
  margin: 0 10px 0 0;
}

.shop_box_wrap .shop_box .shop_box_detail .shop_box_address_wrap .shop_box_address_icon img {
  width: 100%;
}

.shop_box_wrap .shop_box .shop_box_detail .shop_box_address_wrap .shop_box_address_text {
  width: calc(100% - 25px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
}

.shop_box_wrap .shop_box .shop_box_btn {
  position: absolute;
  bottom: 20px;
  right: 16px;
}

.shop_box_wrap .shop_box .shop_box_btn .shop_box_btn_inner {
  width: 144px;
  height: 30px;
  border-radius: 30px;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  background-color: #CAC1B9;
}

.shop_box_wrap .shop_box .shop_box_btn .shop_box_btn_inner img {
  width: 4px;
  margin: 0 0 0 16px;
}

@media only screen and (min-width: 960px) {
  .shop_box_wrap .shop_box:hover .shop_box_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*shop_detail*/
.shop_introduction_block .shop_introduction_title_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 64px;
}

@media only screen and (max-width: 960px) {
  .shop_introduction_block .shop_introduction_title_text {
    display: block;
  }
}

.shop_introduction_block .shop_introduction_title_text .shop_introduction_title {
  width: 380px;
  margin: 0 120px 0 0;
  padding: 0 0 56px 40px;
  border-left: 1px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #323335;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  .shop_introduction_block .shop_introduction_title_text .shop_introduction_title {
    width: 100%;
    margin: 0 0 48px;
  }
}

@media only screen and (max-width: 640px) {
  .shop_introduction_block .shop_introduction_title_text .shop_introduction_title {
    font-size: 24px;
    padding: 0 0 20px 20px;
    margin: 0 0 32px;
  }
}

.shop_introduction_block .shop_introduction_title_text .shop_introduction_text {
  width: calc(100% - 500px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.2;
}

@media only screen and (max-width: 960px) {
  .shop_introduction_block .shop_introduction_title_text .shop_introduction_text {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .shop_introduction_block .shop_introduction_title_text .shop_introduction_text {
    font-size: 14px;
  }
}

.shop_introduction_block .shop_introduction_img_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .shop_introduction_block .shop_introduction_img_wrap {
    margin: 0 0 40px;
  }
}

.shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img {
  width: calc((100% - 80px) /3);
  height: 500px;
  border: 3px solid #FFF;
  -webkit-box-shadow: 6px 6px 0 #E0D9D5;
  box-shadow: 6px 6px 0 #E0D9D5;
}

@media only screen and (max-width: 840px) {
  .shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img {
    width: calc((100% - 40px) /3);
  }
}

@media only screen and (max-width: 640px) {
  .shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img {
    width: calc((100% - 24px) /3);
    height: 340px;
    -webkit-box-shadow: 4px 4px 0 #E0D9D5;
    box-shadow: 4px 4px 0 #E0D9D5;
  }
}

.shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img:nth-child(1) {
  margin: 0 40px 0 0;
}

@media only screen and (max-width: 840px) {
  .shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img:nth-child(1) {
    margin: 0 20px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img:nth-child(1) {
    margin: 0 12px 0 0;
  }
}

.shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img:nth-child(2) {
  margin: 48px 40px 0 0;
}

@media only screen and (max-width: 840px) {
  .shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img:nth-child(2) {
    margin: 48px 20px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img:nth-child(2) {
    margin: 32px 12px 0 0;
  }
}

.shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img:nth-child(3) {
  margin: 96px 0 0 0;
}

@media only screen and (max-width: 640px) {
  .shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img:nth-child(3) {
    margin: 64px 0 0 0;
  }
}

.shop_introduction_block .shop_introduction_img_wrap .shop_introduction_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.shop_editor_block #shop_editor p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor p {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

.shop_editor_block #shop_editor p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.shop_editor_block #shop_editor div {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor div {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

.shop_editor_block #shop_editor div a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.shop_editor_block #shop_editor img {
  display: block;
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor img {
    margin: 0 0 32px;
  }
}

.shop_editor_block #shop_editor ol {
  list-style: decimal;
  padding: 30px 40px 30px 50px;
  background-color: #FAF7F5;
  border-radius: 20px;
  border: 1px dashed #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor ol {
    padding: 20px 20px 20px 40px;
    margin: 0 0 32px;
  }
}

.shop_editor_block #shop_editor ol li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor ol li {
    font-size: 14px;
  }
}

.shop_editor_block #shop_editor ol li:last-child {
  margin: 0 0 0;
}

.shop_editor_block #shop_editor ul {
  padding: 30px 40px;
  background-color: #FAF7F5;
  border-radius: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor ul {
    padding: 20px 20px;
    margin: 0 0 32px;
  }
}

.shop_editor_block #shop_editor ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 16px;
  border-bottom: 1px dashed #323335;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor ul li {
    font-size: 14px;
  }
}

.shop_editor_block #shop_editor ul li:last-child {
  margin: 0 0 0;
}

.shop_editor_block #shop_editor h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 24px;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor h2 {
    font-size: 22px;
    padding: 0 0 0 16px;
    margin: 0 0 32px;
  }
}

.shop_editor_block #shop_editor h2:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  background-color: #CAC1B9;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor h2:before {
    width: 4px;
  }
}

.shop_editor_block #shop_editor h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 16px;
  margin: 0 0 40px;
  border-bottom: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor h3 {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

.shop_editor_block #shop_editor h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor h4 {
    font-size: 16px;
    margin: 0 0 32px;
  }
}

.shop_editor_block #shop_editor .shop_editor_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 30px 40px;
  border-radius: 20px;
  border: 1px solid #323335;
  background-color: #F8F8F8;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor .shop_editor_box {
    padding: 20px 20px;
    display: block;
  }
}

.shop_editor_block #shop_editor .shop_editor_box::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 16px;
  width: 120px;
  height: 136px;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.shop_editor_block #shop_editor .shop_editor_box .shop_editor_box_img {
  margin: 0 40px 0 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor .shop_editor_box .shop_editor_box_img {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
  }
}

.shop_editor_block #shop_editor .shop_editor_box .shop_editor_box_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  margin: 0 0 0;
}

.shop_editor_block #shop_editor .shop_editor_box .shop_editor_box_detail {
  width: calc(100% - 200px);
  margin: 0 0 0;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor .shop_editor_box .shop_editor_box_detail {
    width: 100%;
  }
}

.shop_editor_block #shop_editor .shop_editor_box .shop_editor_box_detail .shop_editor_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 12px;
  border-bottom: 1px dashed #323335;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .shop_editor_block #shop_editor .shop_editor_box .shop_editor_box_detail .shop_editor_box_title {
    font-size: 16px;
  }
}

.shop_editor_block #shop_editor .shop_editor_box .shop_editor_box_detail .shop_editor_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
  margin: 0 0 0;
}

.shop_ambassador {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .shop_ambassador {
    padding: 60px 0 80px;
  }
}

.shop_ambassador:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .shop_ambassador:after {
    width: 195px;
    height: 223px;
  }
}

.shop_ambassador_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

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

.shop_ambassador_box_wrap .shop_ambassador_box {
  width: calc((100% - 80px) /3);
  margin: 0 40px 40px 0;
  padding: 30px 30px 64px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media only screen and (max-width: 840px) {
  .shop_ambassador_box_wrap .shop_ambassador_box {
    width: calc((100% - 40px) /2);
  }
}

@media only screen and (max-width: 640px) {
  .shop_ambassador_box_wrap .shop_ambassador_box {
    width: 100%;
    margin: 0 24px 0 0;
    padding: 24px 20px 58px;
  }
}

.shop_ambassador_box_wrap .shop_ambassador_box:before {
  content: "";
  position: absolute;
  top: -70px;
  left: -65px;
  width: 200px;
  height: 200px;
  background-image: url(../images/shop/bg_ambassador.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.shop_ambassador_box_wrap .shop_ambassador_box:nth-of-type(3n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 840px) {
  .shop_ambassador_box_wrap .shop_ambassador_box:nth-of-type(3n) {
    margin: 0 40px 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .shop_ambassador_box_wrap .shop_ambassador_box:nth-of-type(3n) {
    margin: 0 0 24px 0;
  }
}

@media only screen and (max-width: 840px) {
  .shop_ambassador_box_wrap .shop_ambassador_box:nth-of-type(2n) {
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .shop_ambassador_box_wrap .shop_ambassador_box:nth-of-type(2n) {
    margin: 0 0 24px 0;
  }
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_title {
  font-family: 'BLACKJAR', "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 8px;
  margin: 0 0 16px;
  border-bottom: 2px dashed #323335;
}

@media only screen and (max-width: 640px) {
  .shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_title {
    font-size: 20px;
  }
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_img_wrap {
  width: 100%;
  margin: 0 0 16px;
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 2;
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_sns_block {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

@media only screen and (max-width: 640px) {
  .shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_sns_block {
    bottom: 24px;
    right: 20px;
  }
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_sns_block .shop_ambassador_box_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_sns_block .shop_ambassador_box_sns_list .shop_ambassador_box_sns_item {
  margin: 0 0 0 10px;
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_sns_block .shop_ambassador_box_sns_list .shop_ambassador_box_sns_item .shop_ambassador_box_sns_link {
  display: block;
  width: 24px;
}

.shop_ambassador_box_wrap .shop_ambassador_box .shop_ambassador_box_sns_block .shop_ambassador_box_sns_list .shop_ambassador_box_sns_item .shop_ambassador_box_sns_link img {
  width: 100%;
}

/*shop_access*/
.shop_access {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .shop_access {
    padding: 60px 0 80px;
  }
}

.shop_access:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-image: url(../images/common/bg_img03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 275px;
  height: 320px;
}

@media only screen and (max-width: 640px) {
  .shop_access:after {
    width: 198px;
    height: 231px;
  }
}

.shop_access_block_wrap .shop_access_block {
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .shop_access_block_wrap .shop_access_block {
    margin: 0 0 40px;
  }
}

.shop_access_block_wrap .shop_access_block:last-child {
  margin: 0 0 0;
}

.shop_access_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 12px;
  border-bottom: 1px solid #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_access_title {
    font-size: 18px;
    margin: 0 0 24px;
  }
}

.shop_access_title img {
  width: 18px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .shop_access_title img {
    width: 16px;
    margin: 0 6px 0 0;
  }
}

.shop_access_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 64px;
}

@media only screen and (max-width: 840px) {
  .shop_access_detail {
    display: block;
    margin: 0 0 24px;
  }
}

.shop_access_detail .shop_access_detail_img {
  width: 50%;
  padding: 0 80px 0 0;
}

@media only screen and (max-width: 840px) {
  .shop_access_detail .shop_access_detail_img {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 24px;
  }
}

.shop_access_detail .shop_access_detail_img img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

@media only screen and (max-width: 640px) {
  .shop_access_detail .shop_access_detail_img img {
    height: 200px;
  }
}

.shop_access_detail .shop_access_detail_list {
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .shop_access_detail .shop_access_detail_list {
    width: 100%;
  }
}

.shop_access_detail .shop_access_detail_list .shop_access_detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 30px;
}

.shop_access_detail .shop_access_detail_list .shop_access_detail_item:last-child {
  margin: 0 0 0;
}

.shop_access_detail .shop_access_detail_list .shop_access_detail_item .shop_access_detail_item_title {
  width: 160px;
  padding: 0 40px 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .shop_access_detail .shop_access_detail_list .shop_access_detail_item .shop_access_detail_item_title {
    width: 100px;
    padding: 0 20px 0 16px;
    font-size: 14px;
  }
}

.shop_access_detail .shop_access_detail_list .shop_access_detail_item .shop_access_detail_item_title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #323335;
  position: absolute;
  top: 11px;
  left: 0;
}

.shop_access_detail .shop_access_detail_list .shop_access_detail_item .shop_access_detail_item_text {
  width: calc(100% - 160px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .shop_access_detail .shop_access_detail_list .shop_access_detail_item .shop_access_detail_item_text {
    width: calc(100% - 100px);
    font-size: 14px;
  }
}

.shop_googlemap {
  width: 100%;
  height: 340px;
}

@media only screen and (max-width: 640px) {
  .shop_googlemap {
    height: 240px;
  }
}

.shop_item {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .shop_item {
    padding: 60px 0 80px;
  }
}

.shop_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .shop_item:after {
    width: 195px;
    height: 223px;
  }
}

.shop_notation {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .shop_notation {
    padding: 60px 0 80px;
  }
}

.shop_notation:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-image: url(../images/common/bg_img03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 275px;
  height: 320px;
}

@media only screen and (max-width: 640px) {
  .shop_notation:after {
    width: 198px;
    height: 231px;
  }
}

.shop_notation_list .shop_notation_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 0 16px;
  border-bottom: 1px solid #BABABA;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .shop_notation_list .shop_notation_item {
    display: block;
  }
}

.shop_notation_list .shop_notation_item .shop_notation_item_title {
  width: 240px;
  padding: 0 40px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .shop_notation_list .shop_notation_item .shop_notation_item_title {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 8px 0;
    font-size: 14px;
  }
}

.shop_notation_list .shop_notation_item .shop_notation_item_text {
  width: calc(100% - 240px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .shop_notation_list .shop_notation_item .shop_notation_item_text {
    width: 100%;
    font-size: 14px;
  }
}

.shop_notation_list .shop_notation_item .shop_notation_item_text span {
  font-size: 12px;
}

@media only screen and (max-width: 640px) {
  .shop_notation_list .shop_notation_item .shop_notation_item_text span {
    font-size: 11px;
  }
}

/*cart*/
.shop_cart_block_wrap .shop_cart_block {
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_cart_block_wrap .shop_cart_block {
    margin: 0 0 24px;
  }
}

.shop_cart_block_wrap .shop_cart_block:last-child {
  margin: 0 0 0;
}

.shop_cart_block_wrap .shop_cart_block .shop_cart_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 10px 14px;
  margin: 0 0 24px;
  border-bottom: 1px solid #323335;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .shop_cart_block_wrap .shop_cart_block .shop_cart_block_title {
    font-size: 16px;
    padding: 0 0 8px 14px;
    margin: 0 0 20px;
  }
}

.shop_cart_block_wrap .shop_cart_block .shop_cart_block_title span {
  display: inline-block;
  margin: 0 0 0 8px;
  padding: 3px 8px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

@media only screen and (max-width: 640px) {
  .shop_cart_block_wrap .shop_cart_block .shop_cart_block_title span {
    font-size: 12px;
  }
}

.shop_cart_block_wrap .shop_cart_block .shop_cart_block_title::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #323335;
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  .shop_cart_block_wrap .shop_cart_block .shop_cart_block_title::before {
    top: 10px;
  }
}

.shop_cart_block_list .shop_cart_block_item {
  margin: 0 0 48px;
  padding: 32px;
  border: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  .shop_cart_block_list .shop_cart_block_item {
    padding: 16px;
    margin: 0 0 32px;
  }
}

.shop_cart_block_list .shop_cart_block_item:last-child {
  margin: 0 0 0;
}

.shop_cart_list .shop_cart_item {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #BABABA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .shop_cart_list .shop_cart_item {
    display: block;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_item_detail {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 840px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_item_detail {
    width: 100%;
    margin: 0 0 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 0 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_img {
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_title_type {
  width: calc(100% - 124px);
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_title_type {
    width: calc(100% - 80px);
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_title_type .shop_cart_item_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_title_type .shop_cart_item_item_title {
    font-size: 14px;
    line-height: 21px;
    max-height: calc(21px*2);
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_title_type .shop_cart_item_item_type {
  margin: 8px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #838383;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_item_detail .shop_cart_item_item_title_type .shop_cart_item_item_type {
    margin: 4px 0 0;
    font-size: 11px;
  }
}

@media only screen and (min-width: 960px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_item_detail:hover .shop_cart_item_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_setting_detail {
  width: 50%;
  padding: 0 0 0 40px;
  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;
}

@media only screen and (max-width: 840px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_setting_detail {
    width: 100%;
    padding: 0 0 0 0;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_setting_detail .shop_cart_item_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_setting_detail .shop_cart_item_price {
    font-size: 24px;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_setting_detail .shop_cart_item_price span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_setting_detail .shop_cart_item_price span {
    font-size: 12px;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_setting_detail .shop_cart_item_select {
  margin: 0 0 0 20px;
  width: 80px;
  padding: 8px 30px 8px 10px;
  border: 1px solid #BABABA;
  outline: none;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/common/icon_arrow_bottom.svg) right 10px center no-repeat #FFF;
  background-size: 11px;
}

.shop_cart_list .shop_cart_item .shop_cart_item_setting_detail .shop_cart_item_delete_btn {
  margin: 0 0 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #838383;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.shop_cart_total_price_block .shop_cart_postage {
  margin: 0 20px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_cart_total_price_block .shop_cart_postage {
    font-size: 13px;
  }
}

.shop_cart_total_price_block .shop_cart_postage .postage_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}

@media only screen and (max-width: 640px) {
  .shop_cart_total_price_block .shop_cart_postage .postage_price {
    font-size: 16px;
  }
}

.shop_cart_total_price_block .shop_cart_postage .tax {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .shop_cart_total_price_block .shop_cart_postage .tax {
    font-size: 12px;
  }
}

.shop_cart_total_price_block .shop_cart_total {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_cart_total_price_block .shop_cart_total {
    font-size: 14px;
  }
}

.shop_cart_total_price_block .shop_cart_total .total_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  margin: 0 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .shop_cart_total_price_block .shop_cart_total .total_price {
    font-size: 24px;
  }
}

.shop_cart_total_price_block .shop_cart_total .tax {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .shop_cart_total_price_block .shop_cart_total .tax {
    font-size: 12px;
  }
}

.shop_cart_submit_btn {
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 40px;
  background: linear-gradient(130deg, #d5ac5f 0%, #bc9854 100%);
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  margin: 0 auto;
  padding: 4px 24px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .shop_cart_submit_btn {
    font-size: 14px;
    height: 56px;
  }
}

.shop_cart_submit_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -8px;
  width: 28px;
  height: 1px;
  background-color: #323335;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .shop_cart_submit_btn:hover:after {
    right: -16px;
  }
}

.shop_cart_shopping_btn {
  margin: 48px auto 0;
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 40px;
  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;
  background-color: #FFF;
  border: 1px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  padding: 4px 24px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .shop_cart_shopping_btn {
    font-size: 14px;
    height: 56px;
    margin: 32px auto 0;
  }
}

/*payment*/
.shop_payment_block_wrap.mt_40 {
  margin: 40px 0 0;
}

.shop_payment_block_wrap .shop_payment_block {
  margin: 0 0 48px;
}

.shop_payment_block_wrap .shop_payment_block:last-child {
  margin: 0 0 0;
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_title {
  padding: 0 0 8px 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  border-bottom: 1px solid #323335;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .shop_payment_block_wrap .shop_payment_block .shop_payment_block_title {
    font-size: 16px;
    margin: 0 0 16px;
  }
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #CAC1B9;
}

.shop_payment_shop_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 24px;
  position: relative;
  padding: 0 0 0 14px;
}

@media only screen and (max-width: 640px) {
  .shop_payment_shop_name {
    font-size: 14px;
  }
}

.shop_payment_shop_name::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #323335;
  border-radius: 50%;
}

@media only screen and (max-width: 640px) {
  .shop_payment_shop_name::before {
    top: 9px;
  }
}

.shop_payment_item_list .shop_payment_item_item {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #BABABA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .shop_payment_item_list .shop_payment_item_item {
    display: block;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block {
    width: 100%;
    margin: 0 0 10px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_img {
  width: 100px;
  height: 100px;
  margin: 0 24px 0 0;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_img {
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_title_wrap {
  width: calc(100% - 124px);
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_title_wrap {
    width: calc(100% - 80px);
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_title_wrap .shop_payment_item_item_label {
  display: inline-block;
  padding: 2px 6px;
  background-color: #FFF;
  border: 2px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 4px;
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_title_wrap .shop_payment_item_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_title_wrap .shop_payment_item_item_title {
    font-size: 14px;
    line-height: 21px;
    max-height: calc(21px*2);
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_title_wrap .shop_payment_item_item_title_info {
  margin: 8px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #838383;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block .shop_payment_item_item_title_wrap .shop_payment_item_item_title_info {
    margin: 4px 0 0;
    font-size: 11px;
  }
}

@media only screen and (min-width: 960px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail_block:hover .shop_payment_item_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block {
  width: 50%;
  padding: 0 0 0 40px;
  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;
}

@media only screen and (max-width: 840px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block {
    width: 100%;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block .shop_payment_item_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block .shop_payment_item_price {
    font-size: 24px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block .shop_payment_item_price span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block .shop_payment_item_price span {
    font-size: 12px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block .shop_payment_item_num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block .shop_payment_item_num {
    font-size: 16px;
    margin: 0 0 0 10px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block .shop_payment_item_num span {
  font-size: 24px;
  margin: 0 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_price_block .shop_payment_item_num span {
    font-size: 20px;
  }
}

.shop_payment_item_total_block {
  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;
  text-align: right;
}

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

.shop_payment_item_total_block .shop_payment_item_postage {
  margin: 0 20px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_total_block .shop_payment_item_postage {
    margin: 0 0 8px 0;
    font-size: 13px;
  }
}

.shop_payment_item_total_block .shop_payment_item_postage .postage_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_total_block .shop_payment_item_postage .postage_price {
    font-size: 16px;
  }
}

.shop_payment_item_total_block .shop_payment_item_postage .tax {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_total_block .shop_payment_item_postage .tax {
    font-size: 12px;
  }
}

.shop_payment_item_total_price {
  text-align: right;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_total_price {
    font-size: 14px;
  }
}

.shop_payment_item_total_price .total_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  margin: 0 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_total_price .total_price {
    font-size: 24px;
  }
}

.shop_payment_item_total_price .total_price.red {
  color: #EB6262;
}

.shop_payment_item_total_price .tax {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_total_price .tax {
    font-size: 12px;
  }
}

.shop_payment_list .shop_payment_item {
  margin: 0 0 16px;
  padding: 0 0 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .shop_payment_list .shop_payment_item {
    font-size: 14px;
  }
}

.shop_payment_list .shop_payment_item:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .shop_payment_list .shop_payment_item:before {
    top: 12px;
  }
}

.shop_payment_list .shop_payment_item:last-child {
  margin: 0 0 0;
}

.shop_payment_list .shop_payment_item a {
  text-decoration: underline;
  color: #323335;
}

.shop_payment_block_error_text {
  margin: 10px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #EB6262;
  line-height: 1.5;
}

.shop_payment_setting_btn {
  margin: 30px auto 0;
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 40px;
  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: 1px solid #323335;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_setting_btn {
    font-size: 14px;
    height: 56px;
  }
}

.shop_payment_block_textarea {
  width: 100%;
  height: 200px;
  background-color: #EFEFEF;
  border: none;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  resize: none;
}

.shop_payment_block_textarea::-webkit-input-placeholder {
  color: #838383;
}

.shop_payment_block_textarea::-ms-input-placeholder {
  color: #838383;
}

.shop_payment_block_textarea::placeholder {
  color: #838383;
}

.item_limited_sec {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #faf7f5 0%, #e0cec2 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .item_limited_sec {
    padding: 60px 0 80px;
  }
}

.item_limited_sec:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -30px;
  width: 260px;
  height: 452px;
  background-image: url(../images/common/bg_img_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .item_limited_sec:before {
    width: 172px;
    height: 299px;
    right: -26px;
  }
}

.item_limited_sec:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -30px;
  width: 313px;
  height: 316px;
  background-image: url(../images/common/bg_img_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .item_limited_sec:after {
    width: 187px;
    height: 189px;
  }
}

.item_group_sec {
  padding: 100px 0 120px;
  background: linear-gradient(135deg, #FFEBC4 0%, #FAF7F5 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .item_group_sec {
    padding: 60px 0 80px;
  }
}

.item_group_sec:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -30px;
  width: 260px;
  height: 452px;
  background-image: url(../images/common/bg_img_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .item_group_sec:before {
    width: 172px;
    height: 299px;
    right: -26px;
  }
}

.item_group_sec:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -30px;
  width: 313px;
  height: 316px;
  background-image: url(../images/common/bg_img_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .item_group_sec:after {
    width: 187px;
    height: 189px;
  }
}

.item_detail_type_label_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .item_detail_type_label_btn {
    margin: 0 0 12px;
  }
}

.item_detail_type_label_btn .item_detail_type_label {
  display: inline-block;
  padding: 2px 6px;
  background-color: #FFF;
  border: 2px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .item_detail_type_label_btn .item_detail_type_label {
    font-size: 13px;
    margin: 0 12px 0 0;
  }
}

.item_detail_type_label_btn .item_detail_type_popup_openbtn {
  width: 26px;
}

@media only screen and (max-width: 640px) {
  .item_detail_type_label_btn .item_detail_type_popup_openbtn {
    width: 20px;
  }
}

.item_detail_type_label_btn .item_detail_type_popup_openbtn img {
  width: 100%;
}

.item_detail_type_note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 10px;
}

.item_type_popup {
  display: none;
  position: fixed;
  z-index: 1000000;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 560px;
  max-width: 80%;
  max-height: 80vh;
  background-color: #FFF;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 0 48px;
}

@media only screen and (max-width: 640px) {
  .item_type_popup {
    padding: 0 24px;
    max-width: 90%;
    max-height: 90vh;
  }
}

.item_type_popup .item_type_close_btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
}

.item_type_popup .item_type_close_btn img {
  width: 100%;
}

.item_type_popup .item_type_popup_inner {
  overflow-y: scroll;
  max-height: 90vh;
  padding: 48px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.item_type_popup .item_type_popup_inner::-webkit-scrollbar {
  display: none;
}

.item_type_popup .item_type_popup_inner .item_type_popup_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  text-align: center;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .item_type_popup .item_type_popup_inner .item_type_popup_title {
    font-size: 18px;
    margin: 0 0 16px;
  }
}

.item_type_popup .item_type_popup_inner .item_type_popup_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .item_type_popup .item_type_popup_inner .item_type_popup_text {
    font-size: 14px;
    margin: 0 0 24px;
  }
}

.item_type_popup .item_type_popup_inner .item_type_popup_note_box {
  background-color: #FAF7F5;
  padding: 16px;
  border-radius: 10px;
}

.item_type_popup .item_type_popup_inner .item_type_popup_note_box .item_type_popup_note_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 16px;
}

.item_type_popup .item_type_popup_inner .item_type_popup_note_box .item_type_popup_note_list .item_type_popup_note_item {
  padding: 0 0 0 16px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
}

.item_type_popup .item_type_popup_inner .item_type_popup_note_box .item_type_popup_note_list .item_type_popup_note_item::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #323335;
}

.item_detail_goal_box {
  background-color: #F1F1F1;
  padding: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .item_detail_goal_box {
    padding: 10px;
    margin: 0 0 30px;
  }
}

.item_detail_goal_box .item_detail_goal_value {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 12px;
}

.item_detail_goal_box .item_detail_goal_value .num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  margin: 0 0 0 8px;
}

.item_detail_goal_box .item_detail_goal_value .goal {
  display: inline-block;
  padding: 2px 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  line-height: 1.5;
  background-color: #bc9854;
  margin: 0 0 0 8px;
}

.item_detail_goal_box .item_detail_goal_achievement {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 8px;
}

.item_detail_goal_box .item_detail_goal_achievement span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}

.item_detail_goal_box .item_detail_goal_meter_wrap {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  border: 1px solid #323335;
  background-color: #FFF;
  position: relative;
  margin: 0 0 16px;
}

.item_detail_goal_box .item_detail_goal_meter_wrap .item_detail_goal_meter {
  position: absolute;
  top: -1px;
  left: -1px;
  max-width: 100%;
  background-color: #323335;
  height: 8px;
  border-radius: 8px;
}

.item_detail_goal_box .item_detail_goal_box_goal_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 16px;
}

.item_detail_goal_box .item_detail_goal_box_deadline {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.item_detail_goal_box .item_detail_goal_box_deadline span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}

.item_detail_local_detail {
  margin: 16px 0 0;
}

.item_detail_local_detail .item_detail_local_box {
  background-color: #FFF;
  padding: 16px;
  border-radius: 16px;
  margin: 0 0 20px;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 8px;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item {
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #BABABA;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item:last-child {
  margin: 0 0 0;
  padding: 0 0 0;
  border-bottom: none;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item .item_detail_local_place_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 4px;
  padding: 0 0 0 12px;
  position: relative;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item .item_detail_local_place_item_title:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #323335;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item .item_detail_local_place_item_address_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  margin: 0 0 4px;
  position: relative;
  padding: 0 0 0 20px;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item .item_detail_local_place_item_address_link::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/shop/icon_map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item .item_detail_local_place_item_tel_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  margin: 0 0 4px;
  padding: 0 0 0 20px;
  position: relative;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item .item_detail_local_place_item_tel_link::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/shop/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_place_list .item_detail_local_place_item .item_detail_local_place_item_note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
  line-height: 2;
}

.item_detail_local_detail .item_detail_local_box .item_detail_local_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 2;
  margin: 0 0 8px;
}

.item_detail_local_detail .item_detail_local_input_block_wrap .item_detail_local_input_block {
  margin: 0 0 20px;
}

.item_detail_local_detail .item_detail_local_input_block_wrap .item_detail_local_input_block:last-child {
  margin: 0 0 0;
}

.item_detail_local_detail .item_detail_local_input_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 8px;
}

.item_detail_local_detail .item_detail_local_textarea {
  width: 100%;
  height: 120px;
  border-radius: 3px;
  border: 1px solid #BABABA;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  resize: none;
}

.item_detail_local_detail .item_detail_local_textarea::-webkit-input-placeholder {
  color: #838383;
}

.item_detail_local_detail .item_detail_local_textarea::-ms-input-placeholder {
  color: #838383;
}

.item_detail_local_detail .item_detail_local_textarea::placeholder {
  color: #838383;
}

.item_detail_local_detail .item_detail_local_select {
  width: 100%;
  background-color: #FFF;
  border-radius: 3px;
  border: 1px solid #BABABA;
  outline: none;
  padding: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-position: right 16px center;
}

.item_notice_box {
  background-color: #FAF7F5;
  padding: 48px 24px;
  margin: 0 0 40px;
}

.item_notice_box .item_notice_box_content {
  max-width: 900px;
  margin: 0 auto;
}

.item_notice_box .item_notice_box_content .item_notice_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
  margin: 0 0 24px;
}

.item_notice_box .item_notice_box_content .item_notice_box_note_list .item_notice_box_note_item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
  margin: 0 0 16px;
  padding: 0 0 0 16px;
  position: relative;
}

.item_notice_box .item_notice_box_content .item_notice_box_note_list .item_notice_box_note_item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #323335;
  border-radius: 50%;
}

.item_notice_box .item_notice_box_content .item_notice_box_note_list .item_notice_box_note_item:last-child {
  margin: 0 0 0;
}

.shop_delivery_list_box {
  margin: 20px 0 0;
  background-color: #FFF;
  border: 1px solid #BABABA;
  padding: 24px 40px;
  border-radius: 20px;
}

@media only screen and (max-width: 640px) {
  .shop_delivery_list_box {
    padding: 16px 16px;
  }
}

.shop_delivery_list_box .shop_delivery_list_box_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .shop_delivery_list_box .shop_delivery_list_box_title {
    font-size: 14px;
  }
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item {
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #BABABA;
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item:last-child {
  margin: 0 0 0;
  padding: 0 0 0;
  border-bottom: none;
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item .shop_delivery_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 8px;
  padding: 0 0 0 12px;
  position: relative;
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item .shop_delivery_item_title:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #323335;
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item .shop_delivery_item_address_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  margin: 0 0 4px;
  position: relative;
  padding: 0 0 0 20px;
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item .shop_delivery_item_address_link::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/shop/icon_map.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item .shop_delivery_item_tel_link {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  margin: 0 0 4px;
  padding: 0 0 0 20px;
  position: relative;
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item .shop_delivery_item_tel_link::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/shop/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.shop_delivery_list_box .shop_delivery_list .shop_delivery_item .shop_delivery_item_note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
  line-height: 2;
}

.recommend_group_item {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #FFEBC4 0%, #FAF7F5 100%);
}

@media only screen and (max-width: 640px) {
  .recommend_group_item {
    padding: 60px 0 80px;
  }
}

.recommend_group_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-image: url(../images/common/bg_img05.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 256px;
  height: 424px;
}

@media only screen and (max-width: 640px) {
  .recommend_group_item:after {
    width: 152px;
    height: 252px;
  }
}

.recommend_limited_item {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #faf7f5 0%, #e0cec2 100%);
}

@media only screen and (max-width: 640px) {
  .recommend_limited_item {
    padding: 60px 0 80px;
  }
}

.recommend_limited_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background-image: url(../images/common/bg_img05.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 256px;
  height: 424px;
}

@media only screen and (max-width: 640px) {
  .recommend_limited_item:after {
    width: 152px;
    height: 252px;
  }
}

/*=================

      information.scss

=======================*/
.information_list .information_item .information_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 20px 54px 20px 24px;
  position: relative;
  background-color: #FFF;
}

@media only screen and (max-width: 840px) {
  .information_list .information_item .information_link {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_link {
    padding: 12px 20px 12px 10px;
  }
}

.information_list .information_item .information_link:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
  width: 6px;
  height: 8px;
  background-image: url(../images/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_link:after {
    right: 10px;
  }
}

@media only screen and (min-width: 960px) {
  .information_list .information_item .information_link:hover {
    opacity: 0.7;
  }
}

.information_list .information_item .information_link .information_item_date_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 350px;
}

@media only screen and (max-width: 840px) {
  .information_list .information_item .information_link .information_item_date_category {
    width: 100%;
    margin: 0 0 12px;
  }
}

.information_list .information_item .information_link .information_item_date_category .information_item_date {
  width: 150px;
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #838383;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .information_list .information_item .information_link .information_item_date_category .information_item_date {
    width: 126px;
  }
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_link .information_item_date_category .information_item_date {
    font-size: 14px;
    width: 100px;
  }
}

.information_list .information_item .information_link .information_item_date_category .information_item_category {
  display: inline-block;
  max-width: 230px;
  padding: 4px 20px;
  background-color: #323335;
  border-radius: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .information_list .information_item .information_link .information_item_date_category .information_item_category {
    max-width: calc(100% - 126px);
  }
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_link .information_item_date_category .information_item_category {
    max-width: calc(100% - 100px);
    padding: 4px 12px;
    font-size: 12px;
  }
}

.information_list .information_item .information_link .information_item_title {
  width: calc(100% - 350px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*1);
}

@media only screen and (max-width: 840px) {
  .information_list .information_item .information_link .information_item_title {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_link .information_item_title {
    font-size: 14px;
    line-height: 21px;
    max-height: calc(21px*1);
  }
}

.information_list .information_item:nth-child(even) .information_link {
  background-color: #F5F5F5;
}

.information_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .information_category_list {
    margin: 0 0 20px;
  }
}

.information_category_list .information_category_item {
  margin: 0 10px 10px 0;
}

.information_category_list .information_category_item .information_category_link {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  .information_category_list .information_category_item .information_category_link {
    padding: 4px 12px;
    font-size: 13px;
  }
}

.information_category_list .information_category_item .information_category_link.active {
  background-color: #323335;
  color: #FFF;
}

/*information_detail*/
.information_detail_date_category {
  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;
  width: 100%;
}

.information_detail_date_category .information_detail_date {
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #838383;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 30px 24px 0;
}

@media only screen and (max-width: 640px) {
  .information_detail_date_category .information_detail_date {
    font-size: 16px;
    margin: 0 20px 24px 0;
  }
}

.information_detail_date_category .information_detail_category {
  display: inline-block;
  padding: 4px 20px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-radius: 20px;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .information_detail_date_category .information_detail_category {
    padding: 4px 12px;
    font-size: 13px;
  }
}

.information_detail_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 20px;
  border-bottom: 1px solid #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .information_detail_title {
    font-size: 24px;
    margin: 0 0 32px;
  }
}

#information_editor p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #information_editor p {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#information_editor p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#information_editor div {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #information_editor div {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#information_editor div a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#information_editor img {
  display: block;
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #information_editor img {
    margin: 0 0 32px;
  }
}

#information_editor ol {
  list-style: decimal;
  padding: 30px 40px 30px 50px;
  background-color: #FAF7F5;
  border-radius: 20px;
  border: 1px dashed #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #information_editor ol {
    padding: 20px 20px 20px 40px;
    margin: 0 0 32px;
  }
}

#information_editor ol li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #information_editor ol li {
    font-size: 14px;
  }
}

#information_editor ol li:last-child {
  margin: 0 0 0;
}

#information_editor ul {
  padding: 30px 40px;
  background-color: #FAF7F5;
  border-radius: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #information_editor ul {
    padding: 20px 20px;
    margin: 0 0 32px;
  }
}

#information_editor ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 16px;
  border-bottom: 1px dashed #323335;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #information_editor ul li {
    font-size: 14px;
  }
}

#information_editor ul li:last-child {
  margin: 0 0 0;
}

#information_editor h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 24px;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #information_editor h2 {
    font-size: 22px;
    padding: 0 0 0 16px;
    margin: 0 0 32px;
  }
}

#information_editor h2:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  background-color: #CAC1B9;
}

@media only screen and (max-width: 640px) {
  #information_editor h2:before {
    width: 4px;
  }
}

#information_editor h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 16px;
  margin: 0 0 40px;
  border-bottom: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  #information_editor h3 {
    font-size: 20px;
    margin: 0 0 32px;
  }
}

#information_editor h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #information_editor h4 {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

.recommend_information {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .recommend_information {
    padding: 60px 0 80px;
  }
}

.recommend_information:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .recommend_information:after {
    width: 195px;
    height: 223px;
  }
}

/*=================

      column.scss

=======================*/
.recommend_column_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

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

.recommend_column_box_wrap.mb_0 {
  margin: 0 0 0;
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap.mb_0 {
    margin: 0 0 20px;
  }
}

.recommend_column_box_wrap .recommend_column_box {
  width: calc((100% - 40px) /2);
  margin: 0 40px 40px 0;
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.recommend_column_box_wrap .recommend_column_box:nth-of-type(2n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box:nth-of-type(2n) {
    margin: 0 0 20px 0;
  }
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box:last-child {
    margin: 0 0 0 0;
  }
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap {
  display: block;
  width: 100%;
  position: relative;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap {
    margin: 0 0 16px;
  }
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap .recommend_column_box_img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap .recommend_column_box_img {
    height: 200px;
  }
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap .recommend_column_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap .recommend_column_box_img img.active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap .recommend_column_box_new {
  position: absolute;
  top: 16px;
  left: -8px;
  width: 62px;
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap .recommend_column_box_new img {
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_img_wrap:hover .recommend_column_box_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_category {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 30px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_category {
    padding: 4px 12px;
    font-size: 13px;
    margin: 0 0 12px;
  }
}

@media only screen and (min-width: 960px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_category:hover {
    opacity: 0.7;
  }
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_link {
  display: block;
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_link .recommend_column_box_title {
  padding: 0 0 12px;
  border-bottom: 2px dashed #323335;
  margin: 0 0 12px;
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_link .recommend_column_box_title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 30px;
  max-height: calc(30px*2);
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_link .recommend_column_box_title span {
    font-size: 16px;
    line-height: 26px;
    max-height: calc(26px*2);
  }
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_link .recommend_column_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
  max-height: calc(28px*2);
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_link .recommend_column_box_text {
    font-size: 13px;
    line-height: 26px;
    max-height: calc(26px*2);
  }
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -2px;
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_tag_list .recommend_column_box_tag_item {
  margin: 0 16px 16px 0;
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_tag_list .recommend_column_box_tag_item .recommend_column_box_tag_link {
  display: block;
  padding: 0 0 0 18px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  text-decoration: underline;
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_tag_list .recommend_column_box_tag_item .recommend_column_box_tag_link::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon_tag.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

@media only screen and (min-width: 960px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_tag_list .recommend_column_box_tag_item .recommend_column_box_tag_link:hover {
    opacity: 0.7;
  }
}

.recommend_column_box_wrap .recommend_column_box .recommend_column_box_date {
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #838383;
  line-height: 1.5;
  text-align: right;
}

@media only screen and (max-width: 640px) {
  .recommend_column_box_wrap .recommend_column_box .recommend_column_box_date {
    font-size: 15px;
  }
}

.column_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap {
    display: block;
    margin: 0 0 0;
  }
}

.column_box_wrap .column_box {
  width: calc((100% - 80px) /3);
  margin: 0 40px 40px 0;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box {
    width: 100%;
    margin: 0 0 20px;
  }
}

.column_box_wrap .column_box:nth-of-type(3n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box:nth-of-type(3n) {
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box:last-child {
    margin: 0 0 0;
  }
}

.column_box_wrap .column_box .column_box_img_wrap {
  display: block;
  width: 100%;
  position: relative;
  margin: 0 0 20px;
}

.column_box_wrap .column_box .column_box_img_wrap .column_box_img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.column_box_wrap .column_box .column_box_img_wrap .column_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_box_wrap .column_box .column_box_img_wrap .column_box_img img.active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.column_box_wrap .column_box .column_box_img_wrap .column_box_new {
  position: absolute;
  top: 16px;
  left: -8px;
  width: 48px;
}

.column_box_wrap .column_box .column_box_img_wrap .column_box_new img {
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .column_box_wrap .column_box .column_box_img_wrap:hover .column_box_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_box_wrap .column_box .column_box_category {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 30px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_category {
    padding: 4px 12px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 960px) {
  .column_box_wrap .column_box .column_box_category:hover {
    opacity: 0.7;
  }
}

.column_box_wrap .column_box .column_box_link {
  display: block;
}

.column_box_wrap .column_box .column_box_link .column_box_title {
  padding: 0 0 12px;
  border-bottom: 2px dashed #323335;
  margin: 0 0 12px;
}

.column_box_wrap .column_box .column_box_link .column_box_title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 30px;
  max-height: calc(30px*2);
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_link .column_box_title span {
    font-size: 16px;
    line-height: 26px;
    max-height: calc(26px*2);
  }
}

.column_box_wrap .column_box .column_box_link .column_box_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
  max-height: calc(28px*2);
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_link .column_box_text {
    font-size: 13px;
    line-height: 26px;
    max-height: calc(26px*2);
  }
}

.column_box_wrap .column_box .column_box_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -2px;
}

.column_box_wrap .column_box .column_box_tag_list .column_box_tag_item {
  margin: 0 16px 16px 0;
}

.column_box_wrap .column_box .column_box_tag_list .column_box_tag_item .column_box_tag_link {
  display: block;
  padding: 0 0 0 18px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  text-decoration: underline;
}

.column_box_wrap .column_box .column_box_tag_list .column_box_tag_item .column_box_tag_link::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon_tag.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

@media only screen and (min-width: 960px) {
  .column_box_wrap .column_box .column_box_tag_list .column_box_tag_item .column_box_tag_link:hover {
    opacity: 0.7;
  }
}

.column_box_wrap .column_box .column_box_date {
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #838383;
  line-height: 1.5;
  text-align: right;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_date {
    font-size: 15px;
  }
}

/*column_search*/
.column_search_block_wrap .column_search_block {
  margin: 0 0 72px;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block {
    margin: 0 0 48px;
  }
}

.column_search_block_wrap .column_search_block:last-child {
  margin: 0 0 0;
}

.column_search_block_wrap .column_search_block .column_search_block_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 0 32px;
}

.column_search_block_wrap .column_search_block .column_search_block_title_wrap .column_search_block_title {
  width: 282px;
  white-space: nowrap;
  padding: 0 0 0 10px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_block_title_wrap .column_search_block_title {
    font-size: 18px;
    width: 260px;
  }
}

.column_search_block_wrap .column_search_block .column_search_block_title_wrap .column_search_block_title::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(../images/shop/bg_icon_search.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: -6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.column_search_block_wrap .column_search_block .column_search_block_title_wrap .column_search_block_title_border {
  width: calc(100% - 282px);
  height: 1px;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_block_title_wrap .column_search_block_title_border {
    width: calc(100% - 260px);
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -40px;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_category_list {
    margin: 0 0 -32px;
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item {
  width: calc((100% - 96px) /4);
  margin: 0 32px 40px 0;
}

@media only screen and (max-width: 840px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item {
    width: calc((100% - 32px) /2);
  }
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item {
    width: calc((100% - 24px) /2);
    margin: 0 24px 32px 0;
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item:nth-of-type(4n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 840px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item:nth-of-type(4n) {
    margin: 0 32px 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item:nth-of-type(4n) {
    margin: 0 24px 32px 0;
  }
}

@media only screen and (max-width: 840px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item:nth-of-type(2n) {
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item:nth-of-type(2n) {
    margin: 0 0 32px 0;
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link {
  display: block;
  text-align: center;
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_title {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 20px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: -16px 0 16px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_title {
    padding: 4px 12px;
    font-size: 13px;
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_text {
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #838383;
  line-height: 1.5;
}

@media only screen and (min-width: 960px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link:hover .column_search_category_img {
    border: 3px solid #CAC1B9;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
}

.column_search_block_wrap .column_search_block .column_search_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -16px;
}

.column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item {
  margin: 0 16px 16px 0;
}

.column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link {
  display: inline-block;
  padding: 8px 10px;
  background-color: #F1F1F1;
  border-radius: 20px;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link {
    padding: 4px 8px;
  }
}

.column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link span {
  padding: 0 0 0 18px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link span {
    font-size: 12px;
    padding: 0 0 0 16px;
  }
}

.column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link span:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon_tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link span:before {
    width: 10px;
    height: 10px;
  }
}

@media only screen and (min-width: 960px) {
  .column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link:hover span {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.recommend_column {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .recommend_column {
    padding: 60px 0 80px;
  }
}

.recommend_column:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .recommend_column:after {
    width: 195px;
    height: 223px;
  }
}

.new_column {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .new_column {
    padding: 60px 0 80px;
  }
}

.new_column:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -30px;
  width: 260px;
  height: 452px;
  background-image: url(../images/common/bg_img_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .new_column:before {
    width: 172px;
    height: 299px;
    right: -26px;
  }
}

.new_column:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -30px;
  width: 313px;
  height: 316px;
  background-image: url(../images/common/bg_img_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .new_column:after {
    width: 187px;
    height: 189px;
  }
}

.column_search_section {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .column_search_section {
    padding: 60px 0 80px;
  }
}

.column_search_section:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .column_search_section:after {
    width: 195px;
    height: 223px;
  }
}

.column_category_editor_block {
  margin: 100px 0 0;
  padding: 48px 24px;
  border: 1px solid #CFCFCF;
  background-color: rgba(255, 255, 255, 0.68);
}

@media only screen and (max-width: 640px) {
  .column_category_editor_block {
    margin: 64px 0 0;
    padding: 24px 12px;
  }
}

.column_category_editor_block .column_category_editor_block_inner {
  max-width: 900px;
  margin: 0 auto;
}

.column_category_editor_block .column_category_editor_block_title {
  padding: 8px 20px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .column_category_editor_block .column_category_editor_block_title {
    font-size: 20px;
    padding: 8px 12px;
    margin: 0 0 32px;
  }
}

#column_category_editor p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor p {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#column_category_editor p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#column_category_editor div {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor div {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#column_category_editor div a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#column_category_editor img {
  display: block;
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor img {
    margin: 0 0 32px;
  }
}

#column_category_editor ol {
  list-style: decimal;
  padding: 30px 40px 30px 50px;
  background-color: #FAF7F5;
  border-radius: 20px;
  border: 1px dashed #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor ol {
    padding: 20px 20px 20px 40px;
    margin: 0 0 32px;
  }
}

#column_category_editor ol li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor ol li {
    font-size: 14px;
  }
}

#column_category_editor ol li:last-child {
  margin: 0 0 0;
}

#column_category_editor ul {
  padding: 30px 40px;
  background-color: #FAF7F5;
  border-radius: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor ul {
    padding: 20px 20px;
    margin: 0 0 32px;
  }
}

#column_category_editor ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 16px;
  border-bottom: 1px dashed #323335;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor ul li {
    font-size: 14px;
  }
}

#column_category_editor ul li:last-child {
  margin: 0 0 0;
}

#column_category_editor h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 24px;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor h2 {
    font-size: 22px;
    padding: 0 0 0 16px;
    margin: 0 0 32px;
  }
}

#column_category_editor h2:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  background-color: #CAC1B9;
}

@media only screen and (max-width: 640px) {
  #column_category_editor h2:before {
    width: 4px;
  }
}

#column_category_editor h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 16px;
  margin: 0 0 40px;
  border-bottom: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  #column_category_editor h3 {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

#column_category_editor h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_category_editor h4 {
    font-size: 16px;
    margin: 0 0 32px;
  }
}

/*column detail*/
.column_detail_date_category {
  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;
  width: 100%;
}

.column_detail_date_category .column_detail_date {
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #838383;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 32px 20px 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_date_category .column_detail_date {
    font-size: 16px;
    margin: 0 20px 20px 0;
  }
}

.column_detail_date_category .column_detail_category {
  display: inline-block;
  padding: 4px 20px;
  background-color: #323335;
  border-radius: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .column_detail_date_category .column_detail_category {
    padding: 4px 12px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 960px) {
  .column_detail_date_category .column_detail_category:hover {
    opacity: 0.7;
  }
}

.column_detail_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 20px;
}

.column_detail_tag_list .column_detail_tag_item {
  margin: 0 12px 12px 0;
}

.column_detail_tag_list .column_detail_tag_item .column_detail_tag_link {
  display: block;
  padding: 0 0 0 18px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  text-decoration: underline;
}

.column_detail_tag_list .column_detail_tag_item .column_detail_tag_link::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon_tag.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.column_detail_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 20px;
  border-bottom: 1px solid #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .column_detail_title {
    font-size: 24px;
    margin: 0 0 32px;
  }
}

.column_detail_main_img {
  width: 100%;
  height: 460px;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .column_detail_main_img {
    height: 240px;
    margin: 0 0 40px;
  }
}

.column_detail_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

#column_editor p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #column_editor p {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#column_editor p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#column_editor div {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #column_editor div {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#column_editor div a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#column_editor img {
  display: block;
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_editor img {
    margin: 0 0 32px;
  }
}

#column_editor ol {
  list-style: decimal;
  padding: 30px 40px 30px 50px;
  background-color: #FAF7F5;
  border-radius: 20px;
  border: 1px dashed #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_editor ol {
    padding: 20px 20px 20px 40px;
    margin: 0 0 32px;
  }
}

#column_editor ol li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #column_editor ol li {
    font-size: 14px;
  }
}

#column_editor ol li:last-child {
  margin: 0 0 0;
}

#column_editor ul {
  padding: 30px 40px;
  background-color: #FAF7F5;
  border-radius: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_editor ul {
    padding: 20px 20px;
    margin: 0 0 32px;
  }
}

#column_editor ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 16px;
  border-bottom: 1px dashed #323335;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #column_editor ul li {
    font-size: 14px;
  }
}

#column_editor ul li:last-child {
  margin: 0 0 0;
}

#column_editor h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 24px;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_editor h2 {
    font-size: 22px;
    padding: 0 0 0 16px;
    margin: 0 0 32px;
  }
}

#column_editor h2:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  background-color: #CAC1B9;
}

#column_editor h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 16px;
  margin: 0 0 40px;
  border-bottom: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  #column_editor h3 {
    font-size: 20px;
    margin: 0 0 32px;
  }
}

#column_editor h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #column_editor h4 {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

.column_detail_item_block {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.86);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block {
    padding: 12px;
    margin: 0 0 40px;
  }
}

.column_detail_item_block .column_detail_item_block_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding: 0 0 8px;
  border-bottom: 2px dotted #BABABA;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block .column_detail_item_block_title {
    font-size: 15px;
  }
}

.column_detail_item_block .column_detail_item_block_title img {
  width: 16px;
  margin: 0 8px 0 0;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item {
  padding: 16px;
  background-color: #FAF7F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block .column_detail_item_list .column_detail_item_item {
    padding: 12px;
    display: block;
  }
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item:last-child {
  margin: 0 0 0;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_img_block {
  width: 200px;
  height: 200px;
  position: relative;
  margin: 0 32px 0 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_img_block {
    margin: 0 auto 16px;
  }
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_img_block .column_detail_item_item_img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_img_block .column_detail_item_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_img_block .column_detail_item_item_favorite_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_img_block .column_detail_item_item_favorite_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_img_block .column_detail_item_item_favorited_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_img_block .column_detail_item_item_favorited_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block {
  width: calc(100% - 232px);
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block {
    width: 100%;
  }
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_brand {
  display: inline-block;
  padding: 2px 8px;
  background-color: #FFF;
  border: 1px solid #BABABA;
  max-width: 100%;
  margin: 0 0 10px;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_brand span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  letter-spacing: 0;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_category_wrap {
  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;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_category_wrap .column_detail_item_item_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 12px 10px 0;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_category_wrap .column_detail_item_item_sub_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #323335;
  padding: 0 0 0 10px;
  position: relative;
  margin: 0 0 10px;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_category_wrap .column_detail_item_item_sub_category::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 1px;
  background-color: #323335;
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_title {
    font-size: 13px;
    line-height: 21px;
    max-height: calc(21px*2);
  }
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_price {
    font-size: 20px;
  }
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_price span {
  margin: 0 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #838383;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_price span {
    font-size: 10px;
    margin: 0 0 0 8px;
  }
}

.column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
  max-height: calc(28px*2);
}

@media only screen and (max-width: 640px) {
  .column_detail_item_block .column_detail_item_list .column_detail_item_item .column_detail_item_item_detail_block .column_detail_item_item_text {
    font-size: 13px;
    line-height: 26px;
    max-height: calc(26px*2);
  }
}

@media only screen and (min-width: 960px) {
  .column_detail_item_block .column_detail_item_list .column_detail_item_item:hover .column_detail_item_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_share_block {
  padding: 60px 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 640px) {
  .column_share_block {
    padding: 40px 20px;
    display: block;
  }
}

.column_share_block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.column_share_block .column_share_link {
  width: calc((100% - 40px) /2);
  padding: 16px;
  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: 1px solid #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .column_share_block .column_share_link {
    width: 100%;
    font-size: 14px;
    margin: 0 0 16px;
  }
}

@media only screen and (max-width: 640px) {
  .column_share_block .column_share_link:last-child {
    margin: 0 0 0;
  }
}

.column_share_block .column_share_link img {
  width: 30px;
  margin: 0 10px 0 0;
}

@media only screen and (max-width: 640px) {
  .column_share_block .column_share_link img {
    width: 24px;
    margin: 0 8px 0 0;
  }
}

@media only screen and (min-width: 960px) {
  .column_share_block .column_share_link:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

/*recommend_category_column*/
.recommend_category_column {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .recommend_category_column {
    padding: 60px 0 80px;
  }
}

.recommend_category_column:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .recommend_category_column:after {
    width: 195px;
    height: 223px;
  }
}

/*recommend_brand_column*/
.recommend_brand_column {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .recommend_brand_column {
    padding: 60px 0 80px;
  }
}

.recommend_brand_column:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -30px;
  width: 260px;
  height: 452px;
  background-image: url(../images/common/bg_img_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .recommend_brand_column:before {
    width: 172px;
    height: 299px;
    right: -26px;
  }
}

.recommend_brand_column:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -30px;
  width: 313px;
  height: 316px;
  background-image: url(../images/common/bg_img_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .recommend_brand_column:after {
    width: 187px;
    height: 189px;
  }
}

/*recommend_category_item*/
.recommend_category_item {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .recommend_category_item {
    padding: 60px 0 80px;
  }
}

.recommend_category_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .recommend_category_item:after {
    width: 195px;
    height: 223px;
  }
}

/*recommend_brand_item*/
.recommend_brand_item {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .recommend_brand_item {
    padding: 60px 0 80px;
  }
}

.recommend_brand_item:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -30px;
  width: 260px;
  height: 452px;
  background-image: url(../images/common/bg_img_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .recommend_brand_item:before {
    width: 172px;
    height: 299px;
    right: -26px;
  }
}

.recommend_brand_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -30px;
  width: 313px;
  height: 316px;
  background-image: url(../images/common/bg_img_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .recommend_brand_item:after {
    width: 187px;
    height: 189px;
  }
}

/*=================

      mypage.scss

=======================*/
.my_page_section {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .my_page_section {
    padding: 60px 0 80px;
  }
}

.my_page_section:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .my_page_section:after {
    width: 195px;
    height: 223px;
  }
}

.mypage_main_menu_btn_wrap {
  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;
  width: 100%;
  margin: 0 0 24px;
}

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

.mypage_main_menu_btn_wrap .mypage_main_menu_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 300px;
  height: 80px;
  border-radius: 4px;
  background-color: #CAC1B9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  margin: 0 16px 16px;
}

@media only screen and (max-width: 640px) {
  .mypage_main_menu_btn_wrap .mypage_main_menu_btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 8px;
    font-size: 16px;
    height: 56px;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_main_menu_btn_wrap .mypage_main_menu_btn:last-child {
    margin: 0 auto 0;
  }
}

.mypage_main_menu_btn_wrap .mypage_main_menu_btn img {
  width: 20px;
  margin: 0 14px 0 0;
}

@media only screen and (max-width: 640px) {
  .mypage_main_menu_btn_wrap .mypage_main_menu_btn img {
    width: 18px;
    margin: 0 8px 0 0;
  }
}

.mypage_menu_list_box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 28px 24px 48px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.mypage_menu_list_box .mypage_menu_list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.mypage_menu_list_box .mypage_menu_list .mypage_menu_item .mypage_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  border-bottom: 1px solid #BABABA;
}

@media only screen and (max-width: 640px) {
  .mypage_menu_list_box .mypage_menu_list .mypage_menu_item .mypage_menu_link {
    font-size: 14px;
  }
}

.mypage_menu_list_box .mypage_menu_list .mypage_menu_item .mypage_menu_link:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 6px;
  height: 9px;
  background-image: url(../images/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.mypage_menu_list_box .mypage_menu_list .mypage_menu_item .mypage_menu_link img {
  width: 18px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .mypage_menu_list_box .mypage_menu_list .mypage_menu_item .mypage_menu_link img {
    width: 16px;
    margin: 0 6px 0 0;
  }
}

/*mypage_bbs*/
.mypage_bbs_note_box {
  padding: 40px;
  background-color: #FFF;
  border-radius: 20px;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_note_box {
    padding: 30px 20px;
    margin: 0 0 40px;
  }
}

.mypage_bbs_note_box .mypage_bbs_note_list {
  max-width: 900px;
  margin: 0 auto;
}

.mypage_bbs_note_box .mypage_bbs_note_list .mypage_bbs_note_item {
  padding: 0 0 16px 18px;
  margin: 0 0 16px;
  border-bottom: 1px dashed #323335;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_note_box .mypage_bbs_note_list .mypage_bbs_note_item {
    font-size: 14px;
  }
}

.mypage_bbs_note_box .mypage_bbs_note_list .mypage_bbs_note_item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_note_box .mypage_bbs_note_list .mypage_bbs_note_item::before {
    top: 10px;
  }
}

.mypage_bbs_note_box .mypage_bbs_note_list .mypage_bbs_note_item a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mypage_bbs_note_box .mypage_bbs_note_list .mypage_bbs_note_item:last-child {
  margin: 0 0 0;
}

.mypage_bbs_box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px 40px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_box {
    padding: 30px 20px;
  }
}

.mypage_bbs_box .mypage_bbs_box_inner {
  max-width: 900px;
  margin: 0 auto;
}

.mypage_bbs_box .mypage_bbs_box_sort_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 18px;
  margin: 0 0 32px;
  border-bottom: 1px solid #BABABA;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_box .mypage_bbs_box_sort_search {
    display: block;
  }
}

.mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_sort_select {
  outline: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: url(../images/common/icon_arrow_bottom.svg) 90% center no-repeat #FFF;
  background-size: 11px;
  width: 180px;
  height: 38px;
  padding: 0 10px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_sort_select {
    height: 32px;
    margin: 0 0 16px;
  }
}

.mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_search_wrap {
  position: relative;
  width: 260px;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_search_wrap {
    width: 100%;
  }
}

.mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_search_wrap .mypage_bbs_box_search_input {
  width: 100%;
  height: 38px;
  padding: 5px 30px 5px 10px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #FAF7F5;
  border-radius: 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

.mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_search_wrap .mypage_bbs_box_search_input::-webkit-input-placeholder {
  color: #BABABA;
}

.mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_search_wrap .mypage_bbs_box_search_input::-ms-input-placeholder {
  color: #BABABA;
}

.mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_search_wrap .mypage_bbs_box_search_input::placeholder {
  color: #BABABA;
}

.mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_search_wrap .mypage_bbs_box_search_btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 16px;
}

.mypage_bbs_box .mypage_bbs_box_sort_search .mypage_bbs_box_search_wrap .mypage_bbs_box_search_btn img {
  width: 100%;
}

.mypage_bbs_box .mypage_bbs_creat_btn {
  width: 168px;
  height: 30px;
  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;
  margin: 0 0 32px auto;
  border-radius: 20px;
  background-color: #CAC1B9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
}

.mypage_bbs_box .mypage_bbs_creat_btn img {
  width: 4px;
  margin: 0 0 0 16px;
}

@media only screen and (min-width: 960px) {
  .mypage_bbs_box .mypage_bbs_creat_btn:hover {
    opacity: 0.7;
  }
}

.mypage_bbs_box .mypage_bbs_search_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item {
  margin: 0 0 32px;
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item:last-child {
  margin: 0 0 0;
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 44px 0 0;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link {
    padding: 0 24px 0 0;
  }
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 6px;
  height: 9px;
  background-image: url(../images/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_img {
  width: 160px;
  height: 100px;
  margin: 0 40px 0 0;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_img {
    width: 100px;
    height: 60px;
    margin: 0 16px 0 0;
  }
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_detail {
  width: calc(100% - 200px);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_detail {
    width: calc(100% - 116px);
  }
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_detail .mypage_bbs_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*1);
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_detail .mypage_bbs_item_title {
    font-size: 14px;
    line-height: 21px;
    max-height: calc(21px*1);
  }
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_detail .mypage_bbs_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*2);
  margin: 0 0 8px;
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_detail .mypage_bbs_item_comment_total {
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
}

.mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link .mypage_bbs_item_detail .mypage_bbs_item_comment_total img {
  width: 16px;
  margin: 0 5px 0 0;
}

@media only screen and (min-width: 960px) {
  .mypage_bbs_box .mypage_bbs_list .mypage_bbs_item .mypage_bbs_link:hover .mypage_bbs_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*mypage_bbs_detail*/
.mypage_bbs_detail_box {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.mypage_bbs_detail_box .mypage_bbs_detail_title_block {
  position: relative;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 72px 40px;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_title_block {
    padding: 32px 16px;
  }
}

.mypage_bbs_detail_box .mypage_bbs_detail_title_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.mypage_bbs_detail_box .mypage_bbs_detail_title_block .mypage_bbs_detail_title_block_inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.mypage_bbs_detail_box .mypage_bbs_detail_title_block .mypage_bbs_detail_title_block_inner .mypage_bbs_detail_title_block_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 40px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_title_block .mypage_bbs_detail_title_block_inner .mypage_bbs_detail_title_block_title {
    font-size: 20px;
    margin: 0 0 32px;
  }
}

.mypage_bbs_detail_box .mypage_bbs_detail_title_block .mypage_bbs_detail_title_block_inner .mypage_bbs_detail_title_block_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_title_block .mypage_bbs_detail_title_block_inner .mypage_bbs_detail_title_block_text {
    font-size: 14px;
  }
}

.mypage_bbs_detail_box .mypage_bbs_detail_chat_block {
  padding: 44px 40px;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_chat_block {
    padding: 24px 16px;
  }
}

.mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner {
  max-width: 900px;
  margin: 0 auto;
}

.mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 0 16px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BABABA;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn {
    display: block;
    padding: 0 0 8px;
    margin: 0 0 16px;
  }
}

.mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_select_num {
  width: calc(100% - 224px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_select_num {
    width: 100%;
    margin: 0 0 16px;
  }
}

.mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_select_num .mypage_bbs_detail_chat_select {
  outline: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: url(../images/common/icon_arrow_bottom.svg) 90% center no-repeat #FFF;
  background-size: 11px;
  width: 180px;
  height: 38px;
  padding: 0 10px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_select_num .mypage_bbs_detail_chat_select {
    height: 32px;
  }
}

.mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_select_num .mypage_bbs_detail_chat_num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
}

.mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_btn {
  width: 200px;
  height: 30px;
  margin: 0 0 0 24px;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  border-radius: 20px;
  background-color: #CAC1B9;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_btn {
    margin: 0 0 0 0;
  }
}

.mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_btn img {
  width: 6px;
  margin: 0 0 0 10px;
}

@media only screen and (min-width: 960px) {
  .mypage_bbs_detail_box .mypage_bbs_detail_chat_block .mypage_bbs_detail_chat_block_inner .mypage_bbs_detail_chat_select_num_btn .mypage_bbs_detail_chat_btn:hover {
    opacity: 0.7;
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item {
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item {
    margin: 0 0 16px;
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item:last-child {
  margin: 0 0 0;
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_img {
  width: 60px;
  height: 60px;
  margin: 0 20px 0 0;
  border-radius: 50%;
  border: 2px solid #FFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_img {
    width: 50px;
    height: 50px;
    margin: 0 16px 0 0;
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_detail {
  width: calc(100% - 80px);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_detail {
    width: calc(100% - 66px);
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_detail .mypage_bbs_detail_chat_item_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 8px;
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_detail .mypage_bbs_detail_chat_item_comment {
  border: 1px solid #BABABA;
  background-color: #FFF;
  border-radius: 0 20px 20px 20px;
  padding: 16px 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_detail .mypage_bbs_detail_chat_item_comment {
    padding: 12px 10px;
    font-size: 13px;
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_detail .mypage_bbs_detail_chat_item_date {
  text-align: right;
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_inner .mypage_bbs_detail_chat_item_detail .mypage_bbs_detail_chat_item_date {
    font-size: 11px;
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail {
  width: calc(100% - 80px);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail {
    width: calc(100% - 66px);
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail .mypage_bbs_detail_chat_item_mypost_name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 8px;
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail .mypage_bbs_detail_chat_item_mypost_comment {
  background-color: #F2F0EE;
  border-radius: 20px 0 20px 20px;
  padding: 16px 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail .mypage_bbs_detail_chat_item_mypost_comment {
    padding: 12px 10px;
    font-size: 13px;
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail .mypage_bbs_detail_chat_item_mypost_delete_date {
  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;
  width: 100%;
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail .mypage_bbs_detail_chat_item_mypost_delete_date .mypage_bbs_detail_chat_item_mypost_delete {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail .mypage_bbs_detail_chat_item_mypost_delete_date .mypage_bbs_detail_chat_item_mypost_date {
  text-align: right;
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_detail .mypage_bbs_detail_chat_item_mypost_delete_date .mypage_bbs_detail_chat_item_mypost_date {
    font-size: 11px;
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_img {
  width: 60px;
  height: 60px;
  margin: 0 0 0 20px;
  border-radius: 50%;
  border: 2px solid #FFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_img {
    width: 50px;
    height: 50px;
    margin: 0 0 0 16px;
  }
}

.mypage_bbs_detail_chat_list .mypage_bbs_detail_chat_item .mypage_bbs_detail_chat_item_mypost .mypage_bbs_detail_chat_item_mypost_img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.mypage_bbs_chat_more_btn {
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 30px;
  background-color: #CAC1B9;
  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;
  text-align: center;
  padding: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 48px auto 0;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_chat_more_btn {
    font-size: 14px;
    height: 56px;
    margin: 32px auto 0;
  }
}

.mypage_bbs_detail_post_box {
  padding: 20px;
  background-color: #F2F0EE;
  margin: 96px 0 0;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_post_box {
    padding: 8px;
    margin: 48px 0 0;
  }
}

.mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_textarea {
  width: 100%;
  height: 200px;
  background-color: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
  margin: 0 0 20px;
  border: none;
  outline: none;
  padding: 20px;
  resize: none;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_textarea {
    padding: 10px;
    height: 240px;
  }
}

.mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_textarea::-webkit-input-placeholder {
  color: #838383;
}

.mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_textarea::-ms-input-placeholder {
  color: #838383;
}

.mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_textarea::placeholder {
  color: #838383;
}

.mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_submit_btn {
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 40px;
  background-color: #CAC1B9;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  margin: 0 auto;
  padding: 4px 24px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_submit_btn {
    font-size: 14px;
    height: 56px;
  }
}

.mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_submit_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -8px;
  width: 28px;
  height: 1px;
  background-color: #323335;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .mypage_bbs_detail_post_box .mypage_bbs_detail_post_box_submit_btn:hover:after {
    right: -16px;
  }
}

.mypage_bbs_detail_delete_popup {
  position: fixed;
  z-index: 200000;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: none;
}

.mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner {
  padding: 80px 40px;
  border-radius: 20px;
  background-color: #FFF;
  max-width: 600px;
  margin: 0 16px;
  max-height: 80vh;
  overflow-y: scroll;
  -webkit-box-shadow: 0px 0px 20px rgba(100, 100, 100, 0.8);
  box-shadow: 0px 0px 20px rgba(100, 100, 100, 0.8);
  position: relative;
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner {
    padding: 60px 24px 40px;
  }
}

.mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 48px;
}

.mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_btn_wrap {
  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;
}

@media only screen and (max-width: 840px) {
  .mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_btn_wrap {
    display: block;
  }
}

.mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_btn_wrap .mypage_bbs_detail_delete_popup_btn {
  width: 300px;
  height: 56px;
  background-color: #CAC1B9;
  border-radius: 30px;
  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;
  margin: 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  text-align: center;
}

@media only screen and (max-width: 840px) {
  .mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_btn_wrap .mypage_bbs_detail_delete_popup_btn {
    width: 280px;
    height: 48px;
    font-size: 14px;
    margin: 0 auto 16px;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_btn_wrap .mypage_bbs_detail_delete_popup_btn {
    width: 248px;
  }
}

.mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_btn_wrap .mypage_bbs_detail_delete_popup_cancel_btn {
  width: 300px;
  height: 56px;
  background-color: #FFF;
  border: 1px solid #323335;
  border-radius: 30px;
  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;
  margin: 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  text-align: center;
}

@media only screen and (max-width: 840px) {
  .mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_btn_wrap .mypage_bbs_detail_delete_popup_cancel_btn {
    width: 280px;
    height: 48px;
    font-size: 14px;
    margin: 0 auto 0;
  }
}

@media only screen and (max-width: 640px) {
  .mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_btn_wrap .mypage_bbs_detail_delete_popup_cancel_btn {
    width: 248px;
  }
}

.mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_close_btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
}

.mypage_bbs_detail_delete_popup .mypage_bbs_detail_delete_popup_inner .mypage_bbs_detail_delete_popup_close_btn img {
  width: 100%;
}

.mypage_box_wrap {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 48px 24px;
}

@media only screen and (max-width: 640px) {
  .mypage_box_wrap {
    padding: 24px 16px;
  }
}

.mypage_box_wrap .mypage_box_inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.mypage_profile_list .mypage_profile_item {
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .mypage_profile_list .mypage_profile_item {
    margin: 0 0 32px;
  }
}

.mypage_profile_list .mypage_profile_item:last-child {
  margin: 0 0 0;
}

.mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 0 16px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BABABA;
}

@media only screen and (max-width: 640px) {
  .mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn {
    display: block;
    padding: 0 0 8px;
    margin: 0 0 16px;
  }
}

.mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn .mypage_profile_item_title {
  width: calc(100% - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn .mypage_profile_item_title {
    width: 100%;
    font-size: 16px;
    margin: 0 0 8px;
  }
}

.mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn .mypage_profile_item_title img {
  width: 18px;
  margin: 0 10px 0 0;
}

.mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn .mypage_profile_item_btn {
  width: 100px;
  height: 34px;
  margin: 0 0 0 20px;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  border: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  .mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn .mypage_profile_item_btn {
    height: 28px;
    font-size: 12px;
    margin: 0 0 0 0;
  }
}

.mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn .mypage_profile_item_btn img {
  width: 14px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .mypage_profile_list .mypage_profile_item .mypage_profile_item_title_btn .mypage_profile_item_btn img {
    width: 12px;
    margin: 0 4px 0 0;
  }
}

.mypage_profile_list .mypage_profile_item .mypage_profile_sub_list .mypage_profile_sub_item {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .mypage_profile_list .mypage_profile_item .mypage_profile_sub_list .mypage_profile_sub_item {
    display: block;
  }
}

.mypage_profile_list .mypage_profile_item .mypage_profile_sub_list .mypage_profile_sub_item .mypage_profile_sub_item_title {
  width: 160px;
  margin: 0 20px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_profile_list .mypage_profile_item .mypage_profile_sub_list .mypage_profile_sub_item .mypage_profile_sub_item_title {
    width: 100%;
    margin: 0 0 8px 0;
    font-size: 14px;
  }
}

.mypage_profile_list .mypage_profile_item .mypage_profile_sub_list .mypage_profile_sub_item .mypage_profile_sub_item_text {
  width: calc(100% - 180px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_profile_list .mypage_profile_item .mypage_profile_sub_list .mypage_profile_sub_item .mypage_profile_sub_item_text {
    width: 100%;
    font-size: 14px;
  }
}

.mypage_profile_list .mypage_profile_item .mypage_profile_sub_list .mypage_profile_sub_item .mypage_profile_sub_item_prof_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #FFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.mypage_profile_list .mypage_profile_item .mypage_profile_sub_list .mypage_profile_sub_item .mypage_profile_sub_item_prof_icon img {
  width: 100%;
  height: 100%;
}

/*mypage history*/
.mypage_history_list .mypage_history_item {
  margin: 0 0 60px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_list .mypage_history_item {
    margin: 0 0 40px;
  }
}

.mypage_history_list .mypage_history_item:last-child {
  margin: 0 0 0;
}

.mypage_history_list .mypage_history_item .mypage_history_item_date_btn {
  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;
  width: 100%;
  padding: 0 0 10px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BABABA;
}

@media only screen and (max-width: 640px) {
  .mypage_history_list .mypage_history_item .mypage_history_item_date_btn {
    padding: 0 0 8px;
    margin: 0 0 16px;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_item_date_btn .mypage_history_item_date {
  width: calc(100% - 92px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_list .mypage_history_item .mypage_history_item_date_btn .mypage_history_item_date {
    font-size: 16px;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_item_date_btn .mypage_history_item_date img {
  width: 18px;
  margin: 0 10px 0 0;
}

.mypage_history_list .mypage_history_item .mypage_history_item_date_btn .mypage_history_item_btn {
  width: 72px;
  height: 34px;
  margin: 0 0 0 20px;
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  border: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  .mypage_history_list .mypage_history_item .mypage_history_item_date_btn .mypage_history_item_btn {
    height: 28px;
    font-size: 12px;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_item_date_btn .mypage_history_item_btn img {
  width: 14px;
  margin: 0 8px 0 0;
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item:last-child {
  margin: 0 0 0;
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_title {
  width: 160px;
  margin: 0 20px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_title {
    width: 60px;
    font-size: 14px;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_text {
  width: calc(100% - 180px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_text {
    width: calc(100% - 80px);
    font-size: 14px;
  }
}

.mypage_history_detail_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 10px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BABABA;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_date {
    font-size: 16px;
    padding: 0 0 8px;
    margin: 0 0 16px;
  }
}

.mypage_history_detail_date img {
  width: 18px;
  margin: 0 10px 0 0;
}

.mypage_history_detail_cancel_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 4px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_cancel_btn {
    font-size: 13px;
  }
}

.mypage_history_detail_cancel_btn_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #838383;
  line-height: 2;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_cancel_btn_text {
    font-size: 12px;
    margin: 0 0 16px;
  }
}

.mypage_history_detail_list {
  margin: 0 0 60px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_list {
    margin: 0 0 40px;
  }
}

.mypage_history_detail_list .mypage_history_detail_item {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.mypage_history_detail_list .mypage_history_detail_item:last-child {
  margin: 0 0 0;
}

.mypage_history_detail_list .mypage_history_detail_item .mypage_history_detail_item_title {
  width: 160px;
  margin: 0 20px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_list .mypage_history_detail_item .mypage_history_detail_item_title {
    width: 60px;
    font-size: 14px;
  }
}

.mypage_history_detail_list .mypage_history_detail_item .mypage_history_detail_item_text {
  width: calc(100% - 180px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_list .mypage_history_detail_item .mypage_history_detail_item_text {
    width: calc(100% - 80px);
    font-size: 14px;
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #BABABA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item {
    display: block;
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block {
    width: 100%;
    margin: 0 0 10px;
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_img {
  width: 100px;
  height: 100px;
  margin: 0 24px 0 0;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_img {
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_title_wrap {
  width: calc(100% - 124px);
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_title_wrap {
    width: calc(100% - 80px);
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_title_wrap .mypage_history_detail_item_item_label {
  display: inline-block;
  padding: 2px 6px;
  background-color: #FFF;
  border: 2px solid #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 4px;
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_title_wrap .mypage_history_detail_item_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_title_wrap .mypage_history_detail_item_item_title {
    font-size: 14px;
    line-height: 21px;
    max-height: calc(21px*2);
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_title_wrap .mypage_history_detail_item_item_title_info {
  margin: 8px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #838383;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block .mypage_history_detail_item_item_title_wrap .mypage_history_detail_item_item_title_info {
    margin: 4px 0 0;
    font-size: 11px;
  }
}

@media only screen and (min-width: 960px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_detail_block:hover .mypage_history_detail_item_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block {
  width: 50%;
  padding: 0 0 0 40px;
  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;
}

@media only screen and (max-width: 840px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block {
    width: 100%;
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block .mypage_history_detail_item_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block .mypage_history_detail_item_price {
    font-size: 24px;
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block .mypage_history_detail_item_price span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block .mypage_history_detail_item_price span {
    font-size: 12px;
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block .mypage_history_detail_item_num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block .mypage_history_detail_item_num {
    font-size: 16px;
    margin: 0 0 0 10px;
  }
}

.mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block .mypage_history_detail_item_num span {
  font-size: 24px;
  margin: 0 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_item_list .mypage_history_detail_item_item .mypage_history_detail_item_price_block .mypage_history_detail_item_num span {
    font-size: 20px;
  }
}

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

.mypage_history_detail_total_block .mypage_history_detail_postage {
  margin: 0 20px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_total_block .mypage_history_detail_postage {
    font-size: 13px;
  }
}

.mypage_history_detail_total_block .mypage_history_detail_postage .postage_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_total_block .mypage_history_detail_postage .postage_price {
    font-size: 16px;
  }
}

.mypage_history_detail_total_block .mypage_history_detail_postage .tax {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_total_block .mypage_history_detail_postage .tax {
    font-size: 12px;
  }
}

.mypage_history_detail_total_block .mypage_history_detail_total_price {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_total_block .mypage_history_detail_total_price {
    font-size: 14px;
  }
}

.mypage_history_detail_total_block .mypage_history_detail_total_price .total_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_total_block .mypage_history_detail_total_price .total_price {
    font-size: 24px;
  }
}

.mypage_history_detail_total_block .mypage_history_detail_total_price .tax {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #838383;
}

@media only screen and (max-width: 640px) {
  .mypage_history_detail_total_block .mypage_history_detail_total_price .tax {
    font-size: 12px;
  }
}

/*=================

      notation.scss

=======================*/
.notation_list .notation_item {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .notation_list .notation_item {
    display: block;
    margin: 0 0 16px;
    padding: 0 0 16px;
  }
}

.notation_list .notation_item .notation_item_title {
  width: 320px;
  margin: 0 40px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .notation_list .notation_item .notation_item_title {
    width: 200px;
  }
}

@media only screen and (max-width: 640px) {
  .notation_list .notation_item .notation_item_title {
    width: 100%;
    margin: 0 0 8px 0;
  }
}

.notation_list .notation_item .notation_item_text {
  width: calc(100% - 360px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .notation_list .notation_item .notation_item_text {
    width: calc(100% - 240px);
  }
}

@media only screen and (max-width: 640px) {
  .notation_list .notation_item .notation_item_text {
    width: 100%;
    font-size: 13px;
  }
}

.notation_list .notation_item .notation_item_text a {
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/*=================

      guide.scss

=======================*/
.guide_list .guide_item {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .guide_list .guide_item {
    display: block;
    margin: 0 0 16px;
    padding: 0 0 16px;
  }
}

.guide_list .guide_item .guide_item_title {
  width: 320px;
  margin: 0 40px 0 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .guide_list .guide_item .guide_item_title {
    width: 200px;
  }
}

@media only screen and (max-width: 640px) {
  .guide_list .guide_item .guide_item_title {
    font-size: 14px;
    width: 100%;
    margin: 0 0 8px 0;
  }
}

.guide_list .guide_item .guide_item_text {
  width: calc(100% - 360px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .guide_list .guide_item .guide_item_text {
    width: calc(100% - 240px);
  }
}

@media only screen and (max-width: 640px) {
  .guide_list .guide_item .guide_item_text {
    width: 100%;
    font-size: 14px;
  }
}

.guide_list .guide_item .guide_item_text a {
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/*=================

      faq.scss

=======================*/
.faq_list .faq_item {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #E6E6E6;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item {
    padding: 0 0 16px;
    margin: 0 0 16px;
  }
}

.faq_list .faq_item .faq_item_q_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_q_block {
    margin: 0 0 16px;
  }
}

.faq_list .faq_item .faq_item_q_block .faq_item_q_icon {
  width: 40px;
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_q_block .faq_item_q_icon {
    width: 32px;
    font-size: 18px;
  }
}

.faq_list .faq_item .faq_item_q_block .faq_item_q_title {
  width: calc(100% - 40px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_q_block .faq_item_q_title {
    width: calc(100% - 32px);
    font-size: 15px;
  }
}

.faq_list .faq_item .faq_item_a_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_a_block {
    padding: 0 0 0 32px;
  }
}

.faq_list .faq_item .faq_item_a_block .faq_item_a_icon {
  width: 40px;
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_a_block .faq_item_a_icon {
    width: 32px;
    font-size: 18px;
  }
}

.faq_list .faq_item .faq_item_a_block .faq_item_a_text {
  width: calc(100% - 40px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .faq_list .faq_item .faq_item_a_block .faq_item_a_text {
    width: calc(1005 - 32px);
    font-size: 13px;
  }
}

/*=================

      policy.scss

=======================*/
.policy_block_wrap .policy_block {
  margin: 0 0 40px;
}

.policy_block_wrap .policy_block:last-child {
  margin: 0 0 0;
}

.policy_block_wrap .policy_block .policy_block_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 24px;
}

.policy_block_wrap .policy_block .policy_block_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
}

.policy_block_wrap .policy_block .policy_block_text.mb_20 {
  margin: 0 0 20px;
}

.policy_block_wrap .policy_block .policy_block_list {
  padding: 0 0 0 20px;
  list-style: disc;
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item {
  margin: 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item:last-child {
  margin: 0 0 0;
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item .policy_block_sub_list {
  padding: 0 0 0 20px;
  list-style: disc;
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item .policy_block_sub_list .policy_block_sub_itme {
  margin: 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 2;
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item .policy_block_sub_list .policy_block_sub_itme:last-child {
  margin: 0 0 0;
}

/*=================

      login.scss

=======================*/
.login_register_block {
  margin: 64px 0 0;
  padding: 48px 0 0;
  border-top: 1px solid #BABABA;
}

@media only screen and (max-width: 640px) {
  .login_register_block {
    margin: 32px 0 0;
    padding: 24px 0 0;
  }
}

.login_register_block .login_register_block_text {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .login_register_block .login_register_block_text {
    font-size: 14px;
  }
}

.login_register_block .login_register_btn {
  width: 100%;
  max-width: 400px;
  height: 60px;
  border-radius: 40px;
  background: linear-gradient(130deg, #d5ac5f 0%, #bc9854 100%);
  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;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  margin: 0 auto;
  padding: 4px 24px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .login_register_block .login_register_btn {
    font-size: 14px;
    height: 56px;
  }
}

.login_register_block .login_register_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -8px;
  width: 28px;
  height: 1px;
  background-color: #323335;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 960px) {
  .login_register_block .login_register_btn:hover:after {
    right: -16px;
  }
}

/*=================

      newspaper.scss

=======================*/
.newspaper_category_search_block .newspaper_category_search_block_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 0 32px;
}

.newspaper_category_search_block .newspaper_category_search_block_title_wrap .newspaper_category_search_block_title {
  width: 282px;
  white-space: nowrap;
  padding: 0 0 0 10px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .newspaper_category_search_block .newspaper_category_search_block_title_wrap .newspaper_category_search_block_title {
    font-size: 18px;
    width: 260px;
  }
}

.newspaper_category_search_block .newspaper_category_search_block_title_wrap .newspaper_category_search_block_title::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(../images/shop/bg_icon_search.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: -6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.newspaper_category_search_block .newspaper_category_search_block_title_wrap .newspaper_category_search_block_title_border {
  width: calc(100% - 282px);
  height: 1px;
  background-color: #323335;
}

@media only screen and (max-width: 640px) {
  .newspaper_category_search_block .newspaper_category_search_block_title_wrap .newspaper_category_search_block_title_border {
    width: calc(100% - 260px);
  }
}

.newspaper_category_search_block .newspaper_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -24px;
}

@media only screen and (max-width: 840px) {
  .newspaper_category_search_block .newspaper_category_list {
    display: block;
    margin: 0 0 0;
  }
}

.newspaper_category_search_block .newspaper_category_list .newspaper_category_item {
  margin: 0 40px 24px 0;
  width: calc((100% - 40px) /2);
}

@media only screen and (max-width: 840px) {
  .newspaper_category_search_block .newspaper_category_list .newspaper_category_item {
    margin: 0 0 24px 0;
    width: 100%;
  }
}

.newspaper_category_search_block .newspaper_category_list .newspaper_category_item:nth-of-type(2n) {
  margin: 0 0 24px 0;
}

@media only screen and (max-width: 840px) {
  .newspaper_category_search_block .newspaper_category_list .newspaper_category_item:last-child {
    margin: 0 0 0 0;
  }
}

.newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #E6E6E6;
  background-color: rgba(255, 255, 255, 0.8);
}

.newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link .newspaper_category_item_img {
  width: 100px;
  height: 100px;
  margin: 0 24px 0 0;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link .newspaper_category_item_img {
    width: 80px;
    height: 80px;
    margin: 0 16px 0 0;
  }
}

.newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link .newspaper_category_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link .newspaper_category_item_detail {
  width: calc(100% - 124px);
}

@media only screen and (max-width: 640px) {
  .newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link .newspaper_category_item_detail {
    width: calc(100% - 96px);
  }
}

.newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link .newspaper_category_item_detail .newspaper_category_item_title {
  padding: 0 0 8px;
  margin: 0 0 16px;
  border-bottom: 1px solid #E6E6E6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link .newspaper_category_item_detail .newspaper_category_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #838383;
  line-height: 1.5;
}

@media only screen and (min-width: 960px) {
  .newspaper_category_search_block .newspaper_category_list .newspaper_category_item .newspaper_category_link:hover .newspaper_category_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.recommend_newspaper {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .recommend_newspaper {
    padding: 60px 0 80px;
  }
}

.recommend_newspaper:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .recommend_newspaper:after {
    width: 195px;
    height: 223px;
  }
}

.recommend_newspaper_slide_wrap {
  width: 100%;
  padding: 0 0 30px;
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item {
  margin: 0 20px;
}

@media only screen and (max-width: 640px) {
  .recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item {
    margin: 0 8px;
  }
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap {
  position: relative;
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_img_wrap {
  display: block;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_img_wrap {
    height: 260px;
  }
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_img_wrap .recommend_newspaper_slide_item_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  max-width: 620px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 24px;
}

@media only screen and (max-width: 640px) {
  .recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail {
    width: 100%;
    padding: 16px;
  }
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail .recommend_newspaper_slide_item_category_date {
  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;
  width: 100%;
  margin: 0 0 10px;
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail .recommend_newspaper_slide_item_category_date .recommend_newspaper_slide_item_category {
  max-width: calc(100% - 100px);
  display: inline-block;
  padding: 4px 20px;
  background-color: #323335;
  border-radius: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail .recommend_newspaper_slide_item_category_date .recommend_newspaper_slide_item_category {
    font-size: 13px;
  }
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail .recommend_newspaper_slide_item_category_date .recommend_newspaper_slide_item_date {
  width: 100px;
  text-align: right;
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #838383;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail .recommend_newspaper_slide_item_category_date .recommend_newspaper_slide_item_date {
    font-size: 15px;
  }
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail .recommend_newspaper_slide_item_title_link {
  display: block;
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail .recommend_newspaper_slide_item_title_link .recommend_newspaper_slide_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 27px;
  max-height: calc(27px*2);
}

@media only screen and (max-width: 640px) {
  .recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_detail .recommend_newspaper_slide_item_title_link .recommend_newspaper_slide_item_title {
    font-size: 16px;
    -webkit-line-clamp: 1;
    line-height: 24px;
    max-height: calc(24px*1);
  }
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_new {
  position: absolute;
  top: 16px;
  left: -8px;
  width: 62px;
  z-index: 10;
}

.recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap .recommend_newspaper_slide_item_new img {
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .recommend_newspaper_slide_wrap .recommend_newspaper_slide .recommend_newspaper_slide_item .recommend_newspaper_slide_item_wrap:hover .recommend_newspaper_slide_item_img_wrap .recommend_newspaper_slide_item_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.new_newspaper {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .new_newspaper {
    padding: 60px 0 80px;
  }
}

.new_newspaper:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -30px;
  width: 260px;
  height: 452px;
  background-image: url(../images/common/bg_img_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .new_newspaper:before {
    width: 172px;
    height: 299px;
    right: -26px;
  }
}

.new_newspaper:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -30px;
  width: 313px;
  height: 316px;
  background-image: url(../images/common/bg_img_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .new_newspaper:after {
    width: 187px;
    height: 189px;
  }
}

.newspaper_box_list .newspaper_box_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  border: 1px solid #E6E6E6;
  width: 100%;
  margin: 0 0 40px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (max-width: 640px) {
  .newspaper_box_list .newspaper_box_item {
    display: block;
    padding: 16px;
    margin: 0 0 24px;
  }
}

.newspaper_box_list .newspaper_box_item:last-child {
  margin: 0 0 0;
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_img {
  display: block;
  overflow: hidden;
  width: 50%;
  height: 260px;
}

@media only screen and (max-width: 640px) {
  .newspaper_box_list .newspaper_box_item .newspaper_box_item_img {
    width: 100%;
    height: 200px;
    margin: 0 0 16px;
  }
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_new {
  position: absolute;
  top: 16px;
  left: -8px;
  width: 62px;
  z-index: 10;
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_new img {
  width: 100%;
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_detail {
  width: 50%;
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .newspaper_box_list .newspaper_box_item .newspaper_box_item_detail {
    width: 100%;
    padding: 0 0 0 0;
  }
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_category {
  display: inline-block;
  padding: 4px 20px;
  border-radius: 30px;
  background-color: #323335;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_category {
    padding: 4px 12px;
    font-size: 13px;
    margin: 0 0 12px;
  }
}

@media only screen and (min-width: 960px) {
  .newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_category:hover {
    opacity: 0.7;
  }
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link {
  display: block;
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link .newspaper_box_item_title {
  padding: 0 0 8px;
  border-bottom: 1px solid #E6E6E6;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link .newspaper_box_item_title {
    margin: 0 0 12px;
  }
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link .newspaper_box_item_title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 30px;
  max-height: calc(30px*2);
}

@media only screen and (max-width: 640px) {
  .newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link .newspaper_box_item_title span {
    font-size: 16px;
    line-height: 26px;
    max-height: calc(26px*2);
  }
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link .newspaper_box_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
  max-height: calc(28px*2);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link .newspaper_box_item_text {
    font-size: 13px;
    line-height: 26px;
    max-height: calc(26px*2);
    margin: 0 0 12px;
  }
}

.newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link .newspaper_box_item_date {
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #838383;
  line-height: 1.5;
  text-align: right;
}

@media only screen and (max-width: 640px) {
  .newspaper_box_list .newspaper_box_item .newspaper_box_item_detail .newspaper_box_item_detail_link .newspaper_box_item_date {
    font-size: 15px;
  }
}

@media only screen and (min-width: 960px) {
  .newspaper_box_list .newspaper_box_item:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .newspaper_box_list .newspaper_box_item:hover .newspaper_box_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.newspaper_search {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .newspaper_search {
    padding: 60px 0 80px;
  }
}

.newspaper_search:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .newspaper_search:after {
    width: 195px;
    height: 223px;
  }
}

/*newspaper_detail*/
.newspaper_detail_date_category {
  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;
  width: 100%;
}

.newspaper_detail_date_category .newspaper_detail_date {
  font-family: 'BLACKJAR', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #838383;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 32px 20px 0;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_date_category .newspaper_detail_date {
    font-size: 16px;
    margin: 0 20px 20px 0;
  }
}

.newspaper_detail_date_category .newspaper_detail_category {
  display: inline-block;
  padding: 4px 20px;
  background-color: #323335;
  border-radius: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_date_category .newspaper_detail_category {
    padding: 4px 12px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 960px) {
  .newspaper_detail_date_category .newspaper_detail_category:hover {
    opacity: 0.7;
  }
}

.newspaper_detail_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 20px;
  border-bottom: 1px solid #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_title {
    font-size: 24px;
    margin: 0 0 32px;
  }
}

.newspaper_detail_main_img {
  width: 100%;
  height: 460px;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_main_img {
    height: 240px;
    margin: 0 0 40px;
  }
}

.newspaper_detail_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

#newspaper_editor p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor p {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#newspaper_editor p a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#newspaper_editor div {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 2.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor div {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

#newspaper_editor div a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323335;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#newspaper_editor img {
  display: block;
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor img {
    margin: 0 0 32px;
  }
}

#newspaper_editor ol {
  list-style: decimal;
  padding: 30px 40px 30px 50px;
  background-color: #FAF7F5;
  border-radius: 20px;
  border: 1px dashed #323335;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor ol {
    padding: 20px 20px 20px 40px;
    margin: 0 0 32px;
  }
}

#newspaper_editor ol li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor ol li {
    font-size: 14px;
  }
}

#newspaper_editor ol li:last-child {
  margin: 0 0 0;
}

#newspaper_editor ul {
  padding: 30px 40px;
  background-color: #FAF7F5;
  border-radius: 20px;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor ul {
    padding: 20px 20px;
    margin: 0 0 32px;
  }
}

#newspaper_editor ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.5;
  padding: 0 0 16px;
  border-bottom: 1px dashed #323335;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor ul li {
    font-size: 14px;
  }
}

#newspaper_editor ul li:last-child {
  margin: 0 0 0;
}

#newspaper_editor h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 24px;
  position: relative;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor h2 {
    font-size: 22px;
    padding: 0 0 0 16px;
    margin: 0 0 32px;
  }
}

#newspaper_editor h2:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 80%;
  border-radius: 3px;
  background-color: #CAC1B9;
}

#newspaper_editor h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 16px;
  margin: 0 0 40px;
  border-bottom: 1px solid #323335;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor h3 {
    font-size: 20px;
    margin: 0 0 32px;
  }
}

#newspaper_editor h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #323335;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  #newspaper_editor h4 {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

.newspaper_detail_item_block {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.86);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block {
    padding: 12px;
    margin: 0 0 40px;
  }
}

.newspaper_detail_item_block .newspaper_detail_item_block_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #323335;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding: 0 0 8px;
  border-bottom: 2px dotted #BABABA;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block .newspaper_detail_item_block_title {
    font-size: 15px;
  }
}

.newspaper_detail_item_block .newspaper_detail_item_block_title img {
  width: 16px;
  margin: 0 8px 0 0;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item {
  padding: 16px;
  background-color: #FAF7F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item {
    padding: 12px;
    display: block;
  }
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item:last-child {
  margin: 0 0 0;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_img_block {
  width: 200px;
  height: 200px;
  position: relative;
  margin: 0 32px 0 0;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_img_block {
    margin: 0 auto 16px;
  }
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_img_block .newspaper_detail_item_item_img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_img_block .newspaper_detail_item_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_img_block .newspaper_detail_item_item_favorite_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_img_block .newspaper_detail_item_item_favorite_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_img_block .newspaper_detail_item_item_favorited_btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_img_block .newspaper_detail_item_item_favorited_btn img {
  width: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block {
  width: calc(100% - 232px);
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block {
    width: 100%;
  }
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_brand {
  display: inline-block;
  padding: 2px 8px;
  background-color: #FFF;
  border: 1px solid #BABABA;
  max-width: 100%;
  margin: 0 0 10px;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_brand span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  letter-spacing: 0;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 18px;
  max-height: calc(18px*1);
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_category_wrap {
  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;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_category_wrap .newspaper_detail_item_item_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: #323335;
  line-height: 1.5;
  margin: 0 12px 10px 0;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_category_wrap .newspaper_detail_item_item_sub_category {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  color: #323335;
  padding: 0 0 0 10px;
  position: relative;
  margin: 0 0 10px;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_category_wrap .newspaper_detail_item_item_sub_category::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  height: 1px;
  background-color: #323335;
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_title {
    font-size: 13px;
    line-height: 21px;
    max-height: calc(21px*2);
  }
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #323335;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_price {
    font-size: 20px;
  }
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_price span {
  margin: 0 0 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #838383;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_price span {
    font-size: 10px;
    margin: 0 0 0 8px;
  }
}

.newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #323335;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 28px;
  max-height: calc(28px*2);
}

@media only screen and (max-width: 640px) {
  .newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item .newspaper_detail_item_item_detail_block .newspaper_detail_item_item_text {
    font-size: 13px;
    line-height: 26px;
    max-height: calc(26px*2);
  }
}

@media only screen and (min-width: 960px) {
  .newspaper_detail_item_block .newspaper_detail_item_list .newspaper_detail_item_item:hover .newspaper_detail_item_item_img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.newspaper_share_block {
  padding: 60px 40px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 640px) {
  .newspaper_share_block {
    padding: 40px 20px;
    display: block;
  }
}

.newspaper_share_block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.newspaper_share_block .newspaper_share_link {
  width: calc((100% - 40px) /2);
  padding: 16px;
  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: 1px solid #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .newspaper_share_block .newspaper_share_link {
    width: 100%;
    font-size: 14px;
    margin: 0 0 16px;
  }
}

@media only screen and (max-width: 640px) {
  .newspaper_share_block .newspaper_share_link:last-child {
    margin: 0 0 0;
  }
}

.newspaper_share_block .newspaper_share_link img {
  width: 30px;
  margin: 0 10px 0 0;
}

@media only screen and (max-width: 640px) {
  .newspaper_share_block .newspaper_share_link img {
    width: 24px;
    margin: 0 8px 0 0;
  }
}

@media only screen and (min-width: 960px) {
  .newspaper_share_block .newspaper_share_link:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.recommend_category_newspaper {
  padding: 100px 0 120px;
  background-color: #FAF7F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .recommend_category_newspaper {
    padding: 60px 0 80px;
  }
}

.recommend_category_newspaper:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  background-image: url(../images/common/bg_img02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 303px;
  height: 346px;
}

@media only screen and (max-width: 640px) {
  .recommend_category_newspaper:after {
    width: 195px;
    height: 223px;
  }
}

.newspaper_search_w {
  padding: 100px 0 120px;
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .newspaper_search_w {
    padding: 60px 0 80px;
  }
}

.newspaper_search_w:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -30px;
  width: 260px;
  height: 452px;
  background-image: url(../images/common/bg_img_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .newspaper_search_w:before {
    width: 172px;
    height: 299px;
    right: -26px;
  }
}

.newspaper_search_w:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -30px;
  width: 313px;
  height: 316px;
  background-image: url(../images/common/bg_img_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 640px) {
  .newspaper_search_w:after {
    width: 187px;
    height: 189px;
  }
}

/* ======================= BASE ====== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html, body {
  margin: 0;
  height: 100%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mt_0 {
  margin-top: 0;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_80 {
  margin-top: 80px;
}

.mr_5 {
  margin-right: 5px;
}

.mr_20 {
  margin-right: 20px;
}

@media only screen and (max-width: 999px) {
  .sp_mb_10 {
    margin-bottom: 10px;
  }
}

.common_pc {
  display: block;
}

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

.common_sp {
  display: none;
}

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

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

.common_sp840 {
  display: none;
}

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

.common_pc640 {
  display: block;
}

.common_pc640.height_100 {
  height: 100%;
}

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

.common_sp640 {
  display: none;
}

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

.mb_0 {
  margin-bottom: 0;
}

body {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

body ul {
  list-style: none;
}

body a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*
@media only screen and (min-width:960px){
  body a:hover{
    opacity: 0.7;
  }
}
*/
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
