@charset "UTF-8";

.read_wrap.txtAlL {
  text-align: left;
}

.topics_wrap {
  margin-top: 50px;
  background: linear-gradient(90deg, var(--grade-blue01));
  color: var(--col-black);
  font-weight: 500;
  text-align: center;
  padding: 1.75px;
  font-size: 18px;
  border-radius: 15px;
}

.topics_inner {
  background: #fff;
  border-radius: 15px;
  padding: var(--inner-padding-LR);
  text-align: left;
}

.topics_wrap .tit_box {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.topics_wrap hr {
  border: 2px solid #dcdcdc;
  margin: 5px 0 18px;
  opacity: 1;
}

.topics_wrap .flex {
  flex-direction: row-reverse;
}

.topics_wrap .flex .img_box {
  width: 35%;
}

.topics_wrap .flex .txt_box {
  width: 62%;
}

.topics_wrap p {
  font-weight: 400;
}

.topics_wrap .txt_box p+p {
  margin-top: 1.25em;
}



.product_list,
.product_list .list_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product_list>* {
  width: 50%;
}

.product_list .list_inner {
  padding: 30px 30px 30px 5px;
  border-radius: 10px;
  align-items: center;
  height: 100%;
}

.product_list .list_item:nth-child(4n) .list_inner,
.product_list .list_item:nth-child(4n+1) .list_inner {
  background: #f2f2ec;
}

.product_list .list_item:nth-child(4n+2) .list_inner,
.product_list .list_item:nth-child(4n+3) .list_inner {
  background: #fff;
}

.product_list .list_inner .img_wrap {
  width: 28%;
}

.product_list .list_inner .img_wrap picture {
  margin: auto;
  max-width: 100px;
}

.product_list .list_inner .txt_wrap {
  width: 70%;
}

.product_list .list_inner .nailist picture {
  width: 72%;
  max-width: 80px;
}

.product_list .list_inner .imProtain picture {
  max-width: unset;
  width: 100%;
}

.product_list .list_inner .tit_wrap {
  border-bottom: 2px solid #dcdcdc;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  align-items: end;
  margin-bottom: 0.75em;
  padding-bottom: 0.5em;
}


.product_list .list_inner .title_box {
  width: fit-content;
}

.product_list .list_inner .category {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}

.product_list .list_inner .category span {
  display: inline-block;
  background: #fff;
  margin-bottom: 0.2em;
  padding: 0em 0.75em;
  color: var(--col-blue01);
  border: 1px solid var(--col-blue01);
  border-radius: 1em;
  font-size: 0.65em;
  font-weight: bold;
}

.product_list .list_inner .txt_box,
.product_list .list_inner .txt_box p {
  font-size: 15px;
}

.product_list .list_inner .icon_list {
  margin-top: 1.25em;
}

.product_list .list_inner .icon_list li {
  position: relative;
  padding-left: 1.5em;
}

.product_list .list_inner .icon_list li::before {
  content: '\025a0';
  position: absolute;
  top: 0;
  left: 0;

}

@media only screen and (max-width: 1163px) {

  .topics_wrap {
    font-size: 1.8vw;
  }

  .topics_wrap .tit_box {
    font-size: 2.5vw;
  }

  .product_list .list_inner {
    padding: 3vw 2.5vw 3vw 5px;
  }

  .product_list .list_inner .tit_wrap {
    font-size: 1.8vw;
  }

  .product_list .list_inner .txt_box,
  .product_list .list_inner .txt_box p {
    font-size: 1.5vw;
  }

}

@media only screen and (max-width: 959px) {
  .topics_wrap {
    font-size: 1.7vw;
  }

  .topics_wrap .tit_box {
    font-size: 2.5vw;
  }

  .product_list .list_inner .tit_wrap {
    font-size: 1.85vw;
  }

  .product_list .list_inner .txt_box,
  .product_list .list_inner .txt_box p {
    font-size: 1.5vw;
  }
}

/*==========================================================================================
ここからSP
==========================================================================================*/

@media only screen and (max-width: 767px) {

  .topics_inner {
    padding: var(--inner-padding-LR);
  }

  .topics_wrap .tit_box {
    font-size: 4.75vw;
  }


  .topics_wrap .flex {
    flex-wrap: wrap;
  }

  .topics_wrap .flex .img_box,
  .topics_wrap .flex .txt_box {
    width: 100%;
  }

  .topics_wrap .flex .img_box {
    margin-bottom: 4vw;
  }

  .h2_txt_box .h2_txt {
    text-align: center;
  }

  .product_list>* {
    width: 100%;
  }

  .product_list .list_inner {
    padding: 5vw 4vw 4vw;
    flex-wrap: wrap;
  }

  .product_list .list_inner .img_wrap,
  .product_list .list_inner .txt_wrap {
    width: 100%;
  }

  .product_list .list_inner .img_wrap {
    /* width: 50%; */
    height: 30vw;
    margin: 0 auto 4vw;
  }

  .product_list .list_inner .img_wrap picture,
  .product_list .list_inner .img_wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product_list .list_inner .category span+span {
    margin-left: 0.15em;
  }

  .product_list .list_item:nth-child(4n+1) .list_inner,
  .product_list .list_item:nth-child(4n+3) .list_inner {
    background: #f2f2ec;
  }

  .product_list .list_item:nth-child(4n) .list_inner,
  .product_list .list_item:nth-child(4n+2) .list_inner {
    background: #fff;
  }

  .product_list .list_inner .tit_wrap {
    font-size: 4.5vw;
  }

  .product_list .list_inner .txt_box,
  .product_list .list_inner .txt_box p {
    font-size: 3.5vw;
  }
}