* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Hind Vadodara', 'Noto Sans JP', sans-serif;
}

html {
    font-size: 16px;
    min-height: 100%;
    color: #333;
}

body {
    min-height: 100vh;
    background-color: #fff;
    position: relative;
    box-sizing: border-box;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

section {
    width: 1000px;
    text-align: left;
    padding: 40px 0 80px;
}

footer {
    background-color: #333;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    padding: 16px 0px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

h1 {
    font-size: 4rem;
    text-align: center;
    padding: 80px 0 40px;
}

h2 {
    font-size: 2rem;
    padding: 24px;
}

h3 {
    font-size: 3rem;
}

a {
    color: #333;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav_container {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav_container img {
    height: 100px;
    padding-left: 24px;
    padding-top: 40px;
}

.chapter_logo {
    height: 40px !important;
}

.hamburger_menu {
    width: 100px;
    height: 100px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.hamburger_menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #242424;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.hamburger_menu__bar:first-child {
    top: 50px;
}

.hamburger_menu__bar:nth-child(2) {
    top: 66px;
}

.hamburger_menu__bar:last-child {
    top: 82px;
}

.hamburger_menu--open .hamburger_menu__bar {
    top: 60%;
}

.hamburger_menu--open .hamburger_menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger_menu--open .hamburger_menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger_menu--open .hamburger_menu__bar:nth-child(2) {
    display: none;
}

.navigation {
    display: none;
    width: 50%;
    height: 100vh;
    background: #fffffff0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
}

.navigation__list {
    list-style: none;
    padding: 80px 100px 0;
    margin: 0;
}

.navigation__link {
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    padding: 24px 0;
    transition: .5s;
}

.navigation__link::after {
    content: url(../assets/nav/hover.png);
    padding-left: 10px;
    opacity: 0;
}

.navigation__link:hover {
    color: #33333380;
}

.navigation__link:hover::after {
    transition: .5s;
    opacity: 0.8;
    padding-left: 16px;
}

.chapter_nav {
    display: flex;
    flex-wrap: wrap;
}

.chapter_nav .navigation__list-item {
    width: 50%;
}

.drag_and_drop {
    position: absolute;
    z-index: 500;
    filter: drop-shadow(0px 0px 5px #00000050);
}

.main_visual_container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
}

.main_visual {
    width: 600px;
    height: 600px;
    position: relative;
    background-image: url(../assets/top/10.png);
    background-size: cover;
    display: none;
}

.fadeIn_top {
    animation-name: fadeIn_top;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}

@keyframes fadeIn_top {
    0% {}

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.now_contents img {
    width: 230px;
    z-index: 700;
    position: absolute;
    top: 60vh;
    right: -100px;
}

.star {
    animation-name: rotate_contents;
    animation-iteration-count: infinite;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-direction: normal;
    filter: drop-shadow(0px 0px 10px #00000050);
}

@keyframes rotate_contents {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.now_contents {
    display: none;
}

.now_contents a img {
    transition: .3s;
}

.now_contents a:hover img {
    width: 240px;
    top: 59.5vh;
    right: -105px;
}

.member_container {
    text-align: center;
    margin: 24px 160px;
}

.member_set {
    display: flex;
    justify-content: center;
}

.member_icon {
    border-radius: 50%;
    width: 200px;
    filter: drop-shadow(0px 0px 5px #00000050);
}

.member_name {
    font-weight: 700;
    font-size: 2.4rem;
}

.member_link {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.member_link li {
    margin: 4px;
}

.member_link img {
    width: 40px;
}

.goods_container,
.movie_container {
    text-align: center;
    margin-bottom: 80px;
}

.goods_details {
    border: solid 1px #333;
    padding: 40px 16px;
    display: flex;
    justify-content: space-around;
}

.goods_image {
    width: 500px;
}


.goods_note {
    width: 400px;
    text-align: left;
}

.goods_note p {
    margin-bottom: 16px;
}

.goods_link img {
    width: 100px;
}

.movie_details {
    border: solid 1px #333;
    padding: 40px 16px;
}

.movie_note {
    padding-top: 24px;
}

.movie_details iframe {
    width: 80%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.movie_details video {
    width: 80%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.schedule_details {
    border: solid 1px #333;
    padding: 40px 40px;
    margin-bottom: 24px;
}

.schedule_date {
    font-weight: 700;
    font-size: 1.2rem;
}

.chapter_container {
    display: flex;
    justify-content: center;
}

.chapter_container ul {
    width: 600px;
}

.chapter_container .slick-initialized .slick-slide {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chapter_container .slick-dots {
    bottom: -50px;
}

.chapter_container img {
    max-width: 300px;
    max-height: 300px;
}

.chapter_container a {
    display: inline-block;
    transition: .3s;
}

.chapter_container a:hover {
    opacity: 0.7;
}

.slick-prev:before,
.slick-next:before {
    color: #333;
}

.character_container {
    padding-bottom: 80px;
}

.character_calender {
    width: 800px;
    height: 500px;
    margin: 0 auto;
}

.character_calender .slick-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.character_calender h2 {
    font-size: 2rem;
}

.character_calender table {
    border-collapse: collapse;
}

.character_calender table tr td {
    border: 1px solid #333;
    border-collapse: unset;
    width: 90px;
    height: 80px;
    padding: 5px 10px;
}

.character_calender table ul {
    width: 90px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.character_calender .slick-initialized .slick-slide {
    height: 500px;
}

.character_birthday {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.character_calender table li img {
    width: 40px;
    border-radius: 100%;
}

.character_calender table li a {
    transition: .3s;
}

.character_calender table li a:hover {
    opacity: 0.5;
}

.character_calender .slick-dots {
    bottom: auto;
}

.chara_container {
    margin-bottom: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    background-color: #fff;
    position: relative;
    padding: 24px;
}

.chara_image {
    width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chara_image_big {
    max-width: 400px;
    max-height: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.chara_image_mini {
    position: absolute;
    display: none;
    left: 0;
    opacity: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.chara_details {
    width: 500px;
}

.chara_details>div {
    margin: 16px 0;
    padding: 0 0 16px;
    border-bottom: solid 1px #333;
}

.chara_details>div:first-child {
    margin-top: 0;
}

.chara_status {
    border: unset;
    width: 100%;
}

.chara_name_main {
    display: flex;
    align-items: center;
}

.chara_name p:first-child {
    font-weight: 700;
    font-size: 1.4rem;
}

.chara_name h4 {
    font-size: 1.2rem;
    padding-left: 8px;
    padding-top: 6px;
    line-height: 1.4rem;
}

.chara_profile {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.chara_profile dl {
    display: flex;
    width: 50%;
}

.chara_profile dt {
    width: 40%;
}

.chara_profile dd {
    width: 50%;
}

.chara_like ul {
    display: flex;
}

.chara_like ul li:first-child {
    width: 10%;
}

.chara_like ul li:last-child {
    width: 90%;
}

.chara_status dl {
    display: flex;
}

.chara_status dt {
    font-weight: 700;
    width: 30%;
}

.chara_status dd {
    width: 30%;
}


#layer {
    height: 100%;
}

.chapter_main_visual_container {
    width: 80%;
    height: 100vh;
}

.chapter_main_visual {
    margin-top: 120px;
    position: relative;
}

.chapter_main_background {
    width: 100%;
    position: absolute;
    z-index: -10;
    filter: blur(4px);
}

.chapter_main_front {
    max-width: 400px;
    max-height: 200px;
    position: absolute;
    z-index: 500;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    filter: drop-shadow(0px 0px 30px #00000090);
}

.chapter_main_character {
    width: 100%;
    display: flex;
    justify-content: center;
}

.chapter_main_character img {
    width: 100%;
}


.sp {
    display: none;
}

.pc {
    display: block;
}

.mt30 {
    margin-top: 30px;
}

.mb30 {
    margin-bottom: 30px;
}

@media screen and (max-width:1200px) {
    .now_contents img {
        right: 100px;
    }

    .now_contents a:hover img {
        width: 240px;
        top: 59.5vh;
        right: 95px;
    }
}

@media screen and (max-width:767px) {
    section {
        width: 90%;
        padding: 0;
        margin-bottom: 80px;
    }

    .main_visual_container {
        width: 100%;
        height: 100vh;
        position: static;
        margin-bottom: 0;
    }

    .main_visual {
        display: block;
    }


    h1 {
        padding: 120px 0 20px;
        font-size: 3rem;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .nav_container img {
        height: 40px;
        padding-top: 40px;
    }

    .navigation {
        width: 100%;
    }

    .navigation__list {
        padding: 80px 56px 0;
    }

    .now_contents img {
        width: 60%;
        top: 60%;
        right: 20%;
    }

    .now_contents a:hover img {
        width: 60%;
        top: 60%;
        right: 20%;
    }

    .member_container {
        margin: 40px 0;
    }

    .member_set {
        flex-direction: column;
        align-items: center;
    }

    .goods_details {
        border: solid 1px #333;
        flex-direction: column;
        align-items: center;
        padding: 40px 8px;
    }

    .goods_image {
        width: 90%;
    }

    .goods_note {
        width: 90%;
    }

    .goods_note p {
        margin: 24px 0;
    }

    .character_container {
        width: 100%;
    }

    .character_calender {
        width: 95%;
        height: auto;
    }

    .character_calender table {
        width: 95%;
    }

    .character_calender table ul {
        flex-direction: row;
        height: auto;
    }

    .character_calender table tr {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .character_calender table tr td {
        width: 80%;
        height: auto;
        padding: 8px 16px;
    }

    .character_birthday {
        flex-wrap: nowrap;
    }

    .character_calender>li {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .character_calender table li a {
        margin-left: 16px;
    }

    .character_calender table li img {
        width: 60px;
    }

    .chapter_container img {
        max-width: 100%;
        max-height: 100%;
    }

    .chapter_container ul {
        width: 300px;
    }

    .chara_details {
        width: 100%;
    }

    .chara_container {
        display: flex;
        flex-direction: column;
    }

    .chara_image {
        width: 100%;
        height: 400px;
        background-color: #fff;
        padding: 16px 0;
    }

    .chara_container {
        background-color: transparent;
    }

    .chara_container {
        margin-top: 120px;
    }

    .chara_status dl {
        flex-wrap: wrap;
    }

    .chara_status dt {
        width: 13%;
    }

    .chara_status dd {
        width: 35%;
    }

    .chara_name_main {
        flex-direction: column;
        align-items: start;
    }

    .chara_like ul li:first-child {
        width: 20%;
    }

    .chara_like ul li:last-child {
        width: 80%;
    }

    h3 {
        font-size: 2.8rem;
    }

    .chara_name h4 {
        padding: 0;
        padding-bottom: 16px;
    }

    .chara_details {
        color: #fff;
        z-index: 800;
    }

    .chara_details>div {
        border-bottom: solid 1px #fff !important;
    }

    .chara_profile dt {
        width: 40%;
    }

    .chara_profile dd {
        width: 50%;
    }

    .chapter_main_visual_container {
        width: 100%;
        position: relative;
    }

    .chapter_main_background {
        width: 100%;
        filter: blur(2px);
    }

    .chapter_main_front {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
}


@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.top {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.top_container {
    position: absolute;
    top: 15%;
    height: 100%;
}

.top_img {
    height: 70%;
    display: flex;
}

.top_img a {
    height: 100%;
    display: flex !important;
    align-items: end;
}

.top_img a img {
    object-fit: contain;
    -webkit-box-reflect: below 10px -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, .3)), to(transparent));
}

.top_container .infiniteslide_wrap {
    overflow: unset !important;
    height: 100%;
}

.top_container .infiniteslide_wrap::before {
    content: "";
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: -15%;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.75) 10%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.75) 90%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
    pointer-events: none;
}