@media screen and (min-width: 769px) {
  .tab_conts .tab_list {
    display: flex;
    width: 900px;
    margin: 0 auto 80px auto;
  }
  .tab_conts .tab_list li {
    width: 210px;
    height: 60px;
    margin: 20px 20px 0 0;
  }
  .tab_conts .tab_list li:nth-child(-n+4) {
    margin-top: 0;
  }
  .tab_conts .tab_list li:nth-child(4n) {
    margin-right: 0;
  }
  .tab_conts .tab_list li > button {
    font-size: 2rem;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #8a8a8a;
    border-radius: 100vmax;
  }
  .tab_conts .tab_list li > button.js_tab_active {
    color: #ffffff;
    background-color: #466a50;
    border-color: #466a50;
  }
  .tab_conts .tab_panel .tab_panel_inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, 225px);
    column-gap: 20px;
  }
  .tab_conts .tab_panel .box_item {
    display: grid;
    grid-row: span 5;
    grid-template-rows: subgrid;
    row-gap: 5px;
    margin: 40px 0 0 0;
  }
  .tab_conts .tab_panel .box_item:nth-child(-n+4) {
    margin-top: 0;
  }
  .tab_conts .tab_panel .box_item .box_inner {
    display: contents;
  }
  .tab_conts .tab_panel .box_item .img {
    margin-bottom: 5px;
  }
  .tab_conts .tab_panel .box_item .txt_name {
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: bold;
  }
  .tab_conts .tab_panel .box_item .txt_price {
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: bold;
  }
  .tab_conts .tab_panel .box_item .txt_material {
    font-size: 1.4rem;
    line-height: 1.6;
    line-height: 1.4;
    max-height: 5.6em;
    overflow-x: hidden;
    overflow-y: auto;
    overflow-wrap: break-word;
  }
  .tab_conts .tab_panel .box_item .part_foot {
    font-size: 1.8rem;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    margin-top: 10px;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn {
    width: 100%;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn + .btn {
    margin-top: 10px;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn > a {
    display: flex;
    color: #666666;
    width: 100%;
    padding-left: 40px;
    position: relative;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn > a::before, .tab_conts .tab_panel .box_item .part_foot .btn > a::after {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    content: " ";
  }
  .tab_conts .tab_panel .box_item .part_foot .btn > a::before {
    width: 30px;
    height: 30px;
    background-color: #8a8a8a;
    border-radius: 50%;
    left: 0;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn > a::after {
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    -webkit-mask-size: cover;
    mask-size: cover;
    left: 5px;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn.btn_detail > a::after {
    -webkit-mask-image: url(/assets/img/kurashi/common/icn/book.svg);
    mask-image: url(/assets/img/kurashi/common/icn/book.svg);
  }
  .tab_conts .tab_panel .box_item .part_foot .btn.btn_cart > a::after {
    width: 18px;
    height: 18px;
    -webkit-mask-image: url(/assets/img/kurashi/common/icn/cart.svg);
    mask-image: url(/assets/img/kurashi/common/icn/cart.svg);
    left: 6px;
  }
}
@media screen and (max-width: 768px) {
  .tab_conts .tab_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: min(80 / 750 * 100vw, 80px);
  }
  .tab_conts .tab_list li {
    width: min(330 / 750 * 100vw, 330px);
    height: min(90 / 750 * 100vw, 90px);
    margin: min(30 / 750 * 100vw, 30px) min(30 / 750 * 100vw, 30px) 0 0;
  }
  .tab_conts .tab_list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .tab_conts .tab_list li:nth-child(2n) {
    margin-right: 0;
  }
  .tab_conts .tab_list li > button {
    font-size: min(calc(36 / 750 * 100vw),3.6rem);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #8a8a8a;
    border-radius: 100vmax;
  }
  .tab_conts .tab_list li > button.js_tab_active {
    color: #ffffff;
    background-color: #466a50;
    border-color: #466a50;
  }
  .tab_conts .tab_panel .tab_panel_inner {
    display: grid;
    grid-template-columns: repeat(2, min(330 / 750 * 100vw, 330px));
    column-gap: min(30 / 750 * 100vw, 30px);
  }
  .tab_conts .tab_panel .box_item {
    display: grid;
    grid-row: span 5;
    grid-template-rows: subgrid;
    row-gap: min(10 / 750 * 100vw, 10px);
    margin: min(60 / 750 * 100vw, 60px) 0 0 0;
  }
  .tab_conts .tab_panel .box_item:nth-child(-n+2) {
    margin-top: 0;
  }
  .tab_conts .tab_panel .box_item .box_inner {
    display: contents;
  }
  .tab_conts .tab_panel .box_item .img {
    margin-bottom: min(10 / 750 * 100vw, 10px);
  }
  .tab_conts .tab_panel .box_item .txt_name {
    font-size: min(calc(32 / 750 * 100vw),3.2rem);
    line-height: 1.6;
    font-weight: bold;
  }
  .tab_conts .tab_panel .box_item .txt_price {
    font-size: min(calc(32 / 750 * 100vw),3.2rem);
    line-height: 1.6;
    font-weight: bold;
  }
  .tab_conts .tab_panel .box_item .txt_material {
    font-size: min(calc(28 / 750 * 100vw),2.8rem);
    line-height: 1.6;
    line-height: 1.4;
    max-height: 5.6em;
    overflow-x: hidden;
    overflow-y: auto;
    overflow-wrap: break-word;
  }
  .tab_conts .tab_panel .box_item .part_foot {
    font-size: min(calc(32 / 750 * 100vw),3.2rem);
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    margin-top: min(20 / 750 * 100vw, 20px);
  }
  .tab_conts .tab_panel .box_item .part_foot .btn {
    width: 100%;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn + .btn {
    margin-top: min(20 / 750 * 100vw, 20px);
  }
  .tab_conts .tab_panel .box_item .part_foot .btn > a {
    display: flex;
    color: #666666;
    width: 100%;
    padding-left: min(80 / 750 * 100vw, 80px);
    position: relative;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn > a::before, .tab_conts .tab_panel .box_item .part_foot .btn > a::after {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
    content: " ";
  }
  .tab_conts .tab_panel .box_item .part_foot .btn > a::before {
    width: min(60 / 750 * 100vw, 60px);
    height: min(60 / 750 * 100vw, 60px);
    background-color: #8a8a8a;
    border-radius: 50%;
    left: 0;
  }
  .tab_conts .tab_panel .box_item .part_foot .btn > a::after {
    width: min(40 / 750 * 100vw, 40px);
    height: min(40 / 750 * 100vw, 40px);
    background-color: #ffffff;
    -webkit-mask-size: cover;
    mask-size: cover;
    left: min(10 / 750 * 100vw, 10px);
  }
  .tab_conts .tab_panel .box_item .part_foot .btn.btn_detail > a::after {
    -webkit-mask-image: url(/assets/img/kurashi/common/icn/book.svg);
    mask-image: url(/assets/img/kurashi/common/icn/book.svg);
  }
  .tab_conts .tab_panel .box_item .part_foot .btn.btn_cart > a::after {
    width: min(36 / 750 * 100vw, 36px);
    height: min(36 / 750 * 100vw, 36px);
    -webkit-mask-image: url(/assets/img/kurashi/common/icn/cart.svg);
    mask-image: url(/assets/img/kurashi/common/icn/cart.svg);
    left: min(12 / 750 * 100vw, 12px);
  }
}

/*# sourceMappingURL=style.css.map */
