/* ========================================= */
/* single-spot.css                           */
/* ========================================= */

/* コンテナ */
.spot-details {
    padding: 50px 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* 各フィールド共通 */
.spot-field {
    background-color: var(--base-color);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spot-field:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* 各フィールドの見出し */
.spot-field h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-family: "Zen Maru Gothic", sans-serif;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

/* 各フィールド内のテキスト */
.spot-field p,
.spot-field div,
.spot-field ul,
.spot-field ol {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* 画像 */
.spot-image {
    margin-bottom: 30px;
    text-align: center;
}

.spot-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Map iframe 調整 */
.spot-map .map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

.post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 50px;
    margin: 10%;
}

.post-content p {
    margin: 3rem 0;
    font-size: 1.2rem;
}


.post-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin: 5% 10% 0 10%;
    text-align: center;
}

.spot-image {
    text-align: center;
    margin: 30px 0;
}

.spot-image-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}





/* レスポンシブ対応 */
@media (max-width: 768px) {
    .spot-details {
        padding: 30px 15px;
    }

    .spot-field {
        padding: 20px;
    }

    .spot-field h2 {
        font-size: 1.5rem;
    }

    .post-title {
        font-size: 1.5rem;
    }
}