.body {
    position: relative;
    font-family: "M PLUS 2", system-ui;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background-color: #ebebeb;
}
.body::after {
    content: "Now Loading.";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    display: grid;
    place-content: center;
    width: 100%;
    height: 100%;
    background-color: #333;
    color: #fff;
}

.body.-loaded::after {
    animation: fadeOut 0.5s ease 0s 1 both;
    pointer-events: none;
    opacity: 0;
}

.wrap {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background-color: #e0dfdf;
}
.app {
    aspect-ratio: 8 / 16;
}
.app__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 9rem;
}
.app__bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.app__inner {
    padding: 0 5%;
}

/* ============================================ */
.app__start {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    padding: 2rem 0;
}
.app__logo {
    width: 100%;
}
.app__logo img {
    width: 100%;
    object-fit: contain;
}
.app__startBtnArea {
    /* margin: 12rem auto 0; */
    margin: 106% auto 0;
}
.app__startBtn {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.5em 1em;
    color: #fff;
    background-color: #eb6100;
    border: 2px solid #333;
    box-shadow: inset 2px 2px 0 #fff, inset -2px -2px 0 rgba(100,0,0,0.5);
    text-shadow: 0px -2px 0px rgba(100,0,0,0.5);
    
}
.app__startBtn:hover {
    background: #f56500;
}

/* ============================================ */
.loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    /* display: grid; */
    place-content: center;
    padding: 0 5%;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
}

/* ============================================ */
.result {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 0 5%;
    color: #fff;

}
.result ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    list-style: none;
    width: 100%;
    gap: 1em 0;
    height: auto;
    padding: 1rem 5%;
    margin-top: 1rem;
    border: 2px solid #333;
    background-color: #fff;
}
.result ul li article {
    display: grid;
    place-content: center;
}
.result ul li img {
    display: block;
    width: 80%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-1rem);
}
.result ul li:nth-child(1),
.result ul li:nth-child(6) {
    grid-column: 1 / 3;
}
.result ul li:nth-child(2),
.result ul li:nth-child(7) {
    grid-column: 3 / 5;
}
.result ul li:nth-child(3),
.result ul li:nth-child(8) {
    grid-column: 5 / 7;
}
.result ul li:nth-child(4),
.result ul li:nth-child(9) {
    grid-column: 2 / 4;
}
.result ul li:nth-child(5),
.result ul li:nth-child(10) {
    grid-column: 4 / 6;
}

.btnArea {
    margin-top: 1rem;
    margin-bottom: 16px;
    display: grid;
    place-items: center;
}
.serif {
    position: relative;
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
    padding: 0.5em;
}

.serif::before {
    content: "";
    position: absolute;
    top: calc(100%);
    left: calc(50% - 2px);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: 14px solid #333;
    border-bottom: 0;
    transform: translateX(-50%);
}
.serif::after {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    left: calc(50% - 2px);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 12px solid #fff;
    border-bottom: 0;
    transform: translateX(-50%);
}
.shareBtn {
    position: relative;
    margin-top: 1rem;
    padding: 0.5em 1em;
    color: #fff;
    background-color: #eb6100;
    border: 2px solid #333;
    box-shadow: inset 2px 2px 0 #fff, inset -2px -2px 0 rgba(100,0,0,0.5);
    text-shadow: 0px -2px 0px rgba(100,0,0,0.5);
}

/* ============================================ */
dialog {
    padding: 0;
    max-width: 800px;
    width: calc(100% - 3rem);
}
.c-dialog__inner {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100%;
    height: 100svh;
    padding: 32px 5%;
}

.review__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    /* background: #fafafa; */
}
.review__close figure {
    position: relative;
    width: 100%;
    height: 100%;
}
.review__close figure::before,
.review__close figure::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 5px;
    display: block;
    width: calc(100% - 10px);
    height: 2px;
    background-color: #333;
    rotate: 45deg;
}
.review__close figure::after {
    rotate: -45deg;
}
.review__close span {
    display: none;
}
.review__header {}
.review__header .-album {
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.5;
}
.review__header .-artist {
    color: #777;
}
.review__schema {
    margin-top: 1rem;
}
.review__schema__img {}
.review__schema__detail {}
.review__schema__detail .-country {
    margin-top: 0.5rem;
}
.review__schema__detail .-genre {}
.review__schema__detail .-genre dt {
    margin-top: 0.5rem;
    color: #777;
}
.review__schema__detail .-genre dd {}
.review__content {
    margin-top: 0.5rem;
}

/* ============================================ */
/* animation */
.loading {
    display: grid;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    place-content: center;
    text-align: center;
}
.loading figure {
    margin: 0 auto;
    max-width: 10rem;
}
.result {
    display: grid;
    opacity: 0;
    pointer-events: none;
}
body.-result .app__start {
    display: none;
}
body.-result .loading {
    animation: loadAnime 3s linear 0s 1 both;
}
body.-result .result {
    animation: resultAnime 0.3s linear 3s 1 both;
}
body.-result .result ul li img {
    opacity: 1;
    transform: translateY(0rem);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}
.result ul li:nth-child(1) img {
    transition-delay: 3s;
}
.result ul li:nth-child(2) img {
    transition-delay: 3.2s;
}
.result ul li:nth-child(3) img {
    transition-delay: 3.4s;
}
.result ul li:nth-child(4) img {
    transition-delay: 3.6s;
}
.result ul li:nth-child(5) img {
    transition-delay: 3.8s;
}
.result ul li:nth-child(6) img {
    transition-delay: 4s;
}
.result ul li:nth-child(7) img {
    transition-delay: 4.2s;
}
.result ul li:nth-child(8) img {
    transition-delay: 4.4s;
}
.result ul li:nth-child(9) img {
    transition-delay: 4.6s;
}
.result ul li:nth-child(10) img {
    transition-delay: 4.8s;
}


@keyframes loadAnime {
    0% {
        opacity: 1;
        pointer-events: auto;
    }

    99.9% {
        opacity: 1;
        pointer-events: auto;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}

@keyframes resultAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        pointer-events: auto;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    99.9% {
        opacity: 0;
        display: grid;
    }
    100% {
        opacity: 0;
        display: none !important;
    }
}


