@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%;
}
#result .subtitle {
    margin: 0 auto 30px;
}

#result .result_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
#result .result_wrap .result_box {
    width: 23.5%;
    margin-bottom: 15px;
}
#result .result_wrap .result_box:not(:nth-of-type(4n)) {
    margin-right: 2%;
}

#result .result_txt .date {
    font-size: 1.4rem;
    line-height: 1.0;
    margin: 5px auto;
}
#result .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;
}
#result .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;
}
#result .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) {
    #result .result_wrap .result_box {
        width: 32%;
    }
    #result .result_wrap .result_box:not(:nth-of-type(4n)) {
        margin-right: 0;
    }
    #result .result_wrap .result_box:not(:nth-of-type(3n)) {
        margin-right: 2%;
    }
}
/* =======================
  SP
======================== */
@media screen and (max-width: 599px) {
    #result .result_wrap .result_box {
        width: 49%;
    }
    #result .result_wrap .result_box:not(:nth-of-type(4n)) {
        margin-right: 0;
    }
    #result .result_wrap .result_box:not(:nth-of-type(3n)) {
        margin-right: 0;
    }
    #result .result_wrap .result_box:not(:nth-of-type(2n)) {
        margin-right: 2%;
    }
}






