/* あしやの お散歩 全体スタイル */
.ashiyano-walk-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #4a4a4a;
}

.ashiyano-panel {
    background: #fff8f6;
    border: 2px solid #ffe3dc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ashiyano-option-group {
    margin-bottom: 15px;
}

.ashiyano-option-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #e86b59;
}

.ashiyano-radio-group {
    display: flex;
    gap: 10px;
}

.ashiyano-radio-btn {
    flex: 1;
    text-align: center;
    background: #ffffff;
    border: 1px solid #ffd1c7;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ashiyano-radio-btn input {
    display: none;
}

.ashiyano-radio-btn:has(input:checked) {
    background: #ff8e7b;
    color: #ffffff;
    font-weight: bold;
    border-color: #ff8e7b;
}

.ashiyano-btn-primary {
    width: 100%;
    background: #ff8e7b;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 142, 123, 0.4);
    transition: background 0.2s ease;
}

.ashiyano-btn-primary:hover {
    background: #e87764;
}

/* マップエリア */
#ashiyano-map {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* スポットカード */
.ashiyano-spot-card {
    background: #ffffff;
    border-left: 6px solid #ff8e7b;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ashiyano-spot-card h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #333;
}

.ashiyano-spot-genre {
    display: inline-block;
    background: #ffebe8;
    color: #e86b59;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 10px;
    margin-bottom: 6px;
}

/* マイページ & Google ログインエリア */
.ashiyano-user-card {
    background: #ffffff;
    border: 2px solid #e2f0d9;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.ashiyano-stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 10px;
}

.ashiyano-stat-item .val {
    font-size: 20px;
    font-weight: bold;
    color: #438a5e;
}

.ashiyano-stat-item .lbl {
    font-size: 11px;
    color: #777;
}

/* チェックインボタン */
.ashiyano-checkin-btn {
    background: #68b0ab;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s ease;
}

.ashiyano-checkin-btn:hover {
    background: #4d8f8a;
}

.ashiyano-checkin-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}