/* ============= access.html 専用 ============= */

.section-darker {
    background: var(--bg-dark);
    max-width: none;
    padding-left: 1.5em;
    padding-right: 1.5em;
}
.section-darker > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.map-large {
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--gold);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 50px var(--purple-glow);
    height: 500px;
}

.map-large iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 736px) {
    .map-large { height: 360px; }
}

/* SHOP INFO */
.shop-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
}

.shop-info-block {
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-radius: 6px;
    padding: 2em;
}

.info-title {
    color: var(--gold);
    font-family: 'Cinzel', 'Noto Serif JP', serif;
    font-size: 1.2em;
    letter-spacing: 0.18em;
    margin-bottom: 1.2em;
    padding-bottom: 0.6em;
    border-bottom: 1px solid var(--gold-dim);
}

.info-title i {
    margin-right: 0.5em;
    color: var(--purple-light);
}

.info-table {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1em 1em;
}

.info-table dt {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.12em;
    font-size: 0.9em;
    border-right: 1px solid var(--gold-dim);
    padding-right: 1em;
    text-align: right;
}

.info-table dd {
    color: var(--text-light);
    line-height: 1.7;
}

.info-table dd small {
    color: var(--text-muted);
    font-size: 0.85em;
    display: inline-block;
    margin-top: 0.2em;
}

.big-tel {
    font-family: 'Cinzel', serif;
    font-size: 1.3em;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    font-weight: 600;
}

@media (max-width: 736px) {
    .shop-info-grid { grid-template-columns: 1fr; }
    .info-table {
        grid-template-columns: 1fr;
        gap: 0.3em 0;
    }
    .info-table dt {
        border-right: none;
        text-align: left;
        padding-right: 0;
        margin-top: 0.8em;
    }
}

/* ROUTE */
.route-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-radius: 6px;
    padding: 2.5em;
    display: flex;
    gap: 2em;
    align-items: flex-start;
}

.route-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple), var(--purple-deep));
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: var(--gold);
    flex-shrink: 0;
}

.route-text h4 {
    color: var(--gold);
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
}

.route-steps {
    margin-left: 1.5em;
    color: var(--text-light);
    line-height: 2;
}

.route-steps li {
    margin-bottom: 0.4em;
}

.route-steps li::marker {
    color: var(--gold);
}

.route-note {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-top: 1.2em;
    padding-top: 1em;
    border-top: 1px dashed var(--gold-dim);
    letter-spacing: 0.08em;
}

@media (max-width: 600px) {
    .route-card { flex-direction: column; gap: 1.5em; padding: 2em 1.5em; }
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-dim);
    border-radius: 6px;
    padding: 2.5em 1.5em;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
    display: block;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--purple-glow);
}

.contact-card i {
    font-size: 2.5em;
    color: var(--purple-light);
    margin-bottom: 0.5em;
    display: block;
}

.contact-card:hover i {
    color: var(--gold);
}

.contact-card h4 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2em;
    letter-spacing: 0.2em;
    margin-bottom: 0.6em;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1em;
}

.cc-cta {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5em 1.4em;
    border-radius: 2px;
    font-size: 0.85em;
    letter-spacing: 0.15em;
}

.contact-card:hover .cc-cta {
    background: var(--gold);
    color: var(--bg-black);
}

@media (max-width: 600px) {
    .contact-grid { grid-template-columns: 1fr; }
}
