@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 60px;
    scroll-behavior: smooth;
}

body {
    min-width: 1200px;
    color: #331b1b;
    font-size: 16px;
    line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {

    a:hover {
        opacity: 0.8;
    }
}

.content__text--emphasis {
    color: #ce3653;
}

.fade-in {
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-delay: 3s;
    opacity: 0;
}

.fade-in--logo {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu {
    position: sticky;
    z-index: 100;
    top: 0;
    right: 0;
    width: 100%;
    height: 55px;
    border-bottom: 3px solid #691c13;
    background-color: white;
}

.menu__content {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 1000px;
    height: 100%;
    margin: 0 auto;
}

.menu__content--logo {
    display: none;
    width: 144px;
    height: auto;
}

.menu__logo--following {
    display: none;
}

.navigation {
    display: flex;
}

.nav__content {
    display: flex;
    gap: 16px;
    margin-right: 24px;
}

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

.nav__content--image {
    display: block;
    width: auto;
    height: 17px;
}

.sns-buttons {
    display: flex;
    gap: 8px;
    width: auto;
    height: 23px;
}

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

.x-share:hover,
.facebook-share:hover,
.line-share:hover {
    opacity: 0.8;
}

.page-top-icon {
    position: fixed;
    z-index: 3;
    right: 10px;
    bottom: 10px;
    transition: all 0.5s;
}

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

.page-top-icon__image {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 1px #ffffff);
}

.header {
    position: relative;
    width: 100%;
    height: 562px;
    background-image: linear-gradient(to bottom, #ce3653, #8b2438 75%, #671b2a);
}

.header:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/kv/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.header__content {
    display: block;
    position: relative;
    width: 1000px;
    height: auto;
    margin: 0 auto;
}

.header__content--video--pc {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-element {
    display: block;
    width: 100%;
}

.video-thumbnail {
    display: none;
    width: 100%;
}

.show-thumbnail .video-thumbnail {
    display: block;
}

.show-thumbnail .video-element {
    display: none;
}

.header__content--image {
    display: block;
    height: auto;
}

.header__content--logo {
    position: absolute;
    top: -16px;
    left: -4px;
    width: 385px;
}

.header__content--copy {
    position: absolute;
    bottom: 30px;
    left: 16px;
    width: 360px;
}

.section--common {
    position: relative;
    width: 900px;
    margin: 0 auto 60px;
}

.section--pv {
    width: 100%;
    height: auto;
    margin-bottom: 48px;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: rgb(230 153 168 / 30%);
}

.section--anime {
    margin-bottom: 100px;
}

.pv {
    position: relative;
    width: 900px;
    margin: 0 auto 24px;
}

.youtube {
    display: flex;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 28px 52px;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/pv/pv_frame.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    aspect-ratio: 16 / 9;
}

.youtube__frame {
    width: 100%;
    border: none;
}

.pv__chara1 {
    display: block;
    position: absolute;
    z-index: 1;
    top: 95px;
    left: -205px;
    width: 425px;
}

.is-animated[data-animation="katakata"] {
    transform-origin: center;
    animation: katakata 1.25s ease-in-out;
    animation-iteration-count: 1;
}

@keyframes katakata {

    0%, 50%, 100% {
        transform: rotate(0deg);
    }

    25%, 75% {
        transform: rotate(-6deg);
    }
}

.pv__chara2 {
    display: block;
    position: absolute;
    z-index: 1;
    right: -150px;
    bottom: 60px;
    width: 320px;
}

.is-animated[data-animation="pyonpyon"] {
    transform-origin: center;
    animation: pyonpyon 1.25s both;
    animation-iteration-count: 1;
}

@keyframes pyonpyon {

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

    25%, 75% {
        transform: translateY(-16px);
    }
}

.campaign__banner {
    display: flex;
    position: relative;
    justify-content: center;
    width: auto;
    height: auto;
    margin-bottom: 5px;
    gap: 24px;
}

.campaign__banner--image {
    display: block;
    width: 435px;
    height: auto;
    border: 3px solid #ce3653;
}

.campaign__banner--image:hover {
    filter: brightness(110%);
}

.schedule__link {
    display: flex;
    position: absolute;
    bottom: 0;
    align-items: center;
    padding: 4px 10px;
    background-color: #ffffff;
    color: #ce3653;
    line-height: 20px;
}

.schedule__link:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    padding-right: 4px;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/book_arrow.svg');
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.modal {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
}

.modal__content {
    position: fixed;
    position: relative;
    top: 50%;
    left: 50%;
    width: fit-content;
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    background-color: transparent;
    box-shadow: none;
}

.modal__scroll {
    max-height: 85vh;
    overflow-y: auto;
}

.modal__image {
    display: block;
    width: 400px;
    max-width: 90vw;
    height: auto;
    border-radius: 16px;
}

.close {
    position: absolute;
    z-index: 10;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(0 0 0 / 50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px black;
    cursor: pointer;
}

.close:hover {
    background: rgb(0 0 0 / 80%);
}

.trial__buttons {
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0 auto;
    gap: 24px;
}

.trial__button--link:hover {
    filter: brightness(110%);
}

.trial__button {
    display: block;
    width: 435px;
    height: auto;
}

.heading {
    width: 900px;
    height: auto;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #331b1b;
}

.heading__img {
    display: block;
    width: fit-content;
    height: 48px;
    margin: 0 auto;
}

.heading--sub {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-bottom: 24px;
    padding-left: 8px;
    border-left: 12px solid #ce3653;
    background-color: rgb(230 213 217 / 30%);
    color: #691c13;
    font-family: "Kaisei Opti", serif;
    font-size: 34px;
    font-weight: normal;
}

.story__content {
    width: 760px;
    height: auto;
    margin: 0 auto;
}

.story__content:before,
.story__content:after {
    content: "";
    display: block;
    width: 495px;
    height: 55px;
    margin: 0 auto;
}

.story__content:before {
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/story/design1.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.story__content:after {
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/story/design2.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.story__content--text {
    font-family: "Kaisei Opti", serif;
    font-size: 24px;
}

.story__content--copy {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #b7922d;
    font-size: 28px;
}

.story__content--copy-word {
    font-size: 38px;
}

.story__content--synopsis {
    display: block;
    width: 720px;
    height: auto;
    margin-bottom: 40px;
    margin-left: 30px;
}

.story__content--fukidashi {
    display: block;
    position: relative;
    width: 580px;
    height: 92px;
    margin: 16px auto 8px;
}

.story__content--fukidashi:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 580px;
    height: 92px;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/story/fukidashi.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.story__content--fukidashi--text {
    display: block;
    position: absolute;
    top: 11%;
    right: 0;
    left: 0;
    width: fit-content;
    height: auto;
    margin: auto;
    font-size: 32px;
}

.character__list {
    display: block;
    width: 100%;
    height: 412px;
    margin-bottom: 8px;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/character/flame1.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.character__content {
    position: relative;
    width: 100%;
    height: 412px;
    padding: 32px 40px;
}

.character__content--profile {
    display: block;
    position: relative;
    width: 450px;
    height: auto;
}

.name {
    display: flex;
    align-items: center;
    width: 390px;
    height: 60px;
    margin-bottom: 8px;
    padding-left: 8px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 3px 3px 0 0 rgb(142 120 120 / 16%);
    font-family: "Kaisei Opti", serif;
    font-size: 38px;
}

.catch-copy {
    display: block;
    margin-bottom: 24px;
    margin-left: -16px;
    color: #691c13;
    font-family: "Kaisei Opti", serif;
    font-size: 32px;
    line-height: 38px;
}

.description {
    display: flex;
    align-items: center;
    width: 300px;
    height: auto;
    padding: 16px;
    border: 3px dotted #691c13;
    border-radius: 22px;
    background-color: white;
    font-family: 'VDL', sans-serif;
    font-weight: bold;
}

.character__content--img {
    display: block;
    position: absolute;
    top: 32px;
    right: 40px;
    width: auto;
    height: 350px;
}

.slide-arrow {
    position: absolute;
    top: 210px;
    width: 30px;
    height: 60px;
    cursor: pointer;
}

.slide-arrow:hover {
    opacity: 0.8;
}

.prev-arrow {
    position: absolute;
    left: -70px;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/character/arrow_l.svg');
    background-repeat: no-repeat;
    background-size: 30px 60px;
}

.next-arrow {
    position: absolute;
    right: -70px;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/character/arrow_r.svg');
    background-repeat: no-repeat;
    background-size: 30px 60px;
}

.character__nav {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 521px;
    padding: 80px 16px 16px;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/character/flame2.svg');
    background-repeat: no-repeat;
    background-size: cover;
    gap: 8px;
}

.character__nav--box--common {
    display: block;
    position: relative;
    height: 425px;
    border-radius: 8px;
    background-color: white;
}

.character__nav--box1 {
    width: 338px;
    border: 3px solid #d39e9e;
}

.character__nav--box2 {
    width: 371px;
    border: 3px solid #809baf;
}

.character__nav--main {
    display: flex;
    position: relative;
    top: -70px;
    justify-content: center;
    margin-bottom: 8px;
    gap: 8px;
}

.character__nav--subbox--common {
    display: block;
    position: relative;
    top: -55px;
    width: calc(100% - 32px);
    height: 300px;
    margin: 0 auto;
    border-radius: 4px;
}

.character__nav--subbox1 {
    background-color: #f8ecec;
}

.character__nav--subbox2 {
    background-color: #e7edf5;
}

.character__nav--subtitle {
    display: block;
    position: relative;
    top: -22px;
    width: 268px;
    height: auto;
    margin: 0 auto;
}

.character__nav--detail {
    display: flex;
    position: relative;
    top: -15px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    gap: 8px;
}

.character__face {
    display: block;
    width: 100px;
    height: fit-content;
}

.character__face--images {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
}

.character__face--img {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.character__face--img--on {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.active__character {
    display: none;
}

.character__face--name {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.books__content {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.books__content--title {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    margin-left: 36px;
    font-size: 24px;
    line-height: 1;
}

.books__content--subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 35px;
    margin-right: 8px;
    border-radius: 18px;
    background-color: #ce3653;
    color: white;
}

.books__content--link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 32px;
    margin-bottom: 24px;
    color: #ce3653;
    font-size: 16px;
    line-height: 20px;
}

.books__content--link:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    padding-right: 4px;
    background-image: url('/v2/img/static_page/media/jisho_akuyaku/book_arrow.svg');
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.book__list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 72px);
    height: auto;
    margin: 0 auto 24px;
    gap: 16px;
}

.book {
    position: relative;
    width: 195px;
    height: auto;
}

.book__cover--img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.book__detail {
    width: fit-content;
    height: auto;
    margin: 0 auto;
    font-family: "Kaisei Opti", serif;
    font-size: 28px;
    line-height: 20px;
    text-align: center;
}

.book__detail--volume {
    font-size: 22px;
}

.book__detail--text {
    font-size: 16px;
}

.book__mark {
    display: flex;
    position: absolute;
    z-index: 5;
    top: -20px;
    right: -33px;
    align-items: center;
    justify-content: center;
    width: 67px;
    height: 67px;
    border: 2px solid #ce3653;
    border-radius: 50%;
    background-color: white;
    color: #ce3653;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
}

.news__list {
    display: block;
    width: 670px;
    height: auto;
    max-height: 240px;
    margin: 0 auto;
    overflow-y: scroll;
}

/* スクロールバーの幅と高さを設定する */
.scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 130px;
}

/* スクロールバーの形を設定する */
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
    border-radius: 8px;
}

/* スクロールバーの色を設定する */
.scrollbar-thumb-black::-webkit-scrollbar-thumb {
    --bg-opacity: 0.3;
    background-color: #959595;
}

.news__content {
    display: block;
    margin-bottom: 16px;
}

.news__content:last-child {
    margin-bottom: 0;
}

.news__date {
    display: block;
    margin-bottom: 8px;
}

.news__detail--link {
    color: #ce3653;
}

.message__list {
    display: block;
    width: 900px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 32px;
    border-radius: 16px;
    background-color: #fcf0f2;
}

.message__content {
    display: block;
    width: 665px;
    height: auto;
    margin: 0 auto 40px;
}

.message__content:last-child {
    margin-bottom: 0;
}

.message__content--detail {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #b6a5a5;
    text-align: center;
}

.message__content--author {
    display: block;
    margin: 0 auto;
}

.message__content--name {
    font-family: "Kaisei Opti", serif;
    font-size: 32px;
}


.message__content--sensei {
    font-size: 24px;
}

.anime__kv {
    display: block;
    width: 500px;
    height: auto;
    margin: 0 auto 24px;
}

.anime__kv--img {
    width: 100%;
    height: auto;
}

.anime__button {
    display: flex;
    position: relative;
    justify-content: center;
    width: 100%;
    height: 60px;
    margin-bottom: 48px;
    gap: 24px;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 12px);
    height: 100%;
    border-radius: 8px;
    background-color: #ce3653;
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.button__text {
    font-size: 16px;
}

.anime__content {
    display: block;
    width: 580px;
    height: auto;
    margin: 0 auto 40px;
    text-align: center;
}

.anime__content:last-child {
    margin-bottom: 0;
}

.anime__content--title {
    margin-bottom: 16px;
    font-family: "Kaisei Opti", serif;
    font-size: 24px;
    line-height: 24px;
}

.anime__content--detail {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}

.anime__content--detail:last-child {
    margin-bottom: 0;
}

.mini-chara1 {
    display: block;
    position: absolute;
    z-index: 2;
    bottom: 100px;
    left: -75px;
    width: 173px;
    height: auto;
}

.mini-chara2 {
    display: block;
    position: absolute;
    z-index: 2;
    right: 8px;
    bottom: 16px;
    width: 153px;
    height: auto;
}

.mini-chara3 {
    display: block;
    position: absolute;
    z-index: 2;
    bottom: -35px;
    left: -80px;
    width: 192px;
    height: auto;
}

.mini-chara4 {
    display: block;
    position: absolute;
    z-index: 2;
    right: -75px;
    bottom: 16px;
    width: 180px;
    height: auto;
}

.mini-chara1--animation {
    transform-origin: center;
    animation: poyoyon 2s both infinite;
}

@keyframes poyoyon {

    100%,
    60%,
    35%,
    25%,
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-24px);
    }

    40% {
        transform: translateY(-12px);
    }
}

.mini-chara2--animation {
    transform-origin: bottom;
    animation: buruburu .8s infinite;
}

@keyframes buruburu {

    0% {
        transform: translate(0, 2px) rotateZ(0deg);
    }

    25% {
        transform: translate(2px, 0) rotateZ(1deg);
    }

    50% {
        transform: translate(2px, 2px) rotateZ(0deg);
    }

    75% {
        transform: translate(2px, 0) rotateZ(-1deg);
    }

    100% {
        transform: translate(0, 0) rotateZ(0deg);
    }
}

.mini-chara3--animation {
    animation: step 2s ease-in-out infinite;
}

@keyframes step {

    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-6px, -12px) rotate(-2deg);
    }

    50% {
        transform: translate(0, 0);
    }

    75% {
        transform: translate(6px, -12px) rotate(2deg);
    }

    100% {
        transform: translate(0, 0);
    }
}

.mini-chara4--animation {
    transform-origin: center;
    animation: yurayura 1.5s ease-in infinite;
}

@keyframes yurayura {

    0%, 100% {
        transform: rotate(2deg);
    }

    50% {
        transform: rotate(-2deg);
    }
}

.footer {
    position: relative;
    z-index: 1;
    height: 180px;
    padding: 24px 0;
    background-color: #331b1b;
    text-align: center;
}

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

.copyright {
    margin-top: 8px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 12px;
}
