.mod-genki-nav__inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.mod-genki-nav__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 954 / 684;
}

.mod-genki-nav__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
    user-select: none;
}

.mod-genki-nav__image.is-active {
    opacity: 1;
}

.mod-genki-nav__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.1;
    color: transparent;
    pointer-events: none;
    user-select: none;
}

.mod-genki-nav__hotspot {
    position: absolute;
    display: block;
    text-decoration: none;
    outline: none;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
}

.mod-genki-nav__hotspot.is-disabled {
    pointer-events: none;
}

.mod-genki-nav__hotspot:focus-visible {
    box-shadow: 0 0 0 3px #0a7cff;
    border-radius: 12px;
}

.mod-genki-nav__hotspot--top {
    left: 17%;
    top: 4%;
    width: 66%;
    height: 40%;
    clip-path: polygon(26% 0%, 74% 0%, 74% 15%, 100% 15%, 64% 78%, 36% 78%, 0% 15%, 26% 15%);
}

.mod-genki-nav__hotspot--right {
    right: 3%;
    top: 17%;
    width: 41%;
    height: 66%;
    clip-path: polygon(0% 22%, 79% 0%, 79% 24%, 100% 24%, 100% 76%, 79% 76%, 79% 100%, 0% 78%, 40% 50%);
}

.mod-genki-nav__hotspot--bottom {
    left: 17%;
    bottom: 4%;
    width: 66%;
    height: 40%;
    clip-path: polygon(36% 22%, 64% 22%, 100% 85%, 74% 85%, 74% 100%, 26% 100%, 26% 85%, 0% 85%);
}

.mod-genki-nav__hotspot--left {
    left: 3%;
    top: 17%;
    width: 41%;
    height: 66%;
    clip-path: polygon(21% 0%, 100% 22%, 60% 50%, 100% 78%, 21% 100%, 21% 76%, 0% 76%, 0% 24%, 21% 24%);
}

.mod-genki-nav__tooltip {
    position: absolute;
    z-index: 20;
    left: 50%;
    top: 50%;
    width: min(365px, 56%);
    max-width: min(365px, calc(100vw - 2rem));
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    color: #000;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.20);
    border: 4px solid #8A5DA4;
    transform: translate(-50%, -50%) scale(0.96);
    transform-origin: center center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    text-align: center;
}

.mod-genki-nav__tooltip.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mod-genki-nav__tooltip-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}

.mod-genki-nav__tooltip-text {
    font-size: 18px;
    line-height: 1.5;
    white-space: pre-line;
}

.mod-genki-nav__tooltip-hint {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
}

.mod-genki-nav.is-touch .mod-genki-nav__tooltip-hint {
    display: block;
}

@media (max-width: 840px) {
    .mod-genki-nav__tooltip {
        width: min(60vw, 280px);
        max-width: min(60vw, 280px);
        padding: 10px;
        font-size: 14px;
    }
    .mod-genki-nav__tooltip-title {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .mod-genki-nav__tooltip-text {
        font-size: 14px;
    }
    .mod-genki-nav__tooltip-hint {
        margin-top: 5px;
        font-size: 12px;
    }
}
