body {
    font-family: sans-serif;
}

h1 {
    font-size: large;
}

h2 {
    font-size: large;
}

#map {
    width: 100dvw;
    height: 100dvh;
}

#logo {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 0;
    left: 0;
}

#logopict {
    width: 100%;
    height: auto;
    padding: 100px 0;
    animation: fadeout-anim 5s linear forwards;
}

@keyframes fadeout-anim {
    100% {
        opacity: 0;
        display: none;
    }
}

#copyright {
    background-color: white;
    opacity: 70%;
    font-size: 10px;
    position: absolute;
    text-align: left;
    top: 0;
    left: 0;
}

#currentLocation {
    position: absolute;
    text-align: center;
    bottom: 200px;
    right: 16px;
}

#trackIcon {
    width: 32px;
}

#goOkinawa {
    position: absolute;
    text-align: center;
    font-weight: bold;
    bottom: 30px;
    left: 10px; 
    background-color: yellow;
    border-radius: 10px;
    padding: 4px;
}

.smallIcon {
    height: 12px;
    width: auto;
    padding: 4px;
    vertical-align: bottom;
}

/* ポップアップウィンドウのスタイル */
.popupPeriod {
    display: inline;
    vertical-align: top;
    margin-left: 4px;
}

.eventName {
    font-size: 16px;
}

.route {
  line-height: 30px;
  padding: 4px 4px;
  background-color: yellow;
}

.vehicle {
  vertical-align: middle;
}

/* ジャンルメニューのスタイル */
#genreMenu {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 32px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
}

#genreMenu::-webkit-scrollbar{
    display: none;
}

.genreMenuItem {
    color: black;
    background-color: white;
    border-radius: 16px;
    display: inline-block;
    text-align: center;
    padding: 0 20px;
    margin: 0 4px;
    text-decoration: none;
    line-height: 32px;
    font-size: 14px;
    font-weight: bold;
}

/* カレンダーメニューのスタイル */
#calendarMenu {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 32px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
}

#calendarMenu::-webkit-scrollbar{
    display: none;
}

.calendarMenuItem {
    color: black;
    background-color: white;
    border-radius: 16px;
    display: inline-block;
    text-align: center;
    padding: 0 20px;
    margin: 0 4px;
    text-decoration: none;
    line-height: 32px;
    font-size: 14px;
    font-weight: bold;
}

.selected {
    background-color: black;
    color: white;
}

/* termsアイコンのスタイル */
#termsWrap {
    position: absolute;
    text-align: center;
    bottom: 260px;
    right: 16px;
}

#terms {
    width: 32px;
}

/* 雨雲レーダーのスタイル */
#amagumoWrap {
    position: absolute;
    text-align: center;
    bottom: 320px;
    right: 16px;
}

#amagumo {
    width: 32px;
}

/* クッキー警告のスタイル */
.stickyFooter {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    opacity: 80%;
}

#cookieAlert {
    font-size: 14px;
}

.closeButton {
    left: 16px;
    font-size: 14px;
}

/* ようこそメッセージのスタイル */
#welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    position: absolute;
    top: 0;
    left: 0;
    padding: 64px;
}

#welcomeInner {
    background-color: white;
    padding: 0 8px;
    border-radius: 20px;
}

#eventPopupInner {
    padding: 8px;
}

#popupEventName {
    margin: 0;
}

#popupEventGuideHref {
    text-align: center;
}