/* メインページ固有のスタイル */
#title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 5em;
    text-align: center;
    height: 500px;
    width: 100%;
    background-image: url('images/Gemini_Generated_Image_e7kxz4e7kxz4e7kx.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
}

#header_text {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.8;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.spot-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.spot-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.spot-info {
    flex: 1;
}

.spotdesc {
    font-size: 0.9em;
}

aside#ai {
    height: 300px;
    border-radius: 16px;
    background-image: url(images/bot.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 40px;
}