* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: #f7fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
}

.container {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.app-header {
    margin-bottom: 25px;
}

.app-header h1 {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 5px;
    font-weight: bold;
}

.app-header .subtitle {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 5px;
    font-weight: 500;
}

.app-header .description {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

h1 {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 10px;
    font-weight: bold;
}

p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.input-section {
    margin-bottom: 20px;
}

.warning-message {
    font-size: 0.9rem;
    color: #e74c3c;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 6px;
    border-left: 3px solid #e74c3c;
    display: none;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 200ms ease-out;
}

.warning-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

input[type="text"]:focus {
    border-color: #2ecc71;
}

button {
    background: #2ecc71;
    color: white;
    border: none;
    height: 56px;
    font-size: 18px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    width: 100%;
    max-width: 200px;
}

button:hover,
button:focus {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

button:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 3px;
}

.result-area {
    margin-top: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 150ms ease-out, transform 150ms ease-out;
}

.result-area.show {
    opacity: 1;
    transform: translateY(0);
}

#forecastMessage {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #222;
}

.weather-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e6f8ef;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.15);
}

.weather-icon-large {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.weather-content {
    flex: 1;
}

.weather-content h3 {
    font-size: 1.3rem;
    color: #2ecc71;
    margin-bottom: 8px;
    font-weight: bold;
}

.weather-content .weather-data {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: normal;
}

.weather-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.weather-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.weather-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin-bottom: 4px;
    font-weight: 500;
}

.weather-value {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: bold;
}

.weather-value small {
    font-size: 0.7rem;
    color: #95a5a6;
    font-weight: normal;
    display: block;
    margin-top: 2px;
}

.weather-content .main-message {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 1.4;
}

.tags {
    margin-top: 10px;
    display: block;
}

.tag {
    display: inline-block;
    background: #E67E7E;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    margin: 2px;
}

.time-suggestion {
    margin-top: 15px;
    padding: 10px;
    background: #E8F5F0;
    border-radius: 8px;
    border-left: 3px solid #52A788;
    text-align: left;
}

.time-suggestion strong {
    color: #2ecc71;
}

.time-suggestion small {
    color: #5A6C7D;
    font-style: italic;
}

.time-suggestion-alt {
    margin-top: 8px;
    padding: 8px;
    background: #f0f7f4;
    border-radius: 6px;
    text-align: left;
}

.time-suggestion-alt small {
    color: #5A6C7D;
    font-size: 0.85rem;
}

.temp-advice {
    margin-top: 8px;
    padding: 8px 12px;
    background: #FFF4E6;
    border-radius: 6px;
    border-left: 3px solid #F39C12;
    font-size: 0.95rem;
    color: #D68910;
    font-weight: 500;
}

.status-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 8px;
    vertical-align: middle;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-good {
    background: #2ecc71;
    color: white;
}

.status-caution {
    background: #f39c12;
    color: white;
}

.status-rain {
    background: #e74c3c;
    color: white;
}

.history-section {
    margin-top: 20px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    display: none;
}

.history-section h4 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 600;
}

.history-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.history-section li {
    font-size: 0.85rem;
    color: #777;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.history-section li:last-child {
    border-bottom: none;
}

.history-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Next 1 Hour Rain Forecast */
.one-hour-rain-forecast {
    margin-bottom: 20px;
}

.one-hour-rain-card {
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 3px solid;
    animation: fadeIn 0.3s ease-out;
}

.one-hour-rain-card.rain-high {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-color: #e74c3c;
    color: white;
}

.one-hour-rain-card.rain-medium {
    background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
    border-color: #f39c12;
    color: white;
}

.one-hour-rain-card.rain-low {
    background: linear-gradient(135deg, #ffd54f 0%, #ffc107 100%);
    border-color: #f1c40f;
    color: #333;
}

.one-hour-rain-card.rain-none {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    border-color: #2ecc71;
    color: white;
}

.rain-forecast-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.rain-icon-large {
    font-size: 4rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.rain-forecast-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0.95;
}

.rain-prob-large {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1;
    margin: 8px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rain-status-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 8px 0;
}

.rain-advice {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 8px;
}

.rain-breakdown {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.breakdown-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.breakdown-time {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.breakdown-prob {
    font-size: 1.2rem;
    font-weight: bold;
}

.breakdown-prob.high {
    color: #ffebee;
}

.breakdown-prob.medium {
    color: #fff3e0;
}

.breakdown-prob.low {
    color: #e8f5e9;
}

/* Clear Sky Alert */
.clear-sky-alert {
    margin-bottom: 20px;
    animation: slideIn 0.4s ease-out;
}

.clear-sky-card {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 5px solid;
    animation: pulse 2s infinite;
}

.clear-sky-card.clear-sky-soon {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-color: #0288d1;
    color: white;
}

.clear-sky-card.clear-sky-coming {
    background: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
    border-color: #43a047;
    color: white;
}

.clear-sky-card.clear-sky-normal {
    background: linear-gradient(135deg, #aed581 0%, #9ccc65 100%);
    border-color: #689f38;
    color: #333;
}

.clear-sky-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.clear-sky-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.clear-sky-time {
    font-size: 1rem;
    margin: 4px 0;
}

.clear-sky-time strong {
    font-size: 1.3rem;
    font-weight: bold;
}

.clear-sky-detail {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 4px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hourly Forecast Chart */
.hourly-forecast {
    margin-top: 20px;
}

.hourly-forecast-container {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 15px;
}

.hourly-forecast-container h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.hourly-chart {
    display: flex;
    gap: 4px;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 200px;
    padding: 10px 0;
    overflow-x: auto;
}

.hourly-item {
    flex: 1;
    min-width: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.hourly-item:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

.hourly-item.recommended {
    background: rgba(46, 204, 113, 0.15);
    border: 2px solid #2ecc71;
    font-weight: bold;
}

.hourly-item.go-now {
    background: rgba(52, 152, 219, 0.2);
    border: 3px solid #3498db;
    box-shadow: 0 0 12px rgba(52, 152, 219, 0.4);
    position: relative;
    animation: glow 2s infinite;
}

.hourly-item.dangerous {
    background: rgba(231, 76, 60, 0.2);
    border: 3px solid #e74c3c;
    position: relative;
}

.hourly-item.dangerous .score-fill {
    opacity: 0.3;
}

.danger-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    z-index: 10;
    pointer-events: none;
}

.go-now-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #3498db;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.5);
    white-space: nowrap;
    z-index: 5;
    animation: bounce 1s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(52, 152, 219, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.7);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.hour-label {
    font-size: 0.7rem;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 500;
}

.hourly-item.recommended .hour-label {
    color: #2ecc71;
    font-weight: bold;
}

.score-bar {
    width: 100%;
    height: 120px;
    background: #e9ecef;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-bottom: 8px;
}

.score-fill {
    width: 100%;
    border-radius: 4px;
    transition: height 0.3s ease;
    position: relative;
}

.score-fill.excellent {
    background: linear-gradient(to top, #2ecc71, #52d681);
}

.score-fill.good {
    background: linear-gradient(to top, #3498db, #5dade2);
}

.score-fill.caution {
    background: linear-gradient(to top, #f39c12, #f7b731);
}

.score-fill.poor {
    background: linear-gradient(to top, #e74c3c, #ec7063);
}

.hour-indicators {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    margin-top: 4px;
}

.indicator {
    font-size: 0.65rem;
    padding: 2px 4px;
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indicator.temp {
    background: #e3f2fd;
    color: #1976d2;
}

.indicator.rain {
    background: #e1f5fe;
    color: #0277bd;
}

.indicator.uv {
    background: #fff3e0;
    color: #e65100;
}

.hourly-legend {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #7f8c8d;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.legend-color.excellent {
    background: #2ecc71;
}

.legend-color.good {
    background: #3498db;
}

.legend-color.caution {
    background: #f39c12;
}

.legend-color.poor {
    background: #e74c3c;
}

@media (max-width: 480px) {
    .container {
        padding: 16px;
        max-width: 100%;
    }

    .app-header h1 {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 22px;
    }

    .result-area {
        padding: 16px;
    }

    #forecastMessage {
        font-size: 1rem;
    }

    .weather-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 16px;
    }

    .weather-icon-large {
        font-size: 3rem;
    }

    .weather-content h3 {
        font-size: 1.2rem;
    }

    .weather-content .main-message {
        font-size: 1rem;
    }

    .weather-data-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
    }

    .weather-item {
        padding: 6px;
    }

    .weather-label {
        font-size: 0.7rem;
    }

    .weather-value {
        font-size: 0.9rem;
    }

    .hourly-chart {
        gap: 3px;
        min-height: 180px;
    }

    .hourly-item {
        min-width: 40px;
    }

    .hour-label {
        font-size: 0.65rem;
    }

    .score-bar {
        height: 100px;
    }

    .indicator {
        font-size: 0.6rem;
        padding: 1px 3px;
    }

    .loading-message,
    .error-message {
        padding: 24px;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 12px;
        margin: 20px 0;
    }

    .loading-message {
        background: #e3f2fd;
        color: #1976d2;
        border: 2px solid #2196f3;
    }

    .error-message {
        background: #ffebee;
        color: #c62828;
        border: 2px solid #e53935;
    }

    .one-hour-rain-card {
        padding: 16px;
    }

    .rain-icon-large {
        font-size: 3rem;
    }

    .rain-prob-large {
        font-size: 2.5rem;
    }

    .rain-status-text {
        font-size: 1rem;
    }

    .clear-sky-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .clear-sky-icon {
        font-size: 2.5rem;
    }

    .go-now-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
        top: -6px;
        right: -6px;
    }
}

/* ===== 新しい視覚的UI要素 ===== */

/* レーダーマップコンテナ */
.map-container {
    width: 100%;
    height: 320px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.leaflet-container {
    width: 100%;
    height: 100%;
}

.custom-marker {
    background: transparent;
    border: none;
}

/* 散歩判定カード（GO/CAUTION/NO-GO） */
.walk-status-card {
    margin-bottom: 20px;
}

.walk-status-card-inner {
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid;
    animation: fadeIn 0.3s ease-in;
}

.walk-status-card-inner.status-go {
    border-color: #2ecc71;
}

.walk-status-card-inner.status-caution {
    border-color: #f39c12;
}

.walk-status-card-inner.status-nogo {
    border-color: #e74c3c;
}

.walk-status-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.walk-status-content {
    flex: 1;
    text-align: left;
}

.walk-status-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.walk-status-message {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #34495e;
    font-weight: 500;
}

.walk-status-advice {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.4;
}

/* 天気ゲージコンテナ */
.weather-gauges {
    margin-bottom: 20px;
}

.gauges-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.gauge-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gauge-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 500;
}

.gauge-label-small {
    font-size: 0.75rem;
    color: #95a5a6;
    margin-top: 5px;
}

.gauge {
    position: relative;
    height: 40px;
    background: #ecf0f1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 5px;
}

.gauge-bar {
    height: 100%;
    border-radius: 20px;
    transition: width 0.5s ease;
    position: relative;
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* 雨タイムライン */
.rain-timeline {
    margin-bottom: 20px;
}

.rain-timeline-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rain-timeline-container h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
}

.rain-timeline-items {
    display: flex;
    gap: 15px;
    justify-content: space-around;
}

.rain-timeline-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.timeline-time {
    font-size: 0.9rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.timeline-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 3px;
}

.timeline-prob {
    font-size: 0.75rem;
    color: #95a5a6;
    font-weight: 500;
}

/* 時間帯別グラフの色コントラスト強化 */
.hourly-item .score-fill.excellent {
    background: linear-gradient(to top, #27ae60, #2ecc71) !important;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.4);
}

.hourly-item .score-fill.good {
    background: linear-gradient(to top, #3498db, #5dade2) !important;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.4);
}

.hourly-item .score-fill.caution {
    background: linear-gradient(to top, #f39c12, #f7dc6f) !important;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.4);
}

.hourly-item .score-fill.poor {
    background: linear-gradient(to top, #c0392b, #e74c3c) !important;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.hourly-item.dangerous .score-fill {
    background: #8b0000 !important;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.6);
}

.hourly-item.recommended {
    border: 2px solid #2ecc71;
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

.hourly-item.go-now {
    border: 2px solid #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
    .gauges-container {
        grid-template-columns: 1fr;
    }
    
    .walk-status-card-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .walk-status-content {
        text-align: center;
    }
    
    .walk-status-icon {
        font-size: 3rem;
    }
    
    .walk-status-title {
        font-size: 1.5rem;
    }
    
    .rain-timeline-items {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== MAP FIX ===== */
#map,
.map-container,
.leaflet-container {
    height: 320px !important;
    min-height: 320px !important;
}
/* ===== 強制マップ高さ修正 ===== */
#map,
.map-container,
.leaflet-container {
    display: block !important;
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
}
