@media (orientation: portrait) {
    html {
        overflow: hidden;
    }
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

html, body, .container {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont;
    background-color: #FFFFFF;
}

@media (orientation: portrait) {
    body {
        padding:
            env(safe-area-inset-top, 44px)
            env(safe-area-inset-right, 0px)
            env(safe-area-inset-bottom, 34px)
            env(safe-area-inset-left, 0px);
    }
}
@media (orientation: landscape) {
    body {
        padding:
            env(safe-area-inset-top, 0px)
            env(safe-area-inset-right, 0px)
            env(safe-area-inset-bottom, 21px)
            env(safe-area-inset-left, 0px);
    }
}

.text-primary {
    color: #232323;
}

.text {
    letter-spacing: 0.04em;
}

.container {
    text-align: center;
}

.contents {
    margin-top: 30px;
    padding-bottom: 24px;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-60%) translateX(-50%);
    transform: translateY(-60%) translateX(-50%);
}

.warning {
    width: auto;
    margin-bottom: 16px;
}

.warning > svg {
    padding-top: 4px;
    padding-bottom: 4px;
}

.notice {
    margin-bottom: 16px;
}

.notice > h1 {
    margin: 0;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 160%;
}

.description {
    margin: auto;
    width: 100%;
}

.description > p {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.02em;
}

.logo {
    margin-top: 88px;
}