@charset "UTF-8";

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    background-color: #f2f1ef;
    color: #281400;
    font-family: m-plus-rounded-1mn, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: 1.4;
    scroll-behavior: smooth;
}

.buttons {
    display: flex;
    justify-content: center;
    width: 75%;
    height: 48px;
    margin: auto;
    transition: background-color 0.3s;
    background-color: #966c1b;
    gap: 16px;
    container-type: inline-size;
}

.buttons__anime {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
    background-color: #966c1b;
    gap: 16px;
    container-type: inline-size;
}

.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 3px;
    border: 2px dotted rgba(255, 255, 255, 0.75);
    color: #ffffff;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.09;
}

.buttons .button {
    font-size: 9cqw;
}

.buttons__anime .button {
    font-size: 6.8cqw;
}

.middle-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 370px;
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
    color: #281400;
    font-size: 24px;
}

.nav {
    margin-bottom: 30px;
}

.nav-detail__content {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.nav-detail__link:before {
    content: url('/img/static_page/media/saioshinogikei/menu-hurt.svg');
    position: absolute;
    left: -8px;
    transition: all 0.3s;
    opacity: 0;
}

.nav-detail__link {
    display: inline-block;
    align-items: center;
    margin-top: 20px;
    margin-left: 18px;
    transition: all 0.3s;
    border-bottom: dotted 1px rgba(0, 0, 0, 0);
    color: #966c1b;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
}

.nav-detail__link:after {
    content: '';
    display: block;
    transition: all 0.3s;
    border-bottom: dashed 1px rgba(160, 153, 125, 0);
}

.nav-detail__link:hover:before {
    transition: all 0.3s;
    opacity: 1;
}

.nav-detail__link:hover {
    transition: all 0.3s;
    color: #18b7cd;
}

.nav-detail__link:hover:after {
    content: '';
    display: block;
    transition: all 0.3s;
    animation: border_anim 0.2s linear forwards;
    border-bottom: dashed 1px rgba(160, 153, 125, 0.8);
}

@keyframes border_anim {

    0% {
        width: 0;
    }

    100% {
        width: 180px;
    }
}

.following-menu {
    display: flex;
    position: fixed;
    z-index: 100;
    top: 0;
    left: auto;
    flex-direction: column;
    width: 210px;
    height: max(100vh, 100%);
    padding-top: max(45vh, 220px);
    transition: all 0.5s;
    background-color: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
    gap: 40px;
}

.following-menu--scroll {
    padding-top: max(40vh, 220px);
}

.following-menu__content {
    overflow-y: scroll;
}

.nav__sns {
    margin-bottom: 10px;
    padding-left: 8px;
}

.hamburger-button {
    display: flex;
    position: fixed;
    z-index: 111;
    top: 50px;
    right: 0;
    flex-direction: column;
    justify-content: center;
    width: 42px;
    height: 45px;
    padding: 6px 4px;
    border-radius: 8px 0;
    background-color: #20b8ce;
    color: #ffffff;
}

.hamburger-button__text {
    top: 2px;
    margin-bottom: 3px;
}

.hamburger-button__lines {
    display: flex;
    bottom: 3px;
    flex-direction: column;
    gap: 4px;
}

.hamburger-button__icon {
    width: 100%;
    height: 1px;
    margin-bottom: 3px;
    transition: transform 0.25s;
    background-color: #ffffff;
}

.hamburger-button__icon--open:first-child {
    transform: translate(0, 4px) rotate(20deg);
}

.hamburger-button__icon--open:nth-child(2) {
    transform: translate(0, -4px) rotate(-20deg);
}

.hamburger-menu {
    position: fixed;
    z-index: 101;
    right: min(-100vw, -100%);
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-left: 16px;
    overflow: auto;
    transition: right 0.5s, opacity 0s 0.5s;
    opacity: 0;
    background-color: #ffffff;
}

.hamburger-menu__logo {
    width: 55%;
    margin-bottom: 20px;
}

.hamburger-menu__logo-image {
    width: 100%;
    padding-left: 3%;
}

.hamburger-menu__content {
    position: relative;
    margin-left: 5px;
}

.hamburger-menu--open {
    right: 0;
    transition: right 0.5s;
    opacity: 1;
}

.hamburger-menu__image {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: min(237px, 45%);
}

.hamburger-nav-detail__content {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.hamburger-nav-detail__link {
    display: inline-block;
    align-items: center;
    margin-top: 20px;
    margin-left: 10px;
    transition: all 0.3s;
    border-bottom: dotted 1px rgba(0, 0, 0, 0);
    color: #966c1b;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
}

.section__content--story {
    padding-top: 0;
    padding-bottom: 0;
}

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

.page-top-icon {
    display: flex;
    position: fixed;
    z-index: 10;
    right: 20px;
    bottom: -60px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 5px;
    transition: all 0.5s;
    opacity: 0;
    text-align: right;
}

.page-top-icon--scroll {
    bottom: 20px;
    opacity: 1;
}

/* PCの場合hoverを適用 */
@media (hover: hover) and (pointer: fine) {

    .buttons:hover,
    .buttons__anime:hover {
        transition: background-color 0.3s;
        background-color: #6c4d12;
    }

    .page-top-icon--scroll:hover {
        opacity: 0.8;
    }
}

/* スマホ等の場合activeを適用 */
@media (hover: none) and (any-pointer: coarse) {

    .buttons:active,
    .buttons__anime:active {
        transition: background-color 0.3s;
        background-color: #6c4d12;
    }

    .page-top-icon:active {
        opacity: 0.8;
    }
}

.header {
    width: 100%;
    text-align: center;
}

.heading {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 0 2px;
    border-bottom: solid 4px #c8e7ed;
    text-align: center;
}

.footer {
    position: relative;
    z-index: 1;
    padding: 32px 0;
    background: #281400;
    text-align: center;
}

.footer img {
    max-width: 80%;
}

.footer .copyright {
    max-width: 90%;
    margin: 8px auto auto;
    color: #ffffff;
    font-size: 10px;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5;
    text-align: center;
}

.sns-buttons {
    display: flex;
    justify-content: left;
    margin-left: 5px;
    gap: 12px;
}

.x-share,
.facebook-share,
.line-share {
    width: 35px;
    height: 35px;
}

.section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section--kv {
    width: 100%;
}

.section--news,
.section--story,
.section--character,
.section--books,
.section--message,
.section--anime {
    background-color: #ffffff;
}

.section__content {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    background-color: #ffffff;
}

.content-pv iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    border: none;
}

.character__point {
    width: 100%;
    margin-bottom: 5px;
    text-align: center;
}

.main-character {
    position: relative;
    margin-bottom: 24px;
}

.main-character-info__name {
    margin-bottom: 4px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.main-character__relation {
    display: flex;
    position: relative;
    justify-content: center;
    width: 100%;
}

.main-character__relation-image {
    width: 100%;
}

.character-modal-container {
    visibility: hidden;
    position: fixed;
    z-index: 150;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.3s ease-out;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.character-modal-container:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
}

.character-modal-container.active {
    visibility: visible;
    opacity: 1;
}

.character-modal-close {
    position: fixed;
    width: 100%;
    height: 20px;
    text-align: center;
}

.character-list {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: auto;
}

.character-list .slick-list {
    top: 0;
    bottom: 0;
    max-height: calc(100% - 70px);
    margin: auto;
    container-type: inline-size;
}

.character-list__detail {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 16px;
    background-color: #ffffff;
    text-align: center;
}

.character-list__image {
    width: 100%;
}

.character-list .slick-arrow {
    content: '';
    position: absolute;
    z-index: 100;
    width: 10%;
    height: 100%;
}

.middle-headline__books {
    display: inline-block;
    margin: 20px auto;
    padding: 7px 0 7px 5px;
    border-left: solid 7px #18b7cd;
    font-size: 24px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 1;
    text-align: left;
}

.news {
    width: 100%;
    max-height: 200px;
    padding-right: 2.5%;
    padding-left: 2.5%;
    overflow: hidden;
}

.news__list {
    max-height: 190px;
    overflow-y: scroll;
}

.news__content:not(:last-child) {
    margin-bottom: 16px;
}

.news__date {
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.71;
    text-align: left;
}

.news__detail {
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.71;
    text-align: left;
}

.book__list {
    margin-top: 10px;
}

.books__content {
    container-type: inline-size;
}

.books__content:not(:last-child) {
    margin-bottom: 32px;
}

.book-slider,
.book-slider_up_to_2 {
    margin-bottom: 8px;
}

.book-slider .slick-list,
.book-slider_up_to_2 .slick-list {
    overflow: visible;
}

.book-slider .slick-arrow,
.book-slider_up_to_2 .slick-arrow {
    content: '';
    position: absolute;
    z-index: 100;
    height: 100%;
}

.book-slider .slick-prev,
.book-slider_up_to_2 .slick-prev {
    background: url('/img/static_page/media/saioshinogikei/arrow-left.svg') no-repeat bottom;
}

.book-slider .slick-next,
.book-slider_up_to_2 .slick-next {
    background: url('/img/static_page/media/saioshinogikei/arrow-right.svg') no-repeat bottom;
}

.book-slider_up_to_2 .slick-disabled {
    visibility: hidden;
}

.book .book__cover {
    width: 100%;
}

.book .book__cover-link {
    width: 200px;
    margin: auto;
}

.book:first-child .book__cover-link {
    width: 200px;
}

.slick-slide .book__cover {
    height: auto;
    transition: opacity 0.5s, transform 0.5s;
}

.book__latest {
    position: absolute;
    z-index: 10;
    top: -30px;
    width: 62px;
    height: 62px;
    margin-left: 160px;
    padding-top: 14px;
    border-radius: 100%;
    opacity: 0;
    background-color: #ff548a;
    color: #ffffff;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 2.19;
    text-align: center;
}

.slick-center .book__latest {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.book .book__cover {
    border: none;
}

.slick-center .book__cover {
    border: 1px solid #707070;
}

.book__info {
    display: flex;
    justify-content: center;
    margin-right: auto;
    opacity: 0;
    text-align: center;
    gap: 10px;
}

.slick-center .book__info {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.book__number {
    margin: 0 4px 0 0;
    font-size: 5.3cqw;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
}

.book__number-small {
    margin: 13px 0 2px 2px;
    font-size: 3.15cqw;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
}

.book__text {
    color: #000000;
    font-size: 2.7cqw;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5;
}

.book__text-none {
    display: none;
}

.message__headline {
    margin: auto auto 16px;
    padding-bottom: 3px;
    border-bottom: 1px solid #18b7cd;
    line-height: 1;
    text-align: center;
}

.message__position {
    display: block;
    margin-top: 16px;
    margin-bottom: 2px;
}

.message__headline-name {
    color: #18b7cd;
    font-size: 26px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
}

.message__headline-name-small {
    color: #18b7cd;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
}

.message__content {
    line-height: 26px;
}

.message__content:not(:last-child) {
    margin-bottom: 24px;
}

.anime {
    text-align: center;
}

.anime__date {
    font-size: 24px;
    font-weight: bold;
}

.anime__moving-image {
    width: 600px;
    height: 338px;
    margin-bottom: 32px;
    border: none;
    outline: none;
    background: #000000;
}

.anime__kv {
    width: 600px;
    height: 849px;
    margin-bottom: 32px;
}

.anime__info {
    width: 96.4%;
    margin-bottom: 32px;
    line-height: 34px;
}

.anime__info-content {
    margin-bottom: 24px;
    text-align: left;
}

.anime__small-head {
    margin-bottom: 20px;
    color: #a0997d;
    font-size: 22px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.09;
    text-align: center;
}

@keyframes fadeInAnime {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floating-alba-x {

    0% {
        transform: translateX(-1.5%);
    }

    50% {
        transform: translateX(1.5%);
    }

    100% {
        transform: translateX(-1.5%);
    }
}

@keyframes floating-alba-y {

    0% {
        transform: translateY(0%);
    }

    6.25% {
        transform: translateY(1.2%);
    }

    12.5% {
        transform: translateY(2%);
    }

    18.75% {
        transform: translateY(1.2%);
    }

    25% {
        transform: translateY(0%);
    }

    31.25% {
        transform: translateY(-1.2%);
    }

    37.5% {
        transform: translateY(-2%);
    }

    43.75% {
        transform: translateY(-1.2%);
    }

    50% {
        transform: translateY(0%);
    }

    56.25% {
        transform: translateY(1.2%);
    }

    62.5% {
        transform: translateY(2%);
    }

    68.75% {
        transform: translateY(1.2%);
    }

    75% {
        transform: translateY(0%);
    }

    81.25% {
        transform: translateY(-1.2%);
    }

    87.5% {
        transform: translateY(-2%);
    }

    93.75% {
        transform: translateY(-1.2%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* 660px, 960pxまでの画面幅（sp向け） */
@media screen and (max-width: 970px) {

    body {
        min-width: 320px;
        font-size: 14px;
    }

    .following-menu {
        display: none;
    }

    .key-visual__image {
        position: relative;
        width: 100%;
        opacity: 1;
        box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.2);
    }

    .key-visual__pc-character {
        display: none;
    }

    .key-visual__logo {
        display: none;
    }

    .page-top-icon {
        display: flex;
        position: fixed;
        z-index: 100;
        right: 10px;
        bottom: -68px;
        padding: 0;
        transition: opacity 0.5s, bottom 0.5s;
        opacity: 0;
        text-align: right;
    }

    .page-top-icon__image {
        display: block;
    }

    .page-top-icon--scroll {
        bottom: 0;
        opacity: 1;
    }

    .logo {
        position: absolute;
        z-index: 100;
        width: 100%;
        text-align: left;
    }

    .logo__image {
        width: 63%;
        padding-top: 12%;
        padding-left: 3%;
    }

    .section {
        padding: 10px 24px;
        overflow: hidden;
    }

    .section--separator {
        padding: 16px;
        text-align: center;
    }

    .section__content {
        padding: 16px;
    }

    .section__content--banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 10px;
        text-align: center;
        gap: 16px;
    }

    .content-banner img {
        margin-bottom: 16px;
    }

    .section__content--story {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .section__content--news {
        padding-bottom: 24px;
    }

    .section--story {
        overflow: hidden;
    }

    .story__image {
        width: 100vw;
    }

    .story__content {
        width: 100vw;
        margin-top: 15px;
        margin-bottom: 24px;
    }

    .story__headline {
        font-size: 24px;
    }

    .middle-headline {
        font-size: 20px;
    }

    .middle-headline:before,
    .middle-headline:after {
        height: 1px;
    }

    .content-pv {
        width: 100%;
        margin-bottom: 12px;
        padding: 4.5% 4%;
        background: url('/img/static_page/media/saioshinogikei/pv-flame.svg') no-repeat center center;
        background-size: contain;
        aspect-ratio: 16 / 9;
    }

    .story__headline {
        margin-bottom: 8px;
        padding: 8px;
    }

    .book__info {
        gap: 8px;
    }

    .section__content--character {
        padding: 16px 0;
    }

    .character-list .slick-list {
        width: 80%;
    }

    .character-list__detail {
        width: min(100%, 420px);
        padding-top: 2.85cqh;
        padding-bottom: 2.85cqh;
    }

    .character-list__intro {
        color: #966c1b;
        font-size: 1.9cqh;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
    }

    .character-list__name {
        padding-right: 1.9cqh;
        padding-left: 1.9cqh;
        color: #18b7cd;
        font-size: 2.4cqh;
        font-stretch: normal;
        font-style: normal;
        font-weight: 700;
        letter-spacing: normal;
        line-height: 1.5;
        text-align: center;
    }

    .character-list__text {
        margin-right: 5%;
        margin-left: 5%;
        font-size: 1.9cqh;
        font-stretch: normal;
        font-style: normal;
        font-weight: normal;
        letter-spacing: normal;
        line-height: 1.5;
        text-align: left;
    }

    .character-list__text-title-alba {
        width: 80%;
        margin-top: -5%;
        margin-bottom: 12px;
    }

    .character-list__text-title-orsys {
        width: 54%;
        margin-top: -5%;
        margin-bottom: 12px;
    }

    .character-list__text-title-gifu {
        width: 73%;
        margin-top: -5%;
        margin-bottom: 12px;
    }

    .character-list__text-title-haha {
        width: 75%;
        margin-top: -5%;
        margin-bottom: 12px;
    }

    .character-list__text-title-bruno {
        width: 75%;
        margin-top: -5%;
        margin-bottom: 12px;
    }

    .character-list .slick-prev {
        left: 5px;
        height: 32%;
        background: url('/img/static_page/media/saioshinogikei/chara-arrow-left.svg') no-repeat right;
        background-size: 25px;
    }

    .character-list .slick-next {
        right: 5px;
        height: 32%;
        background: url('/img/static_page/media/saioshinogikei/chara-arrow-right.svg') no-repeat left;
        background-size: 25px;
    }

    .character-area__orsys {
        position: absolute;
        z-index: 5;
        top: 25.5%;
        left: 1%;
        width: 40%;
        height: 26.5%;
    }

    .character-area__alba {
        position: absolute;
        z-index: 5;
        top: 39.5%;
        right: 1.3%;
        width: 40%;
        height: 26.5%;
    }

    .character-area__bruno {
        position: absolute;
        z-index: 5;
        top: 67%;
        left: 0;
        width: 32%;
        height: 22%;
    }

    .character-area__gifu {
        position: absolute;
        z-index: 5;
        top: 78%;
        left: 33%;
        width: 32%;
        height: 22%;
    }

    .character-area__haha {
        position: absolute;
        z-index: 5;
        top: 74%;
        right: 1%;
        width: 32%;
        height: 22%;
    }

    .books__content {
        width: 100%;
    }

    .slick-slide .book__cover {
        transform: scale(0.7);
    }

    /* 中央のスライド */
    .slick-center .book__cover {
        transform: scale(1);
    }

    .book.slick-slide {
        width: 75cqw;
    }

    .book__latest {
        margin-left: 64cqw;
    }

    .book__number {
        font-size: 10.5cqw;
    }

    .book__number-small {
        font-size: 6.3cqw;
    }

    .book__text {
        font-size: 5.6cqw;
    }

    .book__text-none {
        display: block;
        font-size: 5.6cqw;
        font-stretch: normal;
        font-style: normal;
        font-weight: normal;
        letter-spacing: normal;
        line-height: 1.5;
    }

    .book-slider .slick-arrow,
    .book-slider_up_to_2 .slick-arrow {
        width: 26cqw;
    }

    .book-slider .slick-prev,
    .book-slider_up_to_2 .slick-prev {
        left: -14cqw;
        background-position-y: 93%;
        background-size: 40% 40%;
    }

    .book-slider .slick-next,
    .book-slider_up_to_2 .slick-next {
        right: -14cqw;
        background-position-y: 93%;
        background-size: 40% 40%;
    }

    .book__info {
        flex-direction: column;
        margin-top: 8px;
    }

    .message__content {
        width: 95%;
    }

    .message__headline {
        font-size: 16px;
    }

    .anime__info {
        margin-top: 10px;
        line-height: 1.3;
    }

    .anime__kv {
        width: 100%;
        height: auto;
        margin-bottom: 16px;
    }

    .wrapper-buttons__anime {
        width: 100%;
    }

    /* タブレット向け例外css */
    @media not screen and (max-width: 660px) {

        body {
            width: calc(100% - 10px);
            margin-left: 10px;
        }

        .following-menu {
            display: block;
            padding-top: max(40vh, 220px);
        }

        .hamburger {
            display: none;
        }

        .key-visual {
            position: relative;
            left: 210px;
            width: calc(100% - 210px);
            text-align: left;
        }

        .logo {
            position: fixed;
            z-index: 100;
            left: 210px;
            width: calc((100% - 210px) / 2);
            margin-left: 3%;
            transition: all 0.5s;
        }

        .logo__image {
            width: 100%;
            padding-top: 20%;
            padding-left: 0;
        }

        .logo--scroll {
            left: 10px;
            width: 210px;
            margin-left: 0;
            padding-right: 3px;
            padding-left: 3px;
        }

        .main {
            position: relative;
            width: min(calc(100% - 220px), calc(100vh * 904 / 695));
            margin-left: 220px;
            padding-right: 5%;
            padding-left: 5%;
            overflow: hidden;
        }

        .story__image,
        .story__content {
            width: 100%;
        }

        .character-list .slick-arrow {
            width: 5%;
            height: 30%;
        }

        .character-list .slick-prev {
            left: calc(45% - max(440px, min(30%, 513px)) / 2);
            background: url('/img/static_page/media/saioshinogikei/chara-arrow-left.svg') no-repeat center;
            background-size: 25px;
        }

        .character-list .slick-next {
            left: calc(50% + max(440px, min(30%, 513px)) / 2);
            background: url('/img/static_page/media/saioshinogikei/chara-arrow-right.svg') no-repeat center;
            background-size: 25px;
        }

        .books__content {
            position: relative;
            width: 90%;
            overflow: hidden;
        }

        .book.slick-slide {
            width: 49cqw;
        }

        .slick-slide .book__cover {
            transform: scale(0.5);
        }

        /* 中央のスライド */
        .slick-center .book__cover {
            transform: scale(1);
        }

        /* 一つ前のスライド */
        .slick-slide:has(+ .slick-center) > a > .book__cover {
            transform: scale(0.5) translate(65px, 0);
            text-align: right;
        }

        /* 次のスライド */
        .slick-center + .slick-slide > a > .book__cover {
            transform: scale(0.5) translate(-65px, 0);
            text-align: left;
        }

        .book__latest {
            margin-left: 43cqw;
        }

        .book-slider .slick-arrow,
        .book-slider_up_to_2 .slick-arrow {
            width: 22%;
            background-size: 30% 50%;
        }

        .book-slider .slick-prev,
        .book-slider_up_to_2 .slick-prev {
            left: 0;
            background-position-x: right;
        }

        .book-slider .slick-next,
        .book-slider_up_to_2 .slick-next {
            right: 0;
            background-position-x: left;
        }

        .book__info {
            flex-direction: row;
            align-items: flex-end;
        }

        .book__number {
            font-size: 5.3cqw;
        }

        .book__number-small {
            font-size: 3.15cqw;
        }

        .book__text {
            margin-bottom: 6px;
            font-size: 2.7cqw;
        }

        .book__text-none {
            display: none;
        }

        .prev-book-gradation {
            position: absolute;
            z-index: 10;
            top: 22%;
            left: 0;
            width: 10%;
            height: 55%;
            background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #ffffff 99%);
        }

        .next-book-gradation {
            position: absolute;
            z-index: 10;
            top: 22%;
            right: 0;
            width: 10%;
            height: 55%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 99%);
        }

        .buttons {
            width: 49cqw;
        }

        .footer {
            left: 210px;
            width: calc(100% - 210px);
        }
    }
}

/* 960px以上の画面幅(タブレット、PC向け) */
@media not screen and (max-width: 970px) {

    body {
        width: calc(100% - 10px);
        margin-left: 10px;
    }

    .hamburger {
        display: none;
    }

    .page-top-icon {
        animation: floating-alba-x 10s linear infinite;
    }

    .page-top-icon__image {
        width: 140px;
        filter: drop-shadow(2px 2px 5px #cccccc);
        animation: floating-alba-y 10s linear infinite;
    }

    .key-visual {
        position: relative;
        width: 100%;
        height: 100vh;
        padding-left: 210px;
        overflow: hidden;
        text-align: left;
    }

    .key-visual__image {
        position: relative;
        width: max(100%, calc(100vh * 904 / 695));
        opacity: 1;
        box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.2);
    }

    .key-visual__pc-character {
        position: absolute;
        z-index: 10;
        bottom: 0;
        width: min(calc(100vw - 220px), calc(100vh * 938 / 725));
    }

    .key-visual__logo {
        position: absolute;
        z-index: 12;
        bottom: 4%;
        width: calc(min(calc(100vw - 220px), calc(100vh * 938 / 725)) * 0.59);
    }

    .logo {
        position: fixed;
        z-index: 100;
        left: auto;
        width: calc((min(calc(100% - 210px), calc(100vh * 904 / 695)) * 0.222) + 210px);
        min-width: 210px;
        padding-left: 10px;
        transition: all 0.5s;
    }

    .logo__image {
        width: 100%;
        padding-top: 17%;
        transition: all 0.5s;
    }

    .logo--scroll {
        width: 210px;
        padding-right: 0;
        padding-left: 0;
    }

    .logo__image--scroll {
        padding-top: 10%;
    }

    .main {
        position: relative;
        width: calc(100% - 210px);
        margin-left: 210px;
        padding-right: max(20%, calc(100% - 210px - 700px) / 2);
        padding-left: max(20%, calc(100% - 210px - 700px) / 2);
        overflow: hidden;
    }

    /* 大画面タブレット等縦長大画面向け例外css */
    @media screen and (orientation: portrait) {
        .key-visual {
            height: auto;
        }

        .key-visual__image {
            width: 100%;
        }

        .main {
            padding-right: 5%;
            padding-left: 5%;
        }
    }

    .section__content {
        padding: 16px 2.7% 40px;
    }

    .section--separator {
        margin-top: 24px;
        margin-bottom: 24px;
        padding-right: 2.7%;
        padding-left: 2.7%;
        text-align: center;
    }

    .content-pv {
        width: 100%;
        padding: 5%;
        background: url('/img/static_page/media/saioshinogikei/pv-flame.svg') no-repeat center center;
        background-size: contain;
        aspect-ratio: 16 / 9;
    }

    .section__content--banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        padding-bottom: 19px;
        text-align: center;
        gap: 24px;
    }

    .content-banner {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        padding: 0 3%;
    }

    .story__image {
        width: 100%;
    }

    .story__content {
        width: 80%;
        margin-top: 16px;
    }

    .main-character__relation {
        padding: 0 6%;
    }

    .character-list .slick-list {
        width: min(50%, calc((100vh - 80px) * 417 / 527));
    }

    .character-list__detail {
        width: 100cqw;
        padding: 4.68cqw;
    }

    .character-list__intro {
        color: #966c1b;
        font-size: 3.12cqw;
        font-stretch: normal;
        font-style: normal;
        letter-spacing: normal;
        text-align: center;
    }

    .character-list__name {
        margin-bottom: 3.12cqw;
        color: #18b7cd;
        font-size: 5.85cqw;
        font-stretch: normal;
        font-style: normal;
        font-weight: 700;
        letter-spacing: normal;
        line-height: 1.5;
        text-align: center;
    }

    .character-list__text {
        font-size: 3.12cqw;
        font-stretch: normal;
        font-style: normal;
        font-weight: normal;
        letter-spacing: normal;
        line-height: 1.5;
        text-align: left;
    }

    .character-list__text-title-alba {
        width: 59cqw;
        margin-top: -5%;
        margin-bottom: 2.34cqw;
    }

    .character-list__text-title-orsys {
        width: 40cqw;
        margin-top: -5%;
        margin-bottom: 2.34cqw;
    }

    .character-list__text-title-gifu {
        width: 56cqw;
        margin-top: -5%;
        margin-bottom: 2.34cqw;
    }

    .character-list__text-title-haha {
        width: 55cqw;
        margin-top: -5%;
        margin-bottom: 2.34cqw;
    }

    .character-list__text-title-bruno {
        width: 55cqw;
        margin-top: -5%;
        margin-bottom: 2.34cqw;
    }

    .character-list .slick-arrow {
        width: 5%;
        height: 30%;
    }

    .character-list .slick-prev {
        left: calc(45% - min(50%, calc((100vh - 80px) * 417 / 527)) / 2);
        background: url('/img/static_page/media/saioshinogikei/chara-arrow-left.svg') no-repeat center;
        background-size: 25px;
    }

    .character-list .slick-next {
        left: calc(50% + min(50%, calc((100vh - 80px) * 417 / 527)) / 2);
        background: url('/img/static_page/media/saioshinogikei/chara-arrow-right.svg') no-repeat center;
        background-size: 25px;
    }

    .character-area__orsys {
        position: absolute;
        z-index: 5;
        top: 24%;
        left: 12%;
        width: 27%;
        height: 26%;
    }

    .character-area__alba {
        position: absolute;
        z-index: 5;
        top: 39.5%;
        right: 12%;
        width: 27%;
        height: 26%;
    }

    .character-area__bruno {
        position: absolute;
        z-index: 5;
        top: 68%;
        left: 8%;
        width: 23%;
        height: 22%;
    }

    .character-area__gifu {
        position: absolute;
        z-index: 5;
        top: 77.5%;
        left: 39%;
        width: 23%;
        height: 22%;
    }

    .character-area__haha {
        position: absolute;
        z-index: 5;
        top: 74%;
        right: 9%;
        width: 23%;
        height: 22%;
    }

    .news__content {
        display: flex;
        gap: 8px;
        align-items: flex-start;
    }

    .books__content {
        position: relative;
        width: 90%;
        overflow: hidden;
    }

    .book.slick-slide {
        width: 49cqw;
    }

    .slick-slide .book__cover {
        transform: scale(0.5);
    }

    /* 中央のスライド */
    .slick-center .book__cover {
        transform: scale(1);
    }

    /* 一つ前のスライド */
    .slick-slide:has(+ .slick-center) > a > .book__cover {
        transform: scale(0.5) translate(65px, 0);
        text-align: right;
    }

    /* 次のスライド */
    .slick-center + .slick-slide > a > .book__cover {
        transform: scale(0.5) translate(-65px, 0);
        text-align: left;
    }

    .book__latest {
        margin-left: 43cqw;
    }

    .book-slider .slick-arrow,
    .book-slider_up_to_2 .slick-arrow {
        width: 22%;
        background-size: 30% 50%;
    }

    .book-slider .slick-prev,
    .book-slider_up_to_2 .slick-prev {
        left: 0;
        background-position-x: right;
    }

    .book-slider .slick-next,
    .book-slider_up_to_2 .slick-next {
        right: 0;
        background-position-x: left;
    }

    .book__info {
        align-items: flex-end;
    }

    .book__text {
        margin-bottom: 6px;
    }

    .prev-book-gradation {
        position: absolute;
        z-index: 10;
        top: 22%;
        left: 0;
        width: 10%;
        height: 55%;
        background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #ffffff 99%);
    }

    .next-book-gradation {
        position: absolute;
        z-index: 10;
        top: 22%;
        right: 0;
        width: 10%;
        height: 55%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 99%);
    }

    .buttons {
        width: 49cqw;
    }

    .andarche-banner {
        padding: 0 2.5%;
    }

    .anime__kv {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .wrapper-buttons__anime {
        display: flex;
        width: 100%;
        margin-bottom: 20px;
        gap: 10px;
    }

    .footer {
        left: 210px;
        width: calc(100% - 210px);
    }
}
