<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* コンテンツ */

.journal_box ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: -4em;
}
.journal_box ul li {
    width: 20%;
    line-height: 1.7;
    text-align: center;
    margin-right: calc(20% / 3);
    margin-bottom: 4em;
}
.journal_box ul li:nth-child(4n) {
    margin-right: 0;
}
.jnl_img {
    position: relative;
    width: 100%;
    aspect-ratio:210 / 297;
    box-shadow: 1px 1px 5px #ccc;
    margin-bottom: 0.6em;
}
.jnl_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.jnl_img a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}
.jnl_img a span {
    border: 1px solid rgba(255,255,255,0);
    line-height: 1;
    display: inline-block;
    padding: 0.5em 1.5em;
    font-size: 0.84em;
    color:transparent;
    transition: all 0.3s;
    letter-spacing: 1px;
}
.jnl_img:hover a {
    background-color: rgba(66,134,178,0.5);
}
.jnl_img:hover a span {
    border: 1px solid #fff;
    color:#fff;
}
.journal_box ul li h3 {
    color: #4a80bf;
    font-size: 1.08em;
    border-bottom: 1px solid #4a80bf;
    margin-bottom: 0.3em;
    padding-bottom: 0.3em;
}
.journal_box ul li h4 {
    font-weight: normal;
    font-size: 0.92em;
}
.journal_box ul li p {
    font-size: 0.84em;
    color: #999;
    line-height: 1.5;
}

.pn ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pn .submit {
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    border-radius: 100px;
    background-color:#fff;
    border-width: 0;
    padding: 0.7em;
    text-align: center;
    font-size: 1em;
    line-height: 1;
    color: #4286b2;
    width: 9em;
	cursor:pointer;
    border: 2px solid #4286b2;
}

@media screen and (max-width: 1300px) {

}

@media screen and (max-width: 1080px) {


}

@media screen and (max-width: 960px) {
.journal_box ul li {
    width: 46%;
    margin-right: 8%;
    margin-bottom: 4em;
}
.journal_box ul li:nth-child(2n) {
    margin-right: 0;
}
}

@media screen and (max-width: 520px) {

}




</pre></body></html>