@charset "utf-8";
/* CSS Document */

/* powerandit.co.jp - news
-----------------------------------------------------*/

.pagination .direct,
.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.pagination {
    margin-top: 3em;
}
.pagination .prev,
.pagination .next {
    display: none;
}
.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    height: 2.5em;
    margin:  0 3px;
    border: 1px solid var(--point-orange);
    border-radius: 2em;
}
.pagination a.now {
    background: var(--point-orange);
    color: #fff;

}

/* ==============================================
    entry
============================================== */
#entryTitle {
    margin-bottom: 2em;
}
entryTitle .date {
    margin-bottom: 0.3em;
}
#entryText,
#entryFile,
#entryPhoto {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.poster {
    margin-bottom: 2em;
    text-align: center;
}
.poster img {
    margin: 0 auto;
    border: 1px solid #ddd;
    max-width: 100%;
}

#entryFile,
#entryPhoto {
    margin-top: 3em;
}
#entryFile p {
    margin-bottom: 0.3em;
}

#entryText {
    line-height: 1.6;
}

#entryText table {
	width: auto;
    margin: 1.5em 0 0;
}
#entryText th,
#entryText td {
    padding: 0.8em 1.5em;
}

#entryText .pink { color: #F77E84; }
#entryText .red { color: #E24C4C; }
#entryText .vermilion { color: #FF7379; }
#entryText .green { color: #08A15B; }
#entryText .ygreen { color: #8EC63A; }
#entryText .blue { color: #339CED; }
#entryText .orange { color: #EF823F; }
#entryText .purple { color: #B86AFB; }
#entryText .navy { color: #3654AA; }

#entryPhoto p {
    margin-bottom: 2em;
}
#entryPhoto p img {
    max-width: 100%;
    margin-bottom: 0.8em;
}
@media screen and (min-width: 601px) {
    #entryPhoto {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #entryPhoto p {
        width: 48%;
    }
}
@media screen and (max-width: 600px) {
    #entryPhoto {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}



