* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.nav {
    display: flex;
}

.main {
    margin-top: 100px;
}

/*!*標題*!*/
.title {
    width: 100%;
    height: auto !important;
    position: relative;
    align-items: end;
    justify-content: center;
    display: flex;
    text-align: center;
}

.title .title-ch {
    color: rgba(99, 99, 99, 1);
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.title .title-en {
    color: rgba(141, 186, 215, 1);
    font-size: 20px;
    font-weight: bold;
}

#areaSelect {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-block: 1rem;
    justify-content: center;
}

/*導遊總攬*/
.guide-main {
    padding: 0 22% 0 22%;
    height: auto;
}

#guides {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-block: 20px;
}

@media screen and (max-width: 768px) {
    /*導遊總攬*/
    .guide-main {
        padding: 0 8% 0 8%;
        height: auto;
    }
}

@media (max-width: 480px) {
    #areaSelect {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .title-ch {
        font-size: 1.75rem;
        padding-left: 1rem;
    }
}