@charset "utf-8";

/* 色変更 */
a.button {
    background-color: #FFFFFF;
}

a.button[disabled] {
    background-color: #999999;
}

a.button > span {
    color: #FF5000
}

a.button > span::before {
    border-left-color: #FF5000;
}

header,
footer {
    background-color: #796654;
    filter: none;
}

footer > .totop > p {
    background-color: #2C190A;
}

footer > section > h3 {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

footer > .copyright {
    background-color: #2C190A;
}

main {
    background-color: #C8B4A0;
}

main section {
    background-color: #D3C3B3;
}

main section > h2 {
    border-color: #FF5000;
}

main section .author_list > li > h3 {
    border-color: #FF5000;
}

/* 作品概要 */
main section.overview.with_book p > span.balloon {
    background-color: #E9E1D9;
}

main section.overview.with_book p > span.balloon::before {
    border-right-color: #E9E1D9;
}

/* 動画 */
main > div.movie > iframe {
    width: 100%;
    aspect-ratio: 530 / 315;
}

/* キャラクター紹介 */
.chara_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media screen and (max-width: 1024px) {
    .chara_list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.chara_list > li {
    position: relative;
    min-height: 200px;
}

.chara_list > li > h3 {
    margin-left: 220px;
    margin-bottom: 1em;
    padding-left: 10px;
    line-height: 28px;
    font-size: 18px;
    font-weight: bold;
    border-left: 4px solid #FF5000;
}

@media screen and (max-width: 767px) {
    .chara_list > li > h3 {
        margin-left: 0;
    }
}

.chara_list > li > figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
}

@media screen and (max-width: 767px) {
    .chara_list > li > figure {
        position: relative;
        margin: 0 auto;
    }
}

.chara_list > li > p {
    margin-left: 220px;
    padding-left: 16px;
    padding-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .chara_list > li > p {
        margin-top: 16px;
        margin-left: 0;
        padding-left: 0;
    }
}
