@charset "utf-8";
#items {}
a {
  text-decoration: none;
}
@media screen and (min-width:768px) { /* PCで非表示 */
  .sp {
    display: none !important;
  }
}
@media only screen and (min-width: 0) and (max-width: 767px) { /* SPで非表示 */
  .pc {
    display: none;
  }
  .search_box .pc {
    display: none !important;
  }
}
/*========== アイテム詳細ページ ==========*/
/* 見出し */
[class *="item_title"] {
  color: var(--bland);
  font-size: 2rem;
  letter-spacing: 4px;
  position: relative;
}
[class *="item_title"]::before {
  content: "\0bb";
  width: 5px;
  height: 5px;
  color: var(--bland);
}
.item_title_mb50 {
  margin-bottom: 50px;
}
h2.item_title_mb15 {
  margin-bottom: 15px;
}
h3 {
  color: var(--bland);
  margin-bottom: 50px;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  h3 {
    margin-bottom: 30px;
  }
}
.container {
  display: flex;
  margin-bottom: 135px;
  padding-top: 20px;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .container {
    margin-bottom: 31.7%;
  }
}
/* 2カラム左側（検索窓/カテゴリ） */
.category {
  flex: 1;
  padding-right: 0.035rem;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .container {
    flex-direction: column;
  }
  .category {
    display: block;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
    padding-right: 0;
  }
}
/* 検索窓 */
.search_box {
  margin-bottom: 40px;
}
.search_container {
  box-sizing: border-box;
}
.search_container input[type="text"] {
  border: none;
  height: 2.0em;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"] {
  cursor: pointer;
  border: none;
  outline: none;
}
@media screen and (min-width:768px) { /*PC*/
  .search_container {
    position: relative;
    height: 2.5em;
    width: 250px;
    border: 1.5px solid #999;
    display: block;
    padding: 3px 10px;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
  }
  .search_container input[type="submit"] {
    font-family: FontAwesome;
    font-size: 1.3em;
    background: none;
    color: #000;
    position: absolute;
    width: 2.5em;
    height: 2.5em;
    right: 0;
    top: -8px;
  }
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .search_box {
    margin-bottom: 0;
    width: 100%;
  }
  .search_container {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .search_container input[type="text"] {
    border: 1.5px solid #999;
    border-radius: 20px;
    width: 66.6%;
    height: 2.5em;
    padding: 3px 10px;
  }
  .search_box .isearch {
    border: none;
    background: none;
    height: 2.8em;
    position: relative;
    width: 100%;
  }
  .search_container input[type="submit"] {
    font-family: FontAwesome;
    font-size: 1.3em;
    background: none;
    color: #000;
    position: absolute;
    width: 2.5em;
    height: 2.5em;
    right: 33%;
    top: -8px;
  }
}
/* カテゴリーメニュー */
.category_ttl { /* タイトル */
  position: relative;
  width: 81.9%;
  background: var(--bland);
  color: #fff;
  padding: 5px 35px 0 15px;
  cursor: pointer;
  transition: 0.3s;
}
.category_ttl:hover {
  opacity: .6;
}
.category_ttl::after { /* 下向き矢印 */
  content: "";
  position: absolute;
  top: 45%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.category_ttl.is-open::after {
  top: 55%;
  transform: translateY(-50%) rotate(-135deg);
}
a > .category_ttl::after {
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}
.category_menu { /* メニュー */
  width: 81.9%;
  background: #f2fafe;
  padding: 20px 15px;
}
.category_menu li {
  position: relative;
  margin-bottom: 25px;
}
.category_menu li::after { /* 右向き矢印 */
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #4bbcf2;
  border-right: 1.5px solid #4bbcf2;
  transform: translateY(-50%) rotate(45deg);
}
.category_menu li.second_line::after { /* 右向き矢印・二行になるパターン */
  content: "";
  position: absolute;
  top: 75%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #4bbcf2;
  border-right: 1.5px solid #4bbcf2;
  transform: translateY(-50%) rotate(45deg);
}
.category_menu p {
  position: relative;
  color: #999;
  text-align: right;
  padding-right: 10px;
}
.category_menu p::after { /* 右向き矢印 */
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
/* ラジオボタン */
.category_menu label {
  margin-bottom: 20px;
  padding-left: 30px;
  display: block;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
}
.category_menu input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.category_menu .indicator {
  width: 20px;
  height: 20px;
  background: #e6e6e6;
  position: absolute;
  top: 2px;
  left: 0;
}
.category_menu .typeA-radio .indicator {
  border-radius: 50%;
}
.category_menu label:hover input ~ .indicator, .category_menu label input:focus ~ .indicator {
  background: #ccc;
}
.category_menu label input:checked ~ .indicator {
  background: rgba(0, 154, 219, 1);
}
.category_menu label:hover input:not([disabled]):checked ~ .indicator {
  background: rgba(0, 154, 219, .7);
}
.category_menu .typeA-radio input:checked ~ .indicator {
  background: #49bcf2;
}
.category_menu .typeA-radio:hover input:not([disabled]):checked ~ .indicator {
  background: rgba(73, 188, 242, .7);
}
.category_menu label input:disabled ~ .indicator, .category_menu .typeA-radio input:disabled ~ .indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.category_menu .indicator::after {
  content: '';
  display: none;
  position: absolute;
}
.category_menu label input:checked ~ .indicator::after {
  display: block;
}
.category_menu .typeA-checkbox .indicator::after {
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 8px;
  top: 4px;
  transform: rotate(45deg);
}
.category_menu .typeA-checkbox input:disabled ~ .indicator::after {
  border-color: #7b7b7b;
}
.category_menu .typeA-radio .indicator::after {
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  left: 8px;
  top: 4px;
  transform: rotate(45deg);
}
.category_menu .typeA-radio input:disabled ~ .indicator::after {
  background: #7b7b7b;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .category_ttl {
    width: 100%;
  }
  .category_menu {
    width: 100%;
  }
}
/* 2カラム右側（メインコンテンツ全体） */
.container .main {
  flex: 3;
}
[class *="main_wrap"] {
  display: flex;
  width: 100%;
}
.main_wrap_search {
  margin-bottom: 50px;
}
.main_wrap_bb { /* border-bottomあり */
  border-bottom: solid 1px #999;
  margin-bottom: 80px;
  padding-bottom: 80px;
}
.main_wrap_nb { /* border-bottomなし */
  margin-bottom: 30px;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .main_wrap_bb {
    flex-direction: column;
  }
}
/* （メインコンテンツ左側） */
.main_content_L {
  width: 50%;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .main_content_L {
    flex-direction: column;
    width: 100%;
  }
}
/* （メインコンテンツ右側） */
.main_content_R {
  width: 50%;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .main_content_R {
    width: 100%;
    padding-left: 0;
  }
}
/* ページ右上プルダウンメニュー */
.pull_down_box {
  position: relative;
}
.pull_down_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 40px;
  background: #fafafa;
  padding: 6px 3px 0 3px;
}
.pull_down_menu select {
  width: 100%;
  background: #fafafa;
  border: none;
  font-size: 14px;
}
/* メイン商品（クリックで画像切り替え） */
.main-img {
  max-width: 400px;
  border: 1px solid whitesmoke;
  height: 398px;
}
.main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sub-img {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  margin-top: 20px;
}
.sub-img li {
  margin: 0 3.5% 3.5% 0;
  width: calc(86% / 5);
}
.sub-img li:nth-child(5n) {
  margin-right: 0;
}
.sub-img li + li {
  margin-bottom: 0;
}
.sub-img li img {
  border: 1px solid #F5F5F5;
  transition: border .5s;
  height: 68px;
  object-fit: contain;
}
.sub-img img {
  cursor: pointer;
  width: 100%;
}
.sub-img li.current img { /* アクティブな画像の枠線を変更 */
  border: 1.5px solid #F5F5F5;
  transition: border .5s;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .main-img {
    width: 100%;
    height: auto;
  }
  .sub-img {
    width: 100%;
    margin-bottom: 50px;
  }
}
/* 商品説明 */
.item_detail_L {
  width: clac(100 - 4.4%);
  background: #f2fafe;
  margin-right: 4.4%;
  padding: 2%;
}
.item_detail_L p {
  font-size: 0.875rem;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .item_detail_L {
    margin-bottom: 30px;
  }
  .item_detail_L p {
    font-size: 0.75rem;
  }
}
/* スクロールボックス */
.item_detail_R {
  width: 100%;
  height: 260px;
  background: #f2fafe;
  overflow-y: scroll;
  padding: 20px;
}
.item_detail_R::-webkit-scrollbar { /* スクロールの幅の設定 */
  width: 5px;
  height: 10px;
}
.item_detail_R::-webkit-scrollbar-track { /* スクロールの背景の設定 */
  border-radius: 5px;
  background: rgba(110, 108, 108, 0.2);
}
.item_detail_R::-webkit-scrollbar-thumb { /* ドラックできるスクロール部の設定 */
  border-radius: 5px;
  background: var(--bland);
}
.contact_box {
  position: relative;
  width: 100%;
  border-bottom: solid 1px #999;
  margin-bottom: 20px;
}
.contact_box:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.contact_box p {
  font-size: 0.875rem;
}
.contact_box_R {
  position: absolute;
  top: 10px;
  right: 0;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .contact_box img {
    max-width: 20%;
  }
}
/* ボタン類 */
.items_anc_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px auto 35px;
  gap: 0 10px;
}
.items_anc_list li {
  width: calc(100% / 5);
}
.items_anc_list li a {
  width: 100%;
  padding: 20px 0;
  height: auto;
  margin: auto;
  white-space: nowrap;
}
.items_anc_list li a::after {
  display: none;
}
.items_anc_list li a:hover {
  opacity: .6;
  transition: 0.4s;
  transform: none;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .items_anc_list li a {
    font-size: 0.75rem;
    padding: 15px 0;
}
  .items_anc_list {
    flex-wrap: wrap;
    gap: 10px;
    margin: 45px auto 15px;
  }
  .items_anc_list li:nth-child(-n+2) {
    width: calc(100% / 2 - 10px);
  }
  .items_anc_list li:nth-child(n+3) {
    width: calc(100% / 3 - 10px);
  }
}
@media not all and (min-resolution:.001dpcm) {
  @supports (not (translate: none)) {
    .items_anc_list li {
      margin-right: 10px;
    }
    .items_anc_list li:last-child {
      margin-right: 0;
    }
    @media only screen and (min-width: 0) and (max-width: 767px) {
      .items_anc_list li:nth-child(-n+2) {
        margin-bottom: 10px;
      }
    }
  }
}
.item_num_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
[class *="_btn_linear"] {
  max-width: 100%;
  height: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px 13px 20px;
  border-radius: 47px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  line-height: 1.4;
  letter-spacing: 0;
}
[class *="_btn_linear"]:hover {
  opacity: 1;
  transition: 0.4s;
  transform: scale(1.1);
}
/* 商品説明用ボタン */
.contact_btn_linear {
  width: 200px;
  height: 50px;
  background: linear-gradient(-40deg, rgba(17, 139, 252, 0.85) 0%, rgba(78, 191, 242, 0.85) 90%);
}
/* アイコン付きボタン */
.icon_btn_linear {
  width: 370px;
  background: linear-gradient(-40deg, rgba(17, 139, 252, 0.85) 0%, rgba(78, 191, 242, 0.85) 90%);
  margin-bottom: 25px;
}
.icon_btn_linear:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .icon_btn_linear {
    height: 15.8%;
  }
  .icon_btn_linear picture {
    max-width: 12%;
  }
}
/* 利用イメージ（PC・SPで画像切り替え） */
.usage_example picture {
  margin-right: 20px;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .usage_example picture {
    margin-right: 0;
    margin-bottom: 25px;
  }
}
/* 関連特集（PC・SPで画像切り替え） */
.related_feature {
  display: flex;
  justify-content: space-between;
}
.related_feature a {
  width: calc(100% / 3 - 30px);
}
.related_feature p {
  margin-top: 20px;
}
.related_feature img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .related_feature {
    flex-direction: column;
    margin-bottom: 18%;
  }
  .related_feature a {
    width: 100%;
  }
  .related_feature picture + picture {
    margin-top: 14.28%;
  }
}
/* おすすめ商品（テンプレート部分） */
.recommend {
  flex-wrap: wrap;
}
.recommend_box { /* 子要素 */
  margin-right: 3.3%;
  width: calc(86.8% / 5);
}
.recommend_box:last-child {
  margin-right: 0;
}
.recommend_main-img {
  width: 100%;
  margin-bottom: 5px;
}
.recommend_main-img img {
  width: 100%;
}
.recommend_sub-img { /* 孫要素 */
  display: flex;
  flex-wrap: wrap;
  max-width: 155px;
  margin-bottom: 20px;
}
.recommend_sub-img li {
  width: calc(97.7% / 5);
  margin: 0 0.58% 5px 0;
}
.recommend_sub-img li:nth-child(5n) {
  margin-right: 0;
}
.recommend_sub-img li + li {
  margin-bottom: 0;
}
.recommend_sub-img li img {
  border: 1px solid whitesmoke;
  transition: border .5s;
}
.recommend_sub-img img {
  cursor: pointer;
  width: 100%;
}
.recommend_sub-img li.current img { /* アクティブな画像の枠線を変更 */
  border: 1.5px solid #F5F5F5;
  transition: border .5s;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .recommend {
    width: 90%;
    margin: 0 auto;
  }
  .recommend_sub-img { /* 孫要素 */
    width: 100%;
    margin-bottom: 10px;
  }
  .recommend_sub-img li {
    width: calc(90% / 5);
    margin: 0 2% 2% 0;
  }
}
/* 詳細ページ・おすすめ商品リスト */
.recommend_list_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: solid 1px #999;
  margin-bottom: 80px;
}
.recommend_list_box { /* 子要素 */
  width: calc(86.8% / 5);
  margin-right: 3.3%;
  margin-bottom: 50px
}
.recommend_list_box:nth-child(5n) {
  margin-right: 0;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .recommend_list_box { /* 子要素 */
    width: calc(92% / 2);
    margin-right: 0;
    margin-left: 7.93%;
  }
  .recommend_list_box:nth-child(odd) {
    margin-left: 0;
  }
}
/* おすすめ商品リスト・ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  margin: 60px auto 100px auto;
}
.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--bland);
  margin: 0 5px;
}
.page-numbers {
  border-radius: 100%;
  border: solid 1px #4bbcf2;
}
.no-link {
  color: #999;
}
.current-page {
  background: var(--bland);
  border-radius: 100%;
  color: #fff;
}
.item_description {
  padding-left: 25px;
}
.item_description li + li {
  padding-left: 3em;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .item_description {
    padding-left: 0;
  }
}
/*========== アイテム検索ページ ==========*/
/* h2 */
h2.isearch_title {
  color: var(--bland);
  font-size: 2rem;
  margin-bottom: 50px;
}
h2.isearch_title::before {
  content: "●";
  color: #c9edff;
  padding-right: 10px;
}
h2.isearch_title span {
  font-size: 14px;
  color: #999;
  padding-left: 30px;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  h2.isearch_title {
    margin-bottom: 9.52%;
  }
  h2.isearch_title span {
    padding-left: 3.17%;
  }
}
/* ===メインイメージ=== */
.isearch_bnr {
  position: relative;
  height: 300px;
  background-image: url(../img/business/items/isearch_topImg_pc.jpg);
  background-image: -webkit-image-set(url(../img/business/items/isearch_topImg_pc.jpg));
  background-image: image-set(url(../img/business/items/isearch_topImg_pc.jpg));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin: 40px 0 0;
  overflow: hidden;
}
.isearch_bnr h1 {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}
.isearch_wp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
  .isearch_bnr {
    height: 68vw;
    background-image: url(../img/business/items/isearch_topImg_sp.jpg);
    background-image: -webkit-image-set(url(../img/business/items/isearch_topImg_sp.jpg));
    background-image: image-set(url(../img/business/items/isearch_topImg_sp.jpg));
  }
  .isearch_bnr h1 {
    font-size: 1.6rem;
  }
}
/* ===検索窓=== */
.isearch {
  position: relative;
  height: 2.5em;
  width: 450px;
  border: 1.5px solid #999;
  display: block;
  padding: 3px 10px;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  margin: auto;
}
.isearch input[type="submit"] {
  font-family: FontAwesome;
  font-size: 1.3em;
  background: none;
  color: #000;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
  .isearch input[type="submit"] {
    width: 2em;
    height: 2em;
    right: 18%;
    top: 0;
  }
}
/* ===スライダー=== */
.ui_item_slick{
  max-width:1000px;
  margin:40px auto 0;
}
.ui_item_slick .slick-prev {
    left: -17px;
}
.ui_item_slick .slick-next {
    right: -17px;
}
.ui_item_slick .slick-prev,
.ui_item_slick .slick-next {
  background:rgba(74,188,242,0.9);
  }
.ui_item_slick .slick-prev:after {
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }
.ui_item_slick .slick-next:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.ui_item_slick .slick-dots {
    bottom: -20px;
}
.ui_item_slick .slick-dots li button {
    background: #dcdcdc;
}
.ui_item_slick .slick-dots li.slick-active button {
    background: #5cc3f3;
    }
@media only screen and (min-width: 0) and (max-width: 767px) {
  .ui_item_slick{
    width:calc(92vw - 54px);
    margin:7.8vw auto 15.6vw;
}
}
/* ===カテゴリで探す=== */
.isearch_work_wp {}
.isearch_box {
  padding: 90px 0;
}
.isearch_wide {
  padding-top: 1px;
  position: relative;
  z-index: 5;
}
.isearch_category_list {
  display: flex;
  flex-wrap: wrap;
}
.isearch_category_list_item {
  width: 180px;
  margin-right: 24px;
}
.isearch_category_list_item:nth-child(6n) {
  margin-right: 0;
}
.isearch_category_list_item a {
  text-decoration: none;
  display: block;
}
.isearch_category_list_item a p {
  font-size: 0.875rem;
  font-weight: bold;
  margin: 20px 0 25px;
  display: flex;
  justify-content: center;
}
.isearch_category_list_item a picture {
  height: 140px;
  display: block;
  text-align: center;
}
.isearch_category_list_item a picture img {
  margin: 0 auto 5px auto;
  max-height: 140px;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) { /*PAD*/
  .isearch_category_list_item {
    width: 15%; /*180px*/
    margin-right: 2%; /*24px*/
  }
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .isearch_box {
    padding: 30px 0;
  }
  .isearch_category_list_item {
    flex-basis: calc(85.72% / 3);
    margin-right: 7.14%;
  }
  .isearch_category_list_item:nth-child(3n) {
    margin-right: 0;
  }
  .isearch_category_list_item a p {
    font-size: 0.625rem;
  }
  .isearch_category_list_item a picture {
    height: 80px;
  }
  .isearch_category_list_item a picture img {
    max-height: 80px;
    width: auto;
  }
}
/* ===「すべて見る」ボタンクリックで展開=== */
.hide_area {
  display: none;
}
.isearch_feat_all,
.isearch_feat_more {
  width: 450px;
  height: 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border: 1px solid var(--bland);
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0 auto;
}
.isearch_feat_all::after {
  content: "すべて見る";
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  transition: .2s;
  -erbkit-transition: .2s;
}
.isearch_feat_all.on-click::after {
  content: "閉じる";
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .isearch_feat_all,
  .isearch_feat_more {
    width: 100%;
    height: 14.28vw;
  }
}
/* ===新着商品=== */
.isearch_category_list_newitem {
  width: 180px;
  margin-right: 24px;
}
.isearch_category_list_newitem:nth-child(6n) {
  margin-right: 0;
}
.isearch_category_list_newitem a {
  text-decoration: none;
}
.isearch_category_list_newitem a p {
  font-size: 0.875rem;
  font-weight: bold;
  margin: 20px 0 25px;
  display: flex;
  justify-content: center;
}
.isearch_category_list_newitem a p::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--bland);
  border-right: solid 2px var(--bland);
  display: inline-block;
  transform: rotate(45deg);
  margin-top: 5px;
  margin-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) { /*PAD*/
  .isearch_category_list_newitem {
    width: 15%; /*180px*/
    margin-right: 2%; /*24px*/
  }
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .isearch_box {
    padding: 30px 0;
  }
  .isearch_category_list_newitem {
    flex-basis: calc(85.72% / 3);
    margin-right: 7.14%;
  }
  .isearch_category_list_newitem:nth-child(3n) {
    margin-right: 0;
  }
  .isearch_category_list_newitem a p {
    font-size: 0.625rem;
  }
  .isearch_category_list_newitem a p::after {
    width: 3px;
    height: 3px;
  }
}
/* ===カタログで探す=== */
.isearch_catalog_wpL {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 156px;
  background: #c9edff;
  border-radius: 100%;
  color: var(--bland);
  line-height: 1.5em;
  margin-right: 105px;
}
.isearch_catalog_wpR {
  display: flex;
  flex-wrap: wrap;
  width: 939px;
}
.isearch_category_list_catalog {
  width: calc(624px / 4);
  margin-right: 105px;
}
.isearch_category_list_catalog:nth-child(4n) {
  margin-right: 0;
}
.isearch_category_list_catalog a {
  text-decoration: none;
}
.isearch_category_list_catalog a p {
  font-size: 0.875rem;
  font-weight: bold;
  margin: 20px 0 25px;
  display: flex;
  justify-content: center;
}
.isearch_category_list_catalog a p::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--bland);
  border-right: solid 2px var(--bland);
  display: inline-block;
  transform: rotate(45deg);
  margin-top: 5px;
  margin-left: 5px;
}
.isearch_category_list_catalog img {
  height: 221px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) { /*PAD*/
  .isearch_catalog_wpL {
    width: 13.94%; /*156px*/
    height: 13.94vw;
    margin-right: 9.38%; /*105px*/
  }
  .isearch_catalog_wpR {
    width: 76.67%; /*858px*/
  }
  .isearch_category_list_catalog { /*画面幅でなく親要素から見た％*/
    width: calc(63.28% / 4);
    margin-right: 12.23%; /*105px*/
  }
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .isearch_catalog_wpL {
    width: 26.98%; /*170px*/
    height: 24.2vw;
    line-height: 1.2em;
    margin-right: 9.52%; /*60px*/
  }
  .isearch_catalog_wpR {
    width: 63.49%; /*400px*/
  }
  .isearch_category_list_catalog { /*画面幅でなく親要素から見た％*/
    width: calc(85% / 2);
    margin-right: 15%; /*60px*/
  }
  .isearch_category_list_catalog:nth-child(even) {
    margin-right: 0;
  }
  .isearch_category_list_catalog a p {
    font-size: 0.625rem;
  }
  .isearch_category_list_catalog a p::after {
    width: 3px;
    height: 3px;
  }
  .isearch_category_list_catalog img {
    height: auto;
  }
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .mt-50 {
    margin-top: 50px;
  }
}
/* ===カートボタン=== */
#items .btn_cart_box {
  display: inline-block;
  position: absolute;
  z-index: 1000;
}
#items .btn_cart_warp {
  position: fixed;
  bottom: 50px;
  right: 20px;
}
#items .btn_cart {
  position: relative;
}
#items .btn_cart .bg {
  background: var(--bland);
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#items .btn_cart .txt {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.25;
	text-align: center;
	margin-bottom: 5px;
}
#items .btn_cart .img {
  width: 50%;
}
#items .btn_cart .ico_count_warp {
  position: absolute;
  top: -10px;
  right: -10px;
}
#items .btn_cart .ico_count {
  background: #ff0000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#items .btn_cart .ico_count .count {
  color: #ffffff;
  font-size: 0.875rem;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  #items .btn_cart_warp {
    bottom: 15px;
    right: 15px;
  }
  #items .btn_cart .ico_count {
    width: 20px;
    height: 20px;
  }
  #items .btn_cart .bg {
    width: 70px;
    height: 70px;
    border-radius: 15px;
  }
  #items .btn_cart .txt {
    font-size: 0.625rem;
  }
  #items .btn_cart .ico_count_warp {
    top: -7px;
    right: -7px;
}
}
/* 問い合わせボタン */
.ui_btn_inquiry {
  max-width: 450px;
  margin-top: 80px;
}
.ui_btn_inquiry {
  max-width: 450px;
}
.ui_btn_inquiry::after {
  content: "";
  position: initial;
  border: none;
  background: url(/img/business/items/ico-mail.svg) no-repeat;
  background-position: center bottom;
  background-size: 22px 14px;
  margin-left: 20px;
  width: 22px;
  height: 14px;
}
@media screen and (min-width:1200px) { /*PC*/
}
@media only screen and (min-width: 768px) and (max-width: 1199px) { /*PAD*/
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
  .ui_btn_inquiry {
    max-width: 100%;
    width: 100%;
    height: 14.28vw;
    border-radius: 50px;
  }
}
/* モーダル */
.modal-close {
  display: none;
}
@media only screen and (min-width: 0) and (max-width: 767px) {
  .category_menu div {
    display: flex;
    flex-wrap: wrap;
  }
  .category_menu label {
    width: 50%;
  }
  .category_menu p {
    text-align: center;
    font-size: 16px;
  }
  .category_menu p::after {
    content: "";
    position: absolute;
    top: 45%;
    right: 30%;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-top: none;
    transform: translateY(-50%) rotate(45deg);
  }
  /*モーダルを開くボタン*/
  .modal-open {
    border-radius: 20px;
    width: 30%;
    height: 2.5em;
    background: var(--bland);
    color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    display: block;
    text-align: center;
    padding: 8px;
  }
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  .modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 10px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
  }
  /*モーダル本体の擬似要素の指定*/
  .modal-container:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  .modal-container.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
  }
  /*モーダル枠の指定*/
  .modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 500px;
    width: 98%;
    height: 500px;
    overflow: scroll;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 60px;
    font-size: 40px;
    color: #000;
    cursor: pointer;
  }
  /*モーダル内のコンテンツの指定*/
  .modal-content {
    background: #fff;
    text-align: left;
    padding: 20px;
  }
}



/* === バナー表示 === */
.detail-banner-box{
  margin-top: 50px;
  width: 81.9%;
}
.detail-banner-box ul li{
  margin-top: 10px;
}

.banner-top-box{
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .banner-top-box{
    max-width: 1040px;
    margin: 50px auto 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
  }
  .banner-top-box .banner-img{
    width: 32%;
  }
}