/* =========================================================
モーダル: 他サイト比較モーダル
========================================================= */
.compare-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding-left: 20px;
    padding-right: 20px;
}

.compare-modal .modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 624px;
    position: fixed;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-hidden {
    display: none !important;
}

.compare-modal .modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
}

.compare-modal .modal-title {
    font-size: 18px;
    /* font-weight: bold; */
    padding-top: 20px;
    padding-bottom: 30px
}

.compare-modal .stay-conditions {
    padding-bottom: 10px;
}

#comparePlansContainer {
    width: 100%;
}

#comparePlansContainer .other-site-tile {
    background-color: #ffffff;
    /* background-color: #d32f2f; */
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.compare-modal .modal-content .note {
    width: 100%;
    font-size: 10px;
}

#comparePlansContainer .other-site-tile .site-name {
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

#comparePlansContainer .other-site-tile .plan-price {
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
    white-space: nowrap;

}

#comparePlansContainer .other-site-tile .view-site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 26px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

#comparePlansContainer .other-site-tile .view-site-button:hover {
    background-color: #0056b3;
}

#comparePlansContainer .other-site-tile .view-site-button .icon {
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
}