@charset "utf-8";

.modal-backdrop.show+.modal-backdrop.show {
    z-index: 1999;
}

#modalDialog2 {
    z-index: 2000;
}

/* お気に入りボタン */
.modal_cartAdd i,
.favorite i {
    font-size: 200%;
}

.favorite.not-check i {
    color: khaki;
}

.favorite.checked i {
    color: var(--main-yellow-color);
}

.favorite .favorite_count {
    color: dimgray;
}

/* search */
button.btn.shadow-0,
span.pointBadge.badge.rounded-pill {
    background-color: #009fc6;
    color: white;
}

button.btn.shadow-0:hover {
    background-color: #007d9c;
}

/* paging */
li.page-item.active .page-link {
    background-color: #009fc6 !important;
    border: none;
    color: white !important;
}

li.page-item .page-link,
.swiper-button-next,
.swiper-button-prev {
    color: #009fc6 !important;
}

/* Loading */
.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 5000;
}

.loading .circles {
    width: 120px;
    height: 100px;
    border-radius: 100%;
    position: absolute;
    top: 45%;
    left: calc(50% - 50px);
}

.loading .circle {
    width: 100%;
    height: 100%;
    position: absolute;
}

.loading .circle .inner {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 5px solid rgba(0, 183, 255, 0.7);
    border-right: none;
    border-top: none;
    background-clip: padding;
    box-shadow: inset 0px 0px 10px rgba(0, 183, 255, 0.15);
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loading .circle:nth-of-type(0) {
    transform: rotate(0deg);
}

.loading .circle:nth-of-type(0) .inner {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.loading .circle:nth-of-type(1) {
    transform: rotate(70deg);
}

.loading .circle:nth-of-type(1) .inner {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.loading .circle:nth-of-type(2) {
    transform: rotate(140deg);
}

.loading .circle:nth-of-type(2) .inner {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.loading .circles .loading {
    -webkit-animation: spin 5s infinite linear;
    animation: spin 5s infinite linear;
}

#headingOne{
    color:var(--main-green-color);
    font-weight: bold;
}
h5.mt-3.mb-1.CateBig{
    color:var(--main-blue-color);
}