@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&display=swap&subset=japanese");

.btn {
    background-color: var(--theme_color1);
}

.badge {
    background-color: var(--theme_color1);
}

[x-cloak] {
    display: none !important;
}

html {
    width: 100%;
    height: -webkit-fill-available;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    -webkit-text-size-adjust: 100%;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    height: 100vh;
    height: -webkit-fill-available;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #3b4043;
    background: #fff;
    word-wrap: break-word;
    position: relative;
    padding: 0;
    margin: 0;
}

input,
textarea {
    font-size: 16px;
}

/* content */

.content {
    padding: 3rem 1rem;
    width: 100%;
    min-height: 100vh;
    background-color: var(--theme_color2);
}

.content_inner {
    margin: 0 auto;
    padding: 3rem 0;
    width: 100%;
    max-width: 765px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    font-size: 16px;
    text-align: left;
}

.content_inner h1 {
    text-align: center;
    font-size: 4rem;
}

@media screen and (max-width: 768px) {
    .content_inner {
        font-size: 14px;
    }
    .content_inner h1 {
        font-size: 2.1rem;
    }
}

.text_primary {
    color: var(--theme_color1) !important;
}

.pre_loader {
    position: fixed;
    inset: 0;
    background-color: var(--theme_color1);
    z-index: 102;
}

.pre_loader.fade_out {
    animation: preLoaderFadeout 0.3s linear;
}
.pre_loader.loaded {
    display: none;
}

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

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}
.loader {
    color: #ffffff;
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.loader:before,
.loader:after {
    content: "";
    position: absolute;
    top: 0;
}
.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader:after {
    left: 3.5em;
}
@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
