@charset "utf-8";

/* guideline_content */
.no_accepting {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    background-color: #EFEFEF;
}
.guideline_dl {
    display: flex;
    flex-wrap: wrap
}
.guideline_dl dt {
    width: 25%;
    padding: 24px;
    box-sizing: border-box;
    border-bottom: 1px dashed #A4B5C0;
}
.guideline_dl dd {
    width: 75%;
    padding: 24px;
    box-sizing: border-box;
    border-bottom: 1px dashed #A4B5C0;
}
.guideline_dl dt:nth-child(1) {
    border-top: 1px dashed #A4B5C0;
}
.guideline_dl dd:nth-child(2) {
    border-top: 1px dashed #A4B5C0;
}
.guideline_dl ul,
.guideline_dl ol {
    line-height: 1.8em;
}
.guideline_dl .gl_spc {
    margin-bottom: 24px;
}
.guideline_dl .gl_spc:last-child {
    margin-bottom: 0;
}
/* guideline_contentここまで */

/* guideline_entry */
.entry_desc {
    margin-bottom: 24px;
}
.entry_rules {
    max-width: 900px;
    margin: 0 auto;
}
.entry_inner {
    height: 400px;
    padding: 24px;
    box-sizing: border-box;
    border: 1px dashed #1D4763;
    overflow-y: scroll;
}
.entry_ct {
    margin-bottom: 24px;
}
.entry_ct:last-child {
    margin-bottom: 0;
}
.entry_ct .ct_ttl {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.entry_ct .ct_ttl .number {
    margin-right: 16px;
    font-weight: 600;
    font-size: 24px;
}
.entry_ct .ct_ttl .name {
    font-weight: 500;
    font-size: 1.2em;
}
.entry_ct .ct_desc ul,
.entry_ct .ct_desc ol {
    line-height: 1.8em;
}
.entry_ct .ct_desc ul li {
    position: relative;
    padding-left: 24px;
}
.entry_ct .ct_desc ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 16px;
    border: 1px solid #1D4763;
}
.entry_btn {
    text-align: center;
}
/* guideline_entryここまで */

/* レスポンシブ */
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 599px) {
    .guideline_dl dt {
        width: 100%;
        background-color: #EFF9FA;
    }
    .guideline_dl dd {
        width: 100%;
    }
}