@charset "UTF-8";

* {
    box-sizing: border-box;
    Margin: 0;
}

html {
    scroll-behavior: smooth;
}

Img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

p {
    line-height: 1.5;
    color: #006699;
}

a {
    text-decoration: none;
    color: #000000;
}

body {
    margin: 0;
    padding: 0;
}

section {
    padding: 100px 20px;
}

h2 {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    -webkit-text-stroke: 1px #00528E;

    text-align: center;
    margin-bottom: 50px;
}

.promo-text-box p,
.insta-caption p,
.event-box-youtube-caption p,
.guest-info-box-profile {
    color: #00528E;
}

.pc-br {
    display: none;
}

/*!header---------------------------------------------------------------------------------------------------------------------------------------------*/
header {
    background-color: #DCF8F9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0 10px;
}

.header-nav-li a,
.nav-overlay__link {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.logo-img {
    width: 100%;
    max-width: 110px;
    min-width: 70px;
    padding: 5px 0;
    margin-left: 10px;
}

.insta-btn {
    background-color: #ff9494;
    margin: 20px 20px;
    border-radius: 30px;
    border: #00528E solid 1px;
    text-align: center;
    cursor: pointer;
    transition: background-color .5s ease;
    overflow: hidden;
    position: relative;
}

.insta-btn a {
    color: #fff;
    display: block;
    padding: 10px 20px 10px 0px;
    position: relative;
}

.insta-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10%;
    margin-left: 8px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
    transition: border-color ease;
}

.insta-btn a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 6%;
    margin-left: 8px;
    width: 25px;
    height: 25px;
    border: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 30px;
    transition: border-color ease;
}

.insta-btn a:hover::before,
.insta-btn a:hover:after {
    border-color: #000000;
}

/*!ハンバーガー----------------------------------------------------------------------*/
.hamburger-overlay {
    position: fixed;
    top: 8px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-overlay__line {
    position: absolute;
    left: 0px;
    width: 35px;
    height: 3px;
    background-color: #000000;
    transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) {
    top: 19px;
}

.hamburger-overlay__line:nth-of-type(2) {
    top: 30px;
}

.hamburger-overlay__line:nth-of-type(3) {
    top: 41px;
}

.hamburger-overlay.active .hamburger-overlay__line {
    background-color: #000000;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #DCF8F9;
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: left;
}

.nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-overlay__item {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
    background-color: #e7f6f6;
    border-bottom: #ddd solid 1px;
    border-top: #ddd solid 1px;
    padding-left: 30px;
}

.nav-overlay__item a {
    display: block;
    position: relative;
}

.nav-overlay__item:has(> a.nav-overlay__link)::before {
    content: "";
    position: absolute;
    right: 53px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #58D7C6;
    padding: 8px;
    border-radius: 50%;
}

.nav-overlay__item:has(> a.nav-overlay__link)::after {
    content: "";
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
}

.nav-overlay__item .insta-btn {
    max-width: 300px;
    margin: auto;
}

.nav-overlay__item:nth-child(5) {
    background-color: #DCF8F9;
    border: none;
    margin-top: 100px;
    padding-left: 0;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-overlay.active .nav-overlay__item:nth-child(5) {
    transition-delay: 0.5s;
}


.nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #000000;
    font-size: 24px;
    text-decoration: none;
    transition: color .3s;
}

.nav-overlay__link:hover {
    color: #777777;
    transition: color 1.5s ease;
}



.header-nav {
    display: none;
}



/*!ファーストビューセクション---------------------------------------------------------------------------------------------------------------------------------------------*/

.top-view {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/top_view/fv-back-img.webp);
    background-color: #E9FBFB;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
    overflow: hidden;
}

.fv-main-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    z-index: 10;
}

.fv-main-container img {
    width: 100%;
    height: auto;
}


.fv-item-tshirt {
    position: absolute;
    top: 7%;
    left: 5%;
    width: 30vw;
    transform: rotate(-15deg);
}

.fv-item-tshirt img {
    width: 100%;
    height: auto;
}

.fv-item-runner {
    position: absolute;
    top: 1%;
    right: 5%;
    width: 30vw;
}

.fv-item-runner img {
    width: 100%;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 1;
    animation: jitterEffect 0.2s infinite alternate ease-in-out;
}

.fv-item-runner::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 10%;
    width: 100%;
    height: 100%;
    background: url("../img/top_view/fv-thuman.webp") no-repeat center/contain;
    z-index: 2;
    opacity: 0.7;
    animation: shadowRun1 0.2s infinite alternate ease-in-out;
}

.fv-item-runner::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 19%;
    width: 100%;
    height: 100%;
    background: url("../img/top_view/fv-thuman.webp") no-repeat center/contain;
    z-index: 3;
    opacity: 0.5;
    animation: shadowRun2 .3s infinite alternate ease-in-out;
}

@keyframes jitterEffect {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-2px, 3px);
    }
}

@keyframes shadowRun1 {
    0% {
        transform: translate(10px, -5px);
    }

    100% {
        transform: translate(12px, -2px);
    }
}

@keyframes shadowRun2 {
    0% {
        transform: translate(25px, -10px);
    }

    100% {
        transform: translate(27px, -6px);
    }
}

.fv-item-photo {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 50vw;
    margin-bottom: 30px;
}

.fv-item-photo img {
    width: 100%;
    height: auto;
    border-radius: 0 0 50px 0;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.1));
}

.scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-arrow span {
    display: block;
    width: 24px;
    height: 24px;
    border-bottom: 3px solid rgba(135, 169, 199, 0.3);
    border-right: 3px solid rgba(135, 169, 199, 0.3);
    transform: rotate(45deg);
    margin: -6px;
    animation: scroll-down 2s infinite;
}

.scroll-arrow span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        border-color: rgba(135, 169, 199, 0.3);
    }

    50% {
        opacity: 1;
        border-color: rgba(135, 169, 199, 1);
    }

    100% {
        opacity: 0;
        border-color: rgba(135, 169, 199, 0.3);
    }
}

.top-view-down {
    background-image: url(../img/top_view/fv-back.webp);
    background-color: #E9FBFB;
    background-position: 98% top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
}

.promo-content {
    max-width: 450px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.main-img-top,
.main-img-bottom {
    width: 70%;
    height: auto;
    object-fit: cover;
}

.main-img-top {
    position: absolute;
    top: 2%;
    left: 30%;
    max-width: 300px;
}

.main-img-bottom {
    position: absolute;
    bottom: 2%;
    left: 1%;
}

.promo-text-box {
    text-align: center;
    width: 100%;
    padding: 250px 0 250px;

}

.top-view-down h2 {
    font-size: 23px;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #ffffff;
}

.top-view-down h2 span {
    color: #ff9494;
}

.top-view-down h5 {
    font-size: 18px;
    color: #006699;
    margin-bottom: 15px;
}

.top-view-down p {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

.top-view-down p span {
    font-weight: bold;
}

.deco-mike {
    position: absolute;
    top: 20px;
    left: 5%;
    width: 100%;
    max-width: 100px;
    transform: rotate(70deg);
    z-index: 2;
}

.deco-flag {
    position: absolute;
    bottom: 20px;
    right: 0%;
    width: 100%;
    max-width: 150px;
    z-index: 2;
}

/*!ジッターアニメーション*/
@keyframes pendulum-swing {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(30deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.jitter-image {
    display: inline-block;
    width: 200px;
    height: auto;
    transform-origin: 50% 50%;
    animation: pendulum-swing 1s infinite steps(1);
}

/*!開催情報セクション---------------------------------------------------------------------------------------------------------------------------------------------*/
.date-schedule {
    background-image: url(../img/date-info/date-back.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.date-info-box {
    margin-bottom: 40px;
}

.date-info-box p {
    text-align: center;
}

.date-schedule-place-and-charge {
    font-size: 20px;
}

.date-p-span {
    font-size: 36px;
}

.date-p-span span {
    font-size: 16px;
    background-color: #ff9494;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    margin: 0 5px 0 5px;
    position: relative;
    bottom: 5px;
}

.date-p-second {
    font-size: 20px;
}

.date-info-mini-cap {
    background-color: #fff297;
    max-width: 200px;
    text-align: center;
    margin: auto;
    border: #000000 solid 1px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.date-info-mini-cap h4 {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    -webkit-text-stroke: 1px #000000;
    padding: 10px 0;
}

.date-p {
    color: #c0504d;
    text-align: center;
}

.line-center {
    position: relative;
    bottom: 2px;
    padding: 0 0 0 2px;
}


/*!イベント内容セクション---------------------------------------------------------------------------------------------------------------------------------------------*/
.event-info {
    background-image: url(../img/event/event-back-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.event-box-no1,
.event-box-no2 {
    background-image: url(../img/event/event-grid.webp);
    border: #00528E 5px solid;
    padding: 10px;
    border-radius: 30px;
    margin-bottom: 100px;
    padding-top: 50px;
}

#event-box-no1-title {
    font-size: 24px;
    margin-bottom: 100px;
}

#event-box-no1-title span {
    color: #fff297;
}

.NO-font {
    font-family: "cc-stormtrooper-armor", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.event-info-h2 {
    margin-bottom: 10px;
}

.event-info-first-p {
    text-align: center;
    margin-bottom: 70px;
}

.event-info h4 {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    -webkit-text-stroke: 1px #00528E;
    text-align: center;
    margin-bottom: 20px;
}

/* !インスタ画面 */
.insta-scroll-section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.insta-scroll-container {
    width: 100%;
    max-width: 380px;
    height: 450px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
}

.insta-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
}

.insta-post {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.insta-post img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.event-box-no1,
.event-box-no2 {
    position: relative;
}

.NO-font {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px;
    border-radius: 10px;
    top: -30px;
    font-size: 35px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    z-index: 10;
    white-space: nowrap;
}

.event-box-no1-subbox {
    margin-bottom: 100px;
}

/*!ここまでインスタ画面*/

.event-box-no1-subbox-youtube {
    width: 100%;
    aspect-ratio: 16/16;
    max-width: 350px;
    margin: auto;
    margin-bottom: 20px;
}

.event-box-no1-subbox-youtube iframe {
    width: 100%;
    height: 100%;
}

.event-box-no1-subbox p {
    line-height: 1.5;
    margin: 0px 20px 50px;
}

.event-box-no1-insta-p-box {
    text-align: center;
}

.event-box-no1-insta-p {
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.event-box-no1-insta-p::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #006699;
    transform: translateY(-50%) rotate(60deg);
}

.event-box-no1-insta-p::before {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: #006699;
    transform: translateY(-50%) rotate(-60deg);
}

.body-insta-btn {
    background-color: #ff9494;
    max-width: 250px;
    text-align: center;
    border-radius: 30px;
    border: #00528E solid 2px;
    margin: auto;
    transition: background-color .5s ease;
    overflow: hidden;
}

.body-insta-btn a {
    display: flex;
    width: 100%;
    color: #fff;
    font-weight: bold;
    padding: 15px 0px;
    align-items: center;
    justify-content: center;
    transition: color .5s ease;
}

.body-insta-btn:hover {
    background-color: #fff297;
}

.body-insta-btn a:hover {
    color: #000000;
}

.body-insta-btn a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url("../img/footer/instagram-icon.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: filter .5s ease;
}

.body-insta-btn a:hover::before {
    filter: brightness(0);
}

.event-insta-btn {
    margin-bottom: 100px;
}

.guest-info {
    background-image: url(../img/event/event-guest-back-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    position: relative;
    padding-top: 100px;
}

#guest-info-title {
    font-size: 24px;
}

#guest-info-title span {
    color: #fff297;
}

.guest-info-box {
    max-width: 700px;
    margin: auto;
    padding: 0 20px;
}

.guest-info-box-img-box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
}

.guest-pin {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: auto;
    z-index: 10;
}

.guest-info-box-profile {
    max-width: 300px;
    margin: 0px auto;
    padding-bottom: 50px;
}

.guest-info-box-profile p {
    font-size: 15px;
}

.guest-info-box-img {
    width: 100%;
    margin: auto;
}

.guest-info-box-profile div {
    margin-bottom: 30px;
}

.guest-info-box-profile h4 {
    font-family: sans-serif;
    font-weight: normal;
    font-weight: bold;
    -webkit-text-stroke-width: 0;
    font-size: 32px;
    text-align: left;
    color: #006699;
}

.guest-info-box h5 {
    font-size: 24px;
    margin-bottom: 10px;
}

.guest-info-box-profile-icon {
    display: flex;
    justify-content: left;
    align-items: center;
}

.guest-info-box-profile-icon img {
    width: 50px;
    margin-right: 15px;
}

.event-box-no2 h4 {
    margin-bottom: 100px;
}

.event-box-no2 h4 span {
    color: #ff9494;
    font-size: 24px;
}

#delete-span {
    color: #fff;
}

.event-box-no2 h5 {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    -webkit-text-stroke: 1px #00528E;
    margin-bottom: 10px;
}

.event-box-no2-subbox {
    margin-bottom: 100px;
}

.event-box-no2-subbox p {
    margin: 0 15px 30px;
    font-size: 15px;
}

.event-box-no2-subbox-img {
    margin: 0 0px 50px;
}

.event-panel {
    max-width: 100px;
}

.event-box-no2-subbox-img img {
    width: 100%;
    margin: auto;
}

.event-box-no2-p {
    margin-bottom: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.game-img {
    text-align: center;
    padding-top: 20px;
}

.event-box-no2-subbox-weight {
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

/*!交通情報セクション---------------------------------------------------------------------------------------------------------------------------------------------*/
.traffic-info {
    background-image: url(../img/access/access-back-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.traffic-info-panel {
    max-width: 150px;
}

.traffic-info-div {
    margin-bottom: 50px;
}

.traffic-info-box {
    border: #000000 solid 1px;
    background-color: #F1F8FD;
}

.traffic-info-box h3 {
    padding: 20px 20px 0px 20px;
    font-size: 24px;
}

.traffic-info-box address {
    color: #000000;
    padding: 20px 20px 20px 20px;
    font-size: 13px;
}

.google-map-container {
    width: 100%;
    aspect-ratio: 16 / 16;
    border-top: #000000 solid 1px;
    background-color: #fff;
    padding: 20px;
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
}

.access-table {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
    border-collapse: collapse;
    border: 2px solid #000000;
    font-size: 16px;
    margin-bottom: 20px;
}

.access-table th,
.access-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.access-table th {
    background-color: #f1f7fc;
    color: #000000;
    padding: 12px 15px;
    border-top: 2px solid #000000;
    border-bottom: none;
    font-weight: 600;
    text-align: left;
}

.th-first th {
    border-top: none;
}

.access-table td {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 15px 20px 15px;
    border-top: 1px solid #b0c4de;
    text-align: left;
    line-height: 1.6;
}

.pdf-link {
    color: #c0504d;
    text-decoration: none;
}

.pdf-link:hover {
    text-decoration: underline;
}

.traffic-info-p {
    font-size: 12px;
    text-align: center;
}

.traffic-info-p a {
    text-decoration: underline;
    transition: color .5s ease;
}

.traffic-info-p a:hover {
    color: #c0504d;
}



/*!Instagram宣伝セクション---------------------------------------------------------------------------------------------------------------------------------------------*/
.insta-check {
    background-image: url("../img/insta-check/gakuennsai-saito-back-img.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.insta-check h3 {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    -webkit-text-stroke: 1px #00528E;
    text-align: center;
    margin-bottom: 70px;
}

.insta-check p {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    -webkit-text-stroke: .7px #00528E;
    text-align: center;
    margin-bottom: 30px;
}

.insta-check p span {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.insta-check p span::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    border: 1px solid #00528E;
    transform: translateY(-50%) rotate(60deg);
}

.insta-check p span::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: #ffffff;
    border: 1px solid #00528E;
    transform: translateY(-50%) rotate(-60deg);
}




/*!footer-----------------------------------------------------------------------------*/
footer {
    background-color: #4e89b2;
    padding: 100px 20px;
}

address {
    color: #fff;
}

.footer-p {
    text-align: center;
    color: #fff;
}

.footer-info1 img {
    margin-bottom: 15px;
}

.footer-info1 address {
    margin-bottom: 50px;
}

.footer-info2 {
    margin-bottom: 50px;
}

.footer-btn {
    background-color: #fff;
    max-width: 250px;
    margin: auto;
    border-radius: 30px;
    border: #000000 solid 1px;
    text-align: center;
    margin-bottom: 15px;
    transition: background-color .5s ease;
}

.footer-btn:hover {
    background-color: #E9FBFB;
}

.footer-btn a {
    display: block;
    padding: 15px 0px;
    font-weight: bold;
}

.footer-icon {
    text-align: center;
    margin-bottom: 20px;
}

.footer-icon a {
    margin-left: 10px;
}




#marker {
    background: linear-gradient(transparent 60%, #FFF297 60%);
}

#event-box-no2-subbox-marker {
    background: linear-gradient(#FF9494 60%);
    box-shadow: 10px 5px #a9e2ff;
    padding: 8px;
    line-height: 40px;
    color: #00528E;
    font-size: 14px;
}