.kmy-md-shell {
    margin: 0;
    color: #172033;
    background: #f7f8fb;
    font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", system-ui, sans-serif;
}

.kmy-md-shell__skip {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 8px 12px;
    color: #fff;
    background: #0f2d6b;
    border-radius: 6px;
    transform: translateY(-160%);
}

.kmy-md-shell__skip:focus {
    transform: translateY(0);
}

.kmy-md-shell__header {
    position: relative;
    z-index: 100;
    color: #fff;
    background: #0f2d6b;
    border-bottom: 3px solid #e8a13a;
}

.kmy-md-shell__header-inner {
    width: min(1160px, calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.kmy-md-shell__brand {
    display: inline-flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
    line-height: 1.25;
}

.kmy-md-shell__brand strong {
    font-size: 18px;
    font-weight: 800;
}

.kmy-md-shell__brand span {
    margin-top: 3px;
    color: #efc66d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}

.kmy-md-shell__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.kmy-md-shell__nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.kmy-md-shell__nav a:hover,
.kmy-md-shell__nav a:focus-visible {
    color: #efc66d;
}

.kmy-md-shell__nav .kmy-md-shell__cta {
    padding: 10px 18px;
    color: #0f2d6b;
    background: #efc66d;
    border-radius: 999px;
}

.kmy-md-shell__content {
    min-height: 60vh;
}

.kmy-md-shell__footer {
    color: rgba(255, 255, 255, .84);
    background: #091b3f;
}

.kmy-md-shell__footer-inner {
    width: min(1160px, calc(100% - 40px));
    min-height: 160px;
    margin: 0 auto;
    padding: 36px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
    gap: 32px;
}

.kmy-md-shell__footer strong {
    color: #fff;
    font-size: 17px;
}

.kmy-md-shell__footer p {
    margin: 6px 0 0;
    color: #efc66d;
    font-size: 12px;
}

.kmy-md-shell__footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.kmy-md-shell__footer a {
    color: inherit;
    font-size: 13px;
    text-decoration: none;
}

.kmy-md-shell__footer a:hover,
.kmy-md-shell__footer a:focus-visible {
    color: #fff;
}

.kmy-md-shell__footer small {
    font-size: 11px;
    text-align: right;
}

@media (max-width: 760px) {
    .kmy-md-shell__header-inner {
        width: min(100% - 28px, 1160px);
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .kmy-md-shell__nav {
        width: 100%;
        justify-content: flex-start;
        gap: 12px 18px;
        flex-wrap: wrap;
    }

    .kmy-md-shell__nav a {
        font-size: 13px;
    }

    .kmy-md-shell__nav .kmy-md-shell__cta {
        margin-left: auto;
        padding: 8px 15px;
    }

    .kmy-md-shell__footer-inner {
        width: min(100% - 28px, 1160px);
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .kmy-md-shell__footer small {
        text-align: left;
    }
}