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

      mixin.scss

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

      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;
}

/* フェードイン(初期値) */
.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_more_btn*/
.common_more_link_wrap {
  margin: 72px 0 0;
  text-align: center;
}

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

.common_more_link_wrap.mt_40 {
  margin: 40px 0 0;
}

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

.common_more_link_wrap .common_more_link {
  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;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 8px;
}

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

.common_more_link_wrap .common_more_link img {
  margin: 0 0 0 16px;
  width: 8px;
}

.common_more_link_wrap .common_more_link::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #414141;
}

.common_more_link_wrap .common_more_link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #414141;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

@media only screen and (min-width: 960px) {
  .common_more_link_wrap .common_more_link:hover::before {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
    transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
    transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
    transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19), -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  }
  .common_more_link_wrap .common_more_link:hover:after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
    transition: -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
    transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
    transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99), -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
}

.common_more_link_wrap .common_more_link.c_w {
  color: #FFF;
}

.common_more_link_wrap .common_more_link.c_w:before {
  background-color: #FFF;
}

.common_more_link_wrap .common_more_link.c_w:after {
  background-color: #FFF;
}

.common_back_link_wrap {
  margin: 72px 0 0;
  text-align: center;
}

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

.common_back_link_wrap .common_back_link {
  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;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 8px;
}

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

.common_back_link_wrap .common_back_link img {
  margin: 0 16px 0 0;
  width: 8px;
}

.common_back_link_wrap .common_back_link::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #414141;
}

.common_back_link_wrap .common_back_link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #414141;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

@media only screen and (min-width: 960px) {
  .common_back_link_wrap .common_back_link:hover::before {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
    transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
    transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
    transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19), -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  }
  .common_back_link_wrap .common_back_link:hover:after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
    transition: -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
    transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
    transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99), -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
  }
}

.common_back_link_wrap .common_back_link.c_w {
  color: #FFF;
}

.common_back_link_wrap .common_back_link.c_w:before {
  background-color: #FFF;
}

.common_back_link_wrap .common_back_link.c_w:after {
  background-color: #FFF;
}

/*common_sec_title*/
.common_sec_title_wrap {
  text-align: center;
  margin: 0 0 72px;
}

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

.common_sec_title_wrap .common_sec_title_en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 40px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

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

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

.common_sec_title_wrap .common_sec_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

/*common_sub_title*/
.common_sub_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 28px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 160px;
}

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

.common_sub_title:after {
  content: "";
  position: absolute;
  bottom: 122px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: #414141;
}

@media only screen and (max-width: 640px) {
  .common_sub_title:after {
    bottom: 48px;
  }
}

/*common_search_popup*/
.common_filter {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100vh;
  z-index: 1900;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.common_search_popup {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  max-width: 840px;
  height: 100vh;
  z-index: 2000;
  display: none;
}

.common_search_popup_block {
  background-color: #FFF;
}

.common_search_popup_title_block {
  width: 100%;
  height: 132px;
  background-color: #FFFDF7;
  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;
  padding: 0 96px;
  position: relative;
}

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

.common_search_popup_title_block .common_search_popup_title_wrap .common_search_popup_title_en {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 40px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_title_block .common_search_popup_title_wrap .common_search_popup_title_en {
    font-size: 24px;
    margin: 0 0 4px;
  }
}

.common_search_popup_title_block .common_search_popup_title_wrap .common_search_popup_title_ja {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.common_search_popup_title_block .common_search_popup_close_btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 32px;
  width: 16px;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_title_block .common_search_popup_close_btn {
    right: 16px;
  }
}

.common_search_popup_title_block .common_search_popup_close_btn img {
  width: 100%;
}

.common_search_popup_title_block .common_search_popup_back_btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 32px;
  padding: 0 0 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_title_block .common_search_popup_back_btn {
    left: 16px;
    font-size: 14px;
  }
}

.common_search_popup_title_block .common_search_popup_back_btn:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 12px;
  background-image: url(../images/common/icon_arrow_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.common_search_popup_content_block {
  height: calc(100vh - 240px);
  overflow-y: scroll;
  padding: 0 32px;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block {
    height: calc(100vh - 150px);
    padding: 0 16px;
  }
}

.common_search_popup_content_block.btn_none {
  height: calc(100vh - 132px);
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block.btn_none {
    height: calc(100vh - 80px);
  }
}

.common_search_popup_content_block .common_search_popup_content {
  padding: 48px 0 56px;
}

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

.common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap {
  width: 100%;
  margin: 0 0 80px;
  padding: 16px;
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #E6E6E6;
  outline: none;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap {
    padding: 8px;
    margin: 0 0 40px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap .common_search_popup_keyword_input {
  outline: 0;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  width: calc(100% - 32px);
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap .common_search_popup_keyword_input::-webkit-input-placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap .common_search_popup_keyword_input::-ms-input-placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap .common_search_popup_keyword_input::placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap .common_search_popup_keyword_input:focus {
  outline: 0;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap .common_search_popup_keyword_submit_btn {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: none;
  outline: none;
  margin: 0 0 0 16px;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_keyword_wrap .common_search_popup_keyword_submit_btn img {
  width: 100%;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_option_title {
  padding: 0 0 0 30px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_option_title {
    font-size: 16px;
    padding: 0 0 0 24px;
    margin: 0 0 16px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_option_title:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #414141;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_option_title:before {
    width: 12px;
    height: 12px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item {
  border-bottom: 1px solid #BCBCBC;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_category_item_text {
  padding: 32px 32px 32px 0;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_category_item_text {
    font-size: 14px;
    padding: 24px 32px 24px 0;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_category_item_text:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 12px;
  height: 8px;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_category_item_text.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_sub_category_list {
  display: none;
  margin: 0 0 32px;
  padding: 4px 32px 36px;
  background-color: #F5F5F5;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_sub_category_list {
    margin: 0 0 24px;
    padding: 4px 16px 24px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_sub_category_list .common_search_popup_sub_category_item .common_search_popup_sub_category_item_label {
  display: block;
  height: 100%;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_sub_category_list .common_search_popup_sub_category_item .common_search_popup_sub_category_item_radio {
  display: none;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_sub_category_list .common_search_popup_sub_category_item .common_search_popup_sub_category_item_text {
  padding: 24px 32px 24px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_sub_category_list .common_search_popup_sub_category_item .common_search_popup_sub_category_item_text {
    padding: 16px 32px 16px 0;
    font-size: 14px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_sub_category_list .common_search_popup_sub_category_item .common_search_popup_sub_category_item_text:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 8px;
  height: 12px;
  background-image: url(../images/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_category_list .common_search_popup_category_item .common_search_popup_sub_category_list .common_search_popup_sub_category_item .common_search_popup_sub_category_item_text:after {
    width: 6px;
    height: 9px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_selection_list .common_search_popup_selection_item {
  padding: 24px 0;
  border-bottom: 1px solid #BCBCBC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_selection_list .common_search_popup_selection_item .common_search_popup_selection_item_title {
  width: 240px;
  padding: 0 24px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_selection_list .common_search_popup_selection_item .common_search_popup_selection_item_title {
    width: 120px;
    font-size: 14px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_selection_list .common_search_popup_selection_item .common_search_popup_selection_item_text {
  width: calc(100% - 240px);
  padding: 0 30px 0 0;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_selection_list .common_search_popup_selection_item .common_search_popup_selection_item_text {
    width: calc(100% - 120px);
    font-size: 13px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_selection_list .common_search_popup_selection_item .common_search_popup_selection_item_text.active {
  color: #414141;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_selection_list .common_search_popup_selection_item .common_search_popup_selection_item_text:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 8px;
  height: 12px;
  background-image: url(../images/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_check_list .common_search_popup_check_item {
  border-bottom: 1px solid #BCBCBC;
  width: 100%;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_check_list .common_search_popup_check_item .common_search_popup_check_text {
  padding: 24px 0 24px 40px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_check_list .common_search_popup_check_item .common_search_popup_check_text {
    font-size: 14px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_check_list .common_search_popup_check_item .common_search_popup_check_text:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/common/icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_check_list .common_search_popup_check_item .common_search_popup_check_text:before {
    width: 20px;
    height: 20px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_check_list .common_search_popup_check_item .common_search_popup_check {
  display: none;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_check_list .common_search_popup_check_item .common_search_popup_check:checked + .common_search_popup_check_text:before {
  background-image: url(../images/common/icon_checked.svg);
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_text_input_wrap {
  width: 100%;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_text_input_wrap .common_search_popup_text_input {
  width: 100%;
  padding: 16px;
  border: 1px solid #E6E6E6;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_text_input_wrap .common_search_popup_text_input {
    padding: 8px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_text_input_wrap .common_search_popup_text_input::-webkit-input-placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_text_input_wrap .common_search_popup_text_input::-ms-input-placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_text_input_wrap .common_search_popup_text_input::placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_input_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_input_unit .common_search_popup_price_input {
  width: 160px;
  padding: 16px;
  border: 1px solid #E6E6E6;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_input_unit .common_search_popup_price_input {
    width: 100px;
    padding: 8px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_input_unit .common_search_popup_price_input::-webkit-input-placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_input_unit .common_search_popup_price_input::-ms-input-placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_input_unit .common_search_popup_price_input::placeholder {
  color: #86878D;
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_input_unit .common_search_popup_price_unit {
  margin: 0 0 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_input_unit .common_search_popup_price_unit {
    font-size: 16px;
  }
}

.common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_text {
  margin: 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_content_block .common_search_popup_content .common_search_popup_option .common_search_popup_price_input_wrap .common_search_popup_price_text {
    margin: 0 16px;
    font-size: 16px;
  }
}

.common_search_popup_btn_block {
  height: 108px;
  padding: 0 32px;
  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);
}

@media only screen and (max-width: 640px) {
  .common_search_popup_btn_block {
    height: 70px;
    padding: 0 16px;
  }
}

.common_search_popup_btn_block .common_search_popup_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.common_search_popup_btn_block .common_search_popup_btn_wrap .common_search_popup_clear_btn {
  width: 260px;
  height: 80px;
  margin: 0 16px 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;
  border: 1px solid #414141;
  background-color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_btn_block .common_search_popup_btn_wrap .common_search_popup_clear_btn {
    height: 56px;
    width: 100px;
    font-size: 14px;
  }
}

.common_search_popup_btn_block .common_search_popup_btn_wrap .common_search_popup_submit_btn {
  width: calc(100% - 276px);
  height: 80px;
  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: #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_btn_block .common_search_popup_btn_wrap .common_search_popup_submit_btn {
    width: calc(100% - 116px);
    height: 56px;
    font-size: 14px;
  }
}

.common_search_popup_btn_block .common_search_popup_btn_wrap .common_search_popup_submit_btn img {
  width: 16px;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_search_popup_btn_block .common_search_popup_btn_wrap .common_search_popup_submit_btn img {
    width: 12px;
    margin: 0 8px 0 0;
  }
}

/*pankuzu*/
.common_pankuzu_block {
  padding: 24px 0;
  overflow-x: scroll;
}

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

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

.common_pankuzu_block .common_pankuzu_list .common_pankuzu_item {
  margin: 0 70px 0 0;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media only screen and (max-width: 640px) {
  .common_pankuzu_block .common_pankuzu_list .common_pankuzu_item {
    margin: 0 58px 0 0;
    font-size: 11px;
  }
}

.common_pankuzu_block .common_pankuzu_list .common_pankuzu_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -32px;
  width: 6px;
  height: 9px;
  background-image: url(../images/common/icon_arrow_right_g.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .common_pankuzu_block .common_pankuzu_list .common_pankuzu_item:after {
    right: -30px;
  }
}

.common_pankuzu_block .common_pankuzu_list .common_pankuzu_item:last-child {
  margin: 0 0 0 0;
}

.common_pankuzu_block .common_pankuzu_list .common_pankuzu_item:last-child:after {
  content: none;
}

.common_pankuzu_block .common_pankuzu_list .common_pankuzu_item .common_pankuzu_link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-decoration: underline;
  white-space: nowrap;
}

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

/*common_page*/
.common_page_sec {
  padding: 120px 0 240px;
  background-color: #FFF;
}

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

/*peging*/
.common_page_wrap {
  margin: 72px 0 0;
}

.common_page_wrap .common_page_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.common_page_wrap .common_page_list .common_page_item {
  margin: 0 4px;
}

.common_page_wrap .common_page_list .common_page_item .common_page_link {
  display: inline-block;
  padding: 6px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.common_page_wrap .common_page_list .common_page_item .common_page_link.active {
  border: 1px solid #414141;
}

.common_page_wrap .common_page_list .common_page_item .common_page_link.prev {
  margin: 0 32px 0 0;
}

.common_page_wrap .common_page_list .common_page_item .common_page_link.prev img {
  width: 8px;
}

.common_page_wrap .common_page_list .common_page_item .common_page_link.next {
  margin: 0 0 0 32px;
}

.common_page_wrap .common_page_list .common_page_item .common_page_link.next img {
  width: 8px;
}

.common_page_wrap .common_page_list .common_page_item .common_page_dot {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/*common_share_block*/
.common_share_block {
  margin: 80px 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;
}

.common_share_block.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

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

.common_share_block.mb_80 {
  margin: 80px 0;
}

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

.common_share_block .common_share_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 15px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.common_share_block .common_share_text img {
  width: 10px;
  margin: 0 8px 0 0;
}

.common_share_block .common_share_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.common_share_block .common_share_list .common_share_item {
  margin: 0 0 0 20px;
}

.common_share_block .common_share_list .common_share_item .common_share_link {
  display: block;
  width: 22px;
}

.common_share_block .common_share_list .common_share_item .common_share_link img {
  width: 100%;
}

/*common_list_select_page_num_wrap*/
.common_list_select_page_num_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  margin: 0 0 72px;
}

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

.common_list_select_page_num_wrap .common_list_select_block {
  width: 140px;
}

.common_list_select_page_num_wrap .common_list_select_block .common_list_select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  padding: 0 24px 10px 0;
  border-bottom: 1px solid #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-size: 10px;
  background-position: right center;
  background-repeat: no-repeat;
}

.common_list_select_page_num_wrap .common_list_page_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.common_list_select_page_num_wrap .common_list_page_num .slash {
  margin: 0 8px;
}

@media only screen and (max-width: 640px) {
  .common_list_select_page_num_wrap .common_list_page_num .slash {
    margin: 0 4px;
  }
}

.common_list_select_page_num_wrap .common_list_page_num .unit {
  margin: 0 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .common_list_select_page_num_wrap .common_list_page_num .unit {
    margin: 0 0 0 4px;
  }
}

/*common_shop_search*/
.common_shop_search_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) {
  .common_shop_search_btn_wrap {
    display: block;
  }
}

.common_shop_search_btn_wrap .common_shop_search_location_btn {
  width: 400px;
  height: 56px;
  background-color: #FFF;
  border: 1px solid #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 24px;
}

@media only screen and (max-width: 840px) {
  .common_shop_search_btn_wrap .common_shop_search_location_btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 16px;
  }
}

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

.common_shop_search_btn_wrap .common_shop_search_location_btn .icon {
  width: 12px;
  height: 12px;
  margin: 0 8px 0 0;
  background-image: url(../images/common/icon_location.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.common_shop_search_btn_wrap .common_shop_search_location_btn.active {
  background-color: #414141;
  color: #FFF;
}

.common_shop_search_btn_wrap .common_shop_search_location_btn.active .icon {
  background-image: url(../images/common/icon_location_w.svg);
}

.common_shop_search_btn_wrap .common_shop_search_area_btn {
  width: 400px;
  height: 56px;
  background-color: #FFF;
  border: 1px solid #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 24px;
}

@media only screen and (max-width: 840px) {
  .common_shop_search_btn_wrap .common_shop_search_area_btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

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

.common_shop_search_btn_wrap .common_shop_search_area_btn.active {
  background-color: #414141;
  color: #FFF;
}

.common_shop_search_btn_wrap .common_shop_search_area_btn.active .icon {
  background-image: url(../images/common/icon_location_w.svg);
}

.common_shop_location_block {
  display: none;
  margin: 96px 0 0;
}

.common_shop_location_block.active {
  display: block;
}

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

.common_shop_location_block .common_shop_location_block_title {
  padding: 0 0 0 20px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .common_shop_location_block .common_shop_location_block_title {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

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

.common_shop_list .common_shop_item {
  padding: 0 0 32px;
  border-bottom: 1px solid #E6E6E6;
  margin: 0 0 32px;
}

.common_shop_list .common_shop_item .common_shop_item_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 24px 0 0;
  position: relative;
}

@media only screen and (max-width: 840px) {
  .common_shop_list .common_shop_item .common_shop_item_top {
    display: block;
  }
}

.common_shop_list .common_shop_item .common_shop_item_top:after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 12px;
  height: 8px;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.common_shop_list .common_shop_item .common_shop_item_top.active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.common_shop_list .common_shop_item .common_shop_item_top .common_shop_item_title {
  width: 320px;
  margin: 0 40px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media only screen and (max-width: 840px) {
  .common_shop_list .common_shop_item .common_shop_item_top .common_shop_item_title {
    width: 100%;
    margin: 0 0 16px 0;
  }
}

@media only screen and (max-width: 640px) {
  .common_shop_list .common_shop_item .common_shop_item_top .common_shop_item_title {
    font-size: 14px;
  }
}

.common_shop_list .common_shop_item .common_shop_item_top .common_shop_item_title .distance {
  display: inline-block;
  padding: 4px 8px;
  background-color: #BCBCBC;
  margin: 0 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media only screen and (max-width: 640px) {
  .common_shop_list .common_shop_item .common_shop_item_top .common_shop_item_title .distance {
    font-size: 12px;
    padding: 2px 4px;
    margin: 0 0 0 16px;
  }
}

.common_shop_list .common_shop_item .common_shop_item_top .common_shop_item_address {
  width: calc(100% - 360px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .common_shop_list .common_shop_item .common_shop_item_top .common_shop_item_address {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .common_shop_list .common_shop_item .common_shop_item_top .common_shop_item_address {
    font-size: 13px;
  }
}

.common_shop_list .common_shop_item .common_shop_item_bottom {
  padding: 0 0 0 360px;
  margin: 18px 0 0;
  display: none;
}

@media only screen and (max-width: 840px) {
  .common_shop_list .common_shop_item .common_shop_item_bottom {
    padding: 0 0 0 0;
  }
}

.common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_item_googlemap_link {
  margin: 0 0 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 8px;
  border-bottom: 1px solid #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_item_googlemap_link {
    font-size: 12px;
  }
}

.common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_item_googlemap_link img {
  width: 12px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_item_googlemap_link img {
    width: 10px;
    margin: 0 4px 0 0;
  }
}

.common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_detail_list .common_shop_detail_item {
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_detail_list .common_shop_detail_item {
    margin: 0 0 16px;
  }
}

.common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_detail_list .common_shop_detail_item:last-child {
  margin: 0 0 0;
}

.common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_detail_list .common_shop_detail_item .common_shop_detail_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_detail_list .common_shop_detail_item .common_shop_detail_item_text {
    font-size: 13px;
  }
}

.common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_detail_list .common_shop_detail_item .common_shop_detail_item_text a {
  color: #414141;
}

.common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_detail_list .common_shop_detail_item .common_shop_detail_item_note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #EF8787;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .common_shop_list .common_shop_item .common_shop_item_bottom .common_shop_detail_list .common_shop_detail_item .common_shop_detail_item_note {
    font-size: 13px;
  }
}

.common_shop_area_block {
  margin: 96px 0 0;
  display: none;
}

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

.common_shop_area_block.active {
  display: block;
}

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

.common_shop_area_category_list .common_shop_area_category_item {
  margin: 0 40px 40px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 15px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 20px 4px 0;
  position: relative;
  cursor: pointer;
}

@media only screen and (max-width: 640px) {
  .common_shop_area_category_list .common_shop_area_category_item {
    margin: 0 16px 16px 0;
    font-size: 14px;
    padding: 0 16px 4px 0;
  }
}

.common_shop_area_category_list .common_shop_area_category_item.active {
  border-bottom: 1px solid #414141;
}

.common_shop_area_category_list .common_shop_area_category_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 9px;
  height: 6px;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_category_detail_block_title {
  padding: 0 0 0 20px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_category_detail_block_title {
    font-size: 18px;
  }
}

.common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_category_detail_block_title:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #BCBCBC;
}

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

.common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_sub_category_list .common_shop_area_sub_category_item {
  margin: 0 40px 40px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 20px 4px 0;
  position: relative;
  cursor: pointer;
}

@media only screen and (max-width: 640px) {
  .common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_sub_category_list .common_shop_area_sub_category_item {
    margin: 0 16px 16px 0;
    font-size: 13px;
    padding: 0 16px 4px 0;
  }
}

.common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_sub_category_list .common_shop_area_sub_category_item.active {
  border-bottom: 1px solid #414141;
}

.common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_sub_category_list .common_shop_area_sub_category_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 9px;
  height: 6px;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_sub_category_detail_block .common_shop_area_sub_category_detail_block_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .common_shop_area_category_detail_block_wrap .common_shop_area_category_detail_block .common_shop_area_sub_category_detail_block .common_shop_area_sub_category_detail_block_title {
    font-size: 16px;
    margin: 0 0 24px;
  }
}

.common_btn_wrap {
  margin: 72px 0 0;
}

.common_submit_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: 100%;
  max-width: 500px;
  height: 80px;
  background-color: #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 auto;
}

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

.common_submit_btn img {
  width: 16px;
  margin: 0 16px 0 0;
}

.common_back_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: 100%;
  max-width: 500px;
  height: 80px;
  background-color: #FFF;
  border: 1px solid #414141;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 24px auto 0;
}

.common_back_btn.mt_0 {
  margin: 0 auto;
}

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

.common_center_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 28px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 120px;
}

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

.common_center_title:after {
  content: "";
  position: absolute;
  bottom: 84px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background-color: #414141;
}

@media only screen and (max-width: 640px) {
  .common_center_title:after {
    bottom: 40px;
  }
}

.common_center_text {
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

.common_center_text span {
  color: #EF8787;
}

.common_center_text a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #414141;
}

.common_error_main {
  padding: 16px 24px;
  border: 1px solid #E34646;
  text-align: center;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #E34646;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 48px;
}

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

.common_error_text {
  margin: 16px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #E34646;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/*該当データがない場合*/
.no_data_wrap .no_data_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 2;
  letter-spacing: 0.1em;
}

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

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

      header.scss

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

@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: 140px;
  padding: 8px 50px;
  background-color: #FFF;
}

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

.pc_header_inner {
  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%;
  height: 100%;
}

.pc_header_inner .pc_header_logo_menu_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_header_inner .pc_header_logo_menu_sns .pc_header_logo {
  display: block;
  width: 120px;
  margin: 0 48px 0 0;
}

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

.pc_header_inner .pc_header_logo_menu_sns .pc_header_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 48px 0 0;
}

.pc_header_inner .pc_header_logo_menu_sns .pc_header_menu_list .pc_header_menu_item {
  margin: 0 30px 0 0;
}

.pc_header_inner .pc_header_logo_menu_sns .pc_header_menu_list .pc_header_menu_item:last-child {
  margin: 0 0 0 0;
}

.pc_header_inner .pc_header_logo_menu_sns .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-decoration: none;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.pc_header_inner .pc_header_logo_menu_sns .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link:after {
  content: "";
  position: absolute;
  bottom: .5em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #414141;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_logo_menu_sns .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link:hover:after {
    bottom: 0;
    opacity: 1;
  }
}

.pc_header_inner .pc_header_logo_menu_sns .pc_header_sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_header_inner .pc_header_logo_menu_sns .pc_header_sns_list .pc_header_sns_item {
  margin: 0 30px 0 0;
}

.pc_header_inner .pc_header_logo_menu_sns .pc_header_sns_list .pc_header_sns_item .pc_header_sns_link {
  display: block;
  width: 20px;
}

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

.pc_header_inner .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_member_menu_list .pc_header_member_menu_item {
  margin: 0 0 0 30px;
}

.pc_header_inner .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.pc_header_inner .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_link .border {
  text-decoration: none;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.pc_header_inner .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_link .border:after {
  content: "";
  position: absolute;
  bottom: .4em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #414141;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_link:hover .border:after {
    bottom: 0;
    opacity: 1;
  }
}

.pc_header_inner .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_link img {
  width: 12px;
  margin: 0 8px 0 0;
}

.pc_header_inner .pc_header_member_menu_list .pc_header_member_menu_item .pc_header_member_menu_link .contact_list_num {
  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: 20px;
  height: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 10px;
  color: #414141;
  line-height: 1;
  letter-spacing: 0;
  border: 1px solid #414141;
  border-radius: 50%;
  margin: 0 0 0 4px;
}

.sp_header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #FFF;
  z-index: 1000;
}

@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: 120px;
}

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

.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: #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  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: #414141;
  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 #86878D;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  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: #414141;
}

.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: 20px;
}

.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 {
  padding: 80px 0 56px;
  background-color: #646464;
}

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

.footer_block_wrap .footer_block {
  padding: 0 0 60px;
  border-bottom: 1px solid #FFF;
  margin: 0 0 60px;
}

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

.footer_block_wrap .footer_block:last-child {
  border-bottom: none;
  margin: 0 0 32px;
}

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

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

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

.footer_logo_sns_menu .footer_logo_sns {
  width: 160px;
  margin: 0 64px 0 0;
}

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

.footer_logo_sns_menu .footer_logo_sns .footer_logo {
  width: 100%;
  display: block;
  margin: 0 auto 24px;
}

@media only screen and (max-width: 640px) {
  .footer_logo_sns_menu .footer_logo_sns .footer_logo {
    width: 140px;
    margin: 0 auto 16px;
  }
}

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

.footer_logo_sns_menu .footer_logo_sns .footer_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;
}

.footer_logo_sns_menu .footer_logo_sns .footer_sns_menu_list .footer_sns_menu_item {
  margin: 0 20px;
}

.footer_logo_sns_menu .footer_logo_sns .footer_sns_menu_list .footer_sns_menu_item .footer_sns_menu_link {
  display: block;
  width: 22px;
}

.footer_logo_sns_menu .footer_logo_sns .footer_sns_menu_list .footer_sns_menu_item .footer_sns_menu_link img {
  width: 100%;
}

.footer_logo_sns_menu .footer_menu {
  width: calc(100% - 224px);
}

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

.footer_logo_sns_menu .footer_menu .footer_menu_list {
  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) {
  .footer_logo_sns_menu .footer_menu .footer_menu_list {
    margin: 0 0 -24px;
  }
}

.footer_logo_sns_menu .footer_menu .footer_menu_list .footer_menu_item {
  margin: 0 32px 32px 0;
}

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

.footer_logo_sns_menu .footer_menu .footer_menu_list .footer_menu_item .footer_menu_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .footer_logo_sns_menu .footer_menu .footer_menu_list .footer_menu_item .footer_menu_link {
    font-size: 13px;
  }
}

.footer_logo_sns_menu .footer_menu .footer_menu_list .footer_menu_item .footer_menu_link::before {
  content: "・";
}

@media only screen and (min-width: 960px) {
  .footer_logo_sns_menu .footer_menu .footer_menu_list .footer_menu_item .footer_menu_link:hover {
    opacity: 0.7;
  }
}

.footer_block_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 32px;
}

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

.footer_category_list {
  padding: 0 0 0 20px;
  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) {
  .footer_category_list {
    padding: 0 0 0 16px;
    margin: 0 0 -24px;
  }
}

.footer_category_list .footer_category_item {
  margin: 0 32px 32px 0;
}

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

.footer_category_list .footer_category_item .footer_category_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.footer_sub_menu_list {
  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) {
  .footer_sub_menu_list {
    margin: 0 0 -24px;
  }
}

.footer_sub_menu_list .footer_sub_menu_item {
  margin: 0 32px 32px 0;
}

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

.footer_sub_menu_list .footer_sub_menu_item .footer_sub_menu_link {
  display: block;
  padding: 0 0 0 12px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.footer_sub_menu_list .footer_sub_menu_item .footer_sub_menu_link:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 1px;
  background-color: #FFF;
}

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

.footer_copy {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 11px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

      top.scss

=======================*/
/*FV*/
.fv_wrap {
  padding: 0 0 64px;
  background-color: #FFF;
}

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

.fv_wrap .fv_inner {
  width: 100%;
}

.fv_wrap .fv_inner .fv_slide_list {
  width: 100%;
}

.fv_wrap .fv_inner .fv_slide_list .fv_slide_item .fv_slide_item_inner {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fv_wrap .fv_inner .fv_slide_list .fv_slide_item .fv_slide_item_inner .fv_slide_item_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.fv_wrap .fv_inner .fv_slide_list .fv_slide_item .fv_slide_item_inner .fv_slide_item_flex .fv_slide_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 56px;
  color: #FFF;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 840px) {
  .fv_wrap .fv_inner .fv_slide_list .fv_slide_item .fv_slide_item_inner .fv_slide_item_flex .fv_slide_title {
    font-size: 38px;
  }
}

.fv_wrap .fv_inner .fv_sp_slide_list .fv_sp_slide_item .fv_sp_slide_item_inner .fv_sp_slide_item_img {
  width: 100%;
  position: relative;
}

.fv_wrap .fv_inner .fv_sp_slide_list .fv_sp_slide_item .fv_sp_slide_item_inner .fv_sp_slide_item_img img {
  width: 100%;
}

.fv_wrap .fv_inner .fv_sp_slide_list .fv_sp_slide_item .fv_sp_slide_item_inner .fv_sp_slide_item_img .fv_sp_slide_item_detail {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 90%;
}

.fv_wrap .fv_inner .fv_sp_slide_list .fv_sp_slide_item .fv_sp_slide_item_inner .fv_sp_slide_item_img .fv_sp_slide_item_detail .fv_sp_slide_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 42px;
  color: #FFF;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 500px) {
  .fv_wrap .fv_inner .fv_sp_slide_list .fv_sp_slide_item .fv_sp_slide_item_inner .fv_sp_slide_item_img .fv_sp_slide_item_detail .fv_sp_slide_title {
    font-size: 32px;
  }
}

/*top_web_catalog*/
.top_web_catalog {
  padding: 100px 0 140px;
  background-color: #FFF;
}

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

.top_web_catalog_img {
  display: block;
  width: 100%;
}

.top_web_catalog_img img {
  width: 100%;
}

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

.top_latest_season_banner {
  margin: 140px 0 24px;
  display: block;
  width: 100%;
}

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

.top_latest_season_banner img {
  width: 100%;
}

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

.top_all_collection_link {
  display: block;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/*top_pickup_feature*/
.top_pickup_feature {
  padding: 160px 0 240px;
  background-color: #FFFDF7;
}

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

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

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

.top_pickup_feature_box_wrap .top_pickup_feature_box {
  display: block;
  width: calc((100% - 48px) /3);
  margin: 0 24px 0 0;
}

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

.top_pickup_feature_box_wrap .top_pickup_feature_box:nth-of-type(3n) {
  margin: 0 0 0 0;
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_img_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 20px;
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_img_date .top_pickup_feature_box_img_wrap {
  overflow: hidden;
  width: calc(100% - 28px);
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_img_date .top_pickup_feature_box_img_wrap .top_pickup_feature_box_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_img_date .top_pickup_feature_box_img_wrap .top_pickup_feature_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_img_date .top_pickup_feature_box_date {
  width: 28px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #86878D;
  letter-spacing: 0.1em;
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_img_date .top_pickup_feature_box_date .top_pickup_feature_box_date_text {
  position: relative;
  padding: 0 0 56px;
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_img_date .top_pickup_feature_box_date .top_pickup_feature_box_date_text .new_text {
  color: #EF8787;
  margin: 16px 0 0;
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_img_date .top_pickup_feature_box_date .top_pickup_feature_box_date_text:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 9px;
  width: 1px;
  height: 36px;
  background-color: #86878D;
}

.top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
}

@media only screen and (max-width: 640px) {
  .top_pickup_feature_box_wrap .top_pickup_feature_box .top_pickup_feature_box_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.top_pickup_feature_box_wrap .top_pickup_feature_box:nth-child(2) {
  margin: 40px 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_pickup_feature_box_wrap .top_pickup_feature_box:nth-child(2) {
    margin: 0 0 48px 0;
  }
}

.top_pickup_feature_box_wrap .top_pickup_feature_box:nth-child(3) {
  margin: 80px 0 0 0;
}

@media only screen and (max-width: 640px) {
  .top_pickup_feature_box_wrap .top_pickup_feature_box:nth-child(3) {
    margin: 0 0 48px 0;
  }
}

@media only screen and (min-width: 960px) {
  .top_pickup_feature_box_wrap .top_pickup_feature_box:hover .top_pickup_feature_box_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*top_about*/
.top_about {
  padding: 160px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.top_about_content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.top_about_content .top_about_content_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0 0 72px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .top_about_content .top_about_content_title {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

.top_about_content .top_about_content_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 3;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

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

/*top_coordinate*/
.top_coordinate {
  background-color: #FFFDF7;
  height: 680vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 1100px) {
  .top_coordinate {
    height: 500vh;
  }
}

@media only screen and (max-width: 640px) {
  .top_coordinate {
    height: 380vh;
  }
}

@media only screen and (max-width: 500px) {
  .top_coordinate {
    height: 340vh;
  }
}

.top_coordinate_img {
  display: block;
  position: absolute;
  will-change: transform;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.top_coordinate_img.img01 {
  right: calc(50% - 50vw);
  top: 4.25%;
  width: 50vw;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  .top_coordinate_img.img01 {
    top: 4%;
    width: 52vw;
  }
}

.top_coordinate_img.img02 {
  left: 0;
  top: 10.125%;
  width: 40vw;
}

@media only screen and (max-width: 640px) {
  .top_coordinate_img.img02 {
    top: 14%;
    width: 42vw;
  }
}

.top_coordinate_img.img03 {
  right: 10vw;
  top: 26%;
  width: 30.3vw;
  z-index: 1;
}

@media only screen and (max-width: 1100px) {
  .top_coordinate_img.img03 {
    top: 28%;
  }
}

@media only screen and (max-width: 640px) {
  .top_coordinate_img.img03 {
    top: 33%;
    width: 38vw;
  }
}

.top_coordinate_img.img04 {
  left: 0;
  top: 37%;
  width: 62vw;
}

@media only screen and (max-width: 1100px) {
  .top_coordinate_img.img04 {
    top: 40%;
  }
}

@media only screen and (max-width: 640px) {
  .top_coordinate_img.img04 {
    top: 45%;
    width: 65vw;
  }
}

.top_coordinate_img.img05 {
  right: calc(50% - 45.7vw);
  top: 54%;
  width: 34.7vw;
}

@media only screen and (max-width: 1100px) {
  .top_coordinate_img.img05 {
    top: 58%;
  }
}

@media only screen and (max-width: 640px) {
  .top_coordinate_img.img05 {
    top: 64%;
    width: 38vw;
  }
}

.top_coordinate_img.img06 {
  left: calc(50% - 34.7vw);
  top: 58%;
  width: 38.7vw;
}

@media only screen and (max-width: 1100px) {
  .top_coordinate_img.img06 {
    top: 63%;
  }
}

@media only screen and (max-width: 640px) {
  .top_coordinate_img.img06 {
    top: 70%;
    width: 38vw;
  }
}

.top_coordinate_img.img07 {
  right: 0;
  top: 80%;
  width: 44.7vw;
}

@media only screen and (max-width: 1100px) {
  .top_coordinate_img.img07 {
    top: 90%;
  }
}

@media only screen and (max-width: 640px) {
  .top_coordinate_img.img07 {
    top: 96%;
  }
}

.top_coordinate_img.img08 {
  left: calc(50% - 40.7vw);
  top: 78%;
  width: 40.7vw;
}

@media only screen and (max-width: 1100px) {
  .top_coordinate_img.img08 {
    top: 86%;
  }
}

@media only screen and (max-width: 640px) {
  .top_coordinate_img.img08 {
    top: 92%;
  }
}

/*top_item*/
.top_item {
  padding: 240px 0;
  background-color: #FFF;
}

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

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

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

.top_item_box_wrap .top_item_box {
  width: calc((100% - 60px) /2);
  margin: 0 60px 0 0;
  display: block;
}

@media only screen and (max-width: 640px) {
  .top_item_box_wrap .top_item_box {
    width: 100%;
    margin: 0 0 32px 0;
  }
}

.top_item_box_wrap .top_item_box:nth-of-type(2n) {
  margin: 0 0 0 0;
}

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

.top_item_box_wrap .top_item_box .top_item_box_img_wrap {
  overflow: hidden;
  width: 100%;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_item_box_wrap .top_item_box .top_item_box_img_wrap {
    margin: 0 0 12px;
  }
}

.top_item_box_wrap .top_item_box .top_item_box_img_wrap .top_item_box_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.top_item_box_wrap .top_item_box .top_item_box_img_wrap .top_item_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.top_item_box_wrap .top_item_box .top_item_box_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
}

@media only screen and (max-width: 640px) {
  .top_item_box_wrap .top_item_box .top_item_box_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.top_item_box_wrap .top_item_box .top_item_box_title .new_text {
  color: #EF8787;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_item_box_wrap .top_item_box .top_item_box_title .new_text {
    margin: 0 8px 0 0;
  }
}

@media only screen and (min-width: 960px) {
  .top_item_box_wrap .top_item_box:hover .top_item_box_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*top_column*/
.top_column {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

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

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

.top_column_box_wrap .top_column_box_left_block {
  width: calc(100% - 620px);
}

@media only screen and (max-width: 960px) {
  .top_column_box_wrap .top_column_box_left_block {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 64px;
  }
}

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

.top_column_box_wrap .top_column_box_left_block .top_column_box_left {
  width: 100%;
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_img_wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 20px;
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_img_wrap .top_column_box_left_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_img_wrap .top_column_box_left_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_detail {
  padding: 0 0 0 20px;
  border-left: 1px solid #86878D;
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_detail .top_column_box_left_dete_title {
  display: block;
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_detail .top_column_box_left_dete_title .top_column_box_left_dete {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_detail .top_column_box_left_dete_title .top_column_box_left_dete .new_text {
  margin: 0 0 0 16px;
  color: #EF8787;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_detail .top_column_box_left_dete_title .top_column_box_left_dete .new_text {
    margin: 0 0 0 8px;
  }
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_detail .top_column_box_left_dete_title .top_column_box_left_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_detail .top_column_box_left_dete_title .top_column_box_left_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.top_column_box_wrap .top_column_box_left_block .top_column_box_left .top_column_box_left_detail .top_column_box_left_category {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 960px) {
  .top_column_box_wrap .top_column_box_left_block .top_column_box_left:hover .top_column_box_left_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.top_column_box_wrap .top_column_box_right_block {
  width: 570px;
  margin: 0 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media only screen and (max-width: 960px) {
  .top_column_box_wrap .top_column_box_right_block {
    width: 100%;
    margin: 0 0 0 0;
  }
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right {
  width: calc((100% - 50px) /2);
  margin: 0 50px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right {
    width: calc((100% - 24px) /2);
    margin: 0 24px 0 0;
  }
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right:nth-of-type(2n) {
  margin: 50px 0 0 0;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right:nth-of-type(2n) {
    margin: 32px 0 0 0;
  }
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_img_wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_img_wrap {
    margin: 0 0 16px;
  }
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_img_wrap .top_column_box_right_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_img_wrap .top_column_box_right_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail {
  padding: 0 0 0 20px;
  border-left: 1px solid #86878D;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail {
    padding: 0 0 0 12px;
  }
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_date_title {
  display: block;
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_date_title .top_column_box_right_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_date_title .top_column_box_right_date {
    font-size: 11px;
  }
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_date_title .top_column_box_right_date .new_text {
  margin: 0 0 0 16px;
  color: #EF8787;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_date_title .top_column_box_right_date .new_text {
    margin: 0 0 0 8px;
  }
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_date_title .top_column_box_right_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_date_title .top_column_box_right_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_category {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right .top_column_box_right_detail .top_column_box_right_category {
    font-size: 12px;
  }
}

@media only screen and (min-width: 960px) {
  .top_column_box_wrap .top_column_box_right_block .top_column_box_right:hover .top_column_box_right_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*top_sns*/
.top_sns {
  padding: 240px 0;
  background-color: #FFF;
}

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

.top_sns_list .top_sns_item {
  margin: 0 0 196px;
}

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

.top_sns_list .top_sns_item:last-child {
  margin: 0 0 0;
}

.top_sns_list .top_sns_item .top_sns_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 28px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.top_sns_list .top_sns_item .top_sns_title img {
  width: 20px;
  margin: 0 24px 0 0;
}

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

/*top_news*/
.top_news {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

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

      about.scss

=======================*/
.about_mvv_list .about_mvv_item {
  padding: 80px;
  border: 1px solid #CBAC6B;
  margin: 0 0 100px;
}

@media only screen and (max-width: 960px) {
  .about_mvv_list .about_mvv_item {
    padding: 64px 40px;
  }
}

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

.about_mvv_list .about_mvv_item:last-child {
  margin: 0 0 0;
}

.about_mvv_list .about_mvv_item .about_mvv_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 80px;
}

@media only screen and (max-width: 960px) {
  .about_mvv_list .about_mvv_item .about_mvv_item_inner {
    display: block;
  }
}

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

.about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_title_block {
  width: 400px;
  margin: 0 80px 0 0;
}

@media only screen and (max-width: 960px) {
  .about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_title_block {
    width: 100%;
    margin: 0 0 48px 0;
  }
}

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

.about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_title_block .about_mvv_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 32px;
  color: #CBAC6B;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_title_block .about_mvv_item_title {
    font-size: 28px;
    margin: 0 0 24px;
  }
}

.about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_title_block .about_mvv_item_title span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #414141;
  margin: 0 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_title_block .about_mvv_item_title span {
    margin: 0 0 0 8px;
  }
}

.about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_title_block .about_mvv_detail_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_title_block .about_mvv_detail_title {
    font-size: 18px;
  }
}

.about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_text_block {
  width: calc(100% - 480px);
}

@media only screen and (max-width: 960px) {
  .about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_text_block {
    width: 100%;
  }
}

.about_mvv_list .about_mvv_item .about_mvv_item_inner .about_mvv_item_text_block .about_mvv_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

.about_mvv_list .about_mvv_item .about_mvv_item_img {
  width: 100%;
  height: 320px;
}

@media only screen and (max-width: 640px) {
  .about_mvv_list .about_mvv_item .about_mvv_item_img {
    height: 220px;
  }
}

.about_mvv_list .about_mvv_item .about_mvv_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.about_content {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

.about_content_block_wrap .about_content_block {
  margin: 0 0 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .about_content_block_wrap .about_content_block {
    display: block !important;
  }
}

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

.about_content_block_wrap .about_content_block:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.about_content_block_wrap .about_content_block:last-child {
  margin: 0 0 0;
}

.about_content_block_wrap .about_content_block .about_content_img_block {
  width: 536px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 960px) {
  .about_content_block_wrap .about_content_block .about_content_img_block {
    width: 416px;
  }
}

@media only screen and (max-width: 840px) {
  .about_content_block_wrap .about_content_block .about_content_img_block {
    width: 100%;
    margin: 0 0 32px;
  }
}

.about_content_block_wrap .about_content_block .about_content_img_block .about_content_img {
  width: 480px;
  height: 752px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 960px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img {
    width: 360px;
    height: 680px;
  }
}

@media only screen and (max-width: 840px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img {
    width: calc(100% - 48px);
    height: 300px;
  }
}

@media only screen and (max-width: 640px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img {
    width: calc(100% - 30px);
    height: 220px;
  }
}

.about_content_block_wrap .about_content_block .about_content_img_block .about_content_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title {
  width: 48px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 30px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 640px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title {
    font-size: 20px;
    width: 30px;
  }
}

.about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title span {
  position: relative;
  padding: 0 0 204px;
}

@media only screen and (max-width: 840px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title span {
    padding: 0 0 96px;
  }
}

@media only screen and (max-width: 640px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title span {
    padding: 0 0 48px;
  }
}

.about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 180px;
  background-color: #414141;
}

@media only screen and (max-width: 840px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title span:after {
    height: 80px;
  }
}

@media only screen and (max-width: 640px) {
  .about_content_block_wrap .about_content_block .about_content_img_block .about_content_img_title span:after {
    height: 40px;
  }
}

.about_content_block_wrap .about_content_block .about_content_detail_block {
  width: calc(100% - 600px);
  padding: 80px 0 0;
}

@media only screen and (max-width: 960px) {
  .about_content_block_wrap .about_content_block .about_content_detail_block {
    width: calc(100% - 440px);
  }
}

@media only screen and (max-width: 840px) {
  .about_content_block_wrap .about_content_block .about_content_detail_block {
    width: 100%;
    padding: 0 0 0;
  }
}

.about_content_block_wrap .about_content_block .about_content_detail_block .about_content_detail_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 24px;
  color: #414141;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0 0 80px;
}

@media only screen and (max-width: 840px) {
  .about_content_block_wrap .about_content_block .about_content_detail_block .about_content_detail_title {
    margin: 0 0 40px;
  }
}

@media only screen and (max-width: 640px) {
  .about_content_block_wrap .about_content_block .about_content_detail_block .about_content_detail_title {
    font-size: 18px;
    margin: 0 0 24px;
  }
}

.about_content_block_wrap .about_content_block .about_content_detail_block .about_content_detail_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

.about_company {
  padding: 240px 0;
  background-color: #FFF;
}

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

.about_company_img {
  width: 100%;
  height: 320px;
  margin: 0 0 120px;
}

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

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

.about_company_list .about_company_item {
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

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

.about_company_list .about_company_item .about_company_item_title {
  width: 320px;
  margin: 0 40px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .about_company_list .about_company_item .about_company_item_title {
    width: 200px;
  }
}

@media only screen and (max-width: 640px) {
  .about_company_list .about_company_item .about_company_item_title {
    width: 100%;
    margin: 0 0 16px;
    font-size: 15px;
  }
}

.about_company_list .about_company_item .about_company_item_text {
  width: calc(100% - 360px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 2;
  letter-spacing: 0.1em;
}

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

@media only screen and (max-width: 640px) {
  .about_company_list .about_company_item .about_company_item_text {
    width: 100%;
  }
}

.about_company_list .about_company_item .about_company_item_text a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

      collection.scss

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

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

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

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

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

.item_box_wrap.mt_72 {
  margin: 72px 0 -72px 0;
}

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

.item_box_wrap .item_box {
  display: block;
  width: calc((100% - 96px) / 4);
  margin: 0 32px 72px 0;
}

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

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

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

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

.item_box_wrap .item_box .item_box_img_wrap {
  overflow: hidden;
  width: 100%;
  margin: 0 0 20px;
}

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

.item_box_wrap .item_box .item_box_img_wrap .item_box_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.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: 50% 50%;
  object-position: 50% 50%;
}

.item_box_wrap .item_box .item_box_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
}

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

.item_box_wrap .item_box .item_box_title .new_text {
  color: #EF8787;
  margin: 0 16px 0 0;
}

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

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

/*item_detail*/
.collection_item_detail_main_block {
  padding: 0 0 180px;
}

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

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

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

.collection_item_detail_img_content .collection_item_detail_img_block {
  width: 552px;
  margin: 0 48px 0 0;
}

@media only screen and (max-width: 960px) {
  .collection_item_detail_img_content .collection_item_detail_img_block {
    width: 100%;
    max-width: 552px;
    margin: 0 auto 120px;
  }
}

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

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img {
  margin: 0 0 120px 0;
}

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

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .itemdetail_main_pic_list {
  width: 100%;
  margin: 0 0 40px;
}

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

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .itemdetail_main_pic_list .item {
  width: 100%;
  height: 100%;
  display: none;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .itemdetail_main_pic_list .item.active {
  display: block;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .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;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .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 -32px;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .itemdetail_pic_menu .itemdetail_sub_pic_list .item {
  width: calc((100% - 70px) /6);
  margin: 0 14px 32px 0;
  cursor: pointer;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .itemdetail_pic_menu .itemdetail_sub_pic_list .item:nth-of-type(6n) {
  margin: 0 0 32px 0;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .itemdetail_pic_menu .itemdetail_sub_pic_list .item.active {
  border: 2px solid #414141;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_img .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;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_video {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.collection_item_detail_img_content .collection_item_detail_img_block .collection_item_detail_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection_item_detail_img_content .collection_item_detail_content_block {
  width: calc(100% - 600px);
}

@media only screen and (max-width: 960px) {
  .collection_item_detail_img_content .collection_item_detail_content_block {
    width: 100%;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_status_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 16px;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_status_wrap .collection_item_detail_status {
  display: inline-block;
  padding: 4px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_status_wrap .collection_item_detail_status {
    font-size: 12px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_status_wrap .collection_item_detail_status.currently_accepting {
  background-color: #FFF;
  border: 1px solid #414141;
  color: #414141;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_status_wrap .collection_item_detail_status.before_reception {
  background-color: #FFF;
  border: 1px solid #BCBCBC;
  color: #86878D;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_status_wrap .collection_item_detail_status.no_longer_being_accepted {
  background-color: #86878D;
  color: #FFF;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_status_wrap .new_text {
  margin: 0 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #EF8787;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_status_wrap .new_text {
    font-size: 12px;
    margin: 0 0 0 16px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 24px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_title {
    font-size: 20px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 11px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 32px;
}

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

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_season {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 15px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_season {
    font-size: 14px;
    margin: 0 0 16px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0 0 72px;
}

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

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price .collection_item_detail_price_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price .collection_item_detail_price_title {
    font-size: 12px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price .collection_item_detail_price_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price .collection_item_detail_price_text .tax {
  font-size: 11px;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 70px;
}

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

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_title {
  width: 80px;
  margin: 0 16px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_title {
    width: 70px;
    margin: 0 8px 0 0;
    font-size: 12px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail {
  width: calc(100% - 96px);
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail {
    width: calc(100% - 78px);
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail .collection_item_detail_price_hidden_img_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 16px;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail .collection_item_detail_price_hidden_img_text .collection_item_detail_price_hidden_img {
  width: 16px;
  margin: 0 16px 0 0;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail .collection_item_detail_price_hidden_img_text .collection_item_detail_price_hidden_img img {
  width: 100%;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail .collection_item_detail_price_hidden_img_text .collection_item_detail_price_hidden_text {
  width: calc(100% - 32px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail .collection_item_detail_price_hidden_img_text .collection_item_detail_price_hidden_text {
    font-size: 14px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail .collection_item_detail_price_hidden_note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail .collection_item_detail_price_hidden_note {
    font-size: 12px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_hidden .collection_item_detail_price_hidden_detail .collection_item_detail_price_hidden_note a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 70px;
  position: relative;
}

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

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_title {
  width: 80px;
  margin: 0 16px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_title {
    width: 70px;
    margin: 0 8px 0 0;
    font-size: 12px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail {
  width: calc(100% - 96px);
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail {
    width: calc(100% - 78px);
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_img_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 16px;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_img_text .collection_item_detail_price_before_login_img {
  width: 16px;
  margin: 0 16px 0 0;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_img_text .collection_item_detail_price_before_login_img img {
  width: 100%;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_img_text .collection_item_detail_price_before_login_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_img_text .collection_item_detail_price_before_login_text {
    font-size: 14px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_img_text .collection_item_detail_price_before_login_info_open_btn {
  width: 20px;
  margin: 0 0 0 8px;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_img_text .collection_item_detail_price_before_login_info_open_btn img {
  width: 100%;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_note_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_note_wrap .collection_item_detail_price_before_login_note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 48px 0 0;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_note_wrap .collection_item_detail_price_before_login_note {
    font-size: 12px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_note_wrap .collection_item_detail_price_before_login_note:last-child {
  margin: 0 0 0 0;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_detail .collection_item_detail_price_before_login_note_wrap .collection_item_detail_price_before_login_note a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block {
  position: absolute;
  top: -84px;
  left: 0;
  display: none;
  padding: 16px;
  background-color: #F5F5F5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block {
    top: -110px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block.active {
  display: inline-block;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 82%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #F5F5F5;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block .collection_item_detail_price_before_login_info_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block .collection_item_detail_price_before_login_info_detail .collection_item_detail_price_before_login_info_icon {
  width: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 11px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block .collection_item_detail_price_before_login_info_detail .collection_item_detail_price_before_login_info_text {
  width: calc(100% - 16px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 11px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block .collection_item_detail_price_before_login_info_close_btn {
  position: absolute;
  top: -8px;
  right: -8px;
  border: none;
  outline: none;
  width: 20px;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_price_before_login .collection_item_detail_price_before_login_info_block .collection_item_detail_price_before_login_info_close_btn img {
  width: 100%;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_contact_btn {
  width: 100%;
  height: 80px;
  background-color: #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

@media only screen and (max-width: 960px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_contact_btn {
    max-width: 400px;
    margin: 0 auto 24px;
  }
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_contact_btn {
    height: 56px;
    font-size: 14px;
    margin: 0 auto 8px;
  }
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_contact_btn img {
  width: 16px;
  margin: 0 16px 0 0;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_favourite_btn {
  width: 100%;
  height: 80px;
  background-color: #FFF;
  border: 1px solid #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_favourite_btn {
    max-width: 400px;
    margin: 0 auto;
  }
}

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

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_favourite_btn img {
  width: 14px;
  margin: 0 16px 0 0;
}

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_favourited_btn {
  width: 100%;
  height: 80px;
  background-color: #F8F8F8;
  border: 1px solid #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  .collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_favourited_btn {
    max-width: 400px;
    margin: 0 auto;
  }
}

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

.collection_item_detail_img_content .collection_item_detail_content_block .collection_item_detail_favourited_btn img {
  width: 14px;
  margin: 0 16px 0 0;
}

.collection_item_detail_description_block_wrap {
  margin: 80px 0 0;
}

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

.collection_item_detail_description_block_wrap .collection_item_detail_description_block {
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_description_block_wrap .collection_item_detail_description_block {
    margin: 0 0 64px;
  }
}

.collection_item_detail_description_block_wrap .collection_item_detail_description_block:last-child {
  margin: 0 0 0;
}

.collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_block_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0 24px;
  border-bottom: 1px solid #414141;
  margin: 0 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 24px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_block_title {
    font-size: 20px;
    margin: 0 0 32px;
  }
}

.collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_block_title span {
  font-size: 11px;
  color: #86878D;
  margin: 0 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_block_title span {
    margin: 0 0 0 16px;
  }
}

.collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_block_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_block_text {
    font-size: 13px;
  }
}

.collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_list .collection_item_detail_description_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 40px;
}

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

.collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_list .collection_item_detail_description_item:last-child {
  margin: 0 0 0;
}

.collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_list .collection_item_detail_description_item .collection_item_detail_description_item_title {
  width: 160px;
  padding: 0 24px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_list .collection_item_detail_description_item .collection_item_detail_description_item_title {
    width: 96px;
    padding: 0 8px 0 0;
    font-size: 12px;
  }
}

.collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_list .collection_item_detail_description_item .collection_item_detail_description_item_text {
  width: calc(100% - 160px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_description_block_wrap .collection_item_detail_description_block .collection_item_detail_description_list .collection_item_detail_description_item .collection_item_detail_description_item_text {
    width: calc(100% - 104px);
    font-size: 12px;
  }
}

.collection_item_detail_sfaff_block {
  padding: 0 0 180px;
}

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

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item {
  margin: 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

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

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item:last-child {
  margin: 0 0 0;
}

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_img {
  width: 240px;
  height: 240px;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_img {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
  }
}

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_detail {
  width: calc(100% - 360px);
}

@media only screen and (max-width: 840px) {
  .collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_detail {
    width: calc(100% - 280px);
  }
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_detail {
    width: 100%;
  }
}

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_detail .collection_item_detail_sfaff_item_name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_detail .collection_item_detail_sfaff_item_name {
    text-align: center;
    margin: 0 0 16px;
    font-size: 18px;
  }
}

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_detail .collection_item_detail_sfaff_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_detail .collection_item_detail_sfaff_item_text {
    font-size: 13px;
  }
}

.collection_item_detail_sfaff_block .collection_item_detail_sfaff_list .collection_item_detail_sfaff_item .collection_item_detail_sfaff_item_detail .collection_item_detail_sfaff_item_text a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #414141;
}

.collection_detail_shop_block {
  padding: 0 0 180px;
}

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

.collection_detail_shop_block_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 70px;
}

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

.collection_detail_shop_block_text span {
  color: #EF8787;
}

.collection_detail_coordinate_block {
  width: 100%;
}

.collection_detail_coordinate_block .collection_detail_coordinate_block_inner {
  overflow-x: scroll;
}

.collection_detail_coordinate_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.collection_detail_coordinate_list .collection_detail_coordinate_item {
  margin: 0 40px 0 0;
}

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

.collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_item_img {
  width: 260px;
  height: 260px;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 640px) {
  .collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_item_img {
    width: 220px;
    height: 220px;
  }
}

.collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_use_list .collection_detail_coordinate_use_item {
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_use_list .collection_detail_coordinate_use_item {
    margin: 0 0 16px;
  }
}

.collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_use_list .collection_detail_coordinate_use_item:last-child {
  margin: 0 0 0;
}

.collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_use_list .collection_detail_coordinate_use_item .collection_detail_coordinate_use_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 20px;
  max-height: calc(20px*1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_use_list .collection_detail_coordinate_use_item .collection_detail_coordinate_use_link {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*1);
  }
}

@media only screen and (min-width: 960px) {
  .collection_detail_coordinate_list .collection_detail_coordinate_item .collection_detail_coordinate_use_list .collection_detail_coordinate_use_item .collection_detail_coordinate_use_link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.item_detail_recommend_item {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

.item_detail_recommend_column {
  padding: 240px 0;
  background-color: #FFF;
}

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

/*all collection*/
.collection_banner_block {
  width: 100%;
  padding: 0 0 240px;
}

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

.collection_latest_season_banner_wrap {
  margin: 0 0 80px;
}

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

.collection_latest_season_banner_wrap .collection_latest_season_banner {
  display: block;
  width: 100%;
}

.collection_latest_season_banner_wrap .collection_latest_season_banner img {
  width: 100%;
  margin: 0 0 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.collection_latest_season_banner_wrap .collection_latest_season_banner .collection_latest_season_banner_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
}

@media only screen and (max-width: 640px) {
  .collection_latest_season_banner_wrap .collection_latest_season_banner .collection_latest_season_banner_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.collection_latest_season_banner_wrap .collection_latest_season_banner .collection_latest_season_banner_title .new_text {
  color: #EF8787;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .collection_latest_season_banner_wrap .collection_latest_season_banner .collection_latest_season_banner_title .new_text {
    margin: 0 8px 0 0;
  }
}

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

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

.collection_season_banner_list .collection_latest_season_banner_item {
  width: calc((100% - 64px) /2);
  margin: 0 64px 64px 0;
}

@media only screen and (max-width: 640px) {
  .collection_season_banner_list .collection_latest_season_banner_item {
    width: calc((100% - 16px) /2);
    margin: 0 16px 24px 0;
  }
}

.collection_season_banner_list .collection_latest_season_banner_item:nth-of-type(2n) {
  margin: 0 0 64px 0;
}

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

.collection_season_banner_list .collection_latest_season_banner_item .collection_latest_season_banner_link {
  display: block;
  width: 100%;
}

.collection_season_banner_list .collection_latest_season_banner_item .collection_latest_season_banner_link img {
  width: 100%;
  margin: 0 0 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.collection_season_banner_list .collection_latest_season_banner_item .collection_latest_season_banner_link .collection_latest_season_banner_item_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
}

@media only screen and (max-width: 640px) {
  .collection_season_banner_list .collection_latest_season_banner_item .collection_latest_season_banner_link .collection_latest_season_banner_item_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.collection_season_banner_list .collection_latest_season_banner_item .collection_latest_season_banner_link .collection_latest_season_banner_item_title .new_text {
  color: #EF8787;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .collection_season_banner_list .collection_latest_season_banner_item .collection_latest_season_banner_link .collection_latest_season_banner_item_title .new_text {
    margin: 0 8px 0 0;
  }
}

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

.collection_shop_list {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

/*collection_detail*/
.collection_detail_main_block {
  margin: 0 0 240px;
}

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

.collection_detail_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 40px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 72px;
}

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

.collection_detail_img_slide {
  margin: 0 0 144px;
}

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

.collection_detail_img_slide .collection_detail_img_slide_list {
  width: 100%;
}

.collection_detail_img_slide .collection_detail_img_slide_list .collection_detail_img_slide_item {
  width: 100%;
}

.collection_detail_img_slide .collection_detail_img_slide_list .collection_detail_img_slide_item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.collection_detail_season_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 28px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 auto 72px;
  width: 100%;
  max-width: 660px;
}

@media only screen and (max-width: 640px) {
  .collection_detail_season_title {
    font-size: 24px;
    margin: 0 auto 32px;
  }
}

.collection_detail_season_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 auto;
  width: 100%;
  max-width: 660px;
}

.collection_detail_item_block .collection_detail_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 48px;
}

.collection_detail_item_block .collection_detail_category_list .collection_detail_category_item {
  margin: 0 40px 24px 0;
}

.collection_detail_item_block .collection_detail_category_list .collection_detail_category_item .collection_detail_category_link {
  display: block;
  position: relative;
  padding: 0 20px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.collection_detail_item_block .collection_detail_category_list .collection_detail_category_item .collection_detail_category_link:after {
  content: "";
  width: 9px;
  height: 6px;
  background-image: url(../images/common/icon_arrow_bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.collection_detail_category_item_block_wrap .collection_detail_category_item_block {
  margin: 0 0 160px;
}

@media only screen and (max-width: 640px) {
  .collection_detail_category_item_block_wrap .collection_detail_category_item_block {
    margin: 0 0 64px;
  }
}

.collection_detail_category_item_block_wrap .collection_detail_category_item_block:last-child {
  margin: 0 0 0;
}

.collection_detail_recommend_column {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

.item_detail_popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 2000;
  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%;
}

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

      news.scss

=======================*/
.news_list .news_item {
  margin: 0 0 40px;
}

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

.news_list .news_item:last-child {
  margin: 0 0 0;
}

.news_list .news_item .news_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 24px 40px;
  border-bottom: 1px solid #86878D;
}

@media only screen and (max-width: 840px) {
  .news_list .news_item .news_link {
    display: block;
  }
}

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

.news_list .news_item .news_link .news_item_date {
  width: 200px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 840px) {
  .news_list .news_item .news_link .news_item_date {
    width: 100%;
    margin: 0 0 8px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 640px) {
  .news_list .news_item .news_link .news_item_date {
    font-size: 13px;
  }
}

.news_list .news_item .news_link .news_item_detail {
  width: calc(100% - 200px);
  padding: 0 96px 0 0;
  position: relative;
}

@media only screen and (max-width: 840px) {
  .news_list .news_item .news_link .news_item_detail {
    width: 100%;
    padding: 0 16px 0 0;
  }
}

.news_list .news_item .news_link .news_item_detail: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;
}

.news_list .news_item .news_link .news_item_detail .news_item_category {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}

.news_list .news_item .news_link .news_item_detail .news_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 21px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-height: calc(21px*1);
}

@media only screen and (max-width: 640px) {
  .news_list .news_item .news_link .news_item_detail .news_item_title {
    font-size: 13px;
    line-height: 20px;
    max-height: calc(20px*1);
  }
}

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

.news_category_list .news_category_item {
  margin: 0 54px 48px 0;
  position: relative;
}

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

.news_category_list .news_category_item:after {
  content: "/";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: absolute;
  right: -24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.news_category_list .news_category_item .news_category_link {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.news_category_list .news_category_item .news_category_link.active {
  color: #414141;
}

.news_category_list .news_category_item .news_category_link.active::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #414141;
  border-radius: 50%;
}

.news_detail_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

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

.news_detail_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 30px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 24px;
  margin: 0 0 48px;
  border-bottom: 1px solid #414141;
}

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

.news_detail_category {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 80px;
}

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

#news_editor p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 120px;
}

@media only screen and (max-width: 640px) {
  #news_editor p {
    margin: 0 0 72px;
  }
}

#news_editor p a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#news_editor div {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 120px;
}

#news_editor div a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#news_editor ul {
  padding: 48px;
  background-color: #F5F5F5;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #news_editor ul {
    padding: 24px;
    margin: 0 0 48px;
  }
}

#news_editor ul li {
  padding: 0 0 24px 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

#news_editor ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #414141;
}

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

#news_editor ol {
  padding: 48px 48px 48px 48px;
  background-color: #FFF;
  margin: 0 0 80px;
  list-style: none;
  border: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  #news_editor ol {
    padding: 24px;
    margin: 0 0 48px;
  }
}

#news_editor ol li {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

#news_editor h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 32px;
  margin: 0 0 80px;
  border-bottom: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  #news_editor h2 {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

#news_editor h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 0 36px;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #news_editor h3 {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

#news_editor h3:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #414141;
}

#news_editor h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #news_editor h4 {
    font-size: 18px;
    margin: 0 0 48px;
  }
}

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

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

/*recommend_news*/
.recommend_news {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

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

      feature.scss

=======================*/
.feature_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) {
  .feature_box_wrap {
    display: block;
  }
}

.feature_box_wrap .feature_box {
  display: block;
  width: calc((100% - 48px) /3);
  margin: 0 24px 72px 0;
}

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

.feature_box_wrap .feature_box:nth-of-type(3n) {
  margin: 0 0 72px 0;
}

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

.feature_box_wrap .feature_box .feature_box_img_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 20px;
}

.feature_box_wrap .feature_box .feature_box_img_date .feature_box_img_wrap {
  overflow: hidden;
  width: calc(100% - 28px);
}

.feature_box_wrap .feature_box .feature_box_img_date .feature_box_img_wrap .feature_box_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.feature_box_wrap .feature_box .feature_box_img_date .feature_box_img_wrap .feature_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.feature_box_wrap .feature_box .feature_box_img_date .feature_box_date {
  width: 28px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #86878D;
  letter-spacing: 0.1em;
}

.feature_box_wrap .feature_box .feature_box_img_date .feature_box_date .feature_box_date_text {
  position: relative;
  padding: 0 0 56px;
}

.feature_box_wrap .feature_box .feature_box_img_date .feature_box_date .feature_box_date_text .new_text {
  color: #EF8787;
  margin: 16px 0 0;
}

.feature_box_wrap .feature_box .feature_box_img_date .feature_box_date .feature_box_date_text:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 9px;
  width: 1px;
  height: 36px;
  background-color: #86878D;
}

.feature_box_wrap .feature_box .feature_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
}

@media only screen and (max-width: 640px) {
  .feature_box_wrap .feature_box .feature_box_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

@media only screen and (min-width: 960px) {
  .feature_box_wrap .feature_box:hover .feature_box_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*feature_detail*/
.feature_detail_main_img {
  width: 100%;
  margin: 0 0 80px;
}

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

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

.feature_detail_content_wrap {
  margin: 80px 0 120px;
}

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

.feature_detail_content_wrap .feature_detail_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 40px;
  position: relative;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .feature_detail_content_wrap .feature_detail_date {
    font-size: 13px;
    margin: 0 0 24px;
  }
}

.feature_detail_content_wrap .feature_detail_date:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 1px;
  background-color: #86878D;
}

.feature_detail_content_wrap .feature_detail_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 30px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 24px;
  margin: 0 0 48px;
  border-bottom: 1px solid #414141;
}

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

.feature_detail_content_wrap .feature_detail_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

#feature_editor p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 120px;
}

@media only screen and (max-width: 640px) {
  #feature_editor p {
    margin: 0 0 72px;
  }
}

#feature_editor p a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#feature_editor div {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 120px;
}

#feature_editor div a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#feature_editor ul {
  padding: 48px;
  background-color: #F5F5F5;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #feature_editor ul {
    padding: 24px;
    margin: 0 0 48px;
  }
}

#feature_editor ul li {
  padding: 0 0 24px 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

#feature_editor ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #414141;
}

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

#feature_editor ol {
  padding: 48px 48px 48px 48px;
  background-color: #FFF;
  margin: 0 0 80px;
  list-style: none;
  border: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  #feature_editor ol {
    padding: 24px;
    margin: 0 0 48px;
  }
}

#feature_editor ol li {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

#feature_editor h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 32px;
  margin: 0 0 80px;
  border-bottom: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  #feature_editor h2 {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

#feature_editor h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 0 36px;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #feature_editor h3 {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

#feature_editor h3:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #414141;
}

#feature_editor h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #feature_editor h4 {
    font-size: 18px;
    margin: 0 0 48px;
  }
}

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

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

.feature_item_used {
  padding: 220px 0 240px;
  background-color: #FFFDF7;
}

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

/*template01*/
/*
#feature_editor{
  .template01_block_wrap{
    margin: 0 0 80px;
    @media only screen and (max-width:640px){
      margin: 0 0 48px;
    }
    .template01_block{
      margin: 0 0 200px;
      @media only screen and (max-width:640px){
        margin: 0 0 80px;
      }
      &:last-child{
        margin: 0 0 0;
      }
      .template01_block_sub_title{
        @include fg_l;
        font-size: 20px;
        color: $sub-font-color;
        line-height: 1.5;
        letter-spacing: 0.1em;
        margin: 0 0 24px;
        @media only screen and (max-width:640px){
          font-size: 18px;
        }
      }
      .template01_block_title{
        @include fg_l;
        font-size: 26px;
        color: $font-color;
        line-height: 1.5;
        letter-spacing: 0.1em;
        margin: 0 0 80px;
        padding: 0 0 0 0;
        @media only screen and (max-width:640px){
          font-size: 20px;
          margin: 0 0 48px;
        }
        &:before{
          content: none;
        }
      }
      .template01_block_text{
        @include fg_l;
        font-size: 14px;
        color: $font-color;
        line-height: 3;
        letter-spacing: 0.1em;
        margin: 0 0 120px;
        @media only screen and (max-width:640px){
          margin: 0 0 72px;
        }
      }
      .template01_block_img_wrap{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
        @media only screen and (max-width:840px){
          display: block;
        }
        .template01_block_img_main{
          width: calc(100% - 448px);
          @media only screen and (max-width:840px){
            width: 100%;
            margin: 0 0 40px;
          }
          img{
            display: block;
            max-width: 450px!important;
            width: 100%;
            height: 600px;
            -o-object-fit: cover;
               object-fit: cover;
            -o-object-position: center center;
               object-position: center center;
            margin: 0 auto;
            @media only screen and (max-width:640px){
              height: 500px;
            }
          }
        }
        .template01_block_img_list{
          width: 400px;
          margin: 0 0 0 0;
          padding: 0;
          background-color: $base-color;
          @media only screen and (max-width:840px){
            width: 100%;
          }
          .template01_block_img_item{
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            width: 100%;
            padding: 0 0 40px;
            margin: 0 0 40px;
            border-bottom: 1px solid $border;
            @media only screen and (max-width:640px){
              padding: 0 0 24px;
              margin: 0 0 24px
            }
            &:last-child{
              border-bottom: none;
              margin: 0 0 0;
            }
            .template01_block_img_item_img{
              margin: 0 40px 0 0;
              @media only screen and (max-width:640px){
                margin: 0 24px 0 0;
              }
              img{
                display: block;
                width: 120px;
                height: 120px;
                -o-object-fit: cover;
                   object-fit: cover;
                -o-object-position: center center;
                   object-position: center center;
                margin: 0 0 0 0;
              }
            }
            .template01_block_img_item_title{
              width: calc(100% - 160px);
              @include fg_l;
              font-size: 14px;
              color: $font-color;
              line-height: 1.5;
              letter-spacing: 0.1em;
              margin: 0 0 0;
              @media only screen and (max-width:640px){
                width: calc(100% - 144px);
              }
            }
            &::before{
              content: none;
            }
          }
        }
      }
      &:nth-of-type(2n){
        .template01_block_img_wrap{
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
              -ms-flex-direction: row-reverse;
                  flex-direction: row-reverse;
        }
      }
    }
  }
}

*/
/*template02*/
/*
#feature_editor{
  .template02_block_wrap{
    .template02_block{
      margin: 0 0 180px;
      text-align: center;
      @media only screen and (max-width:640px){
        margin: 0 0 80px;
      }
      &:last-child{
        margin: 0 0 0;
      }
      .template02_block_num{
        display: inline-block;
        position: relative;
        @include fg_l;
        font-size: 20px;
        color: $sub-font-color;
        line-height: 1.5;
        letter-spacing: 0.1em;
        margin: 0 0 40px;
        &:after{
          content: "";
          position: absolute;
          bottom: -8px;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: $sub-font-color;
        }
      }
      .template02_block_sub_title{
        @include fg_l;
        font-size: 16px;
        color: $font-color;
        line-height: 1.5;
        letter-spacing: 0.1em;
        margin: 0 0 32px;
      }
      .template02_block_title{
        @include fg_l;
        font-size: 26px;
        color: $font-color;
        line-height: 1.5;
        letter-spacing: 0.1em;
        margin: 0 0 80px;
        padding: 0 0 0;
        @media only screen and (max-width:640px){
          font-size: 22px;
        }
        &:before{
          content: none;
        }
      }
      .template02_block_text{
        @include fg_l;
        font-size: 14px;
        color: $font-color;
        line-height: 3;
        letter-spacing: 0.1em;
        margin: 0 0 120px;
      }
      .template02_block_item_list{
        padding: 0 0 0;
        background-color: $base-color;
        .template02_block_item_item{
          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 0 0;
          margin: 0 0 80px;
         border-bottom: none;
         @media only screen and (max-width:840px){
           display: block;
         }
          &:before{
            content: none;
          }
          &:nth-of-type(2n){
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
                -ms-flex-direction: row-reverse;
                    flex-direction: row-reverse;
          }
          &:last-child{
            margin: 0 0 0 0;
          }
          .template02_block_item_img{
            margin: 0 0 0;
            img{
              display: block;
              width: 450px;
              height: 450px;
              -o-object-fit: cover;
                 object-fit: cover;
              -o-object-position: center center;
                 object-position: center center;
              margin: 0 0 0;
              @media only screen and (max-width:840px){
                width: 100%;
                max-width: 450px!important;
                margin: 0 auto 48px;
              }
              @media only screen and (max-width:640px){
                height: 400px;
              }
            }
          }
          .template02_block_item_detail{
            width: calc(100% - 498px);
            text-align: left;
            margin: 0 0 0;
            @media only screen and (max-width:840px){
              width: 100%;
            }
            .template02_block_item_title{
              @include fg_l;
              font-size: 14px;
              color: $font-color;
              line-height: 1.5;
              padding: 0 0 32px;
              margin: 0 0 32px;
              border-bottom: 1px solid $font-color;
            }
            .template02_block_item_text{
              @include fg_l;
              font-size: 13px;
              color: $font-color;
              line-height: 3;
              letter-spacing: 0.1em;
              margin: 0 0 48px;
            }
            .template02_block_item_link_wrap{
              text-align: right;
              margin: 0 0 0;
              .template02_block_item_link{
                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: end;
                    -ms-flex-pack: end;
                        justify-content: flex-end;
                overflow: hidden;
                @include fg_l;
                font-size: 16px;
                color: $font-color;
                line-height: 1.5;
                letter-spacing: 0.1em;
                position: relative;
                padding: 0 0 8px;
                text-decoration: none;
                margin: 0 0 0 auto;
                img{
                  margin: 0 0 0 16px;
                  width: 8px;
                }
                &::before{
                  content: '';
                  display: block;
                  position: absolute;
                  bottom: 0;
                  left: 0;
                  width: 100%;
                  height: 1px;
                  background-color: $font-color;
                }
                &::after{
                  content: '';
                  display: block;
                  position: absolute;
                  bottom: 0;
                  left: 0;
                  width: 100%;
                  height: 1px;
                  background-color: $font-color;
                  -webkit-transform: translate3d(-100%, 0, 0);
                          transform: translate3d(-100%, 0, 0);
                }
                @media only screen and (min-width:960px){
                  &:hover{
                    &::before{
                      -webkit-transform: translate3d(100%, 0, 0);
                              transform: translate3d(100%, 0, 0);
                      -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
                      transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
                      transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
                      transition: transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19), -webkit-transform 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
                    }
                    &:after{
                      -webkit-transform: translate3d(0, 0, 0);
                              transform: translate3d(0, 0, 0);
                      -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
                      transition: -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
                      transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
                      transition: transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99), -webkit-transform 0.8s cubic-bezier(0.11, 0.68, 0.18, 0.99);
                      -webkit-transition-delay: 0.4s;
                              transition-delay: 0.4s;
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

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

      column.scss

=======================*/
.column_search_block_wrap {
  padding: 0 0 180px;
}

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

.column_search_block_wrap.p_0 {
  padding: 0 0 0 0;
}

.column_search_block_wrap .column_search_block {
  margin: 0 0 180px;
}

@media only screen and (max-width: 640px) {
  .column_search_block_wrap .column_search_block {
    margin: 0 0 64px;
  }
}

.column_search_block_wrap .column_search_block:last-child {
  margin: 0 0 0;
}

.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%;
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item {
  margin: 0 48px 72px 0;
  width: calc((100% - 96px) /3);
}

@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% - 48px) /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% - 32px) /2);
    margin: 0 32px 48px 0;
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item:nth-of-type(3n) {
  margin: 0 0 72px 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(3n) {
    margin: 0 48px 72px 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(3n) {
    margin: 0 32px 48px 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 72px 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 48px 0;
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link {
  display: block;
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_img_wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  overflow: hidden;
}

@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_item_img_wrap {
    width: 140px;
    height: 140px;
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_img_wrap .column_search_category_item_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_img_wrap .column_search_category_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

@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_item_title {
    margin: 0 0 16px;
  }
}

.column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 960px) {
  .column_search_block_wrap .column_search_block .column_search_category_list .column_search_category_item:hover .column_search_category_item_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.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 -40px;
}

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

.column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item {
  margin: 0 40px 40px 0;
}

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

.column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@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 {
    font-size: 13px;
  }
}

.column_search_block_wrap .column_search_block .column_search_tag_list .column_search_tag_item .column_search_tag_link::before {
  content: "#";
  color: #86878D;
}

.column_pickup_block {
  padding: 0 0 180px;
  background-color: #FFF;
}

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

.column_pickup_block .column_pickup_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) {
  .column_pickup_block .column_pickup_box_wrap {
    display: block;
  }
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box {
  width: calc((100% - 56px) /2);
  margin: 0 56px 72px 0;
}

@media only screen and (max-width: 640px) {
  .column_pickup_block .column_pickup_box_wrap .column_pickup_box {
    width: 100%;
    margin: 0 0 48px 0;
  }
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box:nth-of-type(2n) {
  margin: 0 0 72px 0;
}

@media only screen and (max-width: 640px) {
  .column_pickup_block .column_pickup_box_wrap .column_pickup_box:nth-of-type(2n) {
    margin: 0 0 48px 0;
  }
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_img_wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 16px;
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_img_wrap .column_pickup_box_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_img_wrap .column_pickup_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail {
  padding: 0 0 0 20px;
  border-left: 1px solid #86878D;
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date_title {
  display: block;
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date_title .column_pickup_box_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date_title .column_pickup_box_date .new_text {
  margin: 0 0 0 16px;
  color: #EF8787;
}

@media only screen and (max-width: 640px) {
  .column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date_title .column_pickup_box_date .new_text {
    margin: 0 0 0 8px;
  }
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date_title .column_pickup_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date_title .column_pickup_box_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_category {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .column_pickup_block .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_category {
    font-size: 12px;
  }
}

@media only screen and (min-width: 960px) {
  .column_pickup_block .column_pickup_box_wrap .column_pickup_box:hover .column_pickup_box_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_ranking_block {
  padding: 0 0 180px;
  background-color: #FFF;
}

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

.column_ranking_block_inner {
  overflow-x: scroll;
}

.column_ranking_scroll_block {
  width: 100%;
}

.column_ranking_scroll_block .column_ranking_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box {
  width: 260px;
  margin: 0 40px 0 0;
}

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

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank {
  display: block;
  position: relative;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_rank {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 36px;
  height: 36px;
  background-color: #FFF;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  .column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_rank {
    width: 32px;
    height: 32px;
  }
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_rank.num_01 {
  background-color: #D6C280;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_rank.num_02 {
  background-color: #BCBCBC;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_rank.num_03 {
  background-color: #BC9E3C;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_rank.num_w {
  background-color: #FFF;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_rank span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  z-index: 3;
  white-space: nowrap;
}

@media only screen and (max-width: 640px) {
  .column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_rank span {
    font-size: 14px;
  }
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_img_wrap {
  width: 260px;
  height: 260px;
  overflow: hidden;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_img_wrap {
    width: 200px;
    height: 200px;
  }
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_img_wrap .column_ranking_box_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_img_rank .column_ranking_box_img_wrap .column_ranking_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail {
  padding: 0 0 0 20px;
  border-left: 1px solid #86878D;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail .column_ranking_box_date_title {
  display: block;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail .column_ranking_box_date_title .column_ranking_box_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #86878D;
  line-height: 1.5;
  left: 0.1em;
  margin: 0 0 8px;
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail .column_ranking_box_date_title .column_ranking_box_date .new_text {
  margin: 0 0 0 16px;
  color: #EF8787;
}

@media only screen and (max-width: 640px) {
  .column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail .column_ranking_box_date_title .column_ranking_box_date .new_text {
    margin: 0 0 0 8px;
  }
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail .column_ranking_box_date_title .column_ranking_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail .column_ranking_box_date_title .column_ranking_box_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail .column_ranking_box_category {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box .column_ranking_box_detail .column_ranking_box_category {
    font-size: 12px;
  }
}

@media only screen and (min-width: 960px) {
  .column_ranking_scroll_block .column_ranking_box_wrap .column_ranking_box:hover .column_ranking_box_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.new_column_block {
  padding: 0 0;
  background-color: #FFF;
}

.column_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) {
  .column_box_wrap {
    display: block;
  }
}

.column_box_wrap .column_box {
  width: calc((100% - 96px) /3);
  margin: 0 48px 72px 0;
}

@media only screen and (max-width: 840px) {
  .column_box_wrap .column_box {
    width: calc((100% - 48px) /2);
  }
}

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

.column_box_wrap .column_box:nth-of-type(3n) {
  margin: 0 0 72px 0;
}

@media only screen and (max-width: 840px) {
  .column_box_wrap .column_box:nth-of-type(3n) {
    margin: 0 48px 72px 0;
  }
}

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

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

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

.column_box_wrap .column_box .column_box_img_wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 0 24px;
}

.column_box_wrap .column_box .column_box_img_wrap .column_box_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.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: 50% 50%;
  object-position: 50% 50%;
}

.column_box_wrap .column_box .column_box_detail {
  padding: 0 0 0 20px;
  border-left: 1px solid #86878D;
}

.column_box_wrap .column_box .column_box_detail .column_box_date_title {
  display: block;
}

.column_box_wrap .column_box .column_box_detail .column_box_date_title .column_box_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #86878D;
  line-height: 1.5;
  left: 0.1em;
  margin: 0 0 8px;
}

.column_box_wrap .column_box .column_box_detail .column_box_date_title .column_box_date .new_text {
  margin: 0 0 0 16px;
  color: #EF8787;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_detail .column_box_date_title .column_box_date .new_text {
    margin: 0 0 0 8px;
  }
}

.column_box_wrap .column_box .column_box_detail .column_box_date_title .column_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 20px;
  letter-spacing: 0.1em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(20px*2);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_detail .column_box_date_title .column_box_title {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*2);
  }
}

.column_box_wrap .column_box .column_box_detail .column_box_category {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .column_box_wrap .column_box .column_box_detail .column_box_category {
    font-size: 12px;
  }
}

@media only screen and (min-width: 960px) {
  .column_box_wrap .column_box:hover .column_box_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/*column_detail*/
.column_detail_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

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

.column_detail_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 30px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 24px;
  margin: 0 0 48px;
  border-bottom: 1px solid #414141;
}

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

.column_detail_category_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 80px;
}

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

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

.column_detail_category_tag .column_detail_category {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  white-space: nowrap;
  margin: 0 64px 0 0;
}

@media only screen and (max-width: 840px) {
  .column_detail_category_tag .column_detail_category {
    margin: 0 0 24px 0;
  }
}

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

.column_detail_category_tag .column_detail_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 -40px;
}

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

.column_detail_category_tag .column_detail_tag_list .column_detail_tag_item {
  margin: 0 40px 40px 0;
}

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

.column_detail_category_tag .column_detail_tag_list .column_detail_tag_item .column_detail_tag_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .column_detail_category_tag .column_detail_tag_list .column_detail_tag_item .column_detail_tag_link {
    font-size: 13px;
  }
}

.column_detail_category_tag .column_detail_tag_list .column_detail_tag_item .column_detail_tag_link:before {
  content: "#";
  color: #86878D;
}

.column_detail_view_favourite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 0 24px;
}

.column_detail_view_favourite .column_detail_view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 24px 0 0;
}

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

.column_detail_view_favourite .column_detail_view img {
  width: 16px;
  margin: 0 8px 0 0;
}

.column_detail_view_favourite .column_detail_favourite_btn {
  padding: 8px 24px;
  background-color: #FFF;
  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;
  border: 1px solid #414141;
}

@media only screen and (max-width: 640px) {
  .column_detail_view_favourite .column_detail_favourite_btn {
    padding: 4px 12px;
  }
}

.column_detail_view_favourite .column_detail_favourite_btn img {
  width: 14px;
}

.column_detail_view_favourite .column_detail_favourite_btn .column_detail_favourite_num {
  margin: 0 0 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .column_detail_view_favourite .column_detail_favourite_btn .column_detail_favourite_num {
    font-size: 13px;
  }
}

.column_detail_view_favourite .column_detail_favourited_btn {
  padding: 8px 24px;
  background-color: #FFF;
  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;
  border: 1px solid #414141;
}

@media only screen and (max-width: 640px) {
  .column_detail_view_favourite .column_detail_favourited_btn {
    padding: 4px 12px;
  }
}

.column_detail_view_favourite .column_detail_favourited_btn img {
  width: 14px;
}

.column_detail_view_favourite .column_detail_favourited_btn .column_detail_favourited_num {
  margin: 0 0 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .column_detail_view_favourite .column_detail_favourited_btn .column_detail_favourited_num {
    font-size: 13px;
  }
}

.column_detail_maim_img {
  width: 100%;
}

.column_detail_maim_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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 120px;
}

@media only screen and (max-width: 640px) {
  #column_editor p {
    margin: 0 0 72px;
  }
}

#column_editor p a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#column_editor div {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 120px;
}

#column_editor div a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#column_editor ul {
  padding: 48px;
  background-color: #F5F5F5;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #column_editor ul {
    padding: 24px;
    margin: 0 0 48px;
  }
}

#column_editor ul li {
  padding: 0 0 24px 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

#column_editor ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #414141;
}

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

#column_editor ol {
  padding: 48px 48px 48px 48px;
  background-color: #FFF;
  margin: 0 0 80px;
  list-style: none;
  border: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  #column_editor ol {
    padding: 24px;
    margin: 0 0 48px;
  }
}

#column_editor ol li {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@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 h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 32px;
  margin: 0 0 80px;
  border-bottom: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  #column_editor h2 {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

#column_editor h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 0 36px;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #column_editor h3 {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

#column_editor h3:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #414141;
}

#column_editor h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #column_editor h4 {
    font-size: 18px;
    margin: 0 0 48px;
  }
}

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

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

.column_detail_recommend_column {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

.column_detail_recommend_item {
  padding: 240px 0;
  background-color: #FFF;
}

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

.column_detail_column_ranking {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

.column_detail_search {
  padding: 240px 0;
  background-color: #FFF;
}

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

/*column_list*/
.column_search_column_block {
  margin: 200px 0 0;
  width: 100%;
  padding: 80px 24px;
  border: 1px solid #BCBCBC;
}

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

.column_search_column_block .column_search_column_block_content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.column_search_column_block .column_search_column_block_content .column_search_column_block_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 32px;
  margin: 0 0 64px;
  border-bottom: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  .column_search_column_block .column_search_column_block_content .column_search_column_block_title {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

.column_search_column_block .column_search_column_block_content .column_search_column_block_main_img {
  width: 100%;
  margin: 0 0 80px;
}

.column_search_column_block .column_search_column_block_content .column_search_column_block_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

#column_search_editor p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 120px;
}

@media only screen and (max-width: 640px) {
  #column_search_editor p {
    margin: 0 0 72px;
  }
}

#column_search_editor p a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#column_search_editor div {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 0 0 120px;
}

#column_search_editor div a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#column_search_editor ul {
  padding: 48px;
  background-color: #F5F5F5;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #column_search_editor ul {
    padding: 24px;
    margin: 0 0 48px;
  }
}

#column_search_editor ul li {
  padding: 0 0 24px 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

#column_search_editor ul li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #414141;
}

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

#column_search_editor ol {
  padding: 48px 48px 48px 48px;
  background-color: #FFF;
  margin: 0 0 80px;
  list-style: none;
  border: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  #column_search_editor ol {
    padding: 24px;
    margin: 0 0 48px;
  }
}

#column_search_editor ol li {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #BCBCBC;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

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

#column_search_editor h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 32px;
  margin: 0 0 80px;
  border-bottom: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  #column_search_editor h2 {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

#column_search_editor h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  padding: 0 0 0 36px;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #column_search_editor h3 {
    font-size: 20px;
    margin: 0 0 48px;
  }
}

#column_search_editor h3:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #414141;
}

#column_search_editor h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  #column_search_editor h4 {
    font-size: 18px;
    margin: 0 0 48px;
  }
}

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

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

.column_list_search {
  padding: 240px 0;
  background-color: #FFFDF7;
}

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

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

      favourite.scss

=======================*/
.favourite_type_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  margin: 0 0 72px;
}

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

.favourite_type_list .favourite_type_item {
  width: 50%;
}

.favourite_type_list .favourite_type_item .favourite_type_link {
  display: block;
  width: 100%;
  padding: 16px 16px 24px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #BCBCBC;
}

@media only screen and (max-width: 640px) {
  .favourite_type_list .favourite_type_item .favourite_type_link {
    font-size: 18px;
    padding: 12px 8px 16px;
  }
}

.favourite_type_list .favourite_type_item .favourite_type_link.active {
  position: relative;
  color: #414141;
  border-bottom: 1px solid #414141;
}

.favourite_type_list .favourite_type_item .favourite_type_link.active::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #414141;
}

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

      contact.scss

=======================*/
.contact_confirm_list .contact_confirm_item {
  padding: 0 0 48px;
  margin: 0 0 48px;
  border-bottom: 1px solid #BCBCBC;
  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) {
  .contact_confirm_list .contact_confirm_item {
    display: block;
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_img_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) {
  .contact_confirm_list .contact_confirm_item .contact_confirm_item_img_detail {
    width: 100%;
    margin: 0 0 16px;
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_img_detail .contact_confirm_item_img {
  width: 120px;
  height: 120px;
  margin: 0 64px 0 0;
}

@media only screen and (max-width: 640px) {
  .contact_confirm_list .contact_confirm_item .contact_confirm_item_img_detail .contact_confirm_item_img {
    width: 80px;
    height: 80px;
    margin: 0 24px 0 0;
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_img_detail .contact_confirm_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_img_detail .contact_confirm_item_detail {
  width: calc(100% - 184px);
}

@media only screen and (max-width: 640px) {
  .contact_confirm_list .contact_confirm_item .contact_confirm_item_img_detail .contact_confirm_item_detail {
    width: calc(100% - 104px);
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_img_detail .contact_confirm_item_detail .contact_confirm_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_img_detail .contact_confirm_item_detail .contact_confirm_item_num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 11px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn {
  width: 50%;
  padding: 0 0 0 80px;
  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) {
  .contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn {
    width: 100%;
    padding: 0 0 0 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_price {
  width: calc(100% - 120px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  vertical-align: bottom;
  text-align: right;
}

@media only screen and (max-width: 840px) {
  .contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_price {
    width: calc(100% - 80px);
    text-align: left;
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_price .title {
  font-size: 13px;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_price .title {
    font-size: 12px;
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_price .yen {
  font-size: 22px;
}

@media only screen and (max-width: 640px) {
  .contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_price .yen {
    font-size: 20px;
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_price .yen .tax {
  font-size: 11px;
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_delete_btn {
  width: 120px;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-decoration: underline;
}

@media only screen and (max-width: 840px) {
  .contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_delete_btn {
    width: 80px;
  }
}

.contact_confirm_list .contact_confirm_item .contact_confirm_item_price_delete_btn .contact_confirm_item_delete_btn img {
  width: 10px;
  margin: 0 8px 0 0;
}

.contact_block_wrap .contact_block {
  margin: 0 0 180px;
}

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

.contact_block_wrap .contact_block:last-child {
  margin: 0 0 0;
}

.contact_prof_list .contact_prof_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 48px;
}

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

.contact_prof_list .contact_prof_item:last-child {
  margin: 0 0 0;
}

.contact_prof_list .contact_prof_item .contact_prof_item_title {
  width: 360px;
  padding: 0 40px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .contact_prof_list .contact_prof_item .contact_prof_item_title {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 16px;
  }
}

.contact_prof_list .contact_prof_item .contact_prof_item_detail {
  width: calc(100% - 360px);
}

@media only screen and (max-width: 640px) {
  .contact_prof_list .contact_prof_item .contact_prof_item_detail {
    width: 100%;
  }
}

.contact_prof_list .contact_prof_item .contact_prof_item_detail .contact_prof_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .contact_prof_list .contact_prof_item .contact_prof_item_detail .contact_prof_item_text {
    width: 100%;
    font-size: 13px;
  }
}

.contact_list .contact_item {
  padding: 0 0 48px;
  margin: 0 0 48px;
  border-bottom: 1px solid #BCBCBC;
  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) {
  .contact_list .contact_item {
    display: block;
  }
}

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

.contact_list .contact_item .contact_item_img_detail {
  width: calc(100% - 288px);
  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) {
  .contact_list .contact_item .contact_item_img_detail {
    width: 100%;
    margin: 0 0 16px;
  }
}

.contact_list .contact_item .contact_item_img_detail .contact_item_img {
  width: 120px;
  height: 120px;
  margin: 0 64px 0 0;
}

@media only screen and (max-width: 640px) {
  .contact_list .contact_item .contact_item_img_detail .contact_item_img {
    width: 80px;
    height: 80px;
    margin: 0 24px 0 0;
  }
}

.contact_list .contact_item .contact_item_img_detail .contact_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.contact_list .contact_item .contact_item_img_detail .contact_item_detail {
  width: calc(100% - 184px);
}

@media only screen and (max-width: 640px) {
  .contact_list .contact_item .contact_item_img_detail .contact_item_detail {
    width: calc(100% - 104px);
  }
}

.contact_list .contact_item .contact_item_img_detail .contact_item_detail .contact_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

.contact_list .contact_item .contact_item_img_detail .contact_item_detail .contact_item_num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 11px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.contact_list .contact_item .contact_item_price {
  width: 256px;
  margin: 0 0 0 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  vertical-align: bottom;
  text-align: right;
}

@media only screen and (max-width: 840px) {
  .contact_list .contact_item .contact_item_price {
    width: 100%;
    margin: 0 0 0 0;
    text-align: left;
  }
}

.contact_list .contact_item .contact_item_price .title {
  font-size: 13px;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .contact_list .contact_item .contact_item_price .title {
    font-size: 12px;
  }
}

.contact_list .contact_item .contact_item_price .yen {
  font-size: 22px;
}

@media only screen and (max-width: 640px) {
  .contact_list .contact_item .contact_item_price .yen {
    font-size: 20px;
  }
}

.contact_list .contact_item .contact_item_price .yen .tax {
  font-size: 11px;
}

.contact_comment .contact_textarea {
  width: 100%;
  height: 360px;
  resize: none;
  border: 1px solid #BCBCBC;
  padding: 24px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 2;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .contact_comment .contact_textarea {
    height: 240px;
    padding: 8px 8px;
  }
}

.contact_comment .contact_textarea::-webkit-input-placeholder {
  color: #86878D;
}

.contact_comment .contact_textarea::-ms-input-placeholder {
  color: #86878D;
}

.contact_comment .contact_textarea::placeholder {
  color: #86878D;
}

.contact_note {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

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

.contact_note a {
  color: #414141;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

      form.scss

=======================*/
.form_list .form_item {
  margin: 0 0 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 960px) {
  .form_list .form_item {
    display: block;
  }
}

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

.form_list .form_item:last-child {
  margin: 0 0 0;
}

.form_list .form_item .form_item_title {
  width: 360px;
  padding: 0 40px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  .form_list .form_item .form_item_title {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 16px;
  }
}

.form_list .form_item .form_item_title .required {
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  color: #E34646;
  margin: 0 0 0 4px;
}

.form_list .form_item .form_item_title .note {
  display: block;
  font-size: 12px;
  color: #86878D;
  margin: 16px 0 0;
}

.form_list .form_item .form_item_input_block {
  width: calc(100% - 360px);
}

@media only screen and (max-width: 960px) {
  .form_list .form_item .form_item_input_block {
    width: 100%;
  }
}

.form_list .form_item .form_item_input_block .form_input_100 {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #BCBCBC;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_input_100 {
    padding: 12px 8px;
  }
}

.form_list .form_item .form_item_input_block .form_input_100::-webkit-input-placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_input_100::-ms-input-placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_input_100::placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_input_100:focus {
  outline: 0;
}

.form_list .form_item .form_item_input_block .form_input_100.mb_24 {
  margin: 0 0 24px 0;
}

.form_list .form_item .form_item_input_block .form_textarea {
  width: 100%;
  height: 220px;
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #BCBCBC;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_textarea {
    padding: 12px 8px;
  }
}

.form_list .form_item .form_item_input_block .form_textarea::-webkit-input-placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_textarea::-ms-input-placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_textarea::placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_textarea:focus {
  outline: 0;
}

.form_list .form_item .form_item_input_block .form_item_input_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_input_240 {
  display: block;
  width: 240px;
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #BCBCBC;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 40px 0 0;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_item_input_flex .form_input_240 {
    width: 160px;
    padding: 12px 8px;
    margin: 0 16px 0 0;
  }
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_input_240:last-child {
  margin: 0 0 0 0;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_input_240::-webkit-input-placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_input_240::-ms-input-placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_input_240::placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_input_240:focus {
  outline: 0;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_item_unchangeable_text {
  padding: 0 0 0 40px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin: 0 40px 0 0;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_item_input_flex .form_item_unchangeable_text {
    margin: 0 24px 0 0;
  }
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_item_unchangeable_text:last-child {
  margin: 0 0 0 0;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_item_unchangeable_text::before {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #BCBCBC;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_item_unchangeable_text:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 7px;
  width: 12px;
  height: 12px;
  background-color: #414141;
  opacity: 0;
}

.form_list .form_item .form_item_input_block .form_item_input_flex .form_item_unchangeable_text.active:after {
  opacity: 1;
}

.form_list .form_item .form_item_input_block .form_post_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 24px;
}

.form_list .form_item .form_item_input_block .form_post_block .form_post_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_post_block .form_post_text {
    margin: 0 16px 0 0;
  }
}

.form_list .form_item .form_item_input_block .form_post_block .form_input_post {
  display: block;
  width: 120px;
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #BCBCBC;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_post_block .form_input_post {
    width: 80px;
    padding: 12px 8px;
  }
}

.form_list .form_item .form_item_input_block .form_post_block .form_input_post::-webkit-input-placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_post_block .form_input_post::-ms-input-placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_post_block .form_input_post::placeholder {
  color: #86878D;
}

.form_list .form_item .form_item_input_block .form_post_block .form_input_post:focus {
  outline: 0;
}

.form_list .form_item .form_item_input_block .form_post_block .form_post_unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 24px;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_post_block .form_post_unit {
    margin: 0 16px;
  }
}

.form_list .form_item .form_item_input_block .form_post_block .form_post_btn {
  width: 160px;
  height: 56px;
  background-color: #86878D;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_post_block .form_post_btn {
    width: 100px;
    height: 42px;
    font-size: 14px;
    margin: 0 0 0 16px;
  }
}

.form_list .form_item .form_item_input_block .form_select_240 {
  display: block;
  width: 240px;
  padding: 16px 32px 16px 16px;
  background-color: #FFF;
  border: 1px solid #BCBCBC;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #86878D;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
  -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;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_block .form_select_240 {
    padding: 12px 24px 12px 8px;
    background-position: right 8px center;
  }
}

.form_list .form_item .form_item_input_block .form_select_240:focus {
  outline: 0;
}

.form_list .form_item .form_item_input_block .form_select_240.active {
  color: #414141;
}

.form_radio_label {
  margin: 0 40px 0 0;
}

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

.form_radio_text {
  padding: 0 0 0 40px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.form_radio_text:last-child {
  margin: 0 0 0 0;
}

.form_radio_text::before {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #BCBCBC;
}

.form_radio_text:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 7px;
  width: 12px;
  height: 12px;
  background-color: #EF8787;
  opacity: 0;
}

.form_radio {
  display: none;
}

.form_radio:checked + .form_radio_text::after {
  opacity: 1;
}

.form_note_text {
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
  margin: 72px auto 100px;
}

@media only screen and (max-width: 640px) {
  .form_note_text {
    margin: 32px auto 48px;
  }
}

.form_note_text span {
  color: #EF8787;
}

.form_item_unchangeable_text {
  padding: 0 0 0 40px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin: 0 40px 0 0;
}

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

.form_item_unchangeable_text:last-child {
  margin: 0 0 0 0;
}

.form_item_unchangeable_text::before {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #BCBCBC;
}

.form_item_unchangeable_text:after {
  content: "";
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 7px;
  width: 12px;
  height: 12px;
  background-color: #414141;
  opacity: 0;
}

.form_item_unchangeable_text.active:after {
  opacity: 1;
}

.form_login_block {
  margin: 140px 0 0;
  padding: 140px 0 0;
  border-top: 1px solid #BCBCBC;
}

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

.form_login_block .form_login_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  margin: 0 0 24px;
}

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

.form_line_block {
  margin: 160px 0 0;
  padding: 72px 32px;
  border: 1px solid #414141;
}

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

.form_line_block .form_line_block_title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .form_line_block .form_line_block_title {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

.form_line_block .form_line_block_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

.form_line_block .form_line_qr {
  margin: 96px auto 0;
  width: 240px;
}

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

.form_line_block .form_line_qr img {
  width: 100%;
}

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

      mypage.scss

=======================*/
.mypage_menu_list .mypage_menu_item .mypage_menu_link {
  display: block;
  width: 100%;
  position: relative;
  padding: 24px 24px 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #BCBCBC;
}

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

.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-size: contain;
  background-repeat: no-repeat;
}

.mypage_menu_list .mypage_menu_item .mypage_menu_link .mypage_menu_link_img {
  width: 16px;
  margin: 0 16px 0 0;
}

.mypage_menu_list .mypage_menu_item .mypage_menu_link .mypage_menu_link_img img {
  width: 100%;
}

.mypage_menu_list .mypage_menu_item .mypage_menu_link .mypage_menu_link_img img.size_s {
  width: 14px;
}

.mypage_menu_list .mypage_menu_item .mypage_menu_link .mypage_menu_link_title {
  width: calc(100% - 32px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .mypage_menu_list .mypage_menu_item .mypage_menu_link .mypage_menu_link_title {
    font-size: 14px;
  }
}

.mypage_under_review_text {
  padding: 16px 24px;
  border: 1px solid #414141;
  text-align: center;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 70px;
}

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

.mypage_history_list .mypage_history_item {
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid #BCBCBC;
}

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

.mypage_history_list .mypage_history_item .mypage_history_item_date_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 32px;
}

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

.mypage_history_list .mypage_history_item .mypage_history_item_date_link .mypage_history_item_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .mypage_history_list .mypage_history_item .mypage_history_item_date_link .mypage_history_item_date {
    font-size: 14px;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_item_date_link .mypage_history_item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mypage_history_list .mypage_history_item .mypage_history_item_date_link .mypage_history_item_link img {
  width: 10px;
  margin: 0 10px 0 0;
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item {
    display: block;
    margin: 0 0 24px;
  }
}

.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: 200px;
  margin: 0 40px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@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: 100%;
    margin: 0 0 8px 0;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail {
  width: calc(100% - 240px);
}

@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_detail {
    width: 100%;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail .mypage_history_sub_item_img_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail .mypage_history_sub_item_img_list .mypage_history_sub_item_img_item {
  width: 80px;
  height: 80px;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 840px) {
  .mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail .mypage_history_sub_item_img_list .mypage_history_sub_item_img_item {
    width: 60px;
    height: 60px;
    margin: 0 8px 0 0;
  }
}

@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_detail .mypage_history_sub_item_img_list .mypage_history_sub_item_img_item {
    width: 40px;
    height: 40px;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail .mypage_history_sub_item_img_list .mypage_history_sub_item_img_item:last-child {
  margin: 0 20px 0 0;
}

@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_detail .mypage_history_sub_item_img_list .mypage_history_sub_item_img_item:last-child {
    margin: 0 16px 0 0;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail .mypage_history_sub_item_img_list .mypage_history_sub_item_img_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail .mypage_history_sub_item_img_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@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_detail .mypage_history_sub_item_img_text {
    font-size: 12px;
  }
}

.mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail .mypage_history_sub_item_comment {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  letter-spacing: 0.1em;
  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) {
  .mypage_history_list .mypage_history_item .mypage_history_sub_list .mypage_history_sub_item .mypage_history_sub_item_detail .mypage_history_sub_item_comment {
    font-size: 13px;
    line-height: 26px;
    max-height: calc(26px*2);
  }
}

.mypage_history_detail_list .mypage_history_detail_item {
  margin: 0 0 72px;
}

.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 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

.mypage_history_detail_list .mypage_history_detail_item .mypage_history_detail_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 2;
  letter-spacing: 0.1em;
}

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

      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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  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: #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  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 {
    width: 100%;
    margin: 0 0 8px 0;
  }
}

.guide_list .guide_item .guide_item_text {
  width: calc(100% - 360px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  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: 13px;
  }
}

.guide_list .guide_item .guide_item_text a {
  color: #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  color: #414141;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #EF8787;
  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: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  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_list .policy_item {
  margin: 0 0 64px;
}

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

.policy_list .policy_item .policy_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .policy_list .policy_item .policy_item_title {
    font-size: 18px;
    margin: 0 0 16px;
  }
}

.policy_list .policy_item .policy_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 3;
  letter-spacing: 0.1em;
}

.privacy_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 64px;
}

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

.policy_end {
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #414141;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* ======================= 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;
}
