@charset "UTF-8";
/* CSS Document */

/* トップ画像 */
#top_img {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom:  30px;
}
.titleArea {
	max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px 20px 0px;
    border-bottom: 3px dotted #464646;
}
.c_title {
    font-size: 45px;
    color: #464646;
    text-align: center;
    font-family: 'ＭＳ 明朝', 'MS Mincho','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
    font-weight: bolder;
    line-height: 1.3em;
}
.profileArea {
    position: relative;
    display: block;
    max-width: 1200px;
    height: auto;
    margin: auto;
    text-align: center;
}
.p_text {
    display: inline-block;
    text-align: left;
    font-size: 18px;
    font-family: 'ＭＳ 明朝', 'MS Mincho','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
    font-weight: bolder;
    line-height: 1.2em;
    color: #464646;
    padding: 20px 0px 40px 0px;
}

/* 1200px以下 */
@media screen and (max-width: 1200px) {
    .c_title {
        font-size: 4.167vw;
    }
    .trim_image_to_circle {
        width: 100px;
        height: 100px;
    }
}

/* 768px以下 */
@media screen and (max-width: 768px) {
    .c_title {
        font-size: 32px;
    }
    .trim_image_to_circle {
        width: 80px;
        height: 80px;
    }
}

#contentsArea {
	display: flex;
	max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0px;
    flex-flow: row wrap;
    justify-content: center;
}

.list_area {
	position: relative;
    width: 1100px;
	margin: 20px auto;
    overflow:hidden;
    background-color: white;
    text-decoration: none;
}
.list_area:hover {
    opacity: 0.8;
}
.c_file,.c_content {
    position: relative;
    display: block;
    width: 1000px;
    height: auto;
    margin: 0 auto;
    font-size: 40px;
    color: #464646;
    font-family: 'ＭＳ 明朝', 'MS Mincho','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
    font-weight: bolder;
}
.c_file {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 3px dotted #464646;
}
.c_content {
    margin: 20px auto;
}

/* 1200px以下 */
@media screen and (max-width: 1200px) {
    .list_area {
        width: 91.6667%;
    }
    .c_file,.c_content {
        width: 90.9091%;
        font-size: 3.3333vw;
    }
}

/* NEWマーク */
.new-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    pointer-events: none;
}
.ribbon {
    display: inline-block;
    position: absolute;
    padding: 5px 0;
    left: -18px;
    top: 24px;
    width: 160px;
    text-align: center;
    font-size: 24px;
    line-height: 20px;
    background: #00ddb8;
    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);
}