.mobile-floating-navbar {
    display: none;

    @media (max-width: 768px) {
        display: flex;
    }
}

/* Full-screen navbar styles */
.fullscreen-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0098D5;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.fullscreen-navbar.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-navbar ul {
    list-style: none;
    padding: 0;
    justify-content: center;
}

.fullscreen-navbar-item {
    margin-bottom: 30px;
    width: 216px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;

    @media (max-height: 768px) {
        margin-bottom: 20px;
    }

    @media (max-width: 600px) {
        margin-bottom: 15px;
    }
}

.fullscreen-navbar-main-item {
    width: 228px;
    text-align: center;
    margin-bottom: 30px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 72px;
    letter-spacing: 0%;

    @media (max-height: 768px) {
        margin-bottom: 10px;
    }

    @media (max-width: 600px) {
        white-space: nowrap;
        margin-bottom: 15px;
    }
}

.contact-pink-mobile {
    background-color: #FF8CE5 !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;

    @media (max-height: 750px) {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
}

.fullscreen-navbar a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

/* Hamburger menu button styles */
.hamburger-menu {
    border: none;
    background: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1200;
    transition: transform 0.3s ease-in-out;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0098D5;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hamburger-menu.open img {
    opacity: 0.7;
}

/* Close button styles */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 1200;
    padding: 10px;
    transition: opacity 0.3s;
}

.close-btn:hover {
    opacity: 0.7;
}

.footer-branding {
    margin-top: 79px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;

    @media (max-height: 768px) {
        margin-top: 0;
    }
}

.footer-branding-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 14.8px;
    letter-spacing: 0.1em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
  }