@charset "UTF-8";
/* CSS Document */

/* ---------- COMMON ---------- */
/* article title */
.article_title div a{
    background-image: url(../images/link_arrow.svg);
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 0.875rem;
    font-weight: 600;
    padding-left: 10px;
}

/* article */
.article_img ul{
    list-style: none;
    position: relative;
    text-align: center;
}

.article_img ul li{
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
}

.article_img ul li:before{
    background-image: url(../images/icon_zoom.svg);
    background-repeat: no-repeat;
    bottom: 15px;
    content: "";
    display: block;
    height: 33px;
    position: absolute;
    right: 10px;
    width: 33px;
}

/* author */
#author{
    background-color: #fffaf5;
}

.profile{
    font-size: 0.875rem;
}

.profile ul li{
    list-style: none;
}

/* to index */
.to_index{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 200px;
}

.to_index a{
    border: solid 1px #41616f;
    border-radius: 5px;
    display: block;
    height: 35px;
    padding-top: 10px;
}

.to_index a span{
    background-image: url(../images/link_arrow.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 10px;
}

/* ---------- Mobile ---------- */
@media(max-width:737px) {
    /* article title */
    .article_title img{
        max-width: 400px;
        width: 100%;
    }
}

/* ---------- Mobile / Tablet ---------- */
@media(max-width:1022px){
    article section:not(.article_header section),
    .article_header,
    .article_img{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 30px;
    }

    /* article title */
    .article_title{
        margin-bottom: 30px;
    }

    .article_title h1{
        text-align: center;
    }

    /* article */
    article section p{
        margin-bottom: 20px;
    }
    .article_img img{
        width: 300px;
    }

    /* author */
    #author section{
        padding: 30px 0;
    }

    .name{
        display: flex;
        align-items: center;
    }

    #author figure img{
        margin-right: 10px;
        width: 80px;
    }
    
    .profile p{
        margin-bottom: 10px;
    }

    /* to index */
    .to_index{
        margin-bottom: 40px;
    }
}

/* ---------- Tablet / PC ---------- */
@media (min-width: 738px) {}

/* ---------- Tablet ---------- */
@media(max-width:1022px) and (min-width: 737px){
    /* article title */
    .article_title img{
        max-width: 500px;
        width: 100%;
    }
}

/* ---------- PC ---------- */
@media(min-width:1023px){
    article section:not(.article_header section),
    .article_header,
    .article_img{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
        width: 1040px;
    }

    /* article title */
    .article_header{
        display: flex;
        padding-top: 50px;
    }

    .article_title{
        padding-right: 30px;
    }

    .article_title img{
        width: 400px;
    }

    /* article */
    article section p{
        margin-bottom: 40px;
    }

    .article_img img{
        width: 320px;
    }

    /* author */
    #author section{
        padding: 40px 0;
    }

    #author figure img{
        width: 120px;
    }

    #author section{
        display: flex;
        width: 800px;
    }

    .name{
        padding-right: 35px;
    }

    .name h2{
        text-align: center;
    }

    .profile p{
        margin-bottom: 30px;
    }

    /* to index */
    .to_index{
        margin-bottom: 80px;
    }
}