@charset "utf-8";
@import url("root.css");
/***************************************
-------------- CAMPAIGN --------------
***************************************/
.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%;
}
#campaign .title {
    width: 100%;
    margin: 0 auto 30px;
}
#campaign .title h3 {
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.0;
    padding-bottom: 5px;
    color: var(--base-color01);
    border-bottom: 2px solid var(--base-color01);
}

#campaign .detail .detail_img {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
#campaign .detail .detail_img a {
    width: 48%;
}
#campaign .detail .detail_txt {
    width: 100%;
    margin: 30px auto;
}
#campaign .detail .detail_txt p {
    width: 100%;
    text-align: justify;
}
#past dl {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px dotted var(--base-color01);
}
#past dl:not(:first-of-type) {
    margin-top: 20px;
}

#past dl dt {
    width: 120px;
    text-align: center;
    color: var(--base-color03);
    background: var(--sub-color01);
}
#past dl dd {
    width: calc(100% - 120px - 15px);
}
#past dl a:hover {
    color: var(--base-color01);
    text-decoration: underline;
}
/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1199px) {
}
/* =======================
  SP
======================== */
@media screen and (max-width: 599px) {
    #past dl dt {
        width: 120px;
        margin-bottom: 15px;
        text-align: left;
    }
    #past dl dd {
        width: 100%;
    }
}






