@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700;800;900&display=swap');

* {
    box-sizing: border-box;
}

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

body {
    min-width: 1200px;
    color: #331b1b;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

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

.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url('/v2/img/static_page/media/osakahaodoru/kv/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.loading__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: spin-and-fade;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
    display: block;
    width: 800px;
}

@keyframes spin-and-fade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        top: 50%;
        left: 50%;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3) rotate(-900deg);
        top: 0;
        left: 20%;
    }
}

.loading__image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    display: block;
    width: 750px;
    animation-name: zoom-and-shake;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-delay: 2.3s;
}

@keyframes zoom-and-shake {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3) rotate(0deg);
    }
    5% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.4) rotate(-15deg);
    }
    15% {
        transform: translate(-50%, -50%) scale(0.6) rotate(-15deg);
    }
    30% {
        transform: translate(-50%, -50%) scale(0.9) rotate(15deg);
    }
    45% {
        transform: translate(-50%, -50%) scale(1.2) rotate(-15deg);
    }
    60% {
        transform: translate(-50%, -50%) scale(1.5) rotate(15deg);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.7) rotate(-15deg);
    }
    85% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.9) rotate(0deg);
    }
    90% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.9) rotate(0deg);
    }
    95% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.9) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2) rotate(0deg);
    }
}

.fadeIn {
    animation: fadeIn 2s forwards;
    animation-delay: 4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

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

.page-top-icon__image {
    width: 150px;
    filter: drop-shadow(0 0 1px white);
}

.menu-button {
    position: fixed;
    top: 20px;
    right: 20vw;
    z-index: 1000;
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.menu-button--hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.menu {
    position: fixed;
    z-index: 1000;
    right: -100vw;
    width: 100%;
    height: max(100vh, 100%);
    overflow: auto;
    transition: right 1s, opacity 1s;
    background-color: #fff9d8;
    opacity: 0;
    border-bottom: none;
}

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

.menu__header {
    padding-top: 24px;
    height: 80px;
    border-bottom: 1px solid #e0dab8;
}

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

.menu__header--logo {
    display: block;
    width: 205px;
}

.close-button {
    position: absolute;
    z-index: 1000;
    right: 20%;
    display: block;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.menu__content {
    padding-top: 0;
    background-image: url('/v2/img/static_page/media/osakahaodoru/h2_bg.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color:rgba(255,249,216,0.3);
    background-blend-mode:lighten;
}

.nav__content {
    margin: 0 auto 16px;
}

.nav-detail__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75px;
    color: black;
    font-size: 20px;
    border-bottom: 1px solid #e0dab8;
}

.nav-detail:not(:last-child):after {
    display: none;
}

.sns-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 40px;
}

.sns-buttons a {
    width: 40px;
    height: 40px;
}

.sns-buttons a img {
    width: 100%;
    height: 100%;
}

.header {
    position: relative;
    width: 100%;
    height: 780px;
    background-image: url('/v2/img/static_page/media/osakahaodoru/kv/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header__images--kv {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.header__image--kv {
    display: block;
    width: 750px;
    opacity: 0;
}

.header__image--side {
    position: relative;
    top: -50px;
    display: block;
    width: 58px;
    opacity: 0;
}

.slideInTop {
    animation: slideInTop 1.5s forwards;
    animation-delay: 4s;
}

@keyframes slideInTop {
    0% {
        transform: translateY(-300px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slideInBottom {
    animation: slideInBottom 1.5s forwards;
    animation-delay: 4s;
    transform: rotate(180deg);
}

@keyframes slideInBottom {
    0% {
        transform: translateY(300px) rotate(180deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(180deg);
        opacity: 1;
    }
}

.header__texts {
    position: absolute;
    top: 5px;
    right: 0;
    left: 65px;
    margin: 0 auto;
    width: 750px;
    height: 100%;
}

.header__title {
    display: block;
    width: 710px;
    opacity: 0;
    animation: poyon 1.5s linear 0s 1;
    animation-delay: 5.5s;
    animation-fill-mode: forwards;
}

@keyframes poyon {
    0% {
        opacity: 1;
        transform: scale(0.8, 1.4) translate(0%, -100%);
    }
    10% {
        transform: scale(0.8, 1.4) translate(0%, -15%);
    }
    20% {
        transform: scale(1.4, 0.6) translate(0%, 30%);
    }
    30% {
        transform: scale(0.9, 1.1) translate(0%, -10%);
    }
    40% {
        transform: scale(0.95, 1.2) translate(0%, -30%);
    }
    50% {
        transform: scale(0.95, 1.2) translate(0%, -10%);
    }
    60% {
        transform: scale(1.1, 0.9) translate(0%, 5%);
    }
    70% {
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
    100% {
        opacity: 1;
        transform: scale(1.0, 1.0) translate(0%, 0%);
    }
}

.header__text {
    position: relative;
    top: -40px;
    left: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 210px;
    color: white;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    background-image: url('/v2/img/static_page/media/osakahaodoru/kv/copyright.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeInSlow 1.5s forwards;
    animation-delay: 5.5s;
}

@keyframes fadeInSlow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.synopsis {
    position: relative;
    padding-top: 25px;
    width: 100%;
    background-image: url('/v2/img/static_page/media/osakahaodoru/bg1.svg');
    background-size: 240px 240px;
    background-repeat: repeat;
}

.character {
    position: relative;
    width: 100%;
    background-image: url('/v2/img/static_page/media/osakahaodoru/bg1.svg');
    background-size: 240px 240px;
    background-repeat: repeat;
}

.comment {
    position: relative;
    width: 100%;
    background-image: url('/v2/img/static_page/media/osakahaodoru/bg1.svg');
    background-size: 240px 240px;
    background-repeat: repeat;
}

.book {
    position: relative;
    width: 100%;
    background-image: url('/v2/img/static_page/media/osakahaodoru/bg2.svg');
    background-size: 20px 20px;
    background-repeat: repeat;
}

.stage {
    position: relative;
    width: 100%;
    background-image: url('/v2/img/static_page/media/osakahaodoru/bg3.svg');
    background-size: 20px 20px;
    background-repeat: repeat;
}

.section__content {
    position: relative;
    margin: 0 auto;
    padding-top: 115px;
    padding-bottom: 60px;
    width: 660px;
    background-image: url('/v2/img/static_page/media/osakahaodoru/h2_bg.svg');
    background-size: 660px auto;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 2;
}

.section__content--synopsis {
    padding-top: 150px;
}

.section__content--character {
    padding-bottom: 1px;
    width: 750px;
}

.section__content--comment {
    padding-top: 90px;
    padding-bottom: 100px;
    width: 840px;
    background-image: none;
}

.section__content--book {
    padding-bottom: 40px;
}

.section__content--bg {
    position: absolute;
    top: -50px;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: block;
    width: 658px;
    z-index: 1;
}

.section__image--bottom {
    position: absolute;
    bottom: -80px;
    z-index: 1;
    display: block;
    width: 100%;
}

@media screen and (min-width: 1400px) {
    .section__image--bottom {
        bottom: -115px;
    }
}

@media screen and (min-width: 1300px) and (max-width: 1399px) {
    .section__image--bottom {
        bottom: -95px;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1299px) {
    .section__image--bottom {
        bottom: -85px;
    }
}

.section__h2 {
    margin: 0 auto 32px;
    width: 100%;
    height: 70px;
    color: #d10000;
    font-size: 50px;
    font-weight: 900;
    text-align: center;
}

.section__h3 {
    margin: 0 auto 24px;
    color: #ff0005;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.section__header--sub {
    margin-bottom: 24px;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
}

.section__header--sub-l {
    margin-bottom: 24px;
    padding-left: 40px;
    font-size: 36px;
    font-weight: 900;
}

.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin: 24px auto;
    width: 475px;
    height: 90px;
    color: white;
    font-size: 30px;
    font-weight: 900;
    background-color: #d10000;
    border: 5px solid white;
    border-radius: 45px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}

.triangle {
    position: absolute;
    right: 32px;
    width: 0;
    height: 0;
    border-radius: 3px;
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.bg__image--candy {
    position: absolute;
    top: 25%;
    left: -25%;
    display: block;
    width: 188px;
}

.bg__image--exclamation {
    position: absolute;
    top: 58%;
    right: 30px;
    display: block;
    width: 75px;
}

.bg__image--takoyaki {
    position: absolute;
    right: -35%;
    bottom: 15%;
    display: block;
    width: 240px;
}

.bg__image--tsutenkaku {
    position: absolute;
    bottom: 0;
    left: -20%;
    display: block;
    width: 130px;
}

.synopsis__text {
    font-size: 24px;
    font-weight: 500;
    line-height: 2;
    text-align: center;
}

.synopsis__text--bomb {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-image: url('/v2/img/static_page/media/osakahaodoru/synopsis/bomb.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.synopsis__text--emphasis {
    display: inline-flex;
    justify-content: center;
    background-image: url('/v2/img/static_page/media/osakahaodoru/synopsis/emphasis.svg');
    background-size: auto;
    background-position: top;
    background-repeat: no-repeat;
}

.synopsis__text--underline {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: url('/v2/img/static_page/media/osakahaodoru/synopsis/under_line.svg');
    background-size: 100% 15px;
    background-position-y: 24px;
    background-repeat: no-repeat;
}

.synopsis__text--wavyline {
    display: flex;
    justify-content: center;
    width: 100%;
    background-image: url('/v2/img/static_page/media/osakahaodoru/synopsis/wavy_line.svg');
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;
}

.character__contents {
    margin-bottom: 32px;
    padding: 40px 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
}

.character__content {
    position: relative;
    margin: 0 auto 80px;
    padding-top: 24px;
    width: 670px;
    height: 635px;
    border-radius: 17px;
}

.character__content--blue {
    background-color: #d9fff5;
}

.character__content--pink {
    background-color: #eadced;
}

.character__content--osaka {
    margin-bottom: 0;
    height: 380px;
    background-image: url('/v2/img/static_page/media/osakahaodoru/character/bg2.svg');
    background-size: 360px auto;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.character__content--cabinet {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 24px;
    height: 235px;
    overflow: visible;
}

.character__content--info-osaka {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.character__content--rectangle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto 80px;
    width: 590px;
    height: 220px;
    background-color: rgba(209, 239, 255, 0.9);
    border-radius: 20px;
    z-index: 1;
}

.character__content--circles {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 96px;
    width: 100%;
    z-index: 1;
}

.character__content--circle {
    position: relative;
    z-index: 1;
    width: 250px;
    height: 240px;
    border-radius: 50%;
}

.circle--position {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.bg-color--pink {
    background-color: rgba(255, 235, 244, 0.9);
}

.bg-color--blue {
    background-color: rgba(209, 239, 255, 0.9);
}

.character__content--asou {
    position: relative;
    left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.character__content--image {
    display: block;
    width: 190px;
    height: 190px;
}

.image--asou {
    width: 230px;
}

.character__content--position-w {
    position: relative;
    top: -68px;
}

.character__content--position-m {
    position: relative;
    top: -75px;
}

.character__content--position-osaka {
    position: relative;
    top: -13px;
}

.character__content--deformed-w {
    position: relative;
    display: block;
    margin: 0 auto 12px;
    width: 85px;
}

.character__content--deformed-m {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 105px;
}

.character__content--info {
    width: 340px;
}

.character__content--role {
    width: 100%;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.character__content--name {
    margin: 0 auto 16px;
    width: 100%;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.character__content--description {
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
}

.pink {
    color: #ff3c8f;
    margin-bottom: 0;
}

.blue {
    color: #00a3f7;
    margin-bottom: 0;
}

.character__content--bg1 {
    position: absolute;
    top: 60px;
    left: -30px;
    display: block;
    width: 730px;
    z-index: 0;
}

.character__content--bg {
    position: relative;
    right: 24px;
    display: block;
    width: 416px;
    height: 260px;
}

.character__content--cooperation {
    position: relative;
    top: -50px;
    display: block;
    margin: 0 auto;
    width: 80px;
}

.character__content--vs {
    position: relative;
    top: 16px;
    display: block;
    margin: 0 auto;
    width: 160px;
}

.comment__content {
    position: relative;
    margin: 0 auto;
    padding-top: 70px;
    width: 800px;
    height: 800px;
    background-color: #d1fff3;
    border-radius: 50%;
    overflow: visible;
}

.comment__content--bg {
    position: absolute;
    top: 0;
    z-index: 2;
    display: block;
    width: 100%;
}

.comment__title {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    padding-top: 8px;
    width: 100%;
    height: 110px;
    color: white;
    font-size: 50px;
    font-weight: 900;
    background-image: url('/v2/img/static_page/media/osakahaodoru/comment/ribon.svg');
    background-size: 615px auto;
    background-position: center;
    background-repeat: no-repeat;
}

.comment__text {
    position: relative;
    z-index: 2;
    font-size: 24px;
    line-height: 1.8;
    text-align: center;
}

.book__image {
    display: block;
    margin: 0 auto 16px;
    width: 320px;
}

.book__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 24px;
    padding: 16px 0;
    width: 620px;
    background-color: white;
    border-radius: 10px;
}

.book__title {
    width: 100%;
    color: black;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.book__author {
    width: 100%;
    font-size: 24px;
    text-align: center;
}

.book__price {
    width: 100%;
    color: #666666;
    font-size: 24px;
    text-align: center;
}

.stage__images {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.stage__image--poster {
    display: block;
    width: 360px;
}

.stage__image--side-l {
    position: relative;
    top: 140px;
    display: block;
    width: 110px;
    height: fit-content;
}

.stage__image--side-r {
    display: block;
    width: 100px;
    height: fit-content;
}

.stage__title {
    margin: 0 auto 16px;
    width: fit-content;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.stage__info {
    margin: 0 auto 16px;
    padding: 16px 0;
    width: 620px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.stage__text {
    font-size: 24px;
    text-align: center;
}

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

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

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