main.dojo-page {
    padding: 0 1rem;
    max-width: 1200px;
    margin: auto;
    margin: 60px auto;
}

.section {
    margin-top: 60px;
}

.dojo-location {
    background-color: #fefefe;
    color: #111;
}

.location-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.location-info {
    margin-bottom: 30px;
}

.building-name {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.address {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 10px;
}

.description {
    line-height: 1.6;
    color: #222;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 1.6em;
    }

    .building-name {
        font-size: 1.3em;
    }

    .map-embed iframe {
        height: 300px;
    }
}