@charset "UTF-8";
/* CSS Document */

.bn_tilte {
	margin-top: 40px;
	margin-bottom: 40px;
    font-size: 26px;
    color: #464646;
    font-family: 'Georgia',serif;
    font-weight: bolder;
    letter-spacing: 1px;
    text-align: center;	
}
.backnumber_tilte{
	margin-top: 40px;
    font-size: 26px;
    color: #464646;
    font-family: 'Georgia',serif;
    letter-spacing: 1px;
    text-align: center;	
}
.theme_title_img {
    position: relative;
    display: block;
    height: 15px;
    width: auto;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 40px;
}

#contentsArea {
	display: flex;
	max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px;
    flex-flow: row wrap;
    justify-content: center;
}

.list_area {
    position: relative;
    width: 1000px;
    height: 160px;
	margin: 20px auto;
    overflow:hidden;
    background-color: white;
    text-decoration: none;
    border: 3px solid #ccc;
}
.list_area:hover {
    opacity: 0.8;
}

.leftArea {
    position: relative;
    display: flex;
    width: 120px;
    height: 160px;
    justify-content: center;
    align-items: center;
}
.trim_image_to_circle {
    background-size: cover;
    width:  90px;       /* ※縦横を同値に */
    height: 90px;       /* ※縦横を同値に */
    border-radius: 50%;  /* 角丸半径を50%にする(=円形にする) */
    background-position: center center;  /* 中央を基準に表示 */
    display: inline-block;          /* 複数の画像を横に並べたい場合 */
    border: 4.5px solid #00a0e9; /* 枠線を付加 */
}

.rightArea {
    position: absolute;
    width: 880px;
    height: 160px;
    top: 0;
    left: 120px;
    display: flex;
    align-items: center;
}
.txtArea {
    position: relative;
    width: 100%;
    height: auto;
}

.c_file, .c_title, .c_school {
    position: relative;
    display: block;
    width: 840px;
    height: auto;
    color: #464646;
    font-family: 'ＭＳ 明朝', 'MS Mincho','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
    font-weight: bolder;
}

.c_file {
    clear: both;
    font-size: 20px;
    margin: 14px 0 6px 0;
}
.c_title {
    font-size: 26px;
    padding: 12px 0;
    border-bottom: 1.5px solid #464646;
}
.c_school {
    font-size: 20px;
    margin: 12px 0;
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .list_area {
        width: 90%;
        height: auto;
    }
    .leftArea {
        float: none;
        width: 100%;
        height: 100px;
        justify-content: center;
        align-items: unset;
        top: 10px;
    }
    .trim_image_to_circle {
        width:  80px;       /* ※縦横を同値に */
        height: 80px;       /* ※縦横を同値に */
    }
    .rightArea {
        position: relative;
        width: 90%;
        height: auto;
        left: auto;
        margin: auto;
        text-align: center;
    }
    .c_file, .c_title, .c_school {
        width: 100%;
    }
    .c_file {
        font-size: 16px;
        line-height: 1.3em;
    }
    .c_title {
        font-size: 20px;
        line-height: 1.3em;
    }
    .c_school {
        font-size: 16px;
        padding: 12px 0;
        line-height: 1.3em;
    }
}

/* NEWマーク */
.new-ribbon {
    position: absolute;
    top: 0;
    left: 915px;
    width: 85px;
    height: 85px;
    overflow: hidden;
    pointer-events: none;
}
.ribbon {
    display: inline-block;
    position: absolute;
    padding: 5px 0;
    left: -24px;
    top: 20px;
    width: 160px;
    text-align: center;
    font-size: 20px;
    line-height: 18px;
    background: orange;
    color: #fff;
    letter-spacing: 0.05em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: dashed 1px rgba(255, 255, 255, 0.65);
    border-bottom: dashed 1px rgba(255, 255, 255, 0.65);
}
/* 768px以下 */
@media screen and (max-width: 768px) {
    .new-ribbon {
        left: auto;
        right: 0;
    }
}