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

      common.scss

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

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

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

/* フェードイン(初期値) */
.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_title_wrap {
  margin: 0 0 64px;
}

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

.common_title_wrap .common_title {
  text-align: center;
  font-size: 34px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0 0 26px;
}

@media only screen and (max-width: 640px) {
  .common_title_wrap .common_title {
    font-size: 26px;
  }
}

.common_title_wrap .common_title:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0px;
  width: 292px;
  height: 10px;
  background-image: url(../images/common/img_title_border_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .common_title_wrap .common_title:after {
    width: 260px;
  }
}

.common_title_wrap .common_title_w {
  text-align: center;
  font-size: 34px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0 0 26px;
}

@media only screen and (max-width: 640px) {
  .common_title_wrap .common_title_w {
    font-size: 26px;
  }
}

.common_title_wrap .common_title_w:after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0px;
  width: 292px;
  height: 10px;
  background-image: url(../images/common/img_title_border_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .common_title_wrap .common_title_w:after {
    width: 260px;
  }
}

.common_title_wrap .common_title_text {
  text-align: center;
  margin: 50px 0 0;
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
}

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

.common_title_wrap .common_title_text_w {
  text-align: center;
  margin: 50px 0 0;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
  letter-spacing: 0.2em;
}

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

.common_btn_wrap {
  margin: 60px 0 0;
}

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

.common_btn {
  text-align: center;
  width: 100%;
  max-width: 348px;
  height: 68px;
  border-radius: 3px;
  background-color: #333;
  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: 10px 60px;
  position: relative;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .common_btn {
    height: 60px;
    font-size: 15px;
    padding: 10px 50px;
  }
}

.common_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 28px;
  height: 6px;
  background-image: url(../images/common/img_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

.common_back_btn {
  text-align: center;
  width: 100%;
  max-width: 348px;
  height: 68px;
  border-radius: 3px;
  background-color: #333;
  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: 10px 60px;
  position: relative;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .common_back_btn {
    height: 60px;
    font-size: 15px;
    padding: 10px 50px;
  }
}

.common_back_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  width: 28px;
  height: 6px;
  background-image: url(../images/common/img_arrow_w_back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

.common_submit_btn {
  text-align: center;
  width: 100%;
  max-width: 348px;
  height: 68px;
  border-radius: 3px;
  background: -webkit-gradient(linear, right top, left top, from(#003613), color-stop(76.2%, #013e17), to(#036527));
  background: linear-gradient(270deg, #003613 0%, #013e17 76.2%, #036527 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 60px;
  position: relative;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .common_submit_btn {
    height: 60px;
    font-size: 15px;
    padding: 10px 50px;
  }
}

.common_submit_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 28px;
  height: 6px;
  background-image: url(../images/common/img_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

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

/*pankuzu*/
.pankuzu_block {
  padding: 10px 0;
  background-color: #FFF;
}

.pankuzu_block .pankuzu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pankuzu_block .pankuzu_list::-webkit-scrollbar {
  display: none;
}

.pankuzu_block .pankuzu_list .pankuzu_item {
  margin: 0 44px 0 0;
  position: relative;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .pankuzu_block .pankuzu_list .pankuzu_item {
    margin: 0 22px 0 0;
    font-size: 12px;
  }
}

.pankuzu_block .pankuzu_list .pankuzu_item img {
  width: 15px;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

.pankuzu_block .pankuzu_list .pankuzu_item:after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .pankuzu_block .pankuzu_list .pankuzu_item:after {
    right: -17px;
  }
}

.pankuzu_block .pankuzu_list .pankuzu_item:last-child:after {
  content: none;
}

.pankuzu_block .pankuzu_list .pankuzu_item .pankuzu_link {
  display: block;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .pankuzu_block .pankuzu_list .pankuzu_item .pankuzu_link {
    font-size: 12px;
  }
}

.pankuzu_block .pankuzu_list .pankuzu_item .pankuzu_link img {
  width: 15px;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

.common_page_title_block {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 50px 0;
}

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

.common_page_title_block .common_page_title_content {
  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%;
  min-height: 300px;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block .common_page_title_content {
    min-height: 160px;
  }
}

.common_page_title_block .common_page_title_content .common_page_title_content_inner .common_page_title {
  text-align: center;
  font-size: 40px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .common_page_title_block .common_page_title_content .common_page_title_content_inner .common_page_title {
    font-size: 28px;
    margin: 0 0 20px;
  }
}

.common_page_title_block .common_page_title_content .common_page_title_content_inner .common_page_text {
  text-align: center;
  font-size: 16px;
  color: #FFF;
  line-height: 2;
  letter-spacing: 0.2em;
}

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

.common_page {
  background-color: #FCFAF5;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0 140px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.common_page::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 130px;
  left: -200px;
  background-image: url(../images/common/bg_dot01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 453px;
  height: 440px;
}

.common_page:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 80px;
  right: -200px;
  background-image: url(../images/common/bg_dot02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 392px;
  height: 385px;
}

.common_page_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;
  margin: 60px 0 0;
}

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

.common_page_list .common_page_item {
  margin: 0 10px;
}

.common_page_list .common_page_item .common_page_link_prev {
  display: block;
  padding: 10px;
}

.common_page_list .common_page_item .common_page_link_prev img {
  display: block;
  width: 16px;
}

@media only screen and (max-width: 640px) {
  .common_page_list .common_page_item .common_page_link_prev img {
    width: 14px;
  }
}

.common_page_list .common_page_item .common_page_link {
  width: 38px;
  height: 42px;
  border: 1px solid #333;
  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-size: 16px;
  color: #333;
  line-height: 1;
}

@media only screen and (max-width: 640px) {
  .common_page_list .common_page_item .common_page_link {
    width: 30px;
    height: 34px;
    font-size: 14px;
  }
}

.common_page_list .common_page_item .common_page_link.active {
  background-color: #333;
  color: #FFF;
}

.common_page_list .common_page_item .common_page_item_dot {
  font-size: 16px;
  color: #333;
}

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

.common_page_list .common_page_item .common_page_link_next {
  display: block;
  padding: 10px;
}

.common_page_list .common_page_item .common_page_link_next img {
  display: block;
  width: 16px;
}

@media only screen and (max-width: 640px) {
  .common_page_list .common_page_item .common_page_link_next img {
    width: 14px;
  }
}

.common_page_b {
  background-color: #FCFAF5;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 200px 0 140px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1200px) {
  .common_page_b {
    padding: 100px 0 140px;
  }
}

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

.common_page_b::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 130px;
  left: -200px;
  background-image: url(../images/common/bg_dot01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 453px;
  height: 440px;
}

.common_page_b:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 80px;
  right: -200px;
  background-image: url(../images/common/bg_dot02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 392px;
  height: 385px;
}

.common_w_sec {
  background-color: #FFF;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.common_w_sec::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -300px;
  left: -200px;
  background-image: url(../images/common/bg_dot03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 620px;
  height: 620px;
}

.common_w_sec:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -100px;
  background-image: url(../images/common/bg_dot01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 396px;
  height: 388px;
}

.common_b_sec {
  background-color: #FCFAF5;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.common_b_sec::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -100px;
  left: -100px;
  background-image: url(../images/common/bg_dot02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 425px;
  height: 417px;
}

.common_b_sec:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 60px;
  right: -100px;
  background-image: url(../images/common/bg_dot03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 425px;
  height: 425px;
}

.common_page_top_title_wrap {
  margin: 0 0 64px;
}

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

.common_page_top_title_wrap .common_page_top_title {
  padding: 80px 0 0;
  position: relative;
  text-align: center;
  font-size: 40px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 1200px) {
  .common_page_top_title_wrap .common_page_top_title {
    padding: 60px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .common_page_top_title_wrap .common_page_top_title {
    padding: 42px 0 0;
    font-size: 28px;
  }
}

.common_page_top_title_wrap .common_page_top_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 52px;
  background-color: #011e4e;
}

@media only screen and (max-width: 1200px) {
  .common_page_top_title_wrap .common_page_top_title::before {
    height: 40px;
  }
}

@media only screen and (max-width: 640px) {
  .common_page_top_title_wrap .common_page_top_title::before {
    height: 30px;
  }
}

.common_page_top_title_wrap .common_page_top_text {
  text-align: center;
  margin: 50px 0 0;
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
}

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

.common_box {
  width: 100%;
  padding: 50px 30px;
  background-color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 640px) {
  .common_box {
    padding: 30px 20px;
  }
}

.common_box .common_box_inner {
  max-width: 800px;
  margin: 0 auto;
}

.common_box .common_box_inner .common_box_text {
  text-align: center;
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
}

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

.common_box .common_box_inner .common_box_text a {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
}

.common_text_back_btn_wrap {
  margin: 20px 0 0;
  text-align: center;
}

.common_text_back_btn_wrap .common_text_back_btn {
  display: inline-block;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  text-decoration: underline;
  padding: 0 0 0 20px;
  position: relative;
}

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

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

/*popup*/
.common_filter {
  display: none;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
}

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

.common_popup_block .common_popup_close {
  outline: none;
  border: none;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}

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

.common_popup_block .common_thanks_text {
  text-align: center;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

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

.common_popup_block .common_popup_item_list {
  margin: 30px 0 0;
}

.common_popup_block .common_popup_item_list .common_popup_item_item {
  padding: 0 0 10px;
  border-bottom: 1px solid #333;
  margin: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.common_popup_block .common_popup_item_list .common_popup_item_item:last-child {
  padding: 0 0 0;
  margin: 0 0 0;
  border-bottom: none;
}

.common_popup_block .common_popup_item_list .common_popup_item_item .common_popup_item_item_img {
  width: 80px;
  height: 80px;
  margin: 0 20px 0 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.common_popup_block .common_popup_item_list .common_popup_item_item .common_popup_item_item_title {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  width: calc(100% - 240px);
}

@media only screen and (max-width: 640px) {
  .common_popup_block .common_popup_item_list .common_popup_item_item .common_popup_item_item_title {
    font-size: 12px;
    width: calc(100% - 190px);
  }
}

.common_popup_block .common_popup_item_list .common_popup_item_item .common_popup_item_item_text {
  font-size: 13px;
  color: #E20000;
  line-height: 1.5;
  text-align: right;
  width: 120px;
  margin: 0 0 0 20px;
}

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

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

      header.scss

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

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

.header_wrap .pc_header_wrap {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0 0 0 16px;
  background-color: #FFF;
}

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

.header_wrap .pc_header_wrap .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;
}

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

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_logo {
  display: block;
  width: 200px;
  margin: 0 40px 0 0;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_logo img {
  width: 100%;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100px;
}

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

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

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link {
  display: block;
  text-align: center;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link .pc_header_menu_link_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link .pc_header_menu_link_img img {
  width: 100%;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link .pc_header_menu_link_text {
  font-size: 14px;
  color: #011e4e;
  line-height: 1.3;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_lang_shop_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_lang_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 40px 0 0;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_lang_list .pc_header_lang_item {
  margin: 0 12px;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_lang_list .pc_header_lang_item .pc_header_lang_link {
  display: block;
  font-size: 16px;
  color: #57635C;
  line-height: 1.5;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_lang_list .pc_header_lang_item .pc_header_lang_link.active {
  color: #011e4e;
  border-bottom: 3px solid #011e4e;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_login_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: 90px;
  height: 100px;
  background-color: #b6d1fe;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_login_btn .pc_header_login_btn_inner .pc_header_login_btn_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_login_btn .pc_header_login_btn_inner .pc_header_login_btn_img img {
  display: block;
  width: 100%;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_login_btn .pc_header_login_btn_inner .pc_header_login_btn_text {
  text-align: center;
  font-size: 13px;
  color: #011e4e;
  line-height: 1.3;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_cart_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: 90px;
  height: 100px;
  background-color: #023180;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_cart_btn .pc_header_cart_btn_inner .pc_header_login_btn_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_cart_btn .pc_header_cart_btn_inner .pc_header_login_btn_img img {
  display: block;
  width: 100%;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_cart_btn .pc_header_cart_btn_inner .pc_header_login_btn_text {
  text-align: center;
  font-size: 13px;
  color: #FFF;
  line-height: 1.3;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_register_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: 90px;
  height: 100px;
  background: transparent linear-gradient(316deg, #011e4e 0%, #023180 40%, #034ecc 100%) 0% 0%;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_register_btn .pc_header_register_btn_inner .pc_header_register_btn_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_register_btn .pc_header_register_btn_inner .pc_header_register_btn_img img {
  display: block;
  width: 100%;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_register_btn .pc_header_register_btn_inner .pc_header_register_btn_text {
  text-align: center;
  font-size: 13px;
  color: #FFF;
  line-height: 1.3;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_mypage_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: 90px;
  height: 100px;
  background-color: #011e4e;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_mypage_btn .pc_header_mypage_btn_inner .pc_header_mypage_btn_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_mypage_btn .pc_header_mypage_btn_inner .pc_header_mypage_btn_img img {
  display: block;
  width: 100%;
}

.header_wrap .pc_header_wrap .pc_header_inner .pc_header_shop_menu_block .pc_header_mypage_btn .pc_header_mypage_btn_inner .pc_header_mypage_btn_text {
  text-align: center;
  font-size: 13px;
  color: #FFF;
  line-height: 1.3;
}

.header_wrap .sp_header {
  display: none;
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: #FFF;
  z-index: 1000;
}

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

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

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

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

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

.header_wrap .sp_header .sp_header_content .sp_header_menu_btn {
  width: 48px;
  height: 40px;
  border-radius: 10px;
  background-color: #011e4e;
  position: relative;
}

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

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

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

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

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

.header_wrap .sp_header_menu {
  display: none;
}

.header_wrap .sp_header_menu.active {
  display: block;
}

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

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_menu_list {
  margin: 0 0 30px;
}

.header_wrap .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;
  padding: 20px 0;
  border-bottom: 1px solid #DDDDDD;
  font-size: 16px;
  color: #011e4e;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link img {
  display: block;
  width: 20px;
  margin: 0 10px 0 0;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 30px;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item {
  margin: 0 4px;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_login {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #b6d1fe;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_login .sp_header_shop_menu_login_inner .sp_header_shop_menu_login_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_login .sp_header_shop_menu_login_inner .sp_header_shop_menu_login_img img {
  display: block;
  width: 100%;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_login .sp_header_shop_menu_login_inner .sp_header_shop_menu_login_text {
  text-align: center;
  font-size: 12px;
  color: #011e4e;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_cart {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #023180;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_cart .sp_header_shop_menu_cart_inner .sp_header_shop_menu_cart_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_cart .sp_header_shop_menu_cart_inner .sp_header_shop_menu_cart_img img {
  display: block;
  width: 100%;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_cart .sp_header_shop_menu_cart_inner .sp_header_shop_menu_cart_text {
  text-align: center;
  font-size: 12px;
  color: #FFF;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_register {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent linear-gradient(316deg, #011e4e 0%, #023180 40%, #034ecc 100%) 0% 0%;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_register .sp_header_shop_menu_register_inner .sp_header_shop_menu_register_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_register .sp_header_shop_menu_register_inner .sp_header_shop_menu_register_img img {
  display: block;
  width: 100%;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_register .sp_header_shop_menu_register_inner .sp_header_shop_menu_register_text {
  text-align: center;
  font-size: 12px;
  color: #FFF;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_mypage {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #011e4e;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_mypage .sp_header_shop_menu_mypage_inner .sp_header_shop_menu_mypage_img {
  width: 20px;
  margin: 0 auto 6px;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_mypage .sp_header_shop_menu_mypage_inner .sp_header_shop_menu_mypage_img img {
  display: block;
  width: 100%;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_shop_menu_list .sp_header_shop_menu_item .sp_header_shop_menu_mypage .sp_header_shop_menu_mypage_inner .sp_header_shop_menu_mypage_text {
  text-align: center;
  font-size: 12px;
  color: #FFF;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_lang_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_lang_list .sp_header_lang_item {
  margin: 0 10px;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_lang_list .sp_header_lang_item .sp_header_lang_link {
  display: block;
  font-size: 16px;
  color: #57635C;
  line-height: 1.5;
}

.header_wrap .sp_header_menu .sp_header_menu_inner .sp_header_lang_list .sp_header_lang_item .sp_header_lang_link.active {
  color: #011e4e;
  border-bottom: 3px solid #011e4e;
}

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

      footer.scss

=======================*/
.footer_wrap {
  background-color: #011e4e;
  padding: 80px 0 60px;
}

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

.footer_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 50px;
  padding: 0 0 50px;
  border-bottom: 1px solid #FFF;
}

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

.footer_top .footer_top_logo_block {
  width: 180px;
  margin: 0 90px 0 0;
}

@media only screen and (max-width: 840px) {
  .footer_top .footer_top_logo_block {
    width: 150px;
    margin: 0 50px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .footer_top .footer_top_logo_block {
    width: 100%;
    margin: 0 auto 30px;
  }
}

.footer_top .footer_top_logo_block .footer_top_logo {
  display: block;
  width: 100%;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .footer_top .footer_top_logo_block .footer_top_logo {
    width: 120px;
    margin: 0 auto 20px;
  }
}

.footer_top .footer_top_logo_block .footer_top_logo img {
  width: 100%;
}

.footer_top .footer_top_logo_block .footer_top_sns_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;
}

.footer_top .footer_top_logo_block .footer_top_sns_list .footer_top_sns_item {
  margin: 0 15px;
}

.footer_top .footer_top_logo_block .footer_top_sns_list .footer_top_sns_item .footer_top_sns_link {
  display: block;
  width: 40px;
}

@media only screen and (max-width: 640px) {
  .footer_top .footer_top_logo_block .footer_top_sns_list .footer_top_sns_item .footer_top_sns_link {
    width: 30px;
  }
}

.footer_top .footer_top_logo_block .footer_top_sns_list .footer_top_sns_item .footer_top_sns_link img {
  width: 100%;
}

.footer_top .footer_top_menu_block {
  width: calc(100% - 270px);
}

@media only screen and (max-width: 840px) {
  .footer_top .footer_top_menu_block {
    width: calc(100% - 200px);
  }
}

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

.footer_top .footer_top_menu_block .footer_top_menu_list {
  margin: 0 0 60px;
}

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

.footer_top .footer_top_menu_block .footer_top_menu_list .footer_top_menu_item {
  margin: 0 0 30px;
}

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

.footer_top .footer_top_menu_block .footer_top_menu_list .footer_top_menu_item:last-child {
  margin: 0 0 0;
}

.footer_top .footer_top_menu_block .footer_top_menu_list .footer_top_menu_item .footer_top_menu_item_title {
  display: block;
  padding: 0 0 0 24px;
  position: relative;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 16px;
}

.footer_top .footer_top_menu_block .footer_top_menu_list .footer_top_menu_item .footer_top_menu_item_title:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon_tea_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.footer_top .footer_top_menu_block .footer_top_menu_list .footer_top_menu_item .footer_top_category_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 0 0 24px;
  margin: 0 0 -20px;
}

.footer_top .footer_top_menu_block .footer_top_menu_list .footer_top_menu_item .footer_top_category_menu_list .footer_top_category_menu_item {
  margin: 0 20px 20px 0;
}

.footer_top .footer_top_menu_block .footer_top_menu_list .footer_top_menu_item .footer_top_category_menu_list .footer_top_category_menu_item .footer_top_category_menu_link {
  display: block;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
}

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

.footer_top .footer_top_menu_block .footer_top_shop_menu_list .footer_top_shop_menu_item {
  margin: 0 20px 20px 0;
}

.footer_top .footer_top_menu_block .footer_top_shop_menu_list .footer_top_shop_menu_item .footer_top_shop_menu_link {
  display: block;
  padding: 0 0 0 24px;
  position: relative;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
}

.footer_top .footer_top_menu_block .footer_top_shop_menu_list .footer_top_shop_menu_item .footer_top_shop_menu_link:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/common/icon_tea_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 100%;
}

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

.footer_bottom .footer_bottom_copy {
  font-size: 12px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .footer_bottom .footer_bottom_copy {
    font-size: 11px;
    text-align: center;
  }
}

.footer_bottom .footer_bottom_lang_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .footer_bottom .footer_bottom_lang_list {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer_bottom .footer_bottom_lang_list .footer_bottom_lang_item {
  margin: 0 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .footer_bottom .footer_bottom_lang_list .footer_bottom_lang_item {
    margin: 0 10px;
  }
}

.footer_bottom .footer_bottom_lang_list .footer_bottom_lang_item .footer_bottom_lang_link {
  display: block;
  font-size: 16px;
  color: #b6d1fe;
  line-height: 1.5;
}

.footer_bottom .footer_bottom_lang_list .footer_bottom_lang_item .footer_bottom_lang_link.active {
  color: #FFF;
  border-bottom: 3px solid #FFF;
}

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

      top.scss

=======================*/
/*top_fv*/
.top_fv .top_fv_inner {
  width: 100%;
  height: 660px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner {
    display: block;
    height: auto;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block {
  width: calc(100% - 420px);
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_slide_block {
    width: 100%;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list {
  width: 100%;
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item {
  width: 100%;
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item01 {
  width: 100%;
  height: 660px;
  background-image: url(../images/top/img_slide01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  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: 960px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item01 {
    height: 600px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item01 .top_fv_slide_item01_content {
  max-width: 720px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.86);
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item01 .top_fv_slide_item01_content {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.76);
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item01 .top_fv_slide_item01_content .top_fv_slide_item01_content_title {
  text-align: center;
  font-size: 36px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item01 .top_fv_slide_item01_content .top_fv_slide_item01_content_title {
    font-size: 26px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item01 .top_fv_slide_item01_content .top_fv_slide_item01_content_text {
  text-align: center;
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item01 .top_fv_slide_item01_content .top_fv_slide_item01_content_text {
    font-size: 14px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 660px;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 {
    height: 600px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_img {
  width: 50%;
  height: 660px;
  background-image: url(../images/top/img_slide02.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_img {
    height: 600px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap {
  width: 50%;
  height: 660px;
  background: url(../images/common/bg_100.png), transparent linear-gradient(138deg, #CCD6CF 0%, #577A63 100%) 0% 0%;
  background-repeat: repeat;
  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: 960px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap {
    height: 600px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap .top_fv_slide_item02_content {
  padding: 30px;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap .top_fv_slide_item02_content {
    padding: 20px 10px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap .top_fv_slide_item02_content .top_fv_slide_item02_content_img {
  width: 46px;
  margin: 0 auto 20px;
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap .top_fv_slide_item02_content .top_fv_slide_item02_content_img img {
  display: block;
  width: 100%;
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap .top_fv_slide_item02_content .top_fv_slide_item02_content_title {
  font-size: 36px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid #333;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap .top_fv_slide_item02_content .top_fv_slide_item02_content_title {
    font-size: 26px;
    padding: 0 0 20px;
    margin: 0 0 20px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap .top_fv_slide_item02_content .top_fv_slide_item02_content_text {
  font-size: 20px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item02 .top_fv_slide_item02_content_wrap .top_fv_slide_item02_content .top_fv_slide_item02_content_text {
    font-size: 16px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 {
  width: 100%;
  height: 660px;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 {
    height: 600px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_img {
  width: 100%;
  height: 410px;
  background-image: url(../images/top/img_slide03.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_img {
    height: 350px;
  }
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_img {
    height: 380px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_content {
  width: 100%;
  height: 250px;
  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: 30px;
  background: url(../images/common/bg_100.png), transparent linear-gradient(272deg, #fff1d8 0%, #fffdfa 100%) 0% 0%;
  background-repeat: repeat;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_content {
    height: 220px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_content .top_fv_slide_item03_content_inner {
  padding: 26px 0;
  background-image: url(../images/top/bg_slide03.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 150px;
  min-height: 150px;
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_content .top_fv_slide_item03_content_inner .top_fv_slide_item03_content_title {
  text-align: center;
  font-size: 36px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_content .top_fv_slide_item03_content_inner .top_fv_slide_item03_content_title {
    font-size: 26px;
  }
}

.top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_content .top_fv_slide_item03_content_inner .top_fv_slide_item03_content_title span {
  font-size: 26px;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_slide_block .top_fv_slide_list .top_fv_slide_item .top_fv_slide_item03 .top_fv_slide_item03_content .top_fv_slide_item03_content_inner .top_fv_slide_item03_content_title span {
    font-size: 20px;
  }
}

.top_fv .top_fv_inner .top_fv_menu_block {
  width: 420px;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_menu_block {
    width: 100%;
  }
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list {
    display: block;
  }
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item {
  width: 100%;
  height: 220px;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item {
    width: calc(100% / 3);
    height: 180px;
  }
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item {
    width: 100%;
    height: 140px;
  }
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link {
    height: 180px;
  }
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link {
    height: 140px;
  }
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link.bg01:after {
  background: url(../images/top/bg_top_fv_menu01.jpg) no-repeat center center;
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link.bg02:after {
  background: url(../images/top/bg_top_fv_menu02.jpg) no-repeat center center;
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link.bg03:after {
  background: url(../images/top/bg_top_fv_menu03.jpg) no-repeat center center;
}

@media only screen and (min-width: 960px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link:hover:after {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner {
  border: 2px solid #FFF;
  width: calc(100% - 12px);
  height: 208px;
  margin: 6px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner {
    height: 168px;
  }
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner {
    height: 128px;
  }
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner .top_fv_menu_link_content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner .top_fv_menu_link_content .top_fv_menu_link_title {
  font-size: 28px;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner .top_fv_menu_link_content .top_fv_menu_link_title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner .top_fv_menu_link_content .top_fv_menu_link_title {
    font-size: 20px;
  }
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner .top_fv_menu_link_content .top_fv_menu_link_arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
}

@media only screen and (max-width: 640px) {
  .top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner .top_fv_menu_link_content .top_fv_menu_link_arrow {
    width: 20px;
  }
}

.top_fv .top_fv_inner .top_fv_menu_block .top_fv_menu_list .top_fv_menu_item .top_fv_menu_link .top_fv_menu_link_inner .top_fv_menu_link_content .top_fv_menu_link_arrow img {
  width: 100%;
}

/*top_recommend_item*/
.top_recommend_item {
  background-color: #FCFAF5;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.top_recommend_item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 130px;
  left: -200px;
  background-image: url(../images/common/bg_dot01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 453px;
  height: 440px;
}

.top_recommend_item:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 80px;
  right: -200px;
  background-image: url(../images/common/bg_dot02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 392px;
  height: 385px;
}

/*top_item_ranking*/
.top_item_ranking {
  background-color: #FFF;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.top_item_ranking::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -300px;
  left: -200px;
  background-image: url(../images/common/bg_dot03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 620px;
  height: 620px;
}

/*top_item_search*/
.top_item_search {
  padding: 100px 0;
  background-image: url(../images/top/bg_top_category.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.top_item_search_block_wrap .top_item_search_block {
  margin: 0 0 50px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border-top: 6px solid #011e4e;
}

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

.top_item_search_block_wrap .top_item_search_block:last-child {
  margin: 0 0 0;
}

.top_item_search_block_icon {
  width: 20px;
  margin: 0 auto 10px;
}

.top_item_search_block_icon img {
  width: 100%;
}

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

.top_item_search_block_title {
  text-align: center;
  font-size: 22px;
  color: #011e4e;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 30px;
}

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

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

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

.top_category_list .top_category_item {
  width: calc((100% - 60px) /3);
  margin: 0 30px 30px 0;
  border-bottom: 2px solid #333;
}

@media only screen and (max-width: 840px) {
  .top_category_list .top_category_item {
    width: calc((100% - 30px) /2);
  }
}

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

.top_category_list .top_category_item:nth-of-type(3n) {
  margin: 0 0 30px 0;
}

@media only screen and (max-width: 840px) {
  .top_category_list .top_category_item:nth-of-type(3n) {
    margin: 0 30px 30px 0;
  }
}

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

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

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

.top_category_list .top_category_item .top_category_link {
  display: block;
  position: relative;
  text-align: center;
  padding: 20px 50px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_category_list .top_category_item .top_category_link {
    padding: 20px 40px;
    font-size: 15px;
  }
}

.top_category_list .top_category_item .top_category_link:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 28px;
  height: 6px;
  background-image: url(../images/common/img_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .top_category_list .top_category_item .top_category_link:after {
    width: 20px;
  }
}

@media only screen and (min-width: 960px) {
  .top_category_list .top_category_item .top_category_link:hover:after {
    right: 0px;
  }
}

/*top_category_detail*/
.top_category_detail .top_category_detail_block_wrap .top_category_detail_block {
  padding: 100px 0;
}

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

.top_category_detail .top_category_detail_block_wrap .top_category_detail_block:nth-child(odd) {
  background-color: #F4F7F5;
  background-image: url(../images/common/bg_100.png);
  background-repeat: repeat;
}

.top_category_detail .top_category_detail_block_wrap .top_category_detail_block:nth-child(even) {
  background-color: #FFF;
  background-image: url(../images/common/bg_100.png);
  background-repeat: repeat;
}

.top_category_detail .top_category_detail_block_wrap .top_category_detail_block_title {
  padding: 20px 0 20px 50px;
  min-height: 88px;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 100px 88px;
  font-size: 34px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .top_category_detail .top_category_detail_block_wrap .top_category_detail_block_title {
    min-height: 62px;
    background-size: 70px 62px;
    font-size: 24px;
    padding: 16px 0 16px 30px;
  }
}

.top_category_detail .top_category_detail_block_wrap .top_category_detail_block_title.category01 {
  background-image: url(../images/top/bg_category01.svg);
}

.top_category_detail .top_category_detail_block_wrap .top_category_detail_block_title.category02 {
  background-image: url(../images/top/bg_category02.svg);
}

.top_category_detail .top_category_detail_block_wrap .top_category_detail_block_title.category03 {
  background-image: url(../images/top/bg_category03.svg);
}

.top_category_detail .top_category_detail_block_wrap .top_category_detail_block_text {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .top_category_detail .top_category_detail_block_wrap .top_category_detail_block_text {
    font-size: 14px;
    margin: 0 0 40px;
  }
}

/*top_column*/
.top_column {
  background-color: #FCFAF5;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.top_column::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -180px;
  background-image: url(../images/common/bg_dot03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  height: 500px;
}

.top_column:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 80px;
  left: -180px;
  background-image: url(../images/common/bg_dot02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 392px;
  height: 385px;
}

/*top_column*/
.top_column {
  background-color: #FCFAF5;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.top_column::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 100px;
  right: -180px;
  background-image: url(../images/common/bg_dot03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  height: 500px;
}

.top_column:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 80px;
  left: -200px;
  background-image: url(../images/common/bg_dot02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 392px;
  height: 392px;
}

/*top_information*/
.top_information {
  background-color: #EAEAEA;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.top_information::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 80px;
  right: -200px;
  background-image: url(../images/common/bg_dot01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 450px;
  height: 450px;
}

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

/*top_sns*/
.top_sns {
  background-color: #FCFAF5;
  background-image: url(../images/common/bg_70.png);
  background-repeat: repeat;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.top_sns::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 200px;
  right: -260px;
  background-image: url(../images/common/bg_dot02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 520px;
  height: 520px;
}

.top_sns_box_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: 640px) {
  .top_sns_box_wrap {
    display: block;
  }
}

.top_sns_box_wrap .top_sns_box {
  width: calc((100% - 80px) /2);
  text-align: center;
}

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

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

.top_sns_box_wrap .top_sns_box iframe {
  margin: 0 auto;
}

.top_sns_box_title {
  text-align: center;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 10px;
  margin: 0 0 30px;
  border-bottom: 1px solid #333;
}

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

.top_insta_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.top_insta_box_wrap .top_insta_box {
  display: block;
  width: calc((100% - 50px) /2);
  max-width: 200px;
  margin: 0 50px 50px 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.top_insta_box_wrap .top_insta_box:nth-of-type(2n) {
  margin: 0 0 50px 0;
}

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

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

      policy.scss

=======================*/
.policy_block_wrap .policy_block {
  margin: 0 0 50px;
}

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

.policy_block_wrap .policy_block:last-child {
  margin: 0 0 0;
}

.policy_block_wrap .policy_block .policy_block_text {
  font-size: 16px;
  color: #333;
  line-height: 2;
}

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

.policy_block_wrap .policy_block .policy_block_text.mb_20 {
  margin: 0 0 20px;
}

.policy_block_wrap .policy_block .policy_block_text.t_right {
  text-align: right;
}

.policy_block_wrap .policy_block .policy_block_title {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .policy_block_wrap .policy_block .policy_block_title {
    font-size: 18px;
  }
}

.policy_block_wrap .policy_block .policy_block_list {
  padding: 0 0 0 20px;
  list-style: disc;
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item {
  margin: 0 0 10px;
  font-size: 16px;
  color: #333;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .policy_block_wrap .policy_block .policy_block_list .policy_block_item {
    font-size: 14px;
  }
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item:last-child {
  margin: 0 0 0;
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item .policy_block_sub_list {
  padding: 0 0 0 20px;
  list-style: disc;
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item .policy_block_sub_list .policy_block_sub_item {
  margin: 0 0 10px;
  font-size: 16px;
  color: #333;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .policy_block_wrap .policy_block .policy_block_list .policy_block_item .policy_block_sub_list .policy_block_sub_item {
    font-size: 14px;
  }
}

.policy_block_wrap .policy_block .policy_block_list .policy_block_item .policy_block_sub_list .policy_block_sub_item:last-child {
  margin: 0 0 0;
}

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

      column.scss

=======================*/
.column_pickup_box_wrap .column_pickup_box {
  margin: 0 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

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

.column_pickup_box_wrap .column_pickup_box:last-child {
  margin: 0 0 0;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_img {
  display: block;
  width: 50%;
  height: 320px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .column_pickup_box_wrap .column_pickup_box .column_pickup_box_img {
    width: 100%;
    height: 200px;
    margin: 0 0 20px;
  }
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_img .column_pickup_box_new {
  position: absolute;
  top: 10px;
  left: 0;
  width: 80px;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  .column_pickup_box_wrap .column_pickup_box .column_pickup_box_img .column_pickup_box_new {
    width: 66px;
  }
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_img .column_pickup_box_new img {
  width: 100%;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_img .column_pickup_box_img_inner {
  width: 100%;
  height: 320px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (max-width: 640px) {
  .column_pickup_box_wrap .column_pickup_box .column_pickup_box_img .column_pickup_box_img_inner {
    height: 200px;
  }
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_img .column_pickup_box_img_inner.active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media only screen and (min-width: 960px) {
  .column_pickup_box_wrap .column_pickup_box .column_pickup_box_img:hover .column_pickup_box_img_inner {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail {
  width: 50%;
  padding: 0 0 0 50px;
}

@media only screen and (max-width: 840px) {
  .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail {
    padding: 0 0 0 30px;
  }
}

@media only screen and (max-width: 640px) {
  .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail {
    width: 100%;
    padding: 0 0 0 0;
  }
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_category {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #011e4e;
  font-size: 14px;
  color: #011e4e;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 0;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_tag_list .column_pickup_box_tag_item {
  margin: 0 12px 12px 0;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_tag_list .column_pickup_box_tag_item .column_pickup_box_tag_link {
  display: block;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0 0 0 23px;
  position: relative;
  text-decoration: underline;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_tag_list .column_pickup_box_tag_item .column_pickup_box_tag_link:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 13px;
  height: 13px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_detail_link {
  display: block;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_detail_link .column_pickup_box_title {
  font-size: 28px;
  color: #333;
  letter-spacing: 0.2em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 40px;
  max-height: calc(40px * 1);
  margin: 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_detail_link .column_pickup_box_title {
    font-size: 22px;
    line-height: 33px;
    margin: 0 0 14px;
  }
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_detail_link .column_pickup_box_title_boeder {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 0 0 20px;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_detail_link .column_pickup_box_text {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.2em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-height: 32px;
  max-height: calc(32px * 4);
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_detail_link .column_pickup_box_text {
    font-size: 15px;
    line-height: 30px;
    max-height: calc(30px * 4);
  }
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date {
  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;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date .column_pickup_box_date_img {
  width: 18px;
  margin: 0 8px 0 0;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date .column_pickup_box_date_img img {
  display: block;
  width: 100%;
}

.column_pickup_box_wrap .column_pickup_box .column_pickup_box_detail .column_pickup_box_date .column_pickup_box_date_text {
  font-size: 14px;
  color: #808080;
  line-height: 1.5;
}

.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% - 100px) /3);
  margin: 0 50px 50px 0;
}

@media only screen and (max-width: 840px) {
  .column_box_wrap .column_box {
    width: 100%;
    margin: 0 0 30px 0;
  }
}

.column_box_wrap .column_box:nth-of-type(3n) {
  margin: 0 0 50px 0;
}

@media only screen and (max-width: 840px) {
  .column_box_wrap .column_box:nth-of-type(3n) {
    margin: 0 0 30px;
  }
}

.column_box_wrap .column_box .column_box_img {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
}

.column_box_wrap .column_box .column_box_img .column_box_new {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 0;
  width: 66px;
}

.column_box_wrap .column_box .column_box_img .column_box_new img {
  width: 100%;
}

.column_box_wrap .column_box .column_box_img .column_box_img_inner {
  width: 100%;
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.column_box_wrap .column_box .column_box_img .column_box_img_inner.active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media only screen and (min-width: 960px) {
  .column_box_wrap .column_box .column_box_img:hover .column_box_img_inner {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_box_wrap .column_box .column_box_category {
  display: inline-block;
  padding: 3px 8px;
  font-size: 13px;
  color: #011e4e;
  line-height: 1.5;
  border: 1px solid #011e4e;
  margin: 0 0 10px;
}

.column_box_wrap .column_box .column_box_detail {
  display: block;
}

.column_box_wrap .column_box .column_box_detail .column_box_detail_link {
  display: block;
}

.column_box_wrap .column_box .column_box_detail .column_box_detail_link .column_box_title {
  font-size: 22px;
  color: #333;
  letter-spacing: 0.2em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 33px;
  max-height: calc(32px * 1);
  margin: 0 0 14px;
}

.column_box_wrap .column_box .column_box_detail .column_box_detail_link .column_box_title_border {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 0 0 14px;
}

.column_box_wrap .column_box .column_box_detail .column_box_detail_link .column_box_text {
  font-size: 14px;
  color: #333;
  letter-spacing: 0.2em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 28px;
  max-height: calc(28px * 3);
  margin: 0 0 14px;
}

.column_box_wrap .column_box .column_box_detail .column_box_date {
  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;
}

.column_box_wrap .column_box .column_box_detail .column_box_date .column_box_date_img {
  width: 18px;
  margin: 0 8px 0 0;
}

.column_box_wrap .column_box .column_box_detail .column_box_date .column_box_date_img img {
  display: block;
  width: 100%;
}

.column_box_wrap .column_box .column_box_detail .column_box_date .column_box_date_text {
  font-size: 14px;
  color: #808080;
  line-height: 1.5;
}

.column_box_wrap .column_box .column_box_detail .column_box_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.column_box_wrap .column_box .column_box_detail .column_box_tag_list .column_box_tag_item {
  margin: 0 10px 10px 0;
}

.column_box_wrap .column_box .column_box_detail .column_box_tag_list .column_box_tag_item .column_box_tag_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  text-decoration: underline;
  position: relative;
  padding: 0 0 0 20px;
}

.column_box_wrap .column_box .column_box_detail .column_box_tag_list .column_box_tag_item .column_box_tag_link::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.column_search .column_search_category {
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 0 0 40px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_category {
    padding: 20px 16px;
    margin: 0 0 30px;
  }
}

.column_search .column_search_category:before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #011e4e;
  position: absolute;
  z-index: 2;
}

.column_search .column_search_category .column_search_category_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 8px;
  border-bottom: 1px solid #011e4e;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_category .column_search_category_title {
    font-size: 16px;
    margin: 0 0 20px;
  }
}

.column_search .column_search_category .column_search_category_title img {
  display: block;
  width: 12px;
  margin: 0 8px 0 0;
}

.column_search .column_search_category .column_search_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -30px;
}

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

.column_search .column_search_category .column_search_category_list .column_search_category_item {
  width: calc((100% - 60px) /3);
  margin: 0 30px 30px 0;
}

@media only screen and (max-width: 960px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item {
    width: calc((100% - 30px) /2);
  }
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.column_search .column_search_category .column_search_category_list .column_search_category_item:nth-of-type(3n) {
  margin: 0 0 30px 0;
}

@media only screen and (max-width: 960px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item:nth-of-type(3n) {
    margin: 0 30px 30px 0;
  }
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item:nth-of-type(3n) {
    margin: 0 0 20px 0;
  }
}

@media only screen and (max-width: 960px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item:nth-of-type(2n) {
    margin: 0 0 30px 0;
  }
}

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

.column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_img_wrap {
  width: 120px;
  height: 120px;
  margin: 0 20px 0 0;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_img_wrap {
    width: 100px;
    height: 100px;
  }
}

.column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_img_wrap .column_search_category_img {
  width: 100%;
  height: 120px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_img_wrap .column_search_category_img {
    height: 100px;
  }
}

.column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_detail {
  width: calc(100% - 140px);
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_detail {
    width: calc(100% - 120px);
  }
}

.column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_detail .column_search_category_item_title {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  padding: 0 0 6px 12px;
  position: relative;
  border-bottom: 2px dotted #808080;
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_detail .column_search_category_item_title {
    font-size: 14px;
    margin: 0 0 8px;
  }
}

.column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_detail .column_search_category_item_title::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #011e4e;
  position: absolute;
  top: 10px;
  left: 0;
}

.column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link .column_search_category_detail .column_search_category_item_text {
  font-size: 12px;
  color: #808080;
  line-height: 2;
}

@media only screen and (min-width: 960px) {
  .column_search .column_search_category .column_search_category_list .column_search_category_item .column_search_category_link:hover .column_search_category_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.column_search .column_search_tag {
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.column_search .column_search_tag:before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #011e4e;
  position: absolute;
  z-index: 2;
}

.column_search .column_search_tag .column_search_category_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 8px;
  border-bottom: 1px solid #011e4e;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_tag .column_search_category_title {
    font-size: 16px;
    margin: 0 0 20px;
  }
}

.column_search .column_search_tag .column_search_category_title img {
  display: block;
  width: 12px;
  margin: 0 8px 0 0;
}

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

.column_search .column_search_tag .column_search_tag_list .column_search_tag_item {
  margin: 0 20px 20px 0;
}

.column_search .column_search_tag .column_search_tag_list .column_search_tag_item .column_search_tag_link {
  display: block;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  text-decoration: underline;
  position: relative;
  padding: 0 0 0 20px;
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_tag .column_search_tag_list .column_search_tag_item .column_search_tag_link {
    font-size: 13px;
  }
}

.column_search .column_search_tag .column_search_tag_list .column_search_tag_item .column_search_tag_link::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .column_search .column_search_tag .column_search_tag_list .column_search_tag_item .column_search_tag_link::before {
    width: 12px;
    height: 12px;
    top: 4px;
  }
}

.column_category_editor_block {
  margin: 60px 0 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px 50px;
}

@media only screen and (max-width: 640px) {
  .column_category_editor_block {
    padding: 30px 20px;
  }
}

.column_category_editor_block:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background-image: url(../images/column/icon_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .column_category_editor_block:before {
    width: 30px;
    height: 30px;
    top: 5px;
    left: 5px;
  }
}

.column_category_editor_block:after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url(../images/column/icon_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .column_category_editor_block:after {
    width: 30px;
    height: 30px;
    bottom: 5px;
    right: 5px;
  }
}

.column_category_editor {
  max-width: 800px;
  margin: 0 auto;
}

.column_category_editor p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.column_category_editor p a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.column_category_editor div {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.column_category_editor div a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.column_category_editor h2 {
  position: relative;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 0 20px;
  margin: 0 0 40px;
}

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

.column_category_editor h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #011e4e;
}

.column_category_editor h2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 1px;
  height: 100%;
  background-color: #011e4e;
}

.column_category_editor h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
  padding: 0 0 10px;
  border-bottom: 2px dotted #808080;
}

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

.column_category_editor h4 {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
}

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

.column_category_editor img {
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .column_category_editor img {
    margin: 0 0 30px;
  }
}

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

.column_detail_content .column_detail_title {
  font-size: 32px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 20px;
  margin: 0 0 40px;
  border-bottom: 1px solid #333;
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_title {
    font-size: 28px;
    padding: 0 0 10px;
    margin: 0 0 30px;
  }
}

.column_detail_content .column_detail_category_tag_date {
  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%;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_category_tag_date {
    margin: 0 0 30px;
    display: block;
  }
}

.column_detail_content .column_detail_category_tag_date .column_detail_category_tag {
  width: calc(100% - 200px);
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_category_tag_date .column_detail_category_tag {
    width: 100%;
    margin: 0 0 10px;
  }
}

.column_detail_content .column_detail_category_tag_date .column_detail_category_tag .column_detail_category {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #011e4e;
  font-size: 16px;
  color: #011e4e;
  line-height: 1.5;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_category_tag_date .column_detail_category_tag .column_detail_category {
    font-size: 14px;
    margin: 0 0 10px;
  }
}

.column_detail_content .column_detail_category_tag_date .column_detail_category_tag .column_detail_tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -10px;
}

.column_detail_content .column_detail_category_tag_date .column_detail_category_tag .column_detail_tag_list .column_detail_tag_item {
  position: relative;
  padding: 0 0 0 18px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0 20px 10px 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_category_tag_date .column_detail_category_tag .column_detail_tag_list .column_detail_tag_item {
    font-size: 14px;
  }
}

.column_detail_content .column_detail_category_tag_date .column_detail_category_tag .column_detail_tag_list .column_detail_tag_item:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url(../images/column/icon_tag.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_category_tag_date .column_detail_category_tag .column_detail_tag_list .column_detail_tag_item:before {
    width: 13px;
    height: 13px;
  }
}

.column_detail_content .column_detail_category_tag_date .column_detail_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 200px;
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_category_tag_date .column_detail_date {
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.column_detail_content .column_detail_category_tag_date .column_detail_date .column_detail_date_img {
  width: 18px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_category_tag_date .column_detail_date .column_detail_date_img {
    width: 16px;
  }
}

.column_detail_content .column_detail_category_tag_date .column_detail_date .column_detail_date_img img {
  width: 100%;
}

.column_detail_content .column_detail_category_tag_date .column_detail_date .column_detail_date_text {
  font-size: 18px;
  color: #808080;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_category_tag_date .column_detail_date .column_detail_date_text {
    font-size: 16px;
  }
}

.column_detail_content .column_detail_main_img {
  width: 100%;
  height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 0 50px;
}

@media only screen and (max-width: 960px) {
  .column_detail_content .column_detail_main_img {
    height: 400px;
  }
}

@media only screen and (max-width: 840px) {
  .column_detail_content .column_detail_main_img {
    height: 360px;
  }
}

@media only screen and (max-width: 640px) {
  .column_detail_content .column_detail_main_img {
    height: 220px;
  }
}

.column_detail_editor p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.column_detail_editor p a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.column_detail_editor div {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.column_detail_editor div a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.column_detail_editor h2 {
  position: relative;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 0 20px;
  margin: 0 0 40px;
}

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

.column_detail_editor h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #011e4e;
}

.column_detail_editor h2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 1px;
  height: 100%;
  background-color: #011e4e;
}

.column_detail_editor h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
  padding: 0 0 10px;
  border-bottom: 2px dotted #808080;
}

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

.column_detail_editor h4 {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
}

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

.column_detail_editor img {
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor img {
    margin: 0 0 30px;
  }
}

.column_detail_editor ul {
  padding: 30px 20px;
  margin: 0 0 50px;
  width: 100%;
  border: 1px solid #333;
}

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

.column_detail_editor ul li {
  padding: 0 0 20px 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  position: relative;
}

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

.column_detail_editor ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #011e4e;
}

.column_detail_editor ul li:last-child {
  margin: 0 0 0;
}

.column_detail_editor ol {
  padding: 30px 20px 30px 50px;
  margin: 0 0 50px;
  width: 100%;
  border: 1px solid #333;
  list-style: decimal;
}

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

.column_detail_editor ol li {
  padding: 0 0 20px 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
}

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

.column_detail_editor ol li:last-child {
  margin: 0 0 0;
}

.column_detail_editor .item_box {
  display: block;
  margin: 0 0 40px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.column_detail_editor .item_box .item_box_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #011e4e;
  line-height: 1.5;
  padding: 0 0 10px;
  margin: 0 0 20px;
  border-bottom: 1px solid #011e4e;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_name {
    font-size: 14px;
    padding: 0 0 8px;
    margin: 0 0 16px;
  }
}

.column_detail_editor .item_box .item_box_name img {
  width: 16px;
  margin: 0 10px 0 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_name img {
    width: 14px;
    margin: 0 8px 0 0;
  }
}

.column_detail_editor .item_box .item_box_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 0;
}

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

.column_detail_editor .item_box .item_box_content .item_box_img {
  width: 200px;
  height: 200px;
  overflow: hidden;
  margin: 0 40px 0 0;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_img {
    margin: 0 auto 20px;
  }
}

.column_detail_editor .item_box .item_box_content .item_box_img .item_box_brand {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10px;
  display: inline-block;
  max-width: 90%;
  padding: 4px 14px;
  background-color: rgba(0, 0, 0, 0.6);
  margin: 0 0 0 0;
}

.column_detail_editor .item_box .item_box_content .item_box_img .item_box_brand span {
  font-size: 13px;
  color: #FFF;
  letter-spacing: 0;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 19px;
  max-height: calc(19px*1);
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_img .item_box_brand span {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*1);
  }
}

.column_detail_editor .item_box .item_box_content .item_box_img .item_box_img_inner {
  width: 200px;
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin: 0 0 0;
}

.column_detail_editor .item_box .item_box_content .item_box_img .item_box_img_inner.active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.column_detail_editor .item_box .item_box_content .item_box_detail {
  width: calc(100% - 240px);
  margin: 0 0 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_detail {
    width: 100%;
    text-align: center;
  }
}

.column_detail_editor .item_box .item_box_content .item_box_detail .item_box_category_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_detail .item_box_category_wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.column_detail_editor .item_box .item_box_content .item_box_detail .item_box_category_wrap .item_box_category {
  font-size: 16px;
  color: #011e4e;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0 20px 10px 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_detail .item_box_category_wrap .item_box_category {
    font-size: 14px;
    margin: 0 10px 10px 0;
  }
}

.column_detail_editor .item_box .item_box_content .item_box_detail .item_box_category_wrap .item_box_sub_category {
  font-size: 13px;
  color: #808080;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_detail .item_box_category_wrap .item_box_sub_category {
    font-size: 12px;
    margin: 0 10px 10px 0;
  }
}

.column_detail_editor .item_box .item_box_content .item_box_detail .item_box_title {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0 0 10px;
  padding: 0 0 0;
  border-bottom: none;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_detail .item_box_title {
    font-size: 16px;
  }
}

.column_detail_editor .item_box .item_box_content .item_box_detail .item_box_price {
  font-size: 26px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0 0 10px;
}

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

.column_detail_editor .item_box .item_box_content .item_box_detail .item_box_price span {
  font-size: 13px;
  color: #808080;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_detail .item_box_price span {
    font-size: 11px;
  }
}

.column_detail_editor .item_box .item_box_content .item_box_detail .item_box_text {
  font-size: 14px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 0;
}

@media only screen and (max-width: 640px) {
  .column_detail_editor .item_box .item_box_content .item_box_detail .item_box_text {
    font-size: 13px;
    text-align: left;
  }
}

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

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

      shop.scss

=======================*/
.shop_item_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -50px;
}

.shop_item_box_wrap .shop_item_box {
  display: block;
  width: calc((100% - 90px) /4);
  margin: 0 30px 50px 0;
  position: relative;
}

@media only screen and (max-width: 840px) {
  .shop_item_box_wrap .shop_item_box {
    width: calc((100% - 30px) /2);
  }
}

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

.shop_item_box_wrap .shop_item_box:nth-of-type(4n) {
  margin: 0 0 50px 0;
}

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

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

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

.shop_item_box_wrap .shop_item_box .shop_item_box_rank {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 60px;
  pointer-events: none;
}

@media only screen and (max-width: 640px) {
  .shop_item_box_wrap .shop_item_box .shop_item_box_rank {
    width: 50px;
  }
}

.shop_item_box_wrap .shop_item_box .shop_item_box_rank img {
  width: 100%;
}

.shop_item_box_wrap .shop_item_box .shop_item_box_img_wrap {
  width: 100%;
  overflow: hidden;
  margin: 0 0 12px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.shop_item_box_wrap .shop_item_box .shop_item_box_img_wrap .shop_item_box_brand {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10px;
  display: inline-block;
  max-width: 90%;
  padding: 4px 14px;
  background-color: rgba(0, 0, 0, 0.6);
}

@media only screen and (max-width: 640px) {
  .shop_item_box_wrap .shop_item_box .shop_item_box_img_wrap .shop_item_box_brand {
    padding: 4px 10px;
  }
}

.shop_item_box_wrap .shop_item_box .shop_item_box_img_wrap .shop_item_box_brand span {
  font-size: 13px;
  color: #FFF;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 19px;
  max-height: calc(19px*1);
}

@media only screen and (max-width: 640px) {
  .shop_item_box_wrap .shop_item_box .shop_item_box_img_wrap .shop_item_box_brand span {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*1);
  }
}

.shop_item_box_wrap .shop_item_box .shop_item_box_img_wrap .shop_item_box_img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.shop_item_box_wrap .shop_item_box .shop_item_box_category_wrap {
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .shop_item_box_wrap .shop_item_box .shop_item_box_category_wrap {
    margin: 0 0 8px;
  }
}

.shop_item_box_wrap .shop_item_box .shop_item_box_category_wrap .shop_item_box_category {
  text-align: center;
  font-size: 16px;
  color: #011e4e;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_item_box_wrap .shop_item_box .shop_item_box_category_wrap .shop_item_box_category {
    font-size: 14px;
  }
}

.shop_item_box_wrap .shop_item_box .shop_item_box_category_wrap .shop_item_box_sub_category {
  text-align: center;
  font-size: 13px;
  color: #808080;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 4px 0 0;
}

@media only screen and (max-width: 640px) {
  .shop_item_box_wrap .shop_item_box .shop_item_box_category_wrap .shop_item_box_sub_category {
    font-size: 12px;
  }
}

.shop_item_box_wrap .shop_item_box .shop_item_box_title {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin: 0 0 12px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*2);
}

@media only screen and (max-width: 640px) {
  .shop_item_box_wrap .shop_item_box .shop_item_box_title {
    font-size: 14px;
    line-height: 21px;
    max-height: calc(21px*2);
    margin: 0 0 8px;
  }
}

.shop_item_box_wrap .shop_item_box .shop_item_box_price {
  text-align: center;
  font-size: 26px;
  color: #333;
  line-height: 1.5;
}

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

.shop_item_box_wrap .shop_item_box .shop_item_box_price span {
  font-size: 13px;
  color: #808080;
}

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

.shop_item_box_wrap .shop_item_box .shop_item_box_soldout {
  text-align: center;
  font-size: 14px;
  color: #ff3131;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 4px 0 0;
}

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

@media only screen and (min-width: 960px) {
  .shop_item_box_wrap .shop_item_box:hover .shop_item_box_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.shop_pickup_item_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: 840px) {
  .shop_pickup_item_box_wrap {
    display: block;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box {
  display: block;
  width: calc((100% - 40px) /2);
  margin: 0 40px 40px 0;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 840px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box {
    padding: 16px 10px;
  }
}

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

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner {
  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: 500px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner {
    display: block;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_img_wrap {
  width: 220px;
  margin: 0 20px 0 0;
  overflow: hidden;
}

@media only screen and (max-width: 500px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_img_wrap {
    margin: 0 auto 12px;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_img_wrap .shop_pickup_item_box_img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail {
  width: calc(100% - 240px);
}

@media only screen and (max-width: 500px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail {
    width: 100%;
    text-align: center;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_brand {
  display: inline-block;
  padding: 4px 14px;
  background-color: rgba(0, 0, 0, 0.6);
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_brand {
    padding: 4px 10px;
    margin: 0 0 8px;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_brand span {
  font-size: 13px;
  color: #FFF;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 19px;
  max-height: calc(19px*1);
}

@media only screen and (max-width: 640px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_brand span {
    font-size: 12px;
    line-height: 18px;
    max-height: calc(18px*1);
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_category_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_category_wrap {
    display: block;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_category_wrap .shop_pickup_item_box_category {
  font-size: 16px;
  color: #011e4e;
  line-height: 1.5;
  margin: 0 20px 12px 0;
}

@media only screen and (max-width: 640px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_category_wrap .shop_pickup_item_box_category {
    font-size: 14px;
    margin: 0 0 8px 0;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_category_wrap .shop_pickup_item_box_sub_category {
  font-size: 13px;
  color: #808080;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_category_wrap .shop_pickup_item_box_sub_category {
    font-size: 12px;
    margin: 0 0 8px;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_title {
  font-size: 16px;
  color: #333;
  margin: 0 0 12px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px*3);
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_price {
  font-size: 26px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_price {
    font-size: 22px;
  }
}

.shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_price span {
  font-size: 13px;
  color: #808080;
}

@media only screen and (max-width: 640px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box .shop_pickup_item_box_inner .shop_pickup_item_box_detail .shop_pickup_item_box_price span {
    font-size: 11px;
  }
}

@media only screen and (min-width: 960px) {
  .shop_pickup_item_box_wrap .shop_pickup_item_box:hover .shop_pickup_item_box_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.shop_item_search_block_wrap .shop_item_search_block {
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid #333;
}

.shop_item_search_block_wrap .shop_item_search_block:last-child {
  padding: 0 0 0;
  margin: 0 0 0;
  border-bottom: none;
}

.shop_item_search_block_wrap .shop_item_search_block_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 30px;
}

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

.shop_item_search_block_wrap .shop_item_search_block_title img {
  display: block;
  width: 12px;
  margin: 0 8px 0 0;
}

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

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

.shop_item_search_brand_list .shop_item_search_brand_item {
  width: calc((100% - 40px) /2);
  margin: 0 40px 20px 0;
}

@media only screen and (max-width: 840px) {
  .shop_item_search_brand_list .shop_item_search_brand_item {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.shop_item_search_brand_list .shop_item_search_brand_item:nth-of-type(2n) {
  margin: 0 0 20px 0;
}

.shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_item_search_brand_img_wrap {
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin: 0 20px 0 0;
}

@media only screen and (max-width: 640px) {
  .shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_item_search_brand_img_wrap {
    width: 80px;
    height: 40px;
  }
}

.shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_item_search_brand_img_wrap .shop_item_search_brand_img {
  width: 100px;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (max-width: 640px) {
  .shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_item_search_brand_img_wrap .shop_item_search_brand_img {
    width: 80px;
    height: 40px;
  }
}

.shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_search_category_detail {
  width: calc(100% - 120px);
}

@media only screen and (max-width: 640px) {
  .shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_search_category_detail {
    width: calc(100% - 100px);
  }
}

.shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_search_category_detail .shop_search_brand_item_title {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 10px;
  padding: 0 0 4px;
  border-bottom: 1px dashed #333;
}

@media only screen and (max-width: 640px) {
  .shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_search_category_detail .shop_search_brand_item_title {
    font-size: 14px;
  }
}

.shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link .shop_search_category_detail .shop_search_brand_item_text {
  font-size: 12px;
  color: #808080;
  line-height: 2;
}

@media only screen and (min-width: 960px) {
  .shop_item_search_brand_list .shop_item_search_brand_item .shop_item_search_brand_link:hover .shop_item_search_brand_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

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

@media only screen and (max-width: 840px) {
  .shop_item_search_category_list {
    margin: 0 0 -30px;
  }
}

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

.shop_item_search_category_list .shop_item_search_category_item {
  width: calc((100% - 100px) /3);
  margin: 0 50px 50px 0;
}

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

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

.shop_item_search_category_list .shop_item_search_category_item:nth-of-type(3n) {
  margin: 0 0 50px 0;
}

@media only screen and (max-width: 840px) {
  .shop_item_search_category_list .shop_item_search_category_item:nth-of-type(3n) {
    margin: 0 30px 30px 0;
  }
}

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

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

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

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

.shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link {
  display: block;
  width: 100%;
  min-height: 140px;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link {
    min-height: 100px;
  }
}

.shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link .shop_item_search_category_link_inner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link .shop_item_search_category_link_inner:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link .shop_item_search_category_link_content {
  width: 100%;
  height: 100%;
  min-height: 140px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  .shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link .shop_item_search_category_link_content {
    min-height: 100px;
  }
}

.shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link .shop_item_search_category_link_content .shop_item_search_category_item_title {
  text-align: center;
  font-size: 20px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link .shop_item_search_category_link_content .shop_item_search_category_item_title {
    font-size: 18px;
  }
}

.shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link .shop_item_search_category_link_content .shop_item_search_category_item_arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
}

.shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link .shop_item_search_category_link_content .shop_item_search_category_item_arrow img {
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .shop_item_search_category_list .shop_item_search_category_item .shop_item_search_category_link:hover .shop_item_search_category_link_inner {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.shop_item_num_wrap {
  padding: 0 0 10px;
  margin: 0 0 20px;
  border-bottom: 1px solid #333;
  text-align: right;
}

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

.shop_item_num_wrap .shop_item_num_text {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

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

.shop_item_num_wrap .shop_item_num_text .shop_item_num {
  font-size: 16px;
}

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

.shop_item_num_wrap .fadein_num {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.shop_item_sort_select_wrap {
  margin: 0 0 30px;
}

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

.shop_item_sort_select_wrap .shop_item_sort_select {
  outline: none;
  font-size: 12px;
  border: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: url(../images/common/img_arrow_down.svg) 90% center no-repeat #FFF;
  background-size: 11px;
  width: 96px;
  height: 28px;
  padding: 0 10px;
  border-radius: 28px;
}

.shop_brand_editor_block {
  margin: 60px 0 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px 50px;
}

@media only screen and (max-width: 640px) {
  .shop_brand_editor_block {
    padding: 30px 20px;
  }
}

.shop_brand_editor_block:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background-image: url(../images/column/icon_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .shop_brand_editor_block:before {
    width: 30px;
    height: 30px;
    top: 5px;
    left: 5px;
  }
}

.shop_brand_editor_block:after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url(../images/column/icon_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .shop_brand_editor_block:after {
    width: 30px;
    height: 30px;
    bottom: 5px;
    right: 5px;
  }
}

.shop_brand_editor {
  max-width: 800px;
  margin: 0 auto;
}

.shop_brand_editor p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.shop_brand_editor p a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.shop_brand_editor div {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.shop_brand_editor div a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.shop_brand_editor h2 {
  position: relative;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 0 20px;
  margin: 0 0 40px;
}

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

.shop_brand_editor h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #011e4e;
}

.shop_brand_editor h2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 1px;
  height: 100%;
  background-color: #011e4e;
}

.shop_brand_editor h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
  padding: 0 0 10px;
  border-bottom: 2px dotted #808080;
}

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

.shop_brand_editor h4 {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
}

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

.shop_brand_editor img {
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_brand_editor img {
    margin: 0 0 30px;
  }
}

.shop_category_editor_block {
  margin: 60px 0 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 50px 50px;
}

@media only screen and (max-width: 640px) {
  .shop_category_editor_block {
    padding: 30px 20px;
  }
}

.shop_category_editor_block:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background-image: url(../images/column/icon_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .shop_category_editor_block:before {
    width: 30px;
    height: 30px;
    top: 5px;
    left: 5px;
  }
}

.shop_category_editor_block:after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-image: url(../images/column/icon_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 640px) {
  .shop_category_editor_block:after {
    width: 30px;
    height: 30px;
    bottom: 5px;
    right: 5px;
  }
}

.shop_category_editor {
  max-width: 800px;
  margin: 0 auto;
}

.shop_category_editor p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.shop_category_editor p a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.shop_category_editor div {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.shop_category_editor div a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.shop_category_editor h2 {
  position: relative;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 0 20px;
  margin: 0 0 40px;
}

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

.shop_category_editor h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #011e4e;
}

.shop_category_editor h2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 1px;
  height: 100%;
  background-color: #011e4e;
}

.shop_category_editor h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
  padding: 0 0 10px;
  border-bottom: 2px dotted #808080;
}

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

.shop_category_editor h4 {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
}

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

.shop_category_editor img {
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .shop_category_editor img {
    margin: 0 0 30px;
  }
}

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

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

.shop_sub_category_list .shop_sub_category_item {
  margin: 0 16px 10px 0;
}

.shop_sub_category_list .shop_sub_category_item .shop_sub_category_link {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #011e4e;
  font-size: 13px;
  color: #011e4e;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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

.shop_sub_category_list .shop_sub_category_item .shop_sub_category_link.active {
  background-color: #011e4e;
  color: #FFF;
}

/*item_detail*/
.shop_item_detail_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

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

.shop_item_detail_content .shop_item_detail_img_block {
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .shop_item_detail_content .shop_item_detail_img_block {
    width: 100%;
    margin: 0 0 50px;
  }
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_img_block {
    margin: 0 0 30px;
  }
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_main_pic_list {
  width: 100%;
  margin: 0 0 20px;
}

@media only screen and (max-width: 840px) {
  .shop_item_detail_content .shop_item_detail_img_block .itemdetail_main_pic_list {
    max-width: 500px;
    margin: 0 auto 20px;
  }
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_main_pic_list .item {
  width: 100%;
  height: 100%;
  display: none;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_main_pic_list .item.active {
  display: block;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_pic_menu {
  padding: 15px 15px 5px;
  background: #011e4e;
  overflow: hidden;
  position: relative;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_pic_menu:after {
  content: "";
  background: #011e4e;
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_sub_pic_list {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  max-height: 170px;
  overflow-y: scroll;
}

@media only screen and (max-width: 750px) {
  .shop_item_detail_content .shop_item_detail_img_block .itemdetail_sub_pic_list {
    max-height: 130px;
  }
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_sub_pic_list .item {
  display: block;
  width: 15%;
  margin: 0 2% 10px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_sub_pic_list .item:nth-of-type(6n) {
  margin: 0 0 10px;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_like_num {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0 0;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_like_num .like_btn {
  outline: none;
  padding: 0;
  display: block;
  width: 16px;
  border: none;
  background: none;
  margin: 0 8px 0 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_like_num .like_btn span img {
  display: block;
  width: 16px;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_like_num .like_btn .no_active {
  display: none;
}

.shop_item_detail_content .shop_item_detail_img_block .itemdetail_like_num .num {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_img_block .itemdetail_like_num .num {
    font-size: 14px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block {
  width: 50%;
  padding: 0 0 0 40px;
}

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

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box {
  width: 100%;
  padding: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  margin: 0 0 50px;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box {
    margin: 0 0 30px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_brand {
  display: inline-block;
  padding: 4px 14px;
  background-color: rgba(0, 0, 0, 0.6);
  margin: 0 0 12px;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_brand {
    font-size: 12px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_category_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_category_wrap .shop_item_detail_category {
  font-size: 16px;
  color: #011e4e;
  line-height: 1.5;
  margin: 0 20px 12px 0;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_category_wrap .shop_item_detail_category {
    font-size: 15px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_category_wrap .shop_item_detail_sub_category {
  font-size: 13px;
  color: #808080;
  line-height: 1.5;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_category_wrap .shop_item_detail_sub_category {
    font-size: 12px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_title {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_title {
    font-size: 18px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_model_number {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 16px;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_price {
  font-size: 22px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_price {
    font-size: 20px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_price span {
  font-size: 14px;
  color: #808080;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_price span {
    font-size: 12px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_soldout {
  font-size: 14px;
  color: #ff3131;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_volume_input_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 0 12px;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_volume_input_wrap .shop_item_detail_volume_input {
  width: calc(100% - 100px);
  padding: 8px 10px;
  border: 1px solid #DDDDDD;
  outline: none;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_volume_input_wrap .shop_item_detail_volume_input:focus {
  outline: 1px solid #011e4e;
  border: none;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_volume_input_wrap .shop_item_detail_volume_btn {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #FFF;
  border: 1px solid #333;
  border-radius: 3px;
  margin: 0 0 0 8px;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_volume_input_wrap .shop_item_detail_volume_btn img {
  width: 16px;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_submit_btn {
  width: 100%;
  padding: 20px;
  background-color: #011e4e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_submit_btn {
    padding: 16px;
    font-size: 15px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_submit_btn img {
  width: 20px;
  margin: 0 10px 0 0;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_keep_btn {
  padding: 8px 20px 8px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #011e4e;
  background-color: #FFF;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 40px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_keep_btn {
    font-size: 15px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_keep_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../images/shop/icon_keep_g.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_keep_btn.active {
  background-color: #808080;
  border: 1px solid #808080;
  color: #FFF;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_keep_btn.active::before {
  background-image: url(../images/shop/icon_keep_w.svg);
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_keep_btn .no_active {
  display: none;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_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: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap {
    display: block;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap .shop_item_detail_fb_btn {
  width: 50%;
  padding: 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #333;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
  border-right: 1px solid #FFF;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap .shop_item_detail_fb_btn {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #FFF;
    font-size: 12px;
    padding: 8px 10px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap .shop_item_detail_fb_btn img {
  display: block;
  width: 20px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap .shop_item_detail_fb_btn img {
    width: 16px;
    margin: 0 4px 0 0;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap .shop_item_detail_x_btn {
  width: 50%;
  padding: 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #333;
  font-size: 13px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap .shop_item_detail_x_btn {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #FFF;
    font-size: 12px;
    padding: 8px 10px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap .shop_item_detail_x_btn img {
  display: block;
  width: 20px;
  margin: 0 8px 0 0;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_cart_box .shop_item_detail_sns_btn_wrap .shop_item_detail_x_btn img {
    width: 16px;
    margin: 0 4px 0 0;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap {
  margin: 0 0 60px;
}

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

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_title {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 30px;
  position: relative;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_title::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #577A63;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 1;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_title:after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #a4d3b2;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 2;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_title {
    font-size: 16px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_text {
  font-size: 14px;
  color: #333;
  line-height: 2;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_text_more_btn {
  outline: none;
  float: right;
  background: none;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 12px;
  color: #333;
  letter-spacing: 1.5px;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_text_more_btn:after {
  content: "";
  background: url(../images/common/img_arrow_down.svg) center center no-repeat;
  background-size: contain;
  width: 15px;
  height: 10px;
  display: inline-block;
  vertical-align: 1px;
  margin: 0 0 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_text_more_btn span:after {
  display: inline-block;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_about_wrap .shop_item_detail_about_text_more_btn.active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_title {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 30px;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_title {
    font-size: 16px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_title::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #577A63;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 1;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_title:after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #a4d3b2;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 2;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_list .shop_item_detail_detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 10px;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_list .shop_item_detail_detail_item:last-child {
  margin: 0 0 0;
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_list .shop_item_detail_detail_item .shop_item_detail_detail_item_title {
  width: 100px;
  margin: 0 20px 0 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_list .shop_item_detail_detail_item .shop_item_detail_detail_item_title {
    width: 80px;
  }
}

.shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_list .shop_item_detail_detail_item .shop_item_detail_detail_item_text {
  width: calc(100% - 120px);
  font-size: 14px;
  color: #333;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .shop_item_detail_content .shop_item_detail_detail_block .shop_item_detail_detail_wrap .shop_item_detail_detail_list .shop_item_detail_detail_item .shop_item_detail_detail_item_text {
    width: calc(100% - 100px);
  }
}

/*cart*/
.shop_cart_list .shop_cart_item {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .shop_cart_list .shop_cart_item {
    display: block;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_link {
    width: 100%;
    margin: 0 0 10px;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_link .shop_cart_item_img_wrap {
  width: 100px;
  height: 100px;
  margin: 0 30px 0 0;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_link .shop_cart_item_img_wrap {
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_link .shop_cart_item_img {
  width: 100px;
  height: 100px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_link .shop_cart_item_img {
    width: 60px;
    height: 60px;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_link .shop_cart_item_content {
  width: calc(100% - 130px);
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_link .shop_cart_item_content {
    width: calc(100% - 80px);
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_link .shop_cart_item_content .shop_cart_item_title {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_link .shop_cart_item_content .shop_cart_item_title {
    font-size: 14px;
  }
}

@media only screen and (min-width: 960px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_link:hover .shop_cart_item_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_detail {
  width: 50%;
  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;
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 840px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_detail {
    width: 100%;
    padding: 0 0 0 0;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_price {
  font-size: 26px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_price {
    font-size: 18px;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_price span {
  font-size: 13px;
  color: #808080;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_price span {
    font-size: 10px;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_select {
  margin: 0 0 0 30px;
  width: 80px;
  padding: 8px 30px 8px 10px;
  border: 1px solid #DDDDDD;
  outline: none;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/common/img_arrow_down.svg) right 10px center no-repeat #FFF;
  background-size: 11px;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_select {
    margin: 0 0 0 20px;
    padding: 5px 30px 5px 10px;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_delete_btn {
  padding: 4px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  border: 1px solid #333;
  border-radius: 3px;
  margin: 0 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_delete_btn {
    margin: 0 0 0 20px;
    font-size: 12px;
  }
}

.shop_cart_list .shop_cart_item .shop_cart_item_detail .shop_cart_item_delete_btn img {
  display: block;
  width: 10px;
  margin: 0 8px 0 0;
}

.shop_cart_total_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}

.shop_cart_total_block .shop_cart_postage_text {
  margin: 0 30px 0 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.shop_cart_total_block .shop_cart_postage_text .price {
  font-size: 16px;
  vertical-align: bottom;
}

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

.shop_cart_total_block .shop_cart_postage_text .tax {
  font-size: 12px;
  color: #808080;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .shop_cart_total_block .shop_cart_postage_text .tax {
    font-size: 10px;
  }
}

.shop_cart_total_block .shop_cart_total_text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

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

.shop_cart_total_block .shop_cart_total_text .price {
  font-size: 28px;
  vertical-align: bottom;
}

@media only screen and (max-width: 640px) {
  .shop_cart_total_block .shop_cart_total_text .price {
    font-size: 20px;
  }
}

.shop_cart_total_block .shop_cart_total_text .tax {
  font-size: 13px;
  color: #808080;
  vertical-align: bottom;
}

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

.shop_cart_no_item_text {
  text-align: center;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.shop_cart_shopping_btn {
  margin: 20px auto 0;
  text-align: center;
  width: 100%;
  max-width: 348px;
  height: 68px;
  border-radius: 3px;
  background-color: #FFF;
  border: 1px solid #333;
  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: 10px 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_cart_shopping_btn {
    height: 60px;
    font-size: 15px;
    padding: 10px 50px;
  }
}

/*payment*/
.shop_payment_block_wrap .shop_payment_block {
  margin: 0 0 50px;
}

.shop_payment_block_wrap .shop_payment_block:last-child {
  margin: 0 0 0;
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 8px;
  border-bottom: 1px solid #011e4e;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .shop_payment_block_wrap .shop_payment_block .shop_payment_block_title {
    font-size: 16px;
    margin: 0 0 20px;
  }
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_title img {
  display: block;
  width: 12px;
  margin: 0 8px 0 0;
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_text {
  font-size: 16px;
  color: #333;
  line-height: 2;
}

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

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_textarea {
  width: 100%;
  height: 200px;
  background-color: #efefef;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  resize: none;
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_textarea::-webkit-input-placeholder {
  color: #B2B2B2;
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_textarea::-ms-input-placeholder {
  color: #B2B2B2;
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_textarea::placeholder {
  color: #B2B2B2;
}

.shop_payment_block_wrap .shop_payment_block .shop_payment_block_textarea:focus {
  outline: 2px solid #011e4e;
}

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

.shop_payment_list .shop_payment_item {
  margin: 0 0 10px;
  font-size: 16px;
  color: #333;
  line-height: 2;
}

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

.shop_payment_list .shop_payment_item:last-child {
  margin: 0 0 0;
}

.shop_payment_block_error {
  font-size: 13px;
  color: #E20000;
  line-height: 1.5;
}

.shop_payment_setting_btn {
  margin: 30px auto 0;
  text-align: center;
  width: 100%;
  max-width: 348px;
  height: 68px;
  border-radius: 3px;
  background-color: #FFF;
  border: 1px solid #333;
  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: 10px 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_setting_btn {
    height: 60px;
    font-size: 15px;
    padding: 10px 50px;
  }
}

.shop_payment_item_list .shop_payment_item_item {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .shop_payment_item_list .shop_payment_item_item {
    display: block;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_information {
    width: 100%;
    margin: 0 0 10px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_information .shop_payment_item_img {
  width: 100px;
  height: 100px;
  margin: 0 30px 0 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_information .shop_payment_item_img {
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_information .shop_payment_item_content {
  width: calc(100% - 130px);
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_information .shop_payment_item_content {
    width: calc(100% - 80px);
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_information .shop_payment_item_content .shop_payment_item_title {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_information .shop_payment_item_content .shop_payment_item_title {
    font-size: 14px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail {
  width: 50%;
  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;
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 840px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail {
    width: 100%;
    padding: 0 0 0 0;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail .shop_payment_item_price {
  font-size: 26px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail .shop_payment_item_price {
    font-size: 18px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail .shop_payment_item_price span {
  font-size: 13px;
  color: #808080;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail .shop_payment_item_price span {
    font-size: 10px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail .shop_payment_item_volume {
  margin: 0 0 0 20px;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail .shop_payment_item_volume {
    font-size: 18px;
  }
}

.shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail .shop_payment_item_volume span {
  font-size: 14px;
}

@media only screen and (max-width: 640px) {
  .shop_payment_item_list .shop_payment_item_item .shop_payment_item_detail .shop_payment_item_volume span {
    font-size: 13px;
  }
}

.shop_payment_btn_text {
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 10px;
}

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

.shop_payment_btn_text a {
  color: #333;
  font-weight: bold;
  text-decoration: underline;
}

.shop_open_list .shop_open_item {
  border-bottom: 1px solid #333;
}

.shop_open_list .shop_open_item .shop_open_item_title_block {
  padding: 20px 20px 20px 0;
  position: relative;
}

.shop_open_list .shop_open_item .shop_open_item_title_block:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 12px;
  height: 12px;
  background-image: url(../images/common/img_arrow_down.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.shop_open_list .shop_open_item .shop_open_item_title_block.active {
  border-bottom: 1px dotted #808080;
}

.shop_open_list .shop_open_item .shop_open_item_title_block.active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.shop_open_list .shop_open_item .shop_open_item_title_block .shop_open_item_detail_item_title {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .shop_open_list .shop_open_item .shop_open_item_title_block .shop_open_item_detail_item_title {
    font-size: 16px;
  }
}

.shop_open_list .shop_open_item .shop_open_item_detail_block {
  display: none;
  padding: 20px 0;
}

.shop_open_list .shop_open_item .shop_open_item_detail_block .shop_open_item_detail_list .shop_open_item_detail_item {
  margin: 0 0 30px;
}

.shop_open_list .shop_open_item .shop_open_item_detail_block .shop_open_item_detail_list .shop_open_item_detail_item:last-child {
  margin: 0 0 0;
}

.shop_open_list .shop_open_item .shop_open_item_detail_block .shop_open_item_detail_list .shop_open_item_detail_item .shop_open_item_detail_item_title {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .shop_open_list .shop_open_item .shop_open_item_detail_block .shop_open_item_detail_list .shop_open_item_detail_item .shop_open_item_detail_item_title {
    font-size: 14px;
  }
}

.shop_open_list .shop_open_item .shop_open_item_detail_block .shop_open_item_detail_list .shop_open_item_detail_item .shop_open_item_detail_item_text {
  font-size: 14px;
  color: #333;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .shop_open_list .shop_open_item .shop_open_item_detail_block .shop_open_item_detail_list .shop_open_item_detail_item .shop_open_item_detail_item_text {
    font-size: 13px;
  }
}

.shop_open_list .shop_open_item .shop_open_item_detail_block .shop_open_item_detail_list .shop_open_item_detail_item .shop_open_item_detail_item_text a {
  font-weight: bold;
  color: #333;
  text-decoration: underline;
}

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

.shop_faq_title .icon {
  width: 50px;
  display: block;
  font-size: 24px;
  color: #011e4e;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_faq_title .icon {
    width: 40px;
    font-size: 20px;
  }
}

.shop_faq_title .text {
  display: block;
  width: calc(100% - 50px);
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .shop_faq_title .text {
    width: calc(100% - 40px);
    font-size: 14px;
  }
}

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

.shop_faq_text .icon {
  width: 50px;
  display: block;
  font-size: 24px;
  color: #577A63;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .shop_faq_text .icon {
    width: 40px;
    font-size: 20px;
  }
}

.shop_faq_text .text {
  display: block;
  width: calc(100% - 50px);
  font-size: 14px;
  color: #333;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .shop_faq_text .text {
    width: calc(100% - 40px);
    font-size: 13px;
  }
}

.shop_faq_text .text a {
  font-weight: bold;
  color: #333;
  text-decoration: underline;
}

.shop_notation_list .shop_notation_item {
  padding: 0 0 10px;
  margin: 0 0 10px;
  border-bottom: 1px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shop_notation_list .shop_notation_item:last-child {
  margin: 0 0 0;
}

.shop_notation_list .shop_notation_item .shop_notation_item_title {
  width: 180px;
  margin: 0 20px 0 0;
  font-size: 16px;
  color: #333;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .shop_notation_list .shop_notation_item .shop_notation_item_title {
    width: 90px;
    margin: 0 20px 0 0;
    font-size: 14px;
  }
}

.shop_notation_list .shop_notation_item .shop_notation_item_text {
  width: calc(100% - 200px);
  font-size: 16px;
  color: #333;
  line-height: 2;
}

@media only screen and (max-width: 640px) {
  .shop_notation_list .shop_notation_item .shop_notation_item_text {
    width: calc(100% - 110px);
    font-size: 14px;
  }
}

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

      information.scss

=======================*/
.information_box {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 48px 30px;
}

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

.information_list {
  max-width: 800px;
  margin: 0 auto;
}

.information_list .information_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #DDDDDD;
}

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

.information_list .information_item .information_item_date_category {
  width: 300px;
  padding: 0 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_item_date_category {
    width: 100%;
    margin: 0 0 10px;
    padding: 0 0 0 0;
  }
}

.information_list .information_item .information_item_date_category .information_item_date {
  display: block;
  width: 120px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_item_date_category .information_item_date {
    width: 90px;
    font-size: 14px;
  }
}

.information_list .information_item .information_item_date_category .information_item_category {
  max-width: 160px;
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #011e4e;
  font-size: 13px;
  color: #011e4e;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_item_date_category .information_item_category {
    max-width: calc(100%- 90px);
  }
}

.information_list .information_item .information_item_title_link {
  display: block;
  width: calc(100% - 300px);
  position: relative;
  padding: 0 60px 0 0;
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_item_title_link {
    width: 100%;
    padding: 0 50px 0 0;
  }
}

.information_list .information_item .information_item_title_link:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 28px;
  height: 6px;
  background-image: url(../images/common/img_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_item_title_link:after {
    width: 20px;
  }
}

@media only screen and (min-width: 960px) {
  .information_list .information_item .information_item_title_link:hover:after {
    right: 0;
  }
}

.information_list .information_item .information_item_title_link .information_item_title {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.2em;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 24px;
  max-height: calc(24px * 1);
}

@media only screen and (max-width: 640px) {
  .information_list .information_item .information_item_title_link .information_item_title {
    font-size: 15px;
    line-height: 23px;
    max-height: calc(23px * 1);
  }
}

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

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

.information_category_search_list .information_category_search_item {
  margin: 0 20px 20px 0;
}

.information_category_search_list .information_category_search_item .information_category_search_link {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #011e4e;
  font-size: 16px;
  color: #011e4e;
  line-height: 1.5;
}

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

.information_category_search_list .information_category_search_item .information_category_search_link.active {
  background-color: #011e4e;
  color: #FFF;
}

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

.information_detail_content .information_detail_title {
  font-size: 32px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 20px;
  margin: 0 0 40px;
  border-bottom: 1px solid #333;
}

@media only screen and (max-width: 640px) {
  .information_detail_content .information_detail_title {
    font-size: 28px;
    padding: 0 0 10px;
    margin: 0 0 30px;
  }
}

.information_detail_content .information_detail_category_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .information_detail_content .information_detail_category_date {
    margin: 0 0 30px;
    display: block;
  }
}

.information_detail_content .information_detail_category_date .information_detail_category {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #011e4e;
  font-size: 16px;
  color: #011e4e;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .information_detail_content .information_detail_category_date .information_detail_category {
    font-size: 14px;
    margin: 0 0 10px;
  }
}

.information_detail_content .information_detail_category_date .information_detail_date {
  font-size: 18px;
  color: #808080;
  line-height: 1.5;
}

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

.information_editor p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.information_editor p a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.information_editor div {
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0 0 50px;
}

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

.information_editor div a {
  color: #011e4e;
  font-weight: bold;
  text-decoration: underline;
}

.information_editor h2 {
  position: relative;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 0 20px;
  margin: 0 0 40px;
}

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

.information_editor h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #011e4e;
}

.information_editor h2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 1px;
  height: 100%;
  background-color: #011e4e;
}

.information_editor h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
  padding: 0 0 10px;
  border-bottom: 2px dotted #808080;
}

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

.information_editor h4 {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 40px;
}

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

.information_editor img {
  max-width: 100% !important;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .information_editor img {
    margin: 0 0 30px;
  }
}

.information_editor ul {
  padding: 30px 20px;
  margin: 0 0 50px;
  width: 100%;
  border: 1px solid #333;
}

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

.information_editor ul li {
  padding: 0 0 20px 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
  position: relative;
}

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

.information_editor ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #011e4e;
}

.information_editor ul li:last-child {
  margin: 0 0 0;
}

.information_editor ol {
  padding: 30px 20px 30px 50px;
  margin: 0 0 50px;
  width: 100%;
  border: 1px solid #333;
  list-style: decimal;
}

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

.information_editor ol li {
  padding: 0 0 20px 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 16px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.2em;
}

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

.information_editor ol li:last-child {
  margin: 0 0 0;
}

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

      form.scss

=======================*/
.form_error {
  width: 100%;
  padding: 16px 20px;
  text-align: center;
  font-size: 16px;
  color: #E20000;
  line-height: 1.5;
  border: 1px solid #E20000;
  background-color: #FFF0F0;
  margin: 0 0 30px;
}

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

.form_error_list {
  padding: 16px 20px 16px 40px;
  border: 1px solid #E20000;
  background-color: #FFF0F0;
  margin: 0 0 30px;
  list-style: disc;
}

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

.form_error_list .form_error_item {
  font-size: 16px;
  color: #E20000;
  line-height: 1.5;
  margin: 0 0 10px;
}

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

.form_error_list .form_error_item:last-child {
  margin: 0 0 0;
}

.form_list .form_item {
  margin: 0 0 30px;
}

.form_list .form_item:last-child {
  margin: 0 0 0;
}

.form_list .form_item .form_item_title {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  padding: 0 0 0 16px;
  position: relative;
}

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

.form_list .form_item .form_item_title:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #011e4e;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.form_list .form_item .form_item_title small {
  font-size: 14px;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_title small {
    font-size: 12px;
  }
}

.form_list .form_item .form_item_title .required {
  font-size: 14px;
  color: #E20000;
  margin: 0 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_title .required {
    font-size: 12px;
  }
}

.form_list .form_item .form_item_input_flex {
  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) {
  .form_list .form_item .form_item_input_flex {
    display: block;
  }
}

.form_list .form_item .form_item_input_flex.jc_st {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_flex.jc_st {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.form_list .form_item .form_item_input_flex.jc_st .form_input_100 {
  width: 60px;
  margin: 0 0 0;
}

.form_list .form_item .form_item_input_flex .form_input_48p {
  width: 48%;
  background-color: #efefef;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_flex .form_input_48p {
    width: 100%;
    margin: 0 0 10px;
  }
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_flex .form_input_48p:last-child {
    margin: 0 0 0;
  }
}

.form_list .form_item .form_item_input_flex .form_input_48p::-webkit-input-placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input_flex .form_input_48p::-ms-input-placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input_flex .form_input_48p::placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input_flex .form_input_48p:focus {
  outline: 2px solid #011e4e;
}

.form_list .form_item .form_item_input_flex .form_select_48p {
  width: 48%;
  padding: 10px 30px 10px 10px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #B2B2B2;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/common/img_arrow_down.svg) right 10px center no-repeat #efefef;
  background-size: 11px;
}

.form_list .form_item .form_item_input_flex .form_select_48p.active {
  color: #333;
}

.form_list .form_item .form_item_input_flex .form_select_48p:focus {
  outline: 2px solid #011e4e;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_flex .form_select_48p {
    width: 100%;
    margin: 0 0 10px;
  }
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_flex .form_select_48p:last-child {
    margin: 0 0 0;
  }
}

.form_list .form_item .form_item_input_flex .form_input_100 {
  width: 100px;
  background-color: #efefef;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_flex .form_input_100 {
    width: 100%;
    margin: 0 0 10px;
  }
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_flex .form_input_100:last-child {
    margin: 0 0 0;
  }
}

.form_list .form_item .form_item_input_flex .form_input_100::-webkit-input-placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input_flex .form_input_100::-ms-input-placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input_flex .form_input_100::placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input_flex .form_input_100:focus {
  outline: 2px solid #011e4e;
}

.form_list .form_item .form_item_input_flex .form_item_input_unit {
  margin: 0 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .form_list .form_item .form_item_input_flex .form_item_input_unit {
    margin: 0 4px;
  }
}

.form_list .form_item .form_item_input {
  width: 100%;
}

.form_list .form_item .form_item_input .form_input_100p {
  width: 100%;
  background-color: #efefef;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.form_list .form_item .form_item_input .form_input_100p::-webkit-input-placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input .form_input_100p::-ms-input-placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input .form_input_100p::placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input .form_input_100p:focus {
  outline: 2px solid #011e4e;
}

.form_list .form_item .form_item_input .form_select_100p {
  width: 100%;
  padding: 10px 30px 10px 10px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #B2B2B2;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/common/img_arrow_down.svg) right 10px center no-repeat #efefef;
  background-size: 11px;
}

.form_list .form_item .form_item_input .form_select_100p.active {
  color: #333;
}

.form_list .form_item .form_item_input .form_select_100p:focus {
  outline: 2px solid #011e4e;
}

.form_list .form_item .form_item_input .form_input_textarea {
  width: 100%;
  height: 200px;
  background-color: #efefef;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  resize: none;
}

.form_list .form_item .form_item_input .form_input_textarea::-webkit-input-placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input .form_input_textarea::-ms-input-placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input .form_input_textarea::placeholder {
  color: #B2B2B2;
}

.form_list .form_item .form_item_input .form_input_textarea:focus {
  outline: 2px solid #011e4e;
}

.form_list .form_item .form_item_text {
  font-size: 16px;
  color: #333;
  line-height: 2;
}

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

.form_error_detail {
  font-size: 13px;
  color: #E20000;
  line-height: 1.5;
  margin: 10px 0 0;
}

.form_auto_check_wrap {
  margin: 0 0 30px;
}

.form_auto_check_wrap.center {
  text-align: center;
  margin: 30px 0 0;
}

.form_auto_check_wrap .form_auto_check {
  display: none;
}

.form_auto_check_wrap .form_auto_check_label {
  cursor: pointer;
  display: inline-block;
  padding: 5px 5px 5px 26px;
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

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

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

.form_auto_check:checked + .form_auto_check_label::after {
  opacity: 1;
}

.form_notice {
  border: 1px solid #333;
  padding: 30px;
}

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

.form_notice .form_notice_title {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding: 0 0 10px;
  margin: 0 0 20px;
  border-bottom: 1px solid #333;
}

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

.form_notice .form_notice_list {
  list-style: disc;
  padding: 0 0 0 20px;
}

.form_notice .form_notice_list .form_notice_item {
  margin: 0 0 10px;
  font-size: 14px;
  color: #333;
  line-height: 2;
}

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

.form_notice .form_notice_list .form_notice_item:last-child {
  margin: 0 0 0;
}

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

  Contact Form 7

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

.common_box_inner .wpcf7 .wpcf7-form p {
  margin: 0 0 24px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_box_inner .wpcf7 .wpcf7-form p {
    margin: 0 0 20px;
    font-size: 14px;
  }
}

.common_box_inner .wpcf7 .wpcf7-form p:last-child {
  margin: 0;
}

.common_box_inner .wpcf7 .wpcf7-form label {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .common_box_inner .wpcf7 .wpcf7-form label {
    font-size: 14px;
  }
}

.common_box_inner .wpcf7 .wpcf7-form input[type="text"],
.common_box_inner .wpcf7 .wpcf7-form input[type="email"],
.common_box_inner .wpcf7 .wpcf7-form input[type="url"],
.common_box_inner .wpcf7 .wpcf7-form input[type="tel"],
.common_box_inner .wpcf7 .wpcf7-form input[type="number"],
.common_box_inner .wpcf7 .wpcf7-form input[type="date"] {
  width: 100%;
  background-color: #efefef;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  border-radius: 0;
}

@media only screen and (max-width: 640px) {
  .common_box_inner .wpcf7 .wpcf7-form input[type="text"],
  .common_box_inner .wpcf7 .wpcf7-form input[type="email"],
  .common_box_inner .wpcf7 .wpcf7-form input[type="url"],
  .common_box_inner .wpcf7 .wpcf7-form input[type="tel"],
  .common_box_inner .wpcf7 .wpcf7-form input[type="number"],
  .common_box_inner .wpcf7 .wpcf7-form input[type="date"] {
    padding: 10px 12px;
    font-size: 14px;
  }
}

.common_box_inner .wpcf7 .wpcf7-form input[type="text"]::-webkit-input-placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="email"]::-webkit-input-placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="url"]::-webkit-input-placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="tel"]::-webkit-input-placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="number"]::-webkit-input-placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="date"]::-webkit-input-placeholder {
  color: #B2B2B2;
}

.common_box_inner .wpcf7 .wpcf7-form input[type="text"]::placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="email"]::placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="url"]::placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="tel"]::placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="number"]::placeholder,
.common_box_inner .wpcf7 .wpcf7-form input[type="date"]::placeholder {
  color: #B2B2B2;
}

.common_box_inner .wpcf7 .wpcf7-form input[type="text"]:focus,
.common_box_inner .wpcf7 .wpcf7-form input[type="email"]:focus,
.common_box_inner .wpcf7 .wpcf7-form input[type="url"]:focus,
.common_box_inner .wpcf7 .wpcf7-form input[type="tel"]:focus,
.common_box_inner .wpcf7 .wpcf7-form input[type="number"]:focus,
.common_box_inner .wpcf7 .wpcf7-form input[type="date"]:focus {
  outline: 2px solid #011e4e;
}

.common_box_inner .wpcf7 .wpcf7-form textarea {
  width: 100%;
  min-height: 200px;
  background-color: #efefef;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  resize: vertical;
  border-radius: 0;
}

@media only screen and (max-width: 640px) {
  .common_box_inner .wpcf7 .wpcf7-form textarea {
    padding: 10px 12px;
    font-size: 14px;
    min-height: 160px;
  }
}

.common_box_inner .wpcf7 .wpcf7-form textarea::-webkit-input-placeholder {
  color: #B2B2B2;
}

.common_box_inner .wpcf7 .wpcf7-form textarea::placeholder {
  color: #B2B2B2;
}

.common_box_inner .wpcf7 .wpcf7-form textarea:focus {
  outline: 2px solid #011e4e;
}

.common_box_inner .wpcf7 .wpcf7-form select {
  width: 100%;
  padding: 12px 30px 12px 14px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../images/common/img_arrow_down.svg) right 10px center no-repeat #efefef;
  background-size: 11px;
  border-radius: 0;
}

@media only screen and (max-width: 640px) {
  .common_box_inner .wpcf7 .wpcf7-form select {
    padding: 10px 30px 10px 12px;
    font-size: 14px;
  }
}

.common_box_inner .wpcf7 .wpcf7-form select:focus {
  outline: 2px solid #011e4e;
}

.common_box_inner .wpcf7 .wpcf7-form input[type="submit"] {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 348px;
  height: 68px;
  border-radius: 3px;
  background-color: #011e4e;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.2em;
  margin: 40px auto 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .common_box_inner .wpcf7 .wpcf7-form input[type="submit"] {
    height: 60px;
    font-size: 15px;
    margin: 30px auto 0;
  }
}

@media only screen and (min-width: 960px) {
  .common_box_inner .wpcf7 .wpcf7-form input[type="submit"]:hover {
    opacity: 0.7;
  }
}

.common_box_inner .wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #E20000;
  line-height: 1.5;
  margin: 8px 0 0;
}

.common_box_inner .wpcf7 .wpcf7-form .wpcf7-response-output {
  border: 1px solid #E20000;
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  color: #E20000;
  line-height: 1.5;
  margin: 30px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_box_inner .wpcf7 .wpcf7-form .wpcf7-response-output {
    padding: 10px;
    font-size: 13px;
  }
}

.common_box_inner .wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
  border-color: #398f14;
  color: #398f14;
}

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

      mypage.scss

=======================*/
/*login*/
.forget_link {
  display: block;
  text-align: center;
  margin: 10px 0 0;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  text-decoration: underline;
}

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

.register_link_wrap {
  margin: 40px 0 0;
  padding: 40px 0 0;
  border-top: 1px solid #333;
}

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

.register_link_wrap .register_link_text {
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 10px;
}

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

.mypage_menu_list .mypage_menu_item .mypage_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 50px 20px 0;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.mypage_menu_list .mypage_menu_item .mypage_menu_link img {
  display: block;
  width: 12px;
  margin: 0 10px 0 0;
}

@media only screen and (max-width: 640px) {
  .mypage_menu_list .mypage_menu_item .mypage_menu_link {
    padding: 16px 0;
    font-size: 15px;
  }
}

.mypage_menu_list .mypage_menu_item .mypage_menu_link:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 28px;
  height: 6px;
  background-image: url(../images/common/img_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 640px) {
  .mypage_menu_list .mypage_menu_item .mypage_menu_link:after {
    width: 20px;
  }
}

@media only screen and (min-width: 960px) {
  .mypage_menu_list .mypage_menu_item .mypage_menu_link:hover:after {
    right: 0;
  }
}

.mypage_block_wrap .mypage_block {
  margin: 0 0 60px;
}

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

.mypage_block_wrap .mypage_block:last-child {
  margin: 0 0 0;
}

.mypage_block_wrap .mypage_block .mypage_block_title_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 0 8px;
  border-bottom: 1px solid #003613;
  margin: 0 0 30px;
}

@media only screen and (max-width: 640px) {
  .mypage_block_wrap .mypage_block .mypage_block_title_btn {
    margin: 0 0 20px;
    display: block;
  }
}

.mypage_block_wrap .mypage_block .mypage_block_title_btn .mypage_block_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 640px) {
  .mypage_block_wrap .mypage_block .mypage_block_title_btn .mypage_block_title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}

.mypage_block_wrap .mypage_block .mypage_block_title_btn .mypage_block_title img {
  display: block;
  width: 12px;
  margin: 0 8px 0 0;
}

.mypage_block_wrap .mypage_block .mypage_block_title_btn .mypage_block_btn {
  padding: 4px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  border: 1px solid #333;
  border-radius: 3px;
  margin: 0 0 0 30px;
  white-space: nowrap;
}

@media only screen and (max-width: 640px) {
  .mypage_block_wrap .mypage_block .mypage_block_title_btn .mypage_block_btn {
    font-size: 12px;
    margin: 0 0 0 0;
  }
}

.mypage_block_wrap .mypage_block .mypage_block_title_btn .mypage_block_btn img {
  display: block;
  width: 14px;
  margin: 0 8px 0 0;
}

.mypage_block_wrap .mypage_block .mypage_block_list .mypage_block_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

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

.mypage_block_wrap .mypage_block .mypage_block_list .mypage_block_item:last-child {
  margin: 0 0 0;
}

.mypage_block_wrap .mypage_block .mypage_block_list .mypage_block_item .mypage_block_item_title {
  width: 120px;
  margin: 0 20px 0 0;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_block_wrap .mypage_block .mypage_block_list .mypage_block_item .mypage_block_item_title {
    width: 100px;
    font-size: 14px;
  }
}

.mypage_block_wrap .mypage_block .mypage_block_list .mypage_block_item .mypage_block_item_text {
  width: calc(100% - 140px);
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .mypage_block_wrap .mypage_block .mypage_block_list .mypage_block_item .mypage_block_item_text {
    width: calc(100% - 120px);
    font-size: 14px;
  }
}

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

      about.scss

=======================*/
.about_content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

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

.about_content_wrap .about_content_detail {
  width: 50%;
  padding: 0 80px 0 0;
}

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

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

.about_content_wrap .about_content_detail .about_content_detail_title {
  font-size: 34px;
  color: #333;
  line-height: 2;
  padding: 0 0 20px;
  margin: 0 0 40px;
  border-bottom: 1px solid #333;
}

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

.about_content_wrap .about_content_detail .about_content_detail_text {
  font-size: 16px;
  color: #333;
  line-height: 2.4;
}

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

.about_content_wrap .about_content_img {
  width: 50%;
}

@media only screen and (max-width: 640px) {
  .about_content_wrap .about_content_img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.about_content_wrap .about_content_img img {
  width: 100%;
}

/* ======================= BASE ====== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  word-break: break-word;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_10 {
  margin-bottom: 10px;
}

.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: 999px) {
  .common_pc {
    display: none;
  }
}

.common_sp {
  display: none;
}

@media only screen and (max-width: 999px) {
  .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;
}

/* ======================= FIXED BOTTOM BANNER ====== */
.fixed_bottom_banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  border-top: 1px solid #e0e0e0;
}

.fixed_bottom_banner_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fixed_bottom_banner_content {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.fixed_bottom_banner_label {
  display: inline-block;
  background-color: #e8563a;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fixed_bottom_banner_text {
  min-width: 0;
}

.fixed_bottom_banner_title {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.fixed_bottom_banner_desc {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fixed_bottom_banner_action {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.fixed_bottom_banner_btn {
  display: inline-block;
  background: linear-gradient(270deg, #003613 0%, #013e17 76.2%, #036527 100%);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.fixed_bottom_banner_btn:hover {
  opacity: 0.8;
}

.fixed_bottom_banner_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #999;
  transition: color 0.3s;
}

.fixed_bottom_banner_close:hover {
  color: #333;
}

@media screen and (max-width: 768px) {
  .fixed_bottom_banner_inner {
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 8px;
  }

  .fixed_bottom_banner_content {
    flex: 1 1 100%;
    gap: 8px;
  }

  .fixed_bottom_banner_label {
    font-size: 10px;
    padding: 3px 8px;
  }

  .fixed_bottom_banner_title {
    font-size: 13px;
  }

  .fixed_bottom_banner_desc {
    display: none;
  }

  .fixed_bottom_banner_action {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .fixed_bottom_banner_btn {
    flex: 1;
    text-align: center;
    font-size: 12px;
    padding: 10px 16px;
  }
}

/* ======================= BG COLOR ====== */
/* ======================= FONT ====== */
