﻿.cont_product_detail.cont_item_detail .cont_inner .main .block_item_main .box_product_detail .value_type h1 {
  font-weight: bold;
}

/* 製品詳細  */
.cont_case_detail .section_table.case-study_area .case-study_box.vertical .case_image_wrap {
  width: 64%;
  height: 700px;
}

.cont_case_detail .section_table.case-study_area .case-study_box.vertical .case_image_wrap .case-study_box_image_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

@media screen and (max-width: 896px) {
  .cont_case_detail .section_table.case-study_area {
    padding: 0 0 200px;
  }

  .cont_case_detail .section_table.case-study_area .case-study_boxes {
    padding-top: 30px;
  }

  .cont_case_detail .section_table.case-study_area .case-study_box.vertical .case_image_wrap {
    width: 100%;
    min-height: 400px;
    height: 400px;
  }

  .cont_case_detail .section_table.case-study_area .case-study_box.vertical .case_image_wrap .case-study_box_image_img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    aspect-ratio: 1;
  }
}

/*=================================================
 * modal
 * ================================================ */
.modal_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: none;
  /* sp */
}

.modal_container.active {
  display: block;
}

@media screen and (max-width: 896px) {
  .modal_container {
    z-index: 1010;
  }
}

.modal_container .modal_bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
}

.modal_container .modal_body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  background-color: #FFF;
  max-width: 700px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body {
    width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
    overflow: hidden;
  }
}

.modal_container .modal_body .modal_head {
  height: 80px;
  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;
  border-bottom: 1px solid #ACACAC;
  padding-left: 50px;
  padding-right: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_head {
    height: 60px;
  }
}

.modal_container .modal_body .modal_head .tl_modal {
  font-size: 2.4rem;
  font-weight: bold;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_head .tl_modal {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

.modal_container .modal_body .modal_head .btn_close {
  display: block;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 5px;
}

.modal_container .modal_body .modal_head .btn_close .hamburger_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.modal_container .modal_body .modal_head .btn_close .hamburger_cont .line_hamburger_box {
  width: 20px;
  margin: 0 auto;
}

.modal_container .modal_body .modal_head .btn_close .hamburger_cont .line_hamburger_box .line_hamburger {
  display: block;
  height: 2px;
  background-color: #191919;
  border-radius: 10px;
  position: relative;
}

.modal_container .modal_body .modal_head .btn_close .hamburger_cont .line_hamburger_box .line_hamburger:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -9px;
}

.modal_container .modal_body .modal_head .btn_close .hamburger_cont .line_hamburger_box .line_hamburger:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -11px;
}

.modal_container .modal_body .modal_head .btn_close .txt_hamburger {
  font-size: 1rem;
  line-height: 15px;
  color: #191919;
  display: block;
  width: 100%;
}

.modal_container .modal_body .modal_content {
  max-height: calc(80vh - 80px);
  overflow-y: scroll;
  padding: 30px 50px 100px;
  /* sp */
  /* モーダル内の画像
      ------------------------------------ */
  /* モーダル内のリンクボタン
      ------------------------------------ */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content {
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: calc(100vh - 100px);
  }
}

.modal_container .modal_body .modal_content.content_calc_sheets {
  padding: 40px 50px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content.content_calc_sheets {
    padding: 20px 20px 30px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.modal_container .modal_body .modal_content.content_photo_sheets {
  padding: 40px 50px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content.content_photo_sheets {
    padding: 20px 20px 30px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.modal_container .modal_body .modal_content.content_add_cart {
  padding: 30px 50px 40px 200px;
  position: relative;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content.content_add_cart {
    padding: 15px 10px 145px;
  }
}

.modal_container .modal_body .modal_content.content_add_cart::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  width: 110px;
  height: 97px;
  background-image: url(../img_cont/ico_face_add_cart.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content.content_add_cart::before {
    display: none;
  }
}

.modal_container .modal_body .modal_content.content_form_request {
  padding: 30px 50px 40px 200px;
  background-color: #F5F5F5;
  position: relative;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content.content_form_request {
    padding: 20px 20px 135px;
  }
}

.modal_container .modal_body .modal_content.content_form_request::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 104px;
  height: 102px;
  background-image: url(../img_cont/ico_face_panic.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content.content_form_request::before {
    display: none;
  }
}

.modal_container .modal_body .modal_content .img_modal_content {
  width: 100%;
  height: auto;
}

.modal_container .modal_body .modal_content .link_modal_content {
  display: block;
  height: 70px;
  border-radius: 10px;
  background-color: #BF0000;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 2rem;
  line-height: 70px;
  /* sp */
}

.modal_container .modal_body .modal_content .link_modal_content.link_calc_sheets {
  width: 100%;
  max-width: 450px;
  margin: 20px auto 0;
  border: none;
  background-color: #1095DB;
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .link_modal_content {
    width: 100%;
    max-width: 295px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto;
    position: relative;
  }

  .modal_container .modal_body .modal_content .link_modal_content::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    top: unset;
    bottom: -110px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 94px;
    height: 86px;
    background-image: url(../img_cont/ico_face_add_cart.svg);
    background-size: 100% auto;
    pointer-events: none;
  }

  .modal_container .modal_body .modal_content .link_modal_content.link_calc_sheets::before {
    display: none;
  }
}

.modal_container .modal_body .modal_content .link_modal_content .txt_add_cart {
  padding-left: 30px;
  position: relative;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .link_modal_content .txt_add_cart {
    font-size: 1.7rem;
  }
}

.modal_container .modal_body .modal_content .link_modal_content .txt_add_cart::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 21px;
  background-image: url(../img_cmn/ico_cart_white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.modal_container .modal_body .modal_content .txt_pattern_match {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 32px;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
  color: #3E3E3E;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .txt_pattern_match {
    line-height: 2.8rem;
  }
}

.modal_container .modal_body .modal_content .list_calc_sheets {
  counter-reset: li;
  margin-bottom: 25px;
}

.modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets {
  padding-left: 50px;
  margin-top: 35px;
  position: relative;
  /* sp */
}

.modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets:first-child {
  margin-top: 0;
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets {
    margin-top: 25px;
    padding-left: 40px;
  }
}

.modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets::before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: -5px;
  width: 38px;
  height: 38px;
  background-color: #191919;
  border-radius: 50%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 38px;
  color: #FFF;
  counter-increment: li;
  content: counter(li);
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets::before {
    width: 30px;
    height: 30px;
    font-size: 2rem;
    line-height: 30px;
  }
}

.modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets .tl_calc_sheets {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 29px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets .tl_calc_sheets {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}

.modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets .txt_calc_sheets {
  font-size: 1.4rem;
  line-height: 21px;
  text-indent: -1.4em;
  padding-left: 1.5em;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .list_calc_sheets .item_calc_sheets .txt_calc_sheets {
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}

.modal_container .modal_body .modal_content .form_modal .img_box {
  position: relative;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .img_box {
    margin: 0 -20px;
  }
}

.modal_container .modal_body .modal_content .form_modal .img_box img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.modal_container .modal_body .modal_content .form_modal .input_count_sheets {
  position: absolute;
  top: 135px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  border: 1px solid #7A7A7A;
  background-color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
  text-align: right;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .input_count_sheets {
    width: calc(100% * 90 / 335);
    height: 40px;
    padding: 0 10px;
    font-size: 1.8rem;
    top: calc(100% * 75 / 180);
    left: calc(100% * 112 / 335);
    -webkit-transform: unset;
    transform: unset;
  }
}

.modal_container .modal_body .modal_content .form_modal .input_count_sheets.cushion_01 {
  top: 90px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .input_count_sheets.cushion_01 {
    top: calc(100% * 57 / 220);
  }
}

.modal_container .modal_body .modal_content .form_modal .input_count_sheets.cushion_02 {
  top: 188px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .input_count_sheets.cushion_02 {
    top: calc(100% * 134 / 220);
  }
}

.modal_container .modal_body .modal_content .form_modal .txt_notion {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: #F83E17;
  text-indent: -1.3em;
  padding-left: 1.3em;
  margin-top: 10px;
}

.modal_container .modal_body .modal_content .form_modal .tl_modal_radio {
  margin-top: 30px;
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: bold;
  padding-left: 15px;
  position: relative;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .tl_modal_radio {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
}

.modal_container .modal_body .modal_content .form_modal .tl_modal_radio::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #191919;
}

.modal_container .modal_body .modal_content .form_modal .modal_radio {
  margin-top: 20px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .modal_radio {
    display: block;
    margin-bottom: 0;
  }
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__label {
  display: block;
  width: calc((100% - 20px) / 2);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-left: 20px;
  /* sp */
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__label:first-child {
  margin-left: 0;
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .modal_radio__label {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }

  .modal_container .modal_body .modal_content .form_modal .modal_radio__label:first-child {
    margin-top: 0;
  }
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__wrap {
  padding: 20px 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #FFF;
  border: 2px solid #FFF;
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__radio {
  display: none;
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__tl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 24px;
  margin-left: -5px;
  padding-left: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .modal_radio__tl {
    font-size: 1.8rem;
  }
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__tl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #7A7A7A;
  background-color: #FFF;
  border-radius: 50%;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .modal_radio__tl::before {
    width: 22px;
    height: 22px;
  }
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__tl::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FC6A64;
  display: none;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .modal_radio__tl::after {
    width: 12px;
    height: 12px;
  }
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__tl .nes {
  font-size: 1.3rem;
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__tl .nes .num {
  font-size: 2rem;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .modal_radio__tl .nes .num {
    font-size: 1.8rem;
  }
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__radio:checked+.modal_radio__wrap {
  background-color: #FEE8E7;
  border: 2px solid #FC6A64;
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__radio:checked+.modal_radio__wrap .modal_radio__tl::after {
  display: block;
}

.modal_container .modal_body .modal_content .form_modal .modal_radio__img {
  display: block;
  margin-top: 20px;
  width: 100%;
  height: auto;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_modal .modal_radio__img {
    margin-top: 15px;
  }
}

.modal_container .modal_body .modal_content .list_order_type {
  margin-top: 0;
  margin-bottom: 20px;
}

.modal_container .modal_body .modal_content .list_order_type .item_order_type {
  background-color: #F5F5F5;
  border-color: #F5F5F5;
}

.modal_container .modal_body .modal_content .list_order_type .item_order_type .item_count_box .txt_select_count {
  margin-top: 18px;
  padding-right: 10px;
  font-size: 2rem;
  line-height: 20px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .list_order_type .item_order_type .item_count_box .txt_select_count {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.modal_container .modal_body .modal_content .list_order_type .item_order_type.type_diy {
  margin-top: 10px;
}

.modal_container .modal_body .modal_content .list_order_type .item_order_type.type_diy::before {
  display: none;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form {
  margin-top: 15px;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form:first-child {
  margin-top: 0;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .tl_form_box {
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_request .box_modal_form .tl_form_box {
    line-height: 1.4rem;
  }
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .tl_form_box .txt_tl_form {
  font-size: 1.4rem;
  font-weight: bold;
  color: #464646;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box {
  margin-top: 5px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box {
    margin-top: 10px;
  }
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .input_modal_form {
  height: 46px;
  border: 1px solid #3E3E3E;
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.4rem;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .input_modal_form::-webkit-input-placeholder {
  color: #ACACAC;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .input_modal_form:-ms-input-placeholder {
  color: #ACACAC;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .input_modal_form::-ms-input-placeholder {
  color: #ACACAC;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .input_modal_form::placeholder {
  color: #ACACAC;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .wrap_select {
  width: 100%;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .wrap_select {
    margin-top: 0;
  }
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .wrap_select::before {
  right: 20px;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box .wrap_select .select_modal_form {
  height: 46px;
  border: 1px solid #3E3E3E;
  width: 100%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.4rem;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box.content_half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal_container .modal_body .modal_content .form_request .box_modal_form .content_form_box.content_half .input_modal_form {
  width: calc((100% - 10px) / 2);
}

.modal_container .modal_body .modal_content .form_request .request {
  margin-top: 30px;
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_request .request {
    margin-top: 20px;
    height: 60px;
    position: relative;
  }

  .modal_container .modal_body .modal_content .form_request .request::before {
    content: '';
    position: absolute;
    bottom: -115px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 96px;
    height: 95px;
    background-image: url(../img_cont/ico_face_panic.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    pointer-events: none;
  }
}

.modal_container .modal_body .modal_content .form_request .request .txt_form {
  /* sp */
}

@media screen and (max-width: 896px) {
  .modal_container .modal_body .modal_content .form_request .request .txt_form {
    font-size: 1.7rem;
  }
}


/* 250312 商品一覧の「標準　新着」の非表示
------------------------------------ */
/* pc */
.controlBar .sort {
  visibility: hidden;
}

/* sp */
@media screen and (max-width: 896px) {
  .controlBar .sort_sp {
    display: none;
  }
}