@charset "utf-8";

body {
    color: #1a1a1a;
}

header {
    height: 70px;
}

.main-visual {
    background: url(../img/mv-bg.jpg) no-repeat center top;
    background-size: cover;
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-visual h1 img {
    max-width: 484px;
    width: 100%;
    height: auto;
}

.main-visual p {
    margin-top: 20px;
    color: #585057;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.text-bold {
    font-weight: bold;
}

.section-inner {
    max-width: 900px;
    margin: 0px auto;
    padding: 60px 0;
}

.section-inner .section-title {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: normal;
    margin-bottom: 50px;
}

.section-inner p {
    font-size: 16px;
    line-height: 1.8;
}
.section-prize {
    background-color: #d6cdd5;
}
.section-prize .section-inner {
    padding: 70px 20px 40px;
}
.section-prize .section-inner .prize-novel {
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 20px 0 rgba(0,0,0,0.15);
    position: relative;
    padding: 60px 40px 40px;
}
.prize-novel .title-label {
    width: 290px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}
.prize-novel .title-label img {
    width: 100%;
}
.prize-novel .novel-title {
    color: #1a1a1a;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 10px;
}
.prize-novel .novel-title br {
    display: none;
}
.prize-novel .novel-writer {
    font-size: 18px;
    margin-bottom: 20px;
}
.prize-novel .novel-story dt p {
    font-size: 18px;
    color: #999;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.prize-novel .novel-story dt p::before,
.prize-novel .novel-story dt p::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #999;
    display: block;
}
.prize-novel .novel-story dt p::before {
    margin-right: 1em;
}
.prize-novel .novel-story dt p::after {
    margin-left: 1em;
}
.prize-novel .novel-story dd p {
    text-align: left;
}
.section-editor-comment {
    background: #fff;
}

.section-editor-comment .section-title {
    text-align: left;
    margin-bottom: 40px;
    /* margin-left: 232px; */
}

.editor-comment {
    display: flex;
}

.editor-comment .editor-comment-image {
    width: 182px;
    margin-top: -70px;
}

.editor-comment .editor-comment-image img {
    width: 100%;
}

.editor-comment .editor-comment-text {
    flex: 1;
    /* margin-left: 50px; */
}

.editor-comment .editor-comment-text p {
    margin-bottom: 1em;
}

.section-judge {
    background: #353135;
    color: #fff;
}

.section-judge .section-title {
    color: #fff;
}

.judges {
    display: flex;
    justify-content: space-between;
}

.judges .judge {
    width: 29%;
    text-align: center;
}

.judges .judge .judge-name {
    font-weight: bold;
    margin: 25px 0;
}

.judges .judge .judge-profile {
    font-size: 14px;
    text-align: left;
}

.judges .judge img {
    width: 167px;
}

/*--------------------------------------------------------
解像度720px以下
--------------------------------------------------------*/
@media only screen and (max-width : 720px) {

    header {
        height: auto;
        background-size: cover;
        overflow: hidden;
    }

    header #logo {
        height: 22px;
        padding: 0;
        overflow: hidden;
        padding: 18px 0;
    }

    header #logo img {
        width: 130px;
        margin: 0px auto;
        display: block;
    }

    header #logo p {
        width: 100%;
    }

    .main-visual {
        padding: 30px 0;
        height: 240px;
    }

    .main-visual h1 {
        width: 80%;
    }

    .main-visual p {
        margin-top: 10px;
        font-size: 14px;
        padding: 0 20px;
        line-height: 1.5;
    }

    .section {
        padding: 0 20px;
    }

    .section-inner {
        width: 100%;
        padding: 30px 0;
    }

    .section-inner .section-title {
        margin-bottom: 20px;
    }

    .section-prize .section-inner {
        padding: 50px 0 40px;
    }
    .section-prize .section-inner .prize-novel {
        padding: 50px 20px 40px;
    }
    .prize-novel .novel-title {
        line-height: 1.2;
    }
    .prize-novel .novel-title br {
        display: block;
    }
    .section-editor-comment .section-title {
        margin-left: 0;
        text-align: center;
    }

    .editor-comment {
        flex-direction: column;
        align-items: center;
    }
    .editor-comment .editor-comment-image {
        margin-top: 0;
    }
    .editor-comment .editor-comment-text {
        margin-left: 0;
        margin-top: 20px;
    }

    .judges {
        flex-direction: column;
        align-items: center;
    }

    .judges .judge {
        width: 100%;
        margin-bottom: 30px;
    }

    .judges .judge .judge-name {
        margin: 15px 0;
    }

    aside ul {
        width: 100%;
    }

    aside ul li {
        width: 100%;
        float: unset;
        list-style-type: none;
        margin-right: 0;
    }

    aside ul li img {
        display: block;
        margin: 0 auto 20px;
    }

    aside ul {
        padding: 30px 0 10px;
        height: auto;
    }

    footer div {
        width: 100%;
    }

}