@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

p, span {
    font-size: 16px;

    color: #181916;
}

a {
    font-weight: 800;

    text-decoration: none;

    color: #181916;
}

a:hover {
    color: #ffffff;

    background-color: #181916;
}

img {
    max-width: 100%;
    
    display: block;
}

body {
    background-color: #ffffff;
}

.body_illust {
    background-color: #181916;
}

main {
    max-width: 1080px;
    min-height: 100vh;

    margin: 0 auto;

    display: flex;
}

.left_outer {
    background-color: #95beb9;

    width: 30%;
}

.left_inner {
    padding: 48px;
}

.left_inner div:not(:last-child) {
    margin-bottom: 32px;
}

.debut {
    font-size: 14px;

    margin-top: 4px;
}

.right_outer {
    background-color: #ffffff;

    width: 70%;
}

.right_inner {
    padding: 48px;

    gap: 16px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right_inner img {
    width: 150px;
    height: 150px;

    object-fit: cover;
}

.illust {
    height: 100vh;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.illust p {
    font-weight: 800;

    color: #ffffff;
}

.illust a {
    font-weight: 800;

    text-decoration: none;

    color: #ffffff;
}

.illust img {
    max-width: 90vw;
    max-height: 90vh;
}

.manga {
    max-width: 768px;

    margin: 0 auto;
    padding: 32px 0;

    text-align: center;
}

.manga div:not(:last-child) {
    margin-bottom: 64px;
}

.footer_inner {
    padding: 48px;
}

.links {
    margin-bottom: 8px;
}

.last_update {
    font-size: 12px;
}

@media (max-width: 768px) {

    main {
        width: 100%;
    }

    .left_outer {
        width: 50%;
    }

    .left_inner {
        padding: 20px;
    }

    .right_outer {
         width: 50%;
    }

    .right_inner {
        padding: 20px;
    }

    .right_inner img {
        width: 65px;
        height: 65px;
    }

    .footer_inner {
        padding: 20px;
    }

}