*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

details summary {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
details summary::-webkit-details-marker {
    display: none;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
background-color: #f0f2f5;
}

*::-webkit-scrollbar-thumb {
background: #043e8a;
}

button {
    border: none;
    background: none;
    display: block;
    cursor: pointer;
}

html {
    font-size: 2.666666666666667vw;
    width: 100%;
    height: 100%;
    height: -webkit-fill-availabel;
    min-height: 100%;
}
body {
    position: relative;
    overflow-x: hidden;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    background-color: #000;
    color: #fafafa;
    font-size: 1.5rem;
    /* font-family: $jp; */
    font-family: 'Noto Sans JP', sans-serif;
    font-stretch: 50%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt" 1;
    text-align: justify;
    line-height: 1.571;
}
.wrapeer {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 66.7rem;
    padding: 1.6rem;

    max-width: 768px;
}
.c-header {
    font-family: 'Anton', Impact, sans-serif;
    line-height: 1;
}
.c-header .-time {
    display: block;
    text-align: center;
    font-size: 6.7rem;
}
.c-header .-day {
    display: block;
    text-align: right;
    font-size: 3.2rem;
}

.c-btn {
    border-radius: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.c-icon {
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fafafa;
    overflow: hidden;

}
.c-icon svg {
    width: 60%;
    fill: #282828;
}

.c-btn.-b {
    background-color: #1D9BF0;
    color: #fafafa;
}

.content {
    position: relative;
}

.character {
    position: absolute;
    top: -8rem;
    left: -1.6rem;
    z-index: 2;
    display: block;
    width: calc(50% + 1.6rem);
    height: calc(20.4rem + 0.8rem + 8rem);
    /* opacity: 0; */

}
.character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message {
    position: relative;
    z-index: 3;
    width: 50%;
    margin-left: auto;
    height: 20.4rem;
    margin-top: 0.8rem;
    padding: 1.6rem 0.8rem 1.6rem 1.6rem;
    background: #fafafa;
    border-radius: 1.2rem;
}
.message__text {
    position: absolute;
    background: blue;
    top: -1.3em;
    left: 0;
    padding: 0.1rem 1rem;
    color: #fff;
}
.message__box {
    color: #333;
    overflow-y: scroll;
    height: 100%;
    padding-right: 1.2rem;
}


#table {
    width: 100%;
    height: 35.2rem;
    margin-top: 0.8rem;
    border-radius: 1.2rem;
    overflow: hidden;
}

.c-footer {
    margin-top: 1.6rem;
    display: flex;
    justify-content: space-between;
}

.c-footer__btns {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 4.4rem - 1.6rem);
}
.c-footer__btns .c-btn {
    width: calc(50% - 0.8rem);
}

.c-footer__btns .c-btn .-twitter {
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.5em;
}



/* ===================== dialog ===================== */
.myModal {
	position: fixed;
	box-sizing: border-box;
	width: calc( 100vw - 32px );
	max-width: 640px;
	/* max-height: calc( 100vw - 32px ); */
	padding: 16px;
	border: 0;
	opacity: 0;
	transform: scale( .9 );
	transition: opacity 0.4s, transform 0.4s;
	overflow: auto;
}

.myModal.-opening {
	opacity: 1;
	transform: scale( 1 );
}

.myModal::backdrop {
	opacity: 0;
	background: linear-gradient( #1cb5e0, #000046 );
	transition: opacity 0.4s;
}

.myModal + .backdrop {
	opacity: 0;
	background: linear-gradient( #1cb5e0, #000046 );
	transition: opacity 0.4s;
}

.myModal.-opening::backdrop {
	opacity: .8;
}

.myModal.-opening + .backdrop {
	opacity: .8;
}

.c-details {
    position: relative;
    margin: 0 auto 0.8rem;
    width: 100%;
    max-width: 1200px;
    border: 1px solid #d8d8d8;
    border-radius: 0.8rem;
    background: #fff;
}
.c-details .js-summary {
    position: relative;
    padding: 2rem 5rem 2rem 1.6rem;
}
.c-details .js-summary::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    display: block;
    width: 1.4rem;
    height: 1px;
    background-color: #46463e;
}
.c-details .js-summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    display: block;
    width: 1.4rem;
    height: 1px;
    background-color: #46463e;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0, 0, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.25, 0, 0, 1);
    -o-transition: transform 0.3s cubic-bezier(0.25, 0, 0, 1);
    transition: transform 0.3s cubic-bezier(0.25, 0, 0, 1);
    transition: transform 0.3s cubic-bezier(0.25, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.25, 0, 0, 1);
}
.c-details.is-opened .js-summary::after {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}
.c-details .js-content {
    display: block;
    padding: 1.2rem 1.6rem;
    border-top: 1px solid #f0f0f0;
}

.info-modal {

}

.info-modal__content {
    margin-bottom: 2.4rem;
}

.info-modal__headline {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 100;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    border-bottom: 4px dotted #043e8a;
    margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    html {
        font-size: 22px;
    }

    .wrapeer {
        overflow-y: scroll;
        max-height: 100vh;
        min-height: 0;
        margin: 0 auto;
    }
    #table {
        height: 352px;
    }
}