@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=WDXL+Lubrifont+JP+N&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded 1c:wght@800&display=swap');

:root {
    --main-color: #664912;
    --sub-color: #ef2525;
    --text-color: #fafafa;
    --novel-color: #126629;
    --comic-color: #c91515
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(.005) scaleX(0);
    }
    50% {
        transform: scaleY(.005) scaleX(1);
    }
    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }
    50% {
        transform: scaleY(.005) scaleX(1);
    }
    100% {
        transform: scaleY(.005) scaleX(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    min-width: 1200px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    background-image: url('/v2/img/static_page/media/kanteishikari/bg.jpg');
    background-size: auto;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (hover: hover) and (pointer: fine) {
    a:hover {
        opacity: 0.6;
    }
}

.fade-in {
    transform: translateY(20px);
    transition: 0.8s;
    transition-delay: 0.1s;
    opacity: 0;
}

.fade-in.is-inview {
    transform: translateY(0);
    opacity: 1;
}

.is-opening {
    transform: scaleY(.01) scaleX(0);
    animation: unfoldIn 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
}

.is-closing {
    transform: scale(1);
    animation: unfoldOut 0.3s .1s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
}

.section {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

.heading {
    margin-bottom: 8px;
    font-size: 100px;
    font-weight: normal;
    font-family: 'WDXL Lubrifont JP N', sans-serif;
    color: var(--main-color);
    text-align: center;
}

.bg-character-img {
    position: fixed;
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.menu {
    position: sticky;
    top: 8px;
    right: 0;
    z-index: 100;
    display: flex;
    width: 100%;
    min-width: 1080px;
    height: 88px;
    align-items: center;
    gap: min(24px, 1vw);
    background-image: url('/v2/img/static_page/media/kanteishikari/bg_nav.png');
    background-size: 100% 88px;
}

.menu__logo {
    width: min(12vw, 216px);
    min-width: 120px;
    height: auto;
    margin-left: clamp(32px, 3vw, 56px);
    padding-top: 8px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.nav__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* PCにだけhover時の▶のための余白を適用 */
@media (hover: hover) and (pointer: fine) {
    .nav__content {
        gap: 4px;
    }
}

.nav-detail {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-detail:before {
    content: '▶';
    display: inline-block;
    margin-right: max(-8px, -0.5vw);
    opacity: 0;
    transition: opacity 0.3s ease-in;
    font-size: clamp(15px, 1.4vw, 27px);
    color: var(--text-color);
    vertical-align: sub;
}

.nav-detail:hover:before,
.nav-detail__link:hover {
    opacity: 1;
}

.nav-detail__link {
    font-size: clamp(17px, 1.4vw, 27px);
    font-weight: 500;
    font-family: 'Noto Sans JP', serif;
    color: var(--text-color);
}

.sns-buttons {
    display: flex;
    flex-shrink: 0;
    width: calc(clamp(23px, 2.1vw, 40px) * 3 + min(8px, 0.5vw) * 2);
    height: clamp(23px, 2.1vw, 40px);
    margin-right: clamp(32px, 3vw, 56px);
    margin-left: auto;
    gap: min(8px, 0.5vw);
}

.x-share,
.facebook-share,
.line-share {
    width: clamp(23px, 2.1vw, 40px);
    height: auto;
}

.kv {
    position: relative;
    top: -16px;
}

.kv__logo {
    position: absolute;
    top: 75%;
    left: 50%;
    width: 44vw;
    min-width: calc(1200px * 44 / 100);
    height: auto;
    transform: translate(-50%, -50%);
}

.kv__broadcast-wrap {
    margin-bottom: 80px;
    text-align: center;
}

.kv__broadcast {
    display: inline-block;
    border-bottom: 5px solid var(--sub-color);
    font-size: 60px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: var(--sub-color);
    line-height: 1.07;
    text-shadow: 5px 7px 8px rgba(0, 0, 0, 0.16);
    -webkit-text-stroke: 2px var(--text-color);
}

.main {
    width: 100%;
}

.pv {
    position: relative;
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 104px;
    padding: 56px 64px 72px;
    background-image: url("/v2/img/static_page/media/kanteishikari/bg_scroll.webp");
    background-size: contain;
}

.pv__chara {
    position: absolute;
}

@media screen and (max-width: 1440px) {
    .pv__chara {
        display: none;
    }
}

.pv__chara--hibiki {
    position: absolute;
    bottom: -104px;
    left: max(-320px, -17vw);
    width: min(288px, 15vw);
    height: auto;
}

.pv__chara--cait-sith {
    position: absolute;
    top: 0;
    right: max(-264px, -14vw);
    width: min(224px, 12vw);
    height: auto;
}

.youtube {
    display: block;
    width: 870px;
    height: auto;
    margin-bottom: 16px;
}

.youtube__frame {
    width: 100%;
    height: calc(870px * 9 / 16);
}

.trial__button-wrap {
    display: flex;
    width: 870px;
    justify-content: space-between;
}

.trial__button {
    width: 410px;
    height: auto;
}

.story {
    margin-bottom: 88px;
    padding-bottom: 72px;
    background-image: url("/v2/img/static_page/media/kanteishikari/bg_note.webp");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position-x: left;
}

.story img {
    display: block;
    width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.character {
    margin-bottom: 88px;
    padding-bottom: 72px;
    background-image: url("/v2/img/static_page/media/kanteishikari/bg_forest.webp");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position-x: center;
}

.character__title {
    display: block;
    width: 296px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8px;
}

.character__title--main {
    width: 378px;
}

.character__main-wrap {
    max-width: 578px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
}

.character__sub-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 88px;
}

.character__list-wrap:nth-child(odd) {
    /* 「ヒビキの友人」->「死者殺し」で4人になった際は、* 4, * 3にする */
    min-width: calc(130px * 3 + 16px * 2);
}

.character__list-wrap:nth-child(even) {
    min-width: 296px;
}

.character__list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.character__list--main {
    gap: 12px 22px;
}

.character__img-wrap {
    position: relative;
    width: 130px;
    height: auto;
    cursor: pointer;
}

.character__img-wrap--main:not(:last-child) {
    width: 178px;
}

.character__img-wrap--main:last-child {
    position: absolute;
    right: 8px;
    bottom: 0;
    width: 72px;
    height: 72px;
}

@media (hover: hover) and (pointer: fine) {
    .character__img-wrap--main:last-child:hover {
        opacity: 0.6;
    }
}

.character__name {
    position: absolute;
    bottom: 2px;
    left: calc(50% - 9px);
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
    text-align: center;
    transform: translate(-50%, -50%);
}

.character__name:before {
    content: '▶';
    display: inline-block;
    margin-right: 4px;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    font-size: 14px;
    color: var(--text-color);
}

.character__name--main {
    bottom: 5px;
    left: calc(50% - 10px);
    font-size: 16px;
}

.character__name--main:before {
    font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {
    .character__img-wrap:hover,
    .character__img-wrap:hover .character__name:before {
        opacity: 1;
    }
}

.character__modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.character__modal-content {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    max-width: min(1000px, 90vw, calc((100vh - 120px) / 6 * 10));
    max-height: min(calc(600px + 60px), calc(100vh - 120px + 60px));
}

.is-opening .character__modal-content {
    transform: scale(0);
    animation: zoomIn .2s .3s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
}

.is-closing .character__modal-content {
    animation: zoomOut .5s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
}

.character__modal-close {
    padding-right: 24px;
    font-size: 40px;
}

@media (hover: hover) and (pointer: fine) {
    .character__modal-close:hover {
        opacity: 0.6;
    }
}

.character__modal--hidden {
    display: none;
}

.character__modal--no-scroll {
    overflow: hidden;
}

.character-swiper {
    position: relative;
    display: flex;
    flex-grow: 1;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    align-items: center;
}

.character__modal-body {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.character__modal-status_screen {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: min(1000px, 90vw, calc((100vh - 120px) / 6 * 10));
    max-height: min(600px, calc(100vh - 120px));
    aspect-ratio: 10 / 6;
    object-fit: contain;
}

.character__status-wrap {
    position: absolute;
    right: 5.5%;
    bottom: 4%;
    width: 37%;
    height: 80%;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.character__status,
.character__status-awakening {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    backface-visibility: hidden;
    transition: transform 0.6s, opacity 0.6s;
}

.character__status {
    padding: 5%;
}

.character__status-awakening {
    transform: rotateY(180deg);
    opacity: 0;
}

.character__status-wrap.is-awakened .character__status {
    transform: rotateY(180deg);
    opacity: 0;
}

.character__status-wrap.is-awakened .character__status-awakening {
    transform: rotateY(0deg);
    opacity: 1;
}

.character__status-button-wrap {
    position: absolute;
    right: 36.5%;
    bottom: 5%;
    width: min(88px, 9%);
    height: 15%;
    transition: opacity 0.3s;
    cursor: pointer;
    z-index: 9999;
}

.character__status-button--back {
    display: none;
}

.character__status-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    backface-visibility: hidden;
    transition: transform 0.6s, opacity 0.6s;
}

@media (hover: hover) and (pointer: fine) {
    .character__status-button:hover {
        opacity: 0.6;
    }
}

.character-swiper-button-prev,
.character-swiper-button-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    width: 28px;
    height: auto;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--text-color);
    cursor: pointer;
}

.character-swiper-button-prev {
    left: 3.5%;
}

.character-swiper-button-next {
    right: 3.5%;
}

@media (hover: hover) and (pointer: fine) {
    .character-swiper-button-prev:hover,
    .character-swiper-button-next:hover {
        opacity: 0.6;
    }
}

.news {
    margin-bottom: 88px;
    padding-bottom: 72px;
    background-image: url("/v2/img/static_page/media/kanteishikari/bg_brick.webp");
    background-size: 80% auto;
    background-repeat: repeat-y;
    background-position-x: right;
}

.news__list-wrap {
    padding: 56px 80px;
}

.news__list {
    display: grid;
    width: 100%;
    height: 228px;
    overflow-y: auto;
    row-gap: 16px;
}

.news__detail {
    display: flex;
    gap: 32px;
}

.news__date {
    font-size: 24px;
    font-weight: normal;
    font-family: 'WDXL Lubrifont JP N', sans-serif;
    color: var(--text-color);
}

.news__text {
    margin-right: 8px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-color);
    line-height: 1.5;
}

.news__text a {
    text-decoration: underline;
}

.news__text a:visited {
    color: #8804b9;
}

.books {
    margin-bottom: 88px;
    padding-bottom: 72px;
    background-image: url("/v2/img/static_page/media/kanteishikari/bg_town.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.books__novel,
.books__comic {
    background-size: 100%;
    background-repeat: no-repeat;
}

.books__novel {
    padding: 160px 200px 232px;
    margin-bottom: 40px;
    background-image: url("/v2/img/static_page/media/kanteishikari/board_novel.webp");
}

.books__comic {
    padding: 160px 200px 176px;
    background-image: url("/v2/img/static_page/media/kanteishikari/board_comic.webp");
}

.books-content {
    display: flex;
    padding-bottom: 24px;
}

.books-content__cover {
    width: 190px;
    height: 100%;
    margin-right: 20px;
}

.books-content__info {
    width: 388px;
    height: auto;
    margin-top: 32px;
}

.books-content__info-text {
    flex-grow: 1;
    padding-top: 24px;
    padding-bottom: 24px;
    line-height: 1;
}

.books-content__info-text-detail {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 24px;
    align-items: flex-end;
    justify-content: space-between;
}

.books-content__info-text-detail:after {
    position: absolute;
    content: '';
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
}

.books-content__info-kind {
    width: 50%;
    font-size: 28px;
    font-weight: bold;
    color: var(--main-color);
}

.books-content__info-new {
    width: 50%;
    font-size: 24px;
    font-weight: normal;
    font-family: 'WDXL Lubrifont JP N', sans-serif;
    color: #ff0000;
    line-height: 1.33;
    text-align: right;
}

.books-content__info-title {
    width: 264px;
    font-size: 16px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1.33;
}

.books-content__info-volume {
    font-size: 52px;
    font-weight: bold;
    color: var(--main-color);
}

.books-nav {
    min-height: 158px;
}

.books-nav__info {
    width: 108px;
    margin-right: calc((590px - 108px * 5) / 4);
    text-align: center;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .books-nav__info:hover {
        opacity: 0.6;
    }
}

.books-nav__info-cover {
    width: 100%;
}

.books-slider {
    visibility: hidden;
}

.books-slider.slick-initialized {
    visibility: visible;
}

.prev-arrow,
.next-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    font-size: 40px;
    transform: translate(0%, -50%);
}

@media (hover: hover) and (pointer: fine) {
    .prev-arrow:hover,
    .next-arrow:hover {
        opacity: 0.6;
    }
}

.prev-arrow,
.prev-arrow:hover,
.prev-arrow:focus {
    left: -56px;
}

.next-arrow,
.next-arrow:hover,
.next-arrow:focus {
    right: -56px;
}

.next-arrow--novel,
.prev-arrow--novel {
    color: var(--novel-color);
    cursor: pointer;
}

.next-arrow--comic,
.prev-arrow--comic {
    color: var(--comic-color);
    cursor: pointer;
}

.message {
    margin-bottom: 88px;
    background-image: url("/v2/img/static_page/media/kanteishikari/bg_note.webp");
    background-size: auto 80%;
    background-repeat: no-repeat;
    background-position: top 80px left;
}

.message__content {
    padding: 56px 48px;
    align-items: center;
}

.message__content--comicalize {
    display: flex;
}

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

.message__text-wrap {
    display: flex;
}

.message__author {
    min-width: 208px;
    margin-right: 56px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.33;
}

.message__text {
    max-width: 640px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
}

.message__text--comicalize {
    margin-right: 56px;
}

.message__img {
    width: 270px;
    height: auto;
}

.gallery {
    margin-bottom: 88px;
    padding-bottom: 72px;
    background-image: url("/v2/img/static_page/media/kanteishikari/bg_road.webp");
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery__summery {
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 40px;
    font-size: 23px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1.33;
}

.gallery__list {
    margin-bottom: 40px;
    padding: 160px 180px 136px;
    background-image: url("/v2/img/static_page/media/kanteishikari/board_gallery.webp");
    background-size: 100%;
    background-repeat: no-repeat;
}

.gallery__list-novel {
    margin-bottom: 196px;
}

.gallery-slider {
    min-height: 208px;
}

.gallery-slider__info {
    width: 146px;
    margin-right: calc((640px - 146px * 4) / 3);
    text-align: center;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .gallery-slider__info:hover {
        opacity: 0.6;
    }
}

.gallery-slider__info-cover {
    width: 100%;
}

.gallery__modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.gallery__modal-content {
    overflow: auto;
}

.is-opening .gallery__modal-content {
    transform: scale(0);
    animation: zoomIn .2s .3s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
}

.is-closing .gallery__modal-content {
    animation: zoomOut .5s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
}

.gallery__modal-content img {
    height: auto;
    max-width: min(90vw, calc((100vh - 152px) / 734 * 500));
    max-height: min(calc(100vh - 152px), calc(90vw / 500 * 734));
    object-fit: contain;
}

.gallery__modal-close {
    font-size: 40px;
}

@media (hover: hover) and (pointer: fine) {
    .gallery__modal-close:hover {
        opacity: 0.6;
    }
}

.gallery__modal--hidden {
    display: none;
}

.gallery__modal--no-scroll {
    overflow: hidden;
}

.anime {
    margin-bottom: 88px;
    padding-bottom: 72px;
    background-image: url("/v2/img/static_page/media/kanteishikari/bg_brick.webp");
    background-size: 80% auto;
    background-repeat: repeat-y;
    background-position-x: right;
}

.anime__kv {
    display: block;
    width: 568px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 24px;
}

.anime__button-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    gap: 40px;
}

.anime__staff-wrap {
    display: grid;
    padding: 72px 136px;
    row-gap: 40px;
}

.anime__subhead {
    font-size: 40px;
    font-weight: normal;
    font-family: 'WDXL Lubrifont JP N', sans-serif;
    color: var(--text-color);
}

.anime__text {
    font-size: 20px;
    font-weight: normal;
    font-family: 'WDXL Lubrifont JP N', sans-serif;
    color: var(--text-color);
}

.frame {
    position: relative;
    background-image: url("/v2/img/static_page/media/kanteishikari/frame_bg.svg");
    background-size: calc(100% - 2px) calc(100% - 32px);
    background-repeat: no-repeat;
    background-position: center;
}

.frame:before,
.frame:after {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    width: 100%;
    height: 40px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.frame:before {
    top: 0;
    background-image: url("/v2/img/static_page/media/kanteishikari/frame_decoration_top.svg");
}

.frame:after {
    bottom: 0;
    background-image: url("/v2/img/static_page/media/kanteishikari/frame_decoration_bottom.svg");
}

.button {
    display: flex;
    width: 388px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--text-color);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    background-image: url("/v2/img/static_page/media/kanteishikari/button_decoration.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.button--novel,
.button--anime {
    background-color: var(--novel-color);
}

.button--comic,
.button--x {
    background-color: var(--comic-color);
}

.button--x {
    font-size: 22px;
}

.button-close {
    font-weight: normal;
    font-family: 'WDXL Lubrifont JP N', sans-serif;
    color: var(--text-color);
    text-align: right;
    cursor: pointer;
}

.slick-initialized .slick-slide {
    height: auto;
}

.slick-slider .slick-list {
    margin: 0;
}

.page-top-icon {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    width: 184px;
    height: auto;
    max-height: 136px;
    transition: all 0.5s;
}

.page-top-icon .page-top-icon__image {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 0px 1px #fff);
}

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

.footer img {
    width: auto;
    max-width: 100%;
    margin-bottom: 8px;
}

.footer .copyright {
    font-size: 12px;
    color: #ffffff;
}
