/* モーダル専用のスタイル（既存のデザインに影響しません） */
.line-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

.line-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-modal-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.line-modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.line-modal-header h2 {
    color: #333;
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.line-modal-header p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.line-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.line-close-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.line-store-selection {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* スマホ対応 */
@media (max-width: 480px) {
    .line-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .line-modal-header h2 {
        font-size: 18px;
    }
}




.store-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

.store-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-modal-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.store-modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.store-modal-header h2 {
    color: #333;
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: bold;
}

.store-modal-header p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.store-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.store-close-btn:hover {
    background-color: #f5f5f5;
    color: #333;
}

.store-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* モーダル内のボタンは既存のスタイルを継承しつつ幅を100%に */
.store-modal-buttons .modal-button {
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

/* スマホ対応 */
@media (max-width: 480px) {
    .store-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .store-modal-header h2 {
        font-size: 18px;
    }
}

.icon-header-box .in_name{
  white-space: nowrap;
}
