@charset "UTF-8";
/* title */
.title_container{
    display: flex;
    flex-flow: column;
    gap: 2px;
}
.title_container .en{
    color: var(--black);
    text-align: center;
    font-size: 28px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.12px;
}
.title_container .jp{
    color: var(--black);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.title_container_lp{
    display: flex;
    flex-flow: column;
    gap: 4px;
}
.title_container_lp h1 , .title_container_lp h2{
  text-align: center;
  /* font-weight: 400 !important; */
}
.title_container_lp .en{
  text-align: center;
  color: var(--green);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}
.title_container_lp .sub{
  text-align: center;
  color: var(--green);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.templete_title{
    padding: 0 0 8px;
    border-bottom: 1px solid var(--green);
    margin: 0 auto;
    display: table;
}
.templete_title_wrap{
    margin: 0 auto 42px;
    display: grid;
    flex-flow: column;
    gap: 24px;
    justify-content: center;
}
.templete_title_wrap_container{
    margin-top: 15px;
}
.templete_title_desc{
    text-align: center;
}
.small_title{
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1.2px;
    padding-left: 16px;
    border-left: 4px solid var(--green);
    /* margin-bottom: 20px; */
}
@media only screen and (max-width: 768px) {
    .small_title{
        font-size: 16px;
        /* margin-bottom: 16px; */
    }
}
/* note */
.note_list{
    gap: 4px;
    display: flex;
    flex-flow: column;
    margin: 12px 0 0;
}
.note_list li{
    color: var(--gray);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.note_list li a{
    color: var(--blue);
}
.note_list li a:hover{
    text-decoration: underline;
}
/* パンくずリスト */
.pankuzu_wrap{
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 20px 0;
}
.pankuzu{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.pankuzu a{
    color: var(--green);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media only screen and (max-width: 768px) {
    .pb80{
        padding-bottom: 40px;
    }
}
@media only screen and (max-width: 768px) {
    .title_container{
        margin: 0 auto;
    }
    .title_container .en{
        font-size: 24px;
        letter-spacing: 1.12px;
        margin-bottom: 4px;
    }
    .title_container .jp{
        font-size: 14px;
    }
    .note_list{
        gap: 0;
    }
    .note_list li{
        font-size: 12px;
    }
    .templete_title{
        padding: 0 0 4px;
    }
    .templete_title_wrap{
        margin: 0 auto 32px;
        gap: 16px;
    }
    .templete_title_wrap_container{
        margin-top: 10px;
    }
    .pankuzu_wrap{
        padding: 12px 0;
    }
    .pankuzu ,.pankuzu a{
        font-size: 12px;
    }
}

/* products */
.products_list{
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.products_list_item{
    width: calc(33.3% - 24px);
}
.products_list_item a {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
}
.products_list_img{
    width: 100%;
}
.products_list_item_inner{
    padding: 16px 18px;
}
.products_title{
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
/* tag */
.tag_list{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0;
}
.tag_list .tag{
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    border-radius: 2px;
    border: 1px solid var(--border12);
    padding: 7px 12px;
}
.price strong{
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.price small{
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
@media only screen and (max-width: 768px) {
    .products_list{
        gap: 12px;
    }
    .products_list_item{
        width: calc(50% - 6px);
    }
    .products_list_item_inner{
        padding: 10px;
    }
    .products_title{
        font-size: 13px;
        font-weight: 600;
    }
    .tag_list{
        margin: 8px 0;
        gap: 6px;
    }
    .tag_list .tag{
        font-size: 10px;
        padding: 5px 8px;
        font-weight: 400;
    }
    .price strong{
        font-size: 16px;
    }
    .price small{
        font-size: 10px;
    }
}
