@charset "utf-8";
@import url("root.css");
/***************************************
-------------- CONTACT --------------
***************************************/
.page_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 60px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border: 2px solid var(--base-color01);
    background: #fff;
    padding: 5%;
}


#items_detail h2 {
    margin-bottom: 30px;
}
#items_detail .items_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
#items_detail .items_ttl_img {
    width: 100%;
    margin-bottom: 30px;
}
#items_detail .subtitle {
    width: 100%;
    margin-bottom: 30px;
}
#items_detail .subtitle p {
    text-align: justify;
}
#items_detail .tips {
    width: 100%;
    padding: 15px 20px;
    border: double 4px var(--base-color01);
}
#items_detail .tips li:before {
    content: "";
    display: inline-block;
    background-image: url(../img/arrow_bl.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.page_wrap .result_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.page_wrap .result_wrap .result_box {
    width: 32%;
    margin-bottom: 15px;
}
.page_wrap .result_wrap .result_box:not(:nth-of-type(3n)) {
    margin-right: 2%;
}
.page_wrap .result_txt .date {
    font-size: 1.4rem;
    line-height: 1.0;
    margin: 5px auto;
}
.page_wrap .result_txt .date:before {
    content: "";
    display: inline-block;
    background-image: url(../img/cal_bk.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}
.page_wrap .result_txt .category {
    width: 100%;
    font-size: 1.6rem;
    color: #fff;
    background: var(--base-color01);
    margin-bottom: 5px;
    padding: 5px;
    line-height: 1.0;
    text-align: center;
}
.page_wrap .result_txt .text {
    font-size: 1.6rem;
    height: calc(1em * 1.7 * 3);
    text-align: justify;
    overflow-y: scroll;
    padding-right: 5px;
}







/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1199px) {
}
@media screen and (max-width: 768px) {
    #items_detail .items_ttl_img {
        width: 100%;
    }
    #items_detail .subtitle {
        width: 100%;
    }
}
/* =======================
  SP
======================== */
@media screen and (max-width: 599px) {
    .page_wrap .result_wrap .result_box {
        width: 49%;
    }
    .page_wrap .result_wrap .result_box:not(:nth-of-type(3n)) {
        margin-right: 0;
    }
    .page_wrap .result_wrap .result_box:not(:nth-of-type(2n)) {
        margin-right: 2%;
    }
}






