@charset "UTF-8";

/* 筑紫のクラスに適用 */
/* font-family: "fot-tsukuaoldmin-pr6n",
sans-serif;
font-weight: 300;
font-style: normal; */

/* ローディングアニメーション */
.loader-bg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: linear-gradient(180deg, #EDE8E8 0vh, #d6bfbf 100vh);
    display: flex;
    justify-content: center;
    align-items: center;
}

.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: #BB8A31;
    font-size: 7px;
    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;
    }
}

body {
    overflow: hidden;
    background: linear-gradient(180deg, #EDE8E8 0vh, #d6bfbf 100vh);
}


/*sp*/
@media screen and (max-width:767px) {

    .start,
    .question,
    .last {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .question,
    .last {
        display: none;
    }

    /* カード類まとめてサイズなど指定 */
    .card_start,
    .card_question,
    .card_last {
        width: 90%;
        position: absolute;

    }

    /* ボタン類まとめて指定 */
    .start_button,
    .yes_button,
    .no_button,
    .retry-button,
    .twitter-button {
        width: 221px;
        height: 54px;

        display: flex;
        justify-content: center;
        align-items: center;

        position: relative;
    }

    .q_button {
        position: relative;
        width: 221px;
        height: 124px;

        display: flex;

        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding-top: 60%;
    }

    .last-button {
        position: relative;
        height: 124px;

        display: flex;

        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding-top: 15%;
    }

    /* ボタン画像まとめて指定 */
    .start_img,
    .yes_img,
    .no_img,
    .retry-img,
    .twitter-img {
        width: 221px;
        height: 54px;
        position: absolute;
    }

    /* ボタンテキストまとめて指定 */
    .start_text,
    .yes_text,
    .no_text,
    .retry-text,
    .twitter-text {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 27px;
        color: #ECE7E7;
        position: absolute;
    }

    .start_button {
        padding-top: 120%;
    }

    .question_circle {
        width: 75%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 45%;
    }

    .circle {
        width: 100%;
        position: absolute;
    }

    .question_text {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 35px;
        color: #202C2B;
        position: absolute;
    }

    .p-center {
        text-align: center;
    }

    .yes_button {
        padding-bottom: 10%;
    }

    /* 結果画面 */
    .imgin-1 {
        position: relative;
        height: 40%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 60%;
    }

    .imgin-2 {
        position: absolute;
        width: 180px;
        padding-top: 8vh;
    }

    .busyo_ex {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .busyo_name {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #202C2B;
        font-size: 40px;
        padding-bottom: 30vh;
    }

    .retry-button {
        padding-bottom: 10%;
    }

    .twitter-link {
        text-decoration: none;
    }

    .pc {
        display: none;
    }

}

/* PC,tablet */
@media screen and (min-width:768px) {
    body {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .start,
    .question,
    .last {
        display: none;
    }

    .pc {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

    }

    .pc img {
        width: 600px;
        opacity: 0.3;
    }

    .pc span {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 50px;
        color: #202C2B;

        position: absolute;
    }
}