body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.logo {
    position: relative;
    height: 40px;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 追加: 背景色 */
    z-index: 1000;
    /* 追加: 前面に表示 */
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #000;
}

.footer-logo img {
    height: 120px;
}

.footer {
    background: #452301;
    padding: 32px 0 0 0;
    margin-top: 50px;
}

.footer .footer__top-btn img {
    height: 32px;
}

.footer__title {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

.direction-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* 垂直中央揃え */
    gap: 8px;
    /* ロゴと×の間隔を調整（任意） */
}

.direction-row p {
    margin: 0;
    /* 余白をなくす */
    line-height: 1;
    /* テキストの高さを調整 */
    display: flex;
    align-items: center;
    height: 40px;
    /* ロゴと同じ高さに調整（必要に応じて） */
}

.gradient-text {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(90deg, #4dff00, #ff5e62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.product-img {
    background-color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 12px;
}

.product-card {
    margin-bottom: 30px;
}

.btn-confirm {
    background-color: #4da6ff;
    color: white;
    font-size: 1.2rem;
    padding: 10px 30px;
    border-radius: 12px;
}

.gradient-title {
    background: linear-gradient(90deg, #ffb347 0%, #ff5e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

/* coffeestyle/business-buyout.css に追加 */
.product-img-responsive {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .product-img-responsive {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .product-img-responsive {
        max-width: 90px;
    }
}

/* モーダルを画面中央に表示するためのCSS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    height: auto;
    width: 90vw;
    margin: 0 auto;
    position: relative;
    color: #222;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    .modal {
        padding: 1.2rem;
        max-width: 95vw;
        font-size: 0.95rem;
    }
}