@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: #7d82bd;
}
#items .items_bgwrap {
    background: url(../img/bg_item_under.jpg) no-repeat;
    background-position: bottom;
    background-size: contain;
}
#items .items_bgwrap2 {
    background: url(../img/bg_item_top.jpg) no-repeat;
    background-size: contain;
    background-position: top;
    padding: 5%;
}

#items .subtitle {
    background: #fff;
    padding: 10px;
    margin: 0 auto 30px;
    border: double 4px var(--base-color01);
}

#items .items_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
#items .items_wrap .items_box {
    width: 49%;
    margin-bottom: 15px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    border: 2px solid #e2b85f;
  border-image: linear-gradient(to top, #e2b85f 0%, #a67f2e 100%);
  border-image-slice: 1;
}
#items .items_wrap .items_box:not(:nth-of-type(2n)) {
    margin-right: 2%;
}
#items .items_wrap .items_box .items_img {
    width: 50%;
    padding: 7.5%;
}
#items .items_wrap .items_box .items_txt {
    width: 48%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
#items .items_wrap .items_box .items_txt ul {
    width: 100%;
    margin-bottom: 5px;
}
#items .items_txt .category {
    width: 100%;
    font-size: 1.6rem;
    color: var(--base-color01);
    border-bottom: 1px solid var(--base-color01);
    margin-bottom: 5px;
    padding: 5px 0;
    line-height: 1.0;
    text-align: left;
}
#items .items_txt .text {
    width: 100%;
    font-size: 1.6rem;
    text-align: justify;
}
#items .items_txt .btn {
    width: 100%;
}
#items .items_txt .btn a {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    padding: 7px 0;
    line-height: 1.0;
    color: #fff;
    background: var(--base-color01);
    border-radius: 4px;
}

/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1199px) {
}
@media screen and (max-width: 768px) {
    #items .items_txt .category {
        border-bottom: none;
        text-align: center;
    }
    #items .items_wrap .items_box {
        width: 32%;
    }
    #items .items_wrap .items_box:not(:nth-of-type(2n)) {
        margin-right: 0;
    }
    #items .items_wrap .items_box:not(:nth-of-type(3n)) {
        margin-right: 2%;
    }
    #items .items_wrap .items_box .items_img {
        width: 100%;
    }
    #items .items_wrap .items_box .items_txt {
        width: 100%;
    }
}
/* =======================
  SP
======================== */
@media screen and (max-width: 599px) {
    #items .items_wrap .items_box {
        width: 49%;
    }
    #items .items_wrap .items_box:not(:nth-of-type(3n)) {
        margin-right: 0;
    }
    #items .items_wrap .items_box:not(:nth-of-type(2n)) {
        margin-right: 2%;
    }
    #items .items_wrap .items_box .items_img {
        width: 100%;
    }
    #items .items_wrap .items_box .items_txt {
        width: 100%;
    }
}






