.marker {
    background: linear-gradient(transparent 60%, #ff9 60%);
}

.btn {
    cursor: pointer;
    display: block;
    padding: 1.4rem;
    background-color: rgb(28, 113, 241);
    border: transparent;
    border-radius: 5rem;
    font-family: "Noto sans JP", Sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s, background-color 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

.btn:disabled {
    cursor: not-allowed;
    background-color: rgb(156, 156, 156);
    color: rgba(255, 255, 255, 0.616);
}

.reflection {
    overflow: hidden;
    position: relative;
}

.reflection:after {
    content: " ";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: -180px;
    width: 30px;
    background: rgba(255, 255, 255, 0.548);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
    animation: reflection 3s ease-in-out infinite;
}

.reflection + .reflection:after {
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
}

.reflection:hover:after {
    display: none;
}

@keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    55% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.75;
    }
    56% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.badge {
    display: block;
    padding: 0.8rem;
    background-color: rgb(28, 113, 241);
    font-size: 1em;
    border-radius: 5px;
    color: #fff;
}

.fade {
    display: none;
    opacity: 0;
    /* transform: translateY(-100vh); */
}

.fade.show {
    display: block;
    animation: fadeIn 0.6s linear forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.input_with_unit {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem;
    max-width: 100%;
    color: #787878;
    font-size: 16px;
    border: none;
    background-color: var(--theme_color2);
}
.input_with_unit.disabled {
    background-color: #c5c5c5;
}

.input_with_unit input[type="text"],
.input_with_unit input[type="date"],
.input_with_unit input[type="time"],
.input_with_unit input[type="month"],
.input_with_unit input[type="number"] {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border: none;
    background-color: transparent;
    color: #787878;
    outline: none;
}
