@charset "UTF-8";

/* レスポンシブデザイン対応コード */
@media only screen and (min-width: 896px) {
    .pc {
        display: block !important;
    }

    .pc-inline {
        display: inline !important;
    }

    .sp {
        display: none !important;
    }

    .sp-inline {
        display: none !important;
    }

    .br-pc {
        display: none !important;
    }
}

@media only screen and (max-width: 895px) {
    .pc {
        display: none !important;
    }

    .pc-inline {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .sp-inline {
        display: inline !important;
    }
}

a.tel-background-black {
    color: #ffffffff;
}

a.tel-background-white {
    color: black;
}

html {
    scroll-behavior: smooth;
}

.available {
    display: block;
}

.un-available {
    display: none;
}

.opacity-animation {
    opacity: 0;
    transition: opacity 1s;
    -webkit-animation: opacity-animation 1.1s 1 ease forwards;
    animation: opacity-animation 1.1s 1 ease forwards;
}

@-webkit-keyframes opacity-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacity-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

input[readonly] {
    pointer-events: none;
    background-color: yellowgreen;
}

.hidden-flag {
    visibility: hidden;
}

.hidden-flag__disable {
    display: none;
}

.common-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 85px;
}
