/* --- 周辺観光セクション(sightseeing.css) 固有スタイル --- */

.sightseeing-section {
    padding: 80px 0;
    background-color: #fff;
}

.sightseeing-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* タイトルエリア（intro.css の設定を完全継承） */
.sightseeing-header {
    text-align: center;
    margin-bottom: 50px;
}

/* 日本語タイトル（intro-title-ja と同一） */
.sightseeing-main-title {
    display: block;
    font-size: 32px; /* 30pxから32pxへ修正 */
    font-weight: 700;
    color: #0054a6;  /* レクストンブルー */
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

/* 英語タイトル（intro-title-en と同一：細いアンダーバー付） */
/* 注：HTML側に <p class="sightseeing-title-en">SIGHTSEEING</p> がある前提のスタイルです */
.sightseeing-title-en {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;      /* 400(標準) に設定 */
    color: #0054a6;
    margin: 0 0 0 0;
    letter-spacing: 0.2em; /* 0.2em に設定 */
    text-transform: uppercase;
    border-bottom: 1px solid #0054a6; /* 1pxの細い線 */
    padding-bottom: 5px;
}

/* 2カラムグリッド設定 */
.sightseeing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px; /* 上下左右の余白 */
}

.sightseeing-item {
    width: calc(50% - 15px); /* 2カラム計算 */
}

/* 画像エリア */
.spot-img {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.spot-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sightseeing-item:hover .spot-img img {
    transform: scale(1.05); /* ホバー時の軽いズーム */
}

/* コピーライト表示 */
.copyright-tag {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* 黒い透かし背景 */
    color: #fff;
    font-size: 10px;
    padding: 2px 10px;
    letter-spacing: 0.05em;
    z-index: 2;
    pointer-events: none;
    line-height: 1.5;
}

/* スポット名 */
.spot-name {
    font-size: 20px;
    font-weight: 700;
    color: #0054a6;
    margin-bottom: 10px;
}

/* スポット概要 */
.spot-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* 詳細リンク */
.spot-link {
    font-size: 14px;
    font-weight: 700;
    color: #0054a6;
    text-decoration: none;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .sightseeing-section {
        padding: 50px 0;
    }

    .sightseeing-main-title {
        font-size: 26px; /* introに合わせて26px */
    }
    
    .sightseeing-title-en {
        font-size: 12px;
        margin-bottom: 30px;
    }

    /* スマホでは1カラムに */
    .sightseeing-item {
        width: 100%;
    }

    .sightseeing-grid {
        gap: 40px 0;
    }

    .spot-name {
        font-size: 18px;
    }

    .copyright-tag {
        font-size: 9px;
        padding: 1px 8px;
    }
}