/* 2026 contest guideline page */

/* This stylesheet is conditionally loaded for p=0201 only. */
#subv,
#smenu {
    display: none;
}

/* #head .logo {
    display: flex;
    height: 100px;
    align-items: center;
    gap: 12px;
    margin-left: 30px;
}

#head .logo img {
    width: auto;
    height: 62px;
    margin: 0;
    content: url('/2026/img/foot_logo.png');
}

*/
/* #head .logo::after {
    color: #1f3d87;
    content: "FOODESSEY 2026";
    font-family: "OtokiSans3N", sans-serif;
    font-size: 13px;
    letter-spacing: -.03em;
    line-height: 1;
}

*/
#subpage.fe-guide {
    --guide-red: #e32637;
    --guide-red-deep: #c91f31;
    --guide-yellow: #fff767;
    --guide-title-dot: #ffc300;
    --guide-navy: #1f3d87;
    --guide-ink: #27251f;
    --guide-body: #666666;
    --guide-paper: #fffdf7;
    --guide-paper-warm: #faf3da;
    --guide-cream: #fff6cf;
    --guide-sky: #d4ecf0;
    --guide-line: #e6e1d5;
    --guide-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --guide-ease-soft: cubic-bezier(0.25, 1, 0.5, 1);
    width: 100% !important;
    max-width: none;
    margin: 0 !important;
    overflow: clip;
    background: var(--guide-paper);
    color: var(--guide-ink);
}

.fe-guide,
.fe-guide * {
    box-sizing: border-box;
}

.fe-guide a,
.fe-guide button,
.fe-guide summary {
    -webkit-tap-highlight-color: transparent;
}

.fe-guide a:focus-visible,
.fe-guide button:focus-visible,
.fe-guide summary:focus-visible {
    outline: 3px solid var(--guide-navy);
    outline-offset: 4px;
}

.fe-guide .guide-shell {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.fe-guide .guide-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 100px;
    padding: clamp(28px, 4vw, 52px) 0 clamp(40px, 6vw, 76px);
        background: var(--guide-paper-warm);
}

.fe-guide .guide-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
        align-items: end;
        gap: clamp(16px, 2.4vw, 32px);
}

.fe-guide .guide-hero__copy {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(24px, 5vw, 80px);
}

.fe-guide .guide-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--guide-navy);
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
}

.fe-guide .guide-eyebrow::before {
    width: 42px;
    height: 4px;
    flex: 0 0 auto;
    background: var(--guide-red);
    content: "";
}

#subpage.fe-guide .guide-hero h1 {
    margin: 0;
    text-align: left;
}

#subpage.fe-guide .guide-hero h1::after {
    display: none;
}

#subpage.fe-guide .guide-hero h1 img {
    display: block;
    width: min(100%, 430px);
    height: auto;
}

#subpage.fe-guide .guide-hero__lead {
    max-width: 34em;
    margin: 0;
    color: #544f45;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.75;
}

.fe-guide .guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.fe-guide .guide-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 2px solid var(--guide-ink);
    border-radius: 999px;
    color: var(--guide-ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transition: color 220ms var(--guide-ease-soft), background-color 220ms var(--guide-ease-soft), border-color 220ms var(--guide-ease-soft), transform 220ms var(--guide-ease-soft);
}

.fe-guide .guide-button i {
    color: inherit;
    transition: transform 220ms var(--guide-ease-soft);
}

.fe-guide .guide-button--primary {
    border-color: var(--guide-red);
    background: var(--guide-red);
    color: #ffffff;
}

.fe-guide .guide-button--light {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--guide-red);
}

.fe-guide .guide-hero__visual {
    position: relative;
}

/* otoki silhouette behind the hero art */
.fe-guide .guide-hero__sun {
    position: absolute;
    z-index: 1;
        right: -2%;
        bottom: 17%;
        width: 38.5%;
        height: auto;
}

/* pull the art up by the png's transparent bottom band (~22.7%) so it meets the divider */
.fe-guide .guide-hero__art {
    position: relative;
    z-index: 2;
    display: block;
        width: 100%;
        height: auto;
        margin-bottom: -22.7%;
}

.fe-guide .guide-facts {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
    border-top: 2px solid var(--guide-ink);
    border-bottom: 2px solid var(--guide-ink);
}

.fe-guide .guide-fact {
    position: relative;
    min-width: 0;
    padding: 24px clamp(14px, 2.2vw, 30px);
}

/* vertical divider between facts, inset from the top/bottom padding */
.fe-guide .guide-fact + .guide-fact::before {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 1px;
    background: rgba(39, 37, 31, .22);
    content: "";
}

.fe-guide .guide-fact span,
.fe-guide .guide-fact strong {
    display: block;
}

.fe-guide .guide-fact span {
    margin-bottom: 8px;
    color: #746d5e;
    font-size: .8rem;
    line-height: 1.4;
}

.fe-guide .guide-fact strong {
    color: var(--guide-ink);
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 2rem);
    letter-spacing: -.045em;
    line-height: 1.15;
}

.fe-guide .guide-fact.guide-require strong {
    max-width: 14ch;
}

.fe-guide .guide-fact.guide-date strong {
    max-width: 10ch;
}

.fe-guide .guide-fact.word-limit strong {
    max-width: 8ch;
}
.fe-guide .guide-jump {
    position: sticky;
    z-index: 8;
    top: 100px;
    border-bottom: 1px solid var(--guide-line);
    background: rgba(255, 253, 247, .96);
    box-shadow: 0 12px 24px rgba(39, 37, 31, .04);
}

.fe-guide .guide-jump__inner {
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.fe-guide .guide-jump__inner::-webkit-scrollbar {
    display: none;
}

.fe-guide .guide-jump a {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    flex: 0 0 auto;
    align-items: center;
    padding: 0 16px;
    color: #6f685d;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1;
    transition: color 200ms var(--guide-ease-soft);
}

.fe-guide .guide-jump a::after {
    position: absolute;
    right: 14px;
    bottom: 3px;
    left: 14px;
    height: 4px;
    border-radius: 4px;
    background: var(--guide-red);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 260ms var(--guide-ease);
}

.fe-guide .guide-jump a[aria-current="true"] {
    color: var(--guide-red);
}

.fe-guide .guide-jump a[aria-current="true"]::after {
    transform: scaleX(1);
}

.fe-guide .guide-progress {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    overflow: hidden;
    pointer-events: none;
}

.fe-guide .guide-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--guide-yellow);
    transform: scaleX(var(--guide-progress, 0));
    transform-origin: left;
}

.fe-guide .guide-section {
    padding: clamp(76px, 9vw, 132px) 0;
    scroll-margin-top: 180px;
}

.fe-guide .guide-contact {
    scroll-margin-top: 180px;
}

.fe-guide .guide-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    margin-bottom: clamp(36px, 5vw, 64px);
}

#subpage.fe-guide .guide-section h3 {
    margin: 0 0 12px;
    color: var(--guide-ink);
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    font-weight: 700;
    letter-spacing: -.065em;
    line-height: 1.08;
    text-align: left;
}

#subpage.fe-guide .guide-section h3::after {
    display: inline;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--guide-title-dot);
    content: ".";
}

.fe-guide .guide-section-heading p {
    max-width: 50ch;
    margin: 0;
    color: #756e62;
    font-size: 1rem;
    line-height: 1.7;
}

.fe-guide .guide-overview {
    background: var(--guide-paper);
}

.fe-guide .guide-overview-grid {
    display: grid;
    grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
    gap: clamp(18px, 3vw, 32px);
    align-items: stretch;
}

.fe-guide .guide-panel {
    position: relative;
    overflow: hidden;
    padding-inline: clamp(30px, 4vw, 40px);
        padding-block: clamp(30px, 4vw, 48px);
        border-radius: clamp(8px, 3vw, 16px);
}

.fe-guide .guide-panel--qualify {
    min-height: 360px;
    background: var(--guide-yellow);
}

.fe-guide .guide-panel--qualify::after {
    position: absolute;
    right: -24px;
    bottom: -54px;
    color: rgba(255, 255, 255, .7);
    content: "";
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(7rem, 14vw, 12rem);
    letter-spacing: -.08em;
    line-height: 1;
    transform: rotate(-5deg);
}

.fe-guide .guide-panel--theme {
    min-height: 430px;
    background: var(--guide-red);
}

.fe-guide .guide-panel-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: var(--guide-ink);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.3;
}

.fe-guide .guide-panel-kicker i {
    color: inherit;
}

.fe-guide .guide-panel--theme .guide-panel-kicker {
    color: #ffffff;
}

#subpage.fe-guide .guide-panel h4 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--guide-ink);
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 30px);
    font-weight: 700;
    letter-spacing: .025em;
    line-height: 1.4;
    text-align: left;
}

#subpage.fe-guide .guide-panel--qualify h4 {
    letter-spacing: .015em;
}
#subpage.fe-guide .guide-panel--theme h4 {
    max-width: 28ch;
    margin-bottom: 34px;
    color: #ffffff;
    font-size: clamp(1.4rem, 3vw, 24px);
        font-weight: 700;
}

.fe-guide .guide-topic-list {
    display: grid;
    gap: 0;
    margin: 0;
        padding: 0;
        list-style: none;
}

.fe-guide .guide-topic-list li {
    display: grid;
    grid-template-columns: 6px minmax(0, 1fr);
        gap: 12px;
    align-items: start;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .26);
    color: #ffffff;
    font-size: .98rem;
    line-height: 1.55;
}

.fe-guide .guide-topic-list li::before {
    width: 6px;
        height: 6px;
        margin-top: .72em;
        border-radius: 50%;
        background: var(--guide-yellow);
        content: "";
}

#subpage.fe-guide .guide-topic-closing {
    max-width: 44em;
    margin: px 0 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .36);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500 !important;
    line-height: 1.65;

}

.fe-guide .guide-schedule-section {
    position: relative;
    overflow: hidden;
    background: var(--guide-navy);
}

.fe-guide .guide-schedule-section::before {
    position: absolute;
    top: -40px;
        right: -90px;
    width: 430px;
    aspect-ratio: 533 / 516;
        background: url('/2026/img/main/guide_otoki.png') no-repeat center / contain;
    content: "";
}

#subpage.fe-guide .guide-schedule-section h3 {
    color: #ffffff;
}

.fe-guide .guide-schedule-section .guide-section-heading p {
    color: #d8e0f5;
}

.fe-guide .sched-list {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fe-guide .sched-item {
    position: relative;
    min-height: 250px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
}

.fe-guide .sched-item.is-active {
    border-color: var(--guide-yellow);
    background: var(--guide-yellow);
}

.fe-guide .sched-ico {
    display: grid;
    width: 56px;
    height: 56px;
    margin: 0 auto 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--guide-red);
}

.fe-guide .sched-ico i {
    color: #ffffff;
    font-size: 1.25rem;
}

.fe-guide .sched-item.is-active .sched-ico {
    background: var(--guide-navy);
}

.fe-guide .sched-body b,
.fe-guide .sched-body p,
.fe-guide .sched-body em {
    display: block;
}

.fe-guide .sched-body b {
    margin: 0 0 10px;
    color: var(--guide-ink);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.25;
}

#subpage.fe-guide .sched-body p {
    margin: 0;
    color: #5d574d;
    font-size: .95rem;
    line-height: 1.55;
}

/* .fe-guide .sched-break-pc {
    display: none;
}

*/

.fe-guide .sched-body em {
    margin-top: 4px;
    color: #8b8376;
    font-size: .78rem;
    font-style: normal;
}

.fe-guide .sched-arrow {
    display: grid;
    place-items: center;
}

.fe-guide .sched-arrow i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: var(--guide-yellow);
    font-size: .8rem;
    transform: rotate(-90deg);
}

.fe-guide .guide-submit {
    background: #ffffff;
}

.fe-guide .guide-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    color: inherit;
    font-size: .82rem;
    line-height: 1.55;
    opacity: .84;
    
}

#subpage.fe-guide .guide-panel h4.guide-note {
    font-weight: 300;
    font-size: clamp(1.5rem, 2.8vw, 28px);
}

.fe-guide .guide-note i {
    margin-top: 2px;
    color: inherit;
    line-height: inherit;
}

.fe-guide .guide-awards {
    background: var(--guide-cream);
}

.fe-guide .guide-award-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: stretch;
    gap: 0;
    margin-bottom: 34px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--guide-ink);
}

.fe-guide .guide-award-total {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px clamp(28px, 4vw, 56px) 10px 0;
}

.fe-guide .guide-award-total + .guide-award-total {
    padding-right: 0;
    padding-left: clamp(28px, 4vw, 56px);
    border-left: 1px solid rgba(39, 37, 31, .24);
}

.fe-guide .guide-award-total > span {
    display: block;
    margin-bottom: 18px;
    color: var(--guide-ink);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.35;
}

.fe-guide .guide-award-summary strong {
    display: block;
    color: var(--guide-red);
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(4rem, 8vw, 7.4rem);
    letter-spacing: -.08em;
    line-height: .84;
}

.fe-guide .guide-award-total--people strong {
    color: var(--guide-navy);
}

.fe-guide .guide-award-summary strong small {
    color: var(--guide-ink);
    font-size: .24em;
    letter-spacing: -.04em;
}

#subpage.fe-guide .guide-award-summary p {
    max-width: 32ch;
    margin: 18px 0 0;
    color: #5e574c;
    font-size: .88rem;
    line-height: 1.65;
    text-align: left;
}

.fe-guide .guide-award-table {
    width: 100%;
    overflow: hidden;
    margin: 0;
    border: 0;
    border-radius: 22px;
    background: #ffffff;
    border-collapse: separate;
    border-spacing: 0;
}

.fe-guide .guide-award-table th,
.fe-guide .guide-award-table td {
    height: 74px;
    padding: 16px 24px;
    border: 0;
    border-bottom: 1px solid var(--guide-line);
    color: var(--guide-ink);
    font-size: .98rem;
    line-height: 1.45;
    text-align: center;
    white-space: nowrap;
}

.fe-guide .guide-award-table th {
    height: 64px;
    background: var(--guide-red);
    color: #ffffff;
    font-size: .86rem;
    font-weight: 700;
}

.fe-guide .guide-award-table tbody tr:last-child td {
    border-bottom: 0;
}

.fe-guide .guide-award-table td:first-child {
    font-weight: 700;
}

.fe-guide .guide-award-table td strong {
    color: var(--guide-red);
    font-size: 1.18rem;
}

.fe-guide .guide-award-notes {
    margin-top: 12px;
}

.fe-guide .guide-award-notes li {
    color: #8a8276;
    font-size: .82rem;
    line-height: 1.55;
    text-align: right;
}

.fe-guide .guide-award-notes li::before {
    margin-right: 6px;
    content: "\2022";
}

.fe-guide .guide-milestones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: clamp(52px, 7vw, 84px);
}

.fe-guide .guide-milestone {
    padding: clamp(30px, 3.6vw, 44px) clamp(28px, 3.2vw, 40px);
    border-radius: 24px;
    background: #ffffff;
}

.fe-guide .guide-milestone span {
    display: block;
    margin-bottom: 16px;
    color: var(--guide-red);
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
}

.fe-guide .guide-milestone strong {
    display: block;
    margin-bottom: 18px;
    color: var(--guide-ink);
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    letter-spacing: -.045em;
    line-height: 1.3;
}

#subpage.fe-guide .guide-milestone p {
    position: relative;
    margin: 0;
    padding-left: 14px;
    color: #635d52;
    font-size: 1rem;
    line-height: 1.7;
}

#subpage.fe-guide .guide-milestone p::before {
    position: absolute;
    left: 0;
    color: var(--guide-red);
    content: "\2022";
}

.fe-guide .guide-contact {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 120px) 0;
    background: var(--guide-navy);
}

.fe-guide .guide-contact::after {
    position: absolute;
    right: -80px;
    bottom: -155px;
    width: 380px;
    aspect-ratio: 533 / 516;
        background: url('/2026/img/main/guide_otoki.png') no-repeat center / contain;
    content: "";
    opacity: .94;
}

.fe-guide .guide-contact__heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: end;
    margin-bottom: 48px;
}

#subpage.fe-guide .guide-contact__heading h3 {
    max-width: 13ch;
    margin: 0;
    color: #ffffff;
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 4.5rem);
    letter-spacing: -.065em;
    line-height: 1.08;
}

#subpage.fe-guide .guide-contact__heading h3::after {
    display: inline;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--guide-title-dot);
    content: ".";
}

#subpage.fe-guide .guide-contact__heading p {
    margin: 0;
    color: #d9e1f6;
    font-size: 1rem;
    line-height: 1.75;
}

.fe-guide .guide-contact-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .24);
    border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.fe-guide .guide-contact-list a {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 130px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    color: #ffffff;
}

/* ¼¼·Î ±¸ºÐ¼±Àº À§¾Æ·¡ ¿©¹éÀ» »« ±ÛÀÚ ¿µ¿ª ³ôÀÌ¸¸Å­¸¸ */
.fe-guide .guide-contact-list a + a::before {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, .24);
    content: "";
}

.fe-guide .guide-contact-list i {
    margin-bottom: 18px;
    color: var(--guide-yellow);
    font-size: 1.25rem;
}

.fe-guide .guide-contact-list span,
.fe-guide .guide-contact-list strong {
    display: block;
    min-width: 0;
    color: inherit;
}

.fe-guide .guide-contact-list span {
    margin-bottom: 6px;
    color: #bac8e8;
    font-size: .78rem;
}

.fe-guide .guide-contact-list strong {
    overflow-wrap: anywhere;
    font-size: clamp(.95rem, 1.6vw, 1.2rem);
    line-height: 1.4;
}

.fe-guide .guide-hours {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    color: #d9e1f6;
    font-size: .84rem;
    line-height: 1.6;
}

.fe-guide .guide-notice-section {
    background: #ffffff;
}

.fe-guide .guide-notice {
    border-top: 2px solid var(--guide-ink);
    border-bottom: 2px solid var(--guide-ink);
}

.fe-guide .guide-notice summary {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--guide-ink);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    list-style: none;
}

.fe-guide .guide-notice summary::-webkit-details-marker {
    display: none;
}

.fe-guide .guide-notice summary::after {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--guide-yellow);
    color: var(--guide-ink);
    content: "+";
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 260ms var(--guide-ease);
}

.fe-guide .guide-notice[open] summary::after {
    transform: rotate(45deg);
}

.fe-guide .guide-notice__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 420ms var(--guide-ease);
}

.fe-guide .guide-notice[open] .guide-notice__body {
    grid-template-rows: 1fr;
}

.fe-guide .guide-notice__clip {
    overflow: hidden;
}

.fe-guide .guide-caution-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 44px;
    padding: 16px 0 38px;
    counter-reset: guide-caution;
}

.fe-guide .guide-caution-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 0;
    border-top: 1px solid var(--guide-line);
    color: #5f594f;
    font-size: .9rem;
    line-height: 1.68;
    counter-increment: guide-caution;
}

.fe-guide .guide-caution-list li::before {
    color: var(--guide-red);
    content: counter(guide-caution, decimal-leading-zero);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 2;
}

.fe-guide .guide-final {
    position: relative;
    overflow: hidden;
    padding: clamp(62px, 8vw, 104px) 0 max(clamp(62px, 8vw, 104px), env(safe-area-inset-bottom));
    background: var(--guide-red);
}

.fe-guide .guide-final::before,
.fe-guide .guide-final::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.fe-guide .guide-final::before {
    top: -210px;
    left: -110px;
    width: 420px;
    aspect-ratio: 1;
    border: 56px solid rgba(255, 228, 0, .34);
}

.fe-guide .guide-final::after {
    right: -40px;
    bottom: -90px;
    width: 180px;
    aspect-ratio: 1;
    background: var(--guide-yellow);
}

.fe-guide .guide-final__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.fe-guide .guide-final__copy span {
    display: block;
    margin-bottom: 14px;
    color: var(--guide-yellow);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .08em;
}

#subpage.fe-guide .guide-final__copy h3 {
    max-width: 18ch;
    margin: 0;
    color: #ffffff;
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(2rem, 4.5vw, 4.2rem);
    letter-spacing: -.065em;
    line-height: 1.1;
}

#subpage.fe-guide button.app.guide-apply {
    display: inline-flex;
    width: auto;
    min-width: min(100%, 280px);
    min-height: 66px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0 34px;
    border: 0;
    border-radius: 999px;
    background: var(--guide-yellow);
    color: var(--guide-ink);
    font-size: 1.08rem;
    font-weight: 700;
    transition: transform 220ms var(--guide-ease-soft), background-color 220ms var(--guide-ease-soft);
}

#subpage.fe-guide button.app.guide-apply i {
    margin: 0;
    color: var(--guide-red);
    font-size: 1.1rem;
}

/* Motion is opt-in so content remains visible when JavaScript is unavailable. */
.fe-guide.motion-enabled .guide-hero__copy > *,
.fe-guide.motion-enabled .guide-hero__visual,
.fe-guide.motion-enabled .guide-fact {
    opacity: 0;
    transform: translateY(24px);
}

.fe-guide.motion-enabled .guide-fact {
    transform: translateY(24px) scale(.96);
}

.fe-guide.motion-enabled.is-ready .guide-hero__copy > *,
.fe-guide.motion-enabled.is-ready .guide-hero__visual,
.fe-guide.motion-enabled.is-ready .guide-fact {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 720ms var(--guide-ease), transform 720ms var(--guide-ease);
}

.fe-guide.motion-enabled.is-ready .guide-hero__copy > :nth-child(2) { transition-delay: 80ms; }
.fe-guide.motion-enabled.is-ready .guide-hero__copy > :nth-child(3) { transition-delay: 150ms; }
.fe-guide.motion-enabled.is-ready .guide-hero__copy > :nth-child(4) { transition-delay: 210ms; }
.fe-guide.motion-enabled.is-ready .guide-hero__copy > :nth-child(5) { transition-delay: 270ms; }
.fe-guide.motion-enabled.is-ready .guide-hero__visual { transition-delay: 120ms; }
.fe-guide.motion-enabled.is-ready .guide-fact:nth-child(1) { transition-delay: 280ms; }
.fe-guide.motion-enabled.is-ready .guide-fact:nth-child(2) { transition-delay: 340ms; }
.fe-guide.motion-enabled.is-ready .guide-fact:nth-child(3) { transition-delay: 400ms; }
.fe-guide.motion-enabled.is-ready .guide-fact:nth-child(4) { transition-delay: 460ms; }

.fe-guide.motion-enabled .guide-reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 680ms var(--guide-ease), transform 680ms var(--guide-ease);
}

.fe-guide.motion-enabled .guide-reveal[data-reveal="left"] {
    transform: translateX(-42px);
}

.fe-guide.motion-enabled .guide-reveal[data-reveal="right"] {
    transform: translateX(42px);
}

.fe-guide.motion-enabled .guide-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.fe-guide.motion-enabled .guide-card-reveal,
.fe-guide.motion-enabled .guide-reveal.guide-card-reveal {
    --guide-card-x: 0px;
    --guide-card-y: 36px;
    opacity: 0;
    transform: translate3d(var(--guide-card-x), var(--guide-card-y), 0) scale(.965);
    transition: opacity 620ms var(--guide-ease), transform 720ms var(--guide-ease);
    transition-delay: 0ms;
    will-change: opacity, transform;
}

.fe-guide.motion-enabled .guide-card-reveal[data-card-direction="left"] {
    --guide-card-x: -34px;
}

.fe-guide.motion-enabled .guide-card-reveal[data-card-direction="right"] {
    --guide-card-x: 34px;
}

.fe-guide.motion-enabled .guide-card-reveal.is-visible,
.fe-guide.motion-enabled .guide-reveal.guide-card-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: var(--guide-card-delay, 0ms);
}

.fe-guide.motion-enabled .guide-card-reveal .sched-ico,
.fe-guide.motion-enabled .guide-card-reveal .guide-panel-kicker i,
.fe-guide.motion-enabled .guide-card-reveal > i {
    opacity: 0;
    transform: scale(.72) rotate(-8deg);
    transition: opacity 420ms var(--guide-ease), transform 520ms var(--guide-ease);
}

.fe-guide.motion-enabled .guide-card-reveal.is-visible .sched-ico,
.fe-guide.motion-enabled .guide-card-reveal.is-visible .guide-panel-kicker i,
.fe-guide.motion-enabled .guide-card-reveal.is-visible > i {
    opacity: 1;
    transform: scale(1) rotate(0);
    transition-delay: calc(var(--guide-card-delay, 0ms) + 180ms);
}

.fe-guide.motion-enabled .sched-list .sched-arrow {
    opacity: 0;
    transform: translateY(16px) scale(.86);
}

.fe-guide.motion-enabled .sched-list.is-visible .sched-arrow {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 420ms var(--guide-ease), transform 520ms var(--guide-ease);
}

.fe-guide.motion-enabled .sched-list.is-visible > :nth-child(2) { transition-delay: 95ms; }
.fe-guide.motion-enabled .sched-list.is-visible > :nth-child(4) { transition-delay: 245ms; }
.fe-guide.motion-enabled .sched-list.is-visible > :nth-child(6) { transition-delay: 395ms; }

@media (hover: hover) and (pointer: fine) {
    .fe-guide .guide-button:hover {
        transform: translateY(-3px);
    }

    .fe-guide .guide-button:hover i {
        transform: translateX(4px);
    }

    .fe-guide .guide-button--primary:hover {
        border-color: var(--guide-navy);
        background: var(--guide-navy);
    }

    .fe-guide .guide-jump a:hover {
        color: var(--guide-red);
    }

    .fe-guide .guide-jump a:hover::after {
        transform: scaleX(1);
    }

    .fe-guide .sched-item,
    .fe-guide .guide-method,
    .fe-guide .guide-panel {
        transition: box-shadow 260ms var(--guide-ease-soft), transform 260ms var(--guide-ease-soft);
    }

    .fe-guide .sched-item:hover,
    .fe-guide .guide-method:hover,
    .fe-guide .guide-panel:hover {
        box-shadow: 0 24px 54px rgba(39, 37, 31, .14);
        transform: translateY(-6px);
    }

    .fe-guide.motion-enabled .sched-item.guide-card-reveal.is-visible:hover,
    .fe-guide.motion-enabled .guide-method.guide-card-reveal.is-visible:hover,
    .fe-guide.motion-enabled .guide-panel.guide-card-reveal.is-visible:hover,
    .fe-guide.motion-enabled .guide-contact-list a.guide-card-reveal.is-visible:hover {
        transform: translate3d(0, -6px, 0) scale(1);
        transition-delay: 0ms;
    }

    .fe-guide .guide-award-table tbody tr {
        transition: background-color 180ms var(--guide-ease-soft);
    }

    .fe-guide .guide-award-table tbody tr:hover {
        background: #fff9dc;
    }

    .fe-guide .guide-contact-list a {
        transition: background-color 220ms var(--guide-ease-soft), transform 220ms var(--guide-ease-soft);
    }

    .fe-guide .guide-contact-list a:hover {
        background: rgba(255, 255, 255, .08);
        transform: translateY(-4px);
    }

    #subpage.fe-guide button.app.guide-apply:hover {
        background: #ffffff;
        transform: translateY(-4px);
    }
}

@media (min-width: 1024px) {
    .fe-guide .guide-hero__copy {
        text-align: center;
    }

    #subpage.fe-guide .guide-hero h1 img {
        margin: 0 auto;
    }

    .fe-guide .sched-break-pc {
        display: block;
    }
}

/* style.css clamps body to 640px under its mobile breakpoint;
   keep the pc layout down to 768px here */
@media (min-width: 768px) and (max-width: 1023px) {
    body {
        max-width: none;
    }
}
@media (max-width: 1023px) {
    #head .logo {
        height: 80px;
        gap: 8px;
        margin-left: 20px;
    }

    #head .logo img {
        height: 42px;
    }

    #head .logo::after {
        font-size: 10px;
    }

    .fe-guide .guide-hero {
        margin-top: 80px;
    }

    .fe-guide .guide-jump {
        top: 80px;
    }
}

@media (max-width: 1023px) {
    .fe-guide .guide-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
            gap: 16px;
    }

    .fe-guide .guide-overview-grid {
        grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    }

    .fe-guide .sched-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .fe-guide .sched-arrow {
        display: none;
    }

    .fe-guide .sched-item {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .fe-guide .guide-shell {
        width: min(100% - 32px, 640px);
    }

    .fe-guide .guide-hero {
        padding-top: 24px;
    }

                .fe-guide .guide-hero__grid {
                    grid-template-columns: minmax(0, 1fr);
                    gap: clamp(24px, 7vw, 44px);
    }

                .fe-guide .guide-hero__copy {
                    padding-bottom: 0;
    }

                #subpage.fe-guide .guide-hero h1 img {
                    width: min(100%, 460px);
    }

    .fe-guide .guide-eyebrow {
        margin-bottom: 16px;
        font-size: .75rem;
    }

    .fe-guide .guide-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 26px;
    }

    .fe-guide .guide-button {
        min-height: 52px;
        padding: 0 17px;
        font-size: .88rem;
    }

    .fe-guide .guide-hero__sun {
        right: 0;
            width: 48%;
    }

    .fe-guide .guide-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 32px;
    }

    .fe-guide .guide-fact {
        padding: 19px 12px;
    }

    .fe-guide .guide-fact + .guide-fact::before {
        display: none;
    }

    .fe-guide .guide-fact:nth-child(even)::before {
        display: block;
        top: 19px;
        bottom: 19px;
    }

    .fe-guide .guide-fact:nth-child(n + 3) {
        border-top: 1px solid rgba(39, 37, 31, .22);
    }

    .fe-guide .guide-fact strong {
        font-size: 1.3rem;
    }

    .fe-guide .guide-jump__inner {
        min-height: 56px;
    }

    .fe-guide .guide-jump a {
        padding: 0 13px;
        font-size: .8rem;
    }

    .fe-guide .guide-section {
        padding: 74px 0;
        scroll-margin-top: 152px;
    }

    .fe-guide .guide-contact {
        scroll-margin-top: 152px;
    }

    .fe-guide .guide-section-heading {
        grid-template-columns: minmax(0, 1fr);
        margin-bottom: 34px;
    }

    #subpage.fe-guide .guide-section h3 {
        font-size: clamp(2.1rem, 4.2vw, 3rem);
    }

    .fe-guide .guide-section-heading p {
        font-size: .9rem;
    }

    .fe-guide .guide-overview-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .fe-guide .guide-panel {
        padding: 28px;
        border-radius: 24px;
    }

    .fe-guide .guide-panel--qualify {
        min-height: 300px;
    }

    .fe-guide .guide-panel--theme {
        min-height: 0;
    }

    .fe-guide .guide-panel--theme h4 {
        font-size: 1.65rem;
    }

    .fe-guide .guide-topic-list li {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
        font-size: .88rem;
    }

    .fe-guide .sched-list {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .fe-guide .sched-item {
        display: flex;
        min-height: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 24px 22px;
        border-radius: 22px;
    }

    .fe-guide .sched-body {
        width: 100%;
        text-align: center;
    }


    .fe-guide .sched-ico {
        width: 52px;
        height: 52px;
        margin: 0;
    }

    .fe-guide .sched-arrow {
        display: grid;
        min-height: 42px;
    }

    .fe-guide .sched-arrow i {
        width: 28px;
        height: 28px;
        transform: none;
    }

    .fe-guide .guide-award-summary {
        grid-template-columns: minmax(0, 1.25fr) minmax(112px, .75fr);
        align-items: stretch;
    }

    .fe-guide .guide-award-total {
        padding: 4px 18px 18px 0;
    }

    .fe-guide .guide-award-total + .guide-award-total {
        padding-right: 0;
        padding-left: 18px;
    }

    .fe-guide .guide-award-total > span {
        margin-bottom: 14px;
        font-size: .78rem;
    }

    .fe-guide .guide-award-summary strong {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    #subpage.fe-guide .guide-award-summary p {
        margin-top: 12px;
        font-size: .76rem;
        text-align: left;
    }

    .fe-guide .guide-award-table,
    .fe-guide .guide-award-table tbody,
    .fe-guide .guide-award-table tr,
    .fe-guide .guide-award-table td {
        display: block;
        width: 100%;
    }

    .fe-guide .guide-award-table {
        overflow: visible;
        border-radius: 0;
        background: transparent;
    }

    .fe-guide .guide-award-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .fe-guide .guide-award-table tr {
        margin-bottom: 12px;
        padding: 18px 20px;
        border-radius: 18px;
        background: #ffffff;
    }

    .fe-guide .guide-award-table td {
        display: flex;
        min-height: 0;
        align-items: baseline;
        justify-content: space-between;
        gap: 20px;
        height: auto;
        padding: 9px 0;
        border-bottom: 1px solid var(--guide-line);
        font-size: .9rem;
        text-align: right !important;
        white-space: normal;
    }

    .fe-guide .guide-award-table td:last-child {
        border-bottom: 0;
    }

    .fe-guide .guide-award-table td::before {
        flex: 0 0 auto;
        color: #8a8276;
        content: attr(data-label);
        font-size: .75rem;
        font-weight: 700;
    }

    .fe-guide .guide-milestones {
        grid-template-columns: minmax(0, 1fr);
    }

    .fe-guide .guide-contact__heading {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .fe-guide .guide-contact-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .fe-guide .guide-contact-list a {
        min-height: 104px;
        padding: 22px 0;
    }

    .fe-guide .guide-contact-list a + a {
        border-top: 1px solid rgba(255, 255, 255, .24);
    }

    .fe-guide .guide-contact-list a + a::before {
        display: none;
    }

    .fe-guide .guide-contact-list i {
        margin-bottom: 12px;
    }

    .fe-guide .guide-caution-list {
        grid-template-columns: minmax(0, 1fr);
        padding-bottom: 28px;
    }

    .fe-guide .guide-notice summary {
        min-height: 74px;
        font-size: .95rem;
    }

    .fe-guide .guide-final__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    #subpage.fe-guide button.app.guide-apply {
        width: 100%;
        min-height: 60px;
    }

    .fe-guide.motion-enabled .guide-card-reveal,
    .fe-guide.motion-enabled .guide-reveal.guide-card-reveal {
        --guide-card-y: 24px;
    }

    .fe-guide.motion-enabled .guide-card-reveal[data-card-direction="left"] {
        --guide-card-x: -18px;
    }

    .fe-guide.motion-enabled .guide-card-reveal[data-card-direction="right"] {
        --guide-card-x: 18px;
    }
}

@media (max-width: 359px) {
    .fe-guide .guide-shell {
        width: calc(100% - 24px);
    }

    .fe-guide .guide-actions {
        grid-template-columns: minmax(0, 1fr);
    }

    .fe-guide .guide-fact strong {
        font-size: 1.1rem;
    }

    .fe-guide .guide-award-summary {
        grid-template-columns: minmax(0, 1fr);
    }

    .fe-guide .guide-award-total + .guide-award-total {
        padding-top: 24px;
        padding-left: 0;
        border-top: 1px solid rgba(39, 37, 31, .24);
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fe-guide *,
    .fe-guide *::before,
    .fe-guide *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .fe-guide.motion-enabled .guide-hero__copy > *,
    .fe-guide.motion-enabled .guide-hero__visual,
    .fe-guide.motion-enabled .guide-fact,
    .fe-guide.motion-enabled .guide-reveal,
    .fe-guide.motion-enabled .guide-card-reveal,
    .fe-guide.motion-enabled .guide-card-reveal .sched-ico,
    .fe-guide.motion-enabled .guide-card-reveal .guide-panel-kicker i,
    .fe-guide.motion-enabled .guide-card-reveal > i,
    .fe-guide.motion-enabled .sched-list .sched-item,
    .fe-guide.motion-enabled .sched-list .sched-arrow {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   03. submit methods
   ============================================================ */
#subpage.fe-guide .guide-submit-label {
    margin: -24px 0 24px;
    color: var(--guide-navy);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
}

.fe-guide .guide-methods {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

.fe-guide .guide-method {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(26px, 3.2vw, 40px);
    border-radius: 16px;
    background: #f5f5f5;
}

.fe-guide .guide-method__meta {
    display: grid;
    gap: 12px;
}

#subpage.fe-guide .guide-method h4 {
    margin: 0;
    color: var(--guide-ink);
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(1.2rem, 1.9vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.3;
    text-align: left;
}

.fe-guide .guide-method__number {
    margin-right: 14px;
    color: var(--guide-red);
}

#subpage.fe-guide .guide-method p {
    max-width: 34em;
    margin: 0;
    color: #666666;
    font-size: .95rem;
    line-height: 1.7;
}

#subpage.fe-guide .guide-method .guide-note {
    color: #999999;
    font-size: .84rem;
}

.fe-guide .guide-home-url {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 4px 16px;
    padding: 22px 24px;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    background: #ffffff;
    color: var(--guide-ink);
    transition: box-shadow 220ms var(--guide-ease-soft), transform 220ms var(--guide-ease-soft);
}

.fe-guide .guide-home-url strong,
.fe-guide .guide-home-url em {
    display: block;
    min-width: 0;
    grid-column: 1;
    overflow-wrap: anywhere;
}

.fe-guide .guide-home-url strong {
    color: var(--guide-ink);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.4;
}

.fe-guide .guide-home-url em {
    color: #888888;
    font-size: .8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: underline;
}

.fe-guide .guide-home-url i {
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    grid-row: 1 / 3;
    grid-column: 2;
    border-radius: 50%;
    background: var(--guide-red);
    color: #ffffff;
    font-size: .72rem;
    transition: transform 220ms var(--guide-ease-soft);
}

.fe-guide .guide-home-url:hover {
    box-shadow: 0 12px 26px rgba(39, 37, 31, .12);
    transform: translateY(-3px);
}

.fe-guide .guide-home-url:hover i {
    transform: translateX(3px);
}

.fe-guide .guide-spec {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    padding: clamp(30px, 3.6vw, 44px);
    border-radius: 16px;
    background: var(--guide-navy);
}

.fe-guide .guide-spec::after {
    position: absolute;
    top: 26%;
    right: clamp(-90px, -5vw, -40px);
    width: clamp(170px, 22vw, 290px);
    aspect-ratio: 533 / 516;
    transform: translateY(-50%) rotate(9deg);
    background: url('/2026/img/main/guide_otoki.png') no-repeat center / contain;
    content: "";
}

.fe-guide .guide-spec>* {
    position: relative;
    z-index: 1;
}

.fe-guide .guide-spec__label {
    display: block;
    margin-bottom: 16px;
    color: var(--guide-yellow);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.3;
}

.fe-guide .guide-spec strong {
    display: block;
    margin-bottom: 24px;
    color: #ffffff;
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.3;
}

.fe-guide .guide-spec ul {
    display: grid;
    gap: 8px;
}

.fe-guide .guide-spec li {
    display: flex;
    gap: 12px;
    color: #ffffff;
    font-size: .95rem;
    line-height: 1.6;
}

.fe-guide .guide-spec li::before {
    color: var(--guide-yellow);
    content: "\25CF";
    font-size: .5rem;
    line-height: 3;
}

.fe-guide .guide-spec__sub {
    margin-top: 20px;
}

.fe-guide .guide-spec__sub li {
    color: #c3d0ee;
    font-size: .86rem;
}

.fe-guide .guide-spec__sub li::before {
    color: #c3d0ee;
    font-size: .38rem;
    line-height: 3.7;
}

@media (max-width: 1023px) {
    .fe-guide .guide-method {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
    }

    .fe-guide .guide-spec::after {
        top: auto;
        right: -70px;
        top: -15px;
        width: 190px;
        transform: rotate(9deg);
    }
}

@media (max-width: 767px) {
    .fe-guide .guide-method {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .fe-guide .guide-home-url {
        padding: 18px;
    }

    .fe-guide .guide-spec {
        padding: 28px 22px;
        border-radius: 14px;
    }

                                /* Mobile: keep the Ottogi symbol visible without covering the copy. */
    .fe-guide .guide-spec::after {
        display: block;
            top: -7%;
                right: -17%;
            bottom: auto;
            width: clamp(118px, 37.333vw, 224px);
            transform: rotate(9deg);
        }
        }
        
        /* ============================================================
                           Figma 44:25691 alignment
                           - Keep the existing hero.
                           - Use the 860px body grid from the desktop design.
                           ============================================================ */
        #subpage.fe-guide {
            --guide-figma-red: #e0393d;
            --guide-figma-yellow: #fff101;
            --guide-figma-yellow-soft: #fff767;
            --guide-figma-dot: #ffc300;
            --guide-figma-navy: #254593;
            --guide-figma-ink: #1d1d1d;
            --guide-figma-gray: #f6f6f6;
            --guide-figma-cream: #fff8df;
        }
        
        .fe-guide #guide-overview>.guide-shell,
        .fe-guide #guide-schedule>.guide-shell,
        .fe-guide #guide-submit>.guide-shell,
        .fe-guide #guide-awards>.guide-shell,
        .fe-guide #guide-contact>.guide-shell,
        .fe-guide #guide-notice>.guide-shell,
        .fe-guide .guide-final>.guide-shell {
            width: min(860px, calc(100% - 40px));
        }
        
        /* 01. Overview: only the Figma colors and horizontal grid. */
        .fe-guide .guide-overview-grid {
            grid-template-columns: 335px minmax(0, 1fr);
            gap: 24px;
        }
        
        .fe-guide .guide-panel--qualify {
            background: var(--guide-figma-yellow-soft);
        }
        
        .fe-guide .guide-panel--theme {
            background: var(--guide-figma-red);
        }
        
        .fe-guide .guide-panel--theme .guide-panel-kicker {
            color: var(--guide-figma-yellow);
        }
        
        .fe-guide .guide-topic-list li::before {
            background: var(--guide-figma-yellow);
        }
        
        /* 02. Schedule: square PC cards aligned to the shared 860px grid. */
        .fe-guide .sched-list {
            grid-template-columns:
                minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
            gap: 10px;
        }
        
        .fe-guide .sched-item {
            display: flex;
            min-height: 0;
            aspect-ratio: 1 / 1;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 18px;
            border-radius: 16px;
            text-align: left;
        }
        
        .fe-guide .sched-ico {
            width: 40px;
            height: 40px;
            margin: 0 0 16px;
        }
        
        .fe-guide .sched-ico i {
            font-size: 1rem;
        }
        
        .fe-guide .sched-body {
            width: 100%;
            text-align: left;
        }
        
        .fe-guide .sched-body b {
            margin-bottom: 6px;
            font-size: 1rem;
        }
        
        #subpage.fe-guide .sched-body p {
            font-size: .75rem;
            line-height: 1.4;
        }
        
        .fe-guide .sched-body em {
            margin-top: 2px;
            font-size: .625rem;
            line-height: 1.4;
        }
        
        .fe-guide .sched-arrow i {
            width: 28px;
            height: 28px;
            font-size: .68rem;
        }
        
        /* 03. Submission: preserve the structure and apply only the spec colors. */
        .fe-guide .guide-spec {
            background: var(--guide-figma-navy);
        }
        
        .fe-guide .guide-spec__label {
            color: #fff101;
        }
        
        .fe-guide .guide-spec li::before {
            color: var(--guide-figma-yellow);
        }
        
        .fe-guide .guide-spec::after {
            background: var(--guide-figma-yellow);
            -webkit-mask: url('/2026/img/main/guide_otoki.png') no-repeat center / contain;
            mask: url('/2026/img/main/guide_otoki.png') no-repeat center / contain;
        }
        
        /* 04. Awards: full Figma treatment. */
        .fe-guide .guide-awards {
            padding: 80px 0;
            background: var(--guide-figma-cream);
        }
        
        .fe-guide .guide-awards .guide-section-heading {
            margin-bottom: 48px;
        }
        
        #subpage.fe-guide .guide-awards h3,
        #subpage.fe-guide .guide-contact__heading h3,
        #subpage.fe-guide .guide-notice-section h3 {
            margin: 0;
            color: var(--guide-figma-ink);
            font-size: clamp(2.1rem, 4.2vw, 3rem);
            font-weight: 700;
            letter-spacing: -.03em;
            line-height: normal;
        }
        
        #subpage.fe-guide .guide-contact__heading h3 {
            width: auto;
            max-width: none;
            text-align: left;
        }
        
        #subpage.fe-guide .guide-awards h3::after,
        #subpage.fe-guide .guide-contact__heading h3::after,
        #subpage.fe-guide .guide-notice-section h3::after {
            color: var(--guide-figma-dot);
        }
        
        .fe-guide .guide-award-summary {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            row-gap: 24px;
            column-gap: 40px;
            margin: 0 0 24px;
            padding: 0 40px;
            border: 0;
        }
        
        .fe-guide .guide-award-summary::before {
            grid-column: 1 / -1;
            margin-left: -40px;
            color: var(--guide-figma-red);
            content: "01";
            font-family: "OtokiSans3N", sans-serif;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.4;
        }
        
        .fe-guide .guide-award-total {
            min-height: 101px;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 12px 0;
        }
        
        .fe-guide .guide-award-total+.guide-award-total {
            padding: 12px 0 12px 40px;
            border-left: 1px solid rgba(29, 29, 29, .2);
        }
        
        .fe-guide .guide-award-total>span {
            margin: 0;
            color: var(--guide-figma-ink);
            font-size: 20px;
            font-weight: 500;
        }
        
        .fe-guide .guide-award-summary strong,
        .fe-guide .guide-award-total--people strong {
            color: var(--guide-figma-ink);
            font-size: 48px;
            letter-spacing: -.03em;
            line-height: 1.4;
        }
        
        .fe-guide .guide-award-summary strong small {
            color: var(--guide-figma-ink);
            font-size: 20px;
            font-weight: 500;
            letter-spacing: -.02em;
        }
        
        .fe-guide .guide-award-table {
            table-layout: fixed;
            border-radius: 6px 6px 0 0;
        }
        
        .fe-guide .guide-award-table th,
        .fe-guide .guide-award-table td {
            height: auto;
            padding: 8px 20px;
            border-bottom: 1px solid var(--guide-figma-red);
            color: var(--guide-figma-ink);
            font-size: 16px;
            line-height: 1.6;
        }
        
        .fe-guide .guide-award-table th {
            background: var(--guide-figma-red);
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
        }
        
        .fe-guide .guide-award-table tbody tr:last-child td {
            border-bottom: 1px solid var(--guide-figma-red);
        }
        
        .fe-guide .guide-award-table td strong {
            color: var(--guide-figma-red);
            font-size: 16px;
            font-weight: 500;
        }
        
        .fe-guide .guide-award-notes {
            margin-top: 6px;
        }
        
        .fe-guide .guide-award-notes li {
            color: var(--guide-figma-ink);
            font-size: 12px;
            line-height: 1.6;
        }
        
        .fe-guide .guide-milestones {
            gap: 24px;
            margin-top: 40px;
        }
        
        .fe-guide .guide-milestone {
            padding: 36px 40px;
            border-radius: 16px;
        }
        
        .fe-guide .guide-milestone span {
            margin-bottom: 12px;
            color: var(--guide-figma-red);
            font-size: 24px;
            line-height: 1.4;
        }
        
        .fe-guide .guide-milestone strong {
            margin-bottom: 24px;
            color: var(--guide-figma-ink);
            font-size: 24px;
            line-height: 1.4;
        }
        
        #subpage.fe-guide .guide-milestone p {
            color: var(--guide-figma-ink);
            font-size: 16px;
            line-height: 1.8;
        }
        
        #subpage.fe-guide .guide-milestone p::before {
            color: var(--guide-figma-dot);
        }
        
        /* 05. Contact: title + one quiet information card. */
        .fe-guide .guide-contact {
            overflow: visible;
            padding: 80px 0 0;
            background: #ffffff;
        }
        
        .fe-guide .guide-contact::after {
            display: none;
        }
        
        .fe-guide .guide-contact__heading {
            display: block;
            margin-bottom: 24px;
        }
        
        .fe-guide .guide-contact-card {
            padding: 24px 40px;
            border-radius: 16px;
            background: var(--guide-figma-gray);
        }
        
        #subpage.fe-guide .guide-contact-office {
            margin: 0 0 16px;
            color: var(--guide-figma-ink);
            font-size: 16px;
            font-weight: 500;
            line-height: 1.6;
        }
        
        .fe-guide .guide-contact-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
            border: 0;
        }
        
        .fe-guide .guide-contact-list a {
            display: flex;
            min-height: 0;
            flex-direction: row;
            align-items: baseline;
            justify-content: flex-start;
            gap: 0;
            padding: 0 0 0 18px;
            color: var(--guide-figma-ink);
            font-size: 16px;
            font-weight: 300;
            line-height: 1.8;
        }
        
        .fe-guide .guide-contact-list a::before {
            position: absolute;
            top: .75em;
            left: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--guide-figma-yellow);
            content: "";
        }
        
        .fe-guide .guide-contact-list a+a::before {
            display: block;
            top: .75em;
            bottom: auto;
            left: 0;
            width: 6px;
            background: var(--guide-figma-yellow);
        }
        
        .fe-guide .guide-contact-list i {
            display: none;
        }
        
        .fe-guide .guide-contact-list span,
        .fe-guide .guide-contact-list strong {
            display: inline;
            color: inherit;
            font-size: inherit;
            font-weight: 300;
            line-height: inherit;
        }
        
        .fe-guide .guide-contact-list span {
            margin: 0 6px 0 0;
        }
        
        .fe-guide .guide-hours {
            margin: 16px 0 0;
            padding-left: 18px;
            color: var(--guide-figma-ink);
            font-size: 14px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .fe-guide .guide-hours::before {
            position: absolute;
            left: 0;
            content: "\2022";
        }
        
        /* 06. Cautions: always-expanded gray card from the Figma layout. */
        .fe-guide .guide-notice-section {
            padding: 80px 0 0;
            background: #ffffff;
        }
        
        .fe-guide .guide-notice-section .guide-section-heading {
            margin-bottom: 24px;
        }
        
        .fe-guide .guide-notice {
            padding: 24px 40px;
            border: 0;
            border-radius: 16px;
            background: var(--guide-figma-gray);
        }
        
        .fe-guide .guide-notice summary {
            display: none;
        }
        
        .fe-guide .guide-notice__body,
        .fe-guide .guide-notice[open] .guide-notice__body {
            display: block;
        }
        
        .fe-guide .guide-notice__clip {
            overflow: visible;
        }
        
        .fe-guide .guide-caution-list {
            display: block;
            padding: 0;
            counter-reset: none;
        }
        
        .fe-guide .guide-caution-list li {
            display: block;
            padding: 0;
            border: 0;
            color: var(--guide-figma-ink);
            font-size: 14px;
            font-weight: 300;
            line-height: 1.8;
            counter-increment: none;
        }
        
        .fe-guide .guide-caution-list li::before {
            margin-right: 2px;
            color: var(--guide-figma-ink);
            content: "\2022";
            font-size: inherit;
            font-weight: inherit;
            letter-spacing: 0;
            line-height: inherit;
        }
        
        /* 07. Final application CTA: Figma yellow band and white action card. */
        .fe-guide .guide-final {
            margin-top: 80px;
            padding: 48px 0 max(48px, env(safe-area-inset-bottom));
            background: var(--guide-figma-yellow);
        }
        
        .fe-guide .guide-final::before,
        .fe-guide .guide-final::after {
            display: none;
            }
                .fe-guide .guide-final__inner {
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: 36px;
                }
        
                #subpage.fe-guide .guide-final__copy h3 {
                    max-width: none;
                    margin: 0;
                    color: var(--guide-figma-ink);
                    font-size: 36px;
                    font-weight: 500;
                    letter-spacing: -.03em;
                    line-height: normal;
                    text-align: center;
                }
        
                #subpage.fe-guide .guide-final__copy h3::after {
                    display: none;
                }
        
                .fe-guide .guide-final__actions {
                    display: flex;
                    width: 100%;
                    justify-content: center;
                    gap: 24px;
                }
        
                .fe-guide .guide-final-card {
                    display: flex;
                    /* width: calc((100% - 24px) / 2); */
                    min-height: 110px;
                    align-items: center;
                    justify-content: space-between;
                    gap: 24px;
                    padding: 16px 30px 16px 40px;
                    border: 1px solid #e7e7e7;
                    border-radius: 16px;
                    background: #ffffff;
                    color: var(--guide-figma-ink);
                    transition: box-shadow 220ms var(--guide-ease-soft), transform 220ms var(--guide-ease-soft);
                }
        
                .fe-guide .guide-final-card span,
                .fe-guide .guide-final-card strong,
                .fe-guide .guide-final-card em {
                    display: block;
                    min-width: 0;
                }
        
                .fe-guide .guide-final-card strong {
                    color: var(--guide-figma-ink);
                    font-size: 24px;
                    font-weight: 700;
                    line-height: normal;
                }
        
                .fe-guide .guide-final-card em {
                    margin-top: 4px;
                    color: var(--guide-figma-ink);
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 300;
                    line-height: 1.8;
                    text-decoration: underline;
                }
        
                .fe-guide .guide-final-card i {
                    display: grid;
                    width: 26px;
                    height: 26px;
                    flex: 0 0 auto;
                    place-items: center;
                    border-radius: 50%;
                    background: var(--guide-figma-red);
                    color: #ffffff;
                    font-size: 11px;
                }
        
                @media (hover: hover) and (pointer: fine) {
                    .fe-guide .guide-contact-list a:hover {
                        background: transparent;
                        color: var(--guide-figma-red);
                        transform: none;
                    }
        
                    .fe-guide .guide-final-card:hover {
                        box-shadow: 0 12px 26px rgba(29, 29, 29, .12);
                        transform: translateY(-3px);
                    }
                }
        
                @media (min-width: 768px) and (max-width: 1023px) {
                    .fe-guide .sched-list {
                        grid-template-columns: repeat(2, minmax(0, 1fr));
                        gap: 20px;
                    }
        
                    .fe-guide .sched-item {
                        aspect-ratio: 3 / 2;
                        justify-content: center;
                        padding: 28px 32px;
                    }
        
                    .fe-guide .sched-ico {
                        width: 52px;
                        height: 52px;
                        margin-bottom: 20px;
                    }
        
                    .fe-guide .sched-body b {
                        margin-bottom: 8px;
                        font-size: 20px;
                    }
        
                    #subpage.fe-guide .sched-body p {
                        font-size: 16px;
                        line-height: 1.5;
                    }
        
                    .fe-guide .sched-body em {
                        font-size: 13px;
                        line-height: 1.5;
                    }
        
                    .fe-guide .sched-arrow {
                        display: none;
                    }
                }
        
                @media (max-width: 767px) {
        
                    .fe-guide #guide-overview>.guide-shell,
                    .fe-guide #guide-schedule>.guide-shell,
                    .fe-guide #guide-submit>.guide-shell,
                    .fe-guide #guide-awards>.guide-shell,
                    .fe-guide #guide-contact>.guide-shell,
                    .fe-guide #guide-notice>.guide-shell,
                    .fe-guide .guide-final>.guide-shell {
                        width: min(100% - 32px, 640px);
                    }
        
                    .fe-guide .guide-overview-grid {
                        grid-template-columns: minmax(0, 1fr);
                    }
        
                    #subpage.fe-guide .guide-panel-kicker {
                        margin-bottom: 32px;
                        font-size: 20px;
                        line-height: 1.4;
                    }
        
                    #subpage.fe-guide .guide-panel--qualify>h4:not(.guide-note) {
                        font-size: clamp(28px, 9.2vw, 36px);
                        letter-spacing: .015em;
                        line-height: 1.4;
                    }
        
                    #subpage.fe-guide .guide-panel--qualify>h4.guide-note {
                        font-size: clamp(22px, 6.2vw, 26px);
                    }
        
                    #subpage.fe-guide .guide-panel--qualify>h4.guide-note>i {
                        font-size: clamp(18px, 5vw, 21px);
                    }
        
                    #subpage.fe-guide .guide-panel--qualify>h4:nth-of-type(1),
                    #subpage.fe-guide .guide-panel--qualify>h4:nth-of-type(2) {
                        display: inline;
                    }
        
                    #subpage.fe-guide .guide-panel--qualify>h4:nth-of-type(1)::after {
                        content: " ";
                    }
        
                    #subpage.fe-guide .guide-panel--qualify>h4:nth-of-type(3) {
                        display: block;
                    }
        
                    #subpage.fe-guide .guide-panel--theme h4 {
                        font-size: clamp(26px, 7.4vw, 24px);
                        line-height: 1.35;
                        
                    }
        
                    .fe-guide .guide-topic-list li {
                        grid-template-columns: 6px minmax(0, 1fr);
                        gap: 12px;
                        padding: 12px 0;
                        font-size: 16px;
                        line-height: 1.8;
                    }
        
                    /* Mobile schedule: icon on the left, copy stack on the right. */
                    .fe-guide .sched-list {
                        grid-template-columns: minmax(0, 1fr);
                        gap: 0;
                    }
        
                    .fe-guide .sched-item {
                        display: grid;
                        min-height: 0;
                        aspect-ratio: auto;
                        grid-template-columns: 56px minmax(0, 1fr);
                        align-items: center;
                        justify-content: initial;
                        gap: 20px;
                        padding: 24px;
                        border-radius: 24px;
                        text-align: left;
                    }
        
                    .fe-guide .sched-ico {
                        grid-column: 1;
                        grid-row: 1;
                        width: 56px;
                        height: 56px;
                        margin: 0;
                    }
        
                    .fe-guide .sched-body {
                        width: 100%;
                        grid-column: 2;
                        grid-row: 1;
                        text-align: left;
                    }
        
                    .fe-guide .sched-body b {
                        margin-bottom: 8px;
                        font-size: 21px;
                    }
        
                    #subpage.fe-guide .sched-body p {
                        font-size: 17px;
                        line-height: 1.55;
                    }
        
                    .fe-guide .sched-body em {
                        margin-top: 4px;
                        font-size: 14px;
                        line-height: 1.5;
                    }

                        .fe-guide .sched-arrow {
                            display: grid;
                            min-height: 44px;
                            place-items: center;
                        }
        
                        .fe-guide .sched-arrow i {
                            width: 30px;
                            height: 30px;
                            font-size: .72rem;
                            transform: none;
                        }
        
                        .fe-guide .guide-awards {
                            padding: 64px 0;
                        }

                .fe-guide .guide-awards .guide-section-heading {
                    margin-bottom: 36px;
                }
        
                #subpage.fe-guide .guide-awards h3,
                #subpage.fe-guide .guide-contact__heading h3,
                #subpage.fe-guide .guide-notice-section h3 {
                    font-size: clamp(2.1rem, 4.2vw, 3rem);
                }
        
                .fe-guide .guide-award-summary {
                    column-gap: 16px;
                    padding: 0;
                }
        
                .fe-guide .guide-award-summary::before {
                    margin-left: 0;
                    font-size: 20px;
                }
        
                .fe-guide .guide-award-total {
                    min-height: 0;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 8px;
                    padding: 4px 0 16px;
                }
        
                .fe-guide .guide-award-total+.guide-award-total {
                    padding: 4px 0 16px 16px;
                }
        
                .fe-guide .guide-award-total>span {
                    font-size: 14px;
                }
        
                .fe-guide .guide-award-summary strong,
                .fe-guide .guide-award-total--people strong {
                    font-size: clamp(2.5rem, 13vw, 3.25rem);
                }
        
                .fe-guide .guide-award-summary strong small {
                    font-size: 14px;
                }
        
                .fe-guide .guide-award-table tr {
                    border: 1px solid rgba(224, 57, 61, .2);
                    border-radius: 16px;
                }
        
                .fe-guide .guide-award-table td {
                    padding: 9px 0;
                    border-bottom-color: rgba(224, 57, 61, .25);
                    font-size: .9rem;
                }
        
                .fe-guide .guide-award-table tbody tr:last-child td {
                    border-bottom-color: rgba(224, 57, 61, .25);
                }
        
                .fe-guide .guide-award-table tbody tr:last-child td:last-child,
                .fe-guide .guide-award-table td:last-child {
                    border-bottom: 0;
                }
        
                .fe-guide .guide-milestones {
                    grid-template-columns: minmax(0, 1fr);
                    margin-top: 32px;
                }
        
                .fe-guide .guide-milestone {
                    padding: 30px 26px;
                }
        
                .fe-guide .guide-milestone strong {
                    font-size: 1.35rem;
                }
        
                #subpage.fe-guide .guide-milestone p {
                    font-size: .9rem;
                }
        
                .fe-guide .guide-contact,
                .fe-guide .guide-notice-section {
                    padding-top: 64px;
                }
        
                .fe-guide .guide-contact-card,
                .fe-guide .guide-notice {
                    padding: 24px 22px;
                }
        
                #subpage.fe-guide .guide-contact-office {
                    font-size: 15px;
                }
        
                .fe-guide .guide-contact-list a {
                    align-items: flex-start;
                    font-size: 14px;
                }
        
                .fe-guide .guide-contact-list strong {
                    overflow-wrap: anywhere;
                }
        
                .fe-guide .guide-hours {
                    font-size: 13px;
                }
        
                .fe-guide .guide-caution-list li {
                    font-size: 13px;
                    line-height: 1.75;
                }
        
                .fe-guide .guide-final {
                    margin-top: 64px;
                    padding: 40px 0 max(40px, env(safe-area-inset-bottom));
                }
        
                .fe-guide .guide-final__inner {
                    align-items: center;
                    gap: 24px;
                }
        
                #subpage.fe-guide .guide-final__copy h3 {
                    font-size: 28px;
                }
        
                .fe-guide .guide-final-card {
                    width: 100%;
                    min-height: 96px;
                    padding: 16px 22px;
                }
        
                .fe-guide .guide-final-card strong {
                    font-size: 18px;
                }
                }

@media (min-width: 345px) and (max-width: 390px) {
    .fe-guide .guide-contact-card {
        padding: 20px 10px;
    }

    .fe-guide .guide-contact-list span {
        flex: 0 0 auto;
        margin-right: 4px;
        white-space: nowrap;
    }

    .fe-guide .guide-contact-list strong {
        min-width: 0;
    }

    #subpage.fe-guide .guide-hours {
        padding-left: 12px;
        font-size: 10.5px;
        line-height: 1.5;
        white-space: nowrap;
    }
}

/* Zoom resilience: 125% / 150% */
@media (max-width: 344px) {
    .fe-guide .guide-panel {
        padding: 24px 20px;
    }

    #subpage.fe-guide .guide-panel-kicker {
        margin-bottom: 24px;
        font-size: 18px;
    }

    #subpage.fe-guide .guide-panel--qualify > h4:not(.guide-note) {
        font-size: clamp(26px, 8.4vw, 30px);
    }

    #subpage.fe-guide .guide-panel--qualify > h4.guide-note {
        font-size: 20px;
    }

    #subpage.fe-guide .guide-panel--qualify > h4.guide-note > i {
        font-size: 18px;
    }

    #subpage.fe-guide .guide-panel--theme h4 {
        font-size: 22px;
    }

    .fe-guide .guide-topic-list li {
        font-size: 15px;
        line-height: 1.7;
    }

    #subpage.fe-guide .guide-topic-closing {
        font-size: 14px;
        line-height: 1.65;
    }

    .fe-guide .guide-contact-card {
        padding: 20px 16px;
    }

    #subpage.fe-guide .guide-contact-office {
        font-size: 13px;
    }

    .fe-guide .guide-contact-list a {
        font-size: 13px;
        line-height: 1.65;
    }

    #subpage.fe-guide .guide-hours {
        padding-left: 12px;
        font-size: 9.5px;
        line-height: 1.5;
    }

    .fe-guide .guide-award-total + .guide-award-total {
        border-top: 0;
    }

    .fe-guide .guide-milestone {
        min-width: 0;
        padding: 26px 20px;
    }

    .fe-guide .guide-milestone span {
        font-size: 1.35rem;
    }

    .fe-guide .guide-milestone strong {
        margin-bottom: 20px;
        font-size: clamp(1.05rem, 5.5vw, 1.2rem);
        line-height: 1.35;
        overflow-wrap: break-word;
    }

    .fe-guide .guide-milestone strong br {
        display: none;
    }
}

@media (max-width: 287px) {
    .fe-guide .guide-panel {
        padding: 20px 16px;
    }

    #subpage.fe-guide .guide-panel-kicker {
        margin-bottom: 22px;
        font-size: 17px;
    }

    #subpage.fe-guide .guide-panel--qualify > h4:not(.guide-note) {
        font-size: 24px;
    }

    #subpage.fe-guide .guide-panel--qualify > h4.guide-note {
        font-size: 18px;
    }

    #subpage.fe-guide .guide-panel--qualify > h4.guide-note > i {
        font-size: 16px;
    }

    #subpage.fe-guide .guide-panel--theme h4 {
        font-size: 19px;
    }

    .fe-guide .guide-topic-list li {
        font-size: 14px;
    }

    #subpage.fe-guide .guide-topic-closing {
        font-size: 13px;
    }

    .fe-guide .guide-contact-card {
        padding: 18px 8px;
    }

    #subpage.fe-guide .guide-contact-office {
        font-size: 12px;
    }

    .fe-guide .guide-contact-list a {
        padding-left: 12px;
        font-size: 11px;
        line-height: 1.6;
    }

    .fe-guide .guide-contact-list a:nth-child(2) {
        font-size: 10.5px;
    }

    .fe-guide .guide-contact-list a:nth-child(3) {
        font-size: 9.5px;
    }

    .fe-guide .guide-contact-list span {
        margin-right: 4px;
    }

    #subpage.fe-guide .guide-hours {
        padding-left: 12px;
        font-size: 8.75px;
        line-height: 1.5;
    }

    .fe-guide .guide-milestone {
        padding: 22px 16px;
    }

    .fe-guide .guide-milestone span {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .fe-guide .guide-milestone strong {
        margin-bottom: 16px;
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* ============================================================
   08. Consolidated typography and responsive refinements
   ============================================================ */
#subpage.fe-guide {
    --guide-type-caption: .875rem;
    --guide-type-body: 1rem;
    --guide-type-lead: 1.25rem;
    --guide-type-subheading: 1.5rem;
    --guide-type-heading: clamp(2.1rem, 4.2vw, 3rem);
    --guide-leading-caption: 1.55;
    --guide-leading-body: 1.65;
    --guide-leading-heading: 1.12;
    --guide-tracking-heading: -.04em;
    font-kerning: normal;
}

#subpage.fe-guide .guide-section h3,
#subpage.fe-guide .guide-contact__heading h3,
#subpage.fe-guide .guide-final__copy h3 {
    letter-spacing: var(--guide-tracking-heading);
    line-height: var(--guide-leading-heading);
}

.fe-guide .sched-body b {
    font-size: var(--guide-type-lead);
    line-height: 1.3;
}

#subpage.fe-guide .sched-body p {
    font-size: var(--guide-type-body);
    line-height: 1.55;
    font-variant-numeric: tabular-nums;
}

.fe-guide .sched-body em {
    font-size: var(--guide-type-caption);
    line-height: var(--guide-leading-caption);
}

.fe-guide .guide-schedule-section::before {
    z-index: 1;
    top: -52px;
    right: -106px;
    width: 430px;
}

.fe-guide .guide-schedule-section > .guide-shell {
    position: relative;
    z-index: 2;
}

#subpage.fe-guide .guide-method p,
.fe-guide .guide-spec li,
.fe-guide .guide-topic-list li,
#subpage.fe-guide .guide-milestone p {
    font-size: var(--guide-type-body);
    line-height: var(--guide-leading-body);
}

.fe-guide .guide-home-url strong {
    font-size: 1.125rem;
    line-height: 1.4;
}

.fe-guide .guide-home-url em,
.fe-guide .guide-spec__label,
.fe-guide .guide-spec__sub li,
.fe-guide .guide-award-notes li {
    font-size: var(--guide-type-caption);
    line-height: var(--guide-leading-caption);
}

.fe-guide .guide-award-summary strong,
.fe-guide .guide-award-total--people strong {
    font-variant-numeric: tabular-nums;
}

.fe-guide .guide-award-table td,
.fe-guide .guide-award-table td:first-child {
    font-size: var(--guide-type-body);
    font-weight: 500;
    line-height: 1.55;
}

.fe-guide .guide-award-table td strong {
    font-size: var(--guide-type-body);
    font-weight: 700;
    line-height: 1.4;
}

#subpage.fe-guide .guide-contact-office,
.fe-guide .guide-contact-list a {
    font-size: var(--guide-type-body);
}

.fe-guide .guide-contact-list a {
    line-height: 1.65;
}

#subpage.fe-guide .guide-hours,
.fe-guide .guide-caution-list li {
    font-size: var(--guide-type-caption);
    line-height: 1.65;
}

.fe-guide .guide-final-card strong {
    line-height: 1.3;
}

.fe-guide .guide-final-card em {
    font-size: var(--guide-type-caption);
    line-height: var(--guide-leading-caption);
}

@media (min-width: 1024px) {
    #subpage.fe-guide #guide-schedule > .guide-shell {
        width: min(860px, calc(100% - 40px));
    }

    .fe-guide .sched-list {
        grid-template-columns:
            minmax(0, 1fr) 24px
            minmax(0, 1fr) 24px
            minmax(0, 1fr) 24px
            minmax(0, 1fr);
        gap: 4px;
    }

    .fe-guide .sched-item {
        display: grid;
        min-height: 0;
        aspect-ratio: 1 / 1;
        grid-template-columns: 42px minmax(0, 1fr);
        grid-template-rows: 42px minmax(0, 1fr);
        align-content: start;
        align-items: center;
        column-gap: 9px;
        row-gap: 12px;
        padding: 12px;
        border-radius: 18px;
        text-align: left;
    }

    .fe-guide .sched-ico {
        width: 42px;
        height: 42px;
        margin: 0;
        grid-column: 1;
        grid-row: 1;
    }

    .fe-guide .sched-ico i {
        font-size: 1.125rem;
    }

    .fe-guide .sched-body {
        display: contents;
    }

    .fe-guide .sched-body b {
        margin: 0;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        font-size: clamp(1.25rem, 1.5vw, 1.3125rem);
        line-height: 1.25;
    }

    #subpage.fe-guide .sched-body p {
        margin: 0;
        grid-column: 1 / -1;
        grid-row: 2;
        align-self: start;
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .fe-guide .sched-body em {
        margin-top: 8px;
        font-size: 1rem;
        line-height: 1.45;
    }

    .fe-guide .sched-arrow i {
        width: 24px;
        height: 24px;
        background: var(--guide-navy);
        font-size: .75rem;
    }

    .fe-guide .sched-arrow {
        position: relative;
        z-index: 3;
    }
}

@media (max-width: 767px) {
    #subpage.fe-guide {
        --guide-type-caption: 1rem;
        --guide-type-body: 1.142857rem;
        --guide-type-lead: 1.428571rem;
        --guide-type-subheading: 1.714286rem;
    }

    .fe-guide .guide-schedule-section::before {
        top: 32px;
        right: -128px;
        width: 300px;
        
    }

    .fe-guide .sched-body b {
        font-size: var(--guide-type-lead);
    }

    #subpage.fe-guide .sched-body p {
        font-size: var(--guide-type-body);
    }

    .fe-guide .sched-body em {
        font-size: var(--guide-type-caption);
    }

    #subpage.fe-guide .guide-method p,
    .fe-guide .guide-spec li,
    .fe-guide .guide-topic-list li,
    #subpage.fe-guide .guide-milestone p,
    .fe-guide .guide-contact-list a,
    .fe-guide .guide-caution-list li {
        font-size: var(--guide-type-body);
    }

    .fe-guide .guide-contact-card,
    .fe-guide .guide-notice {
        padding: 24px 20px;
    }

    .fe-guide .guide-contact-list {
        display: grid;
        gap: 10px;
    }

    .fe-guide .guide-contact-list a {
        display: grid;
        min-width: 0;
        grid-template-columns: max-content minmax(0, 1fr);
        align-items: start;
        gap: 0 .4em;
        padding-left: 14px;
        line-height: 1.55;
    }

    .fe-guide .guide-contact-list span {
        margin: 0;
    }

    .fe-guide .guide-contact-list strong {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .fe-guide .guide-contact-list a:nth-child(2),
    .fe-guide .guide-contact-list a:nth-child(3) {
        grid-template-columns: minmax(0, 1fr);
        gap: 2px;
    }

    #subpage.fe-guide .guide-hours {
        padding-left: 14px;
        font-size: var(--guide-type-caption);
        line-height: 1.65;
        white-space: normal;
    }

    .fe-guide .guide-award-table td,
    .fe-guide .guide-award-table td:first-child {
        font-size: var(--guide-type-caption);
    }

    .fe-guide .guide-award-table td strong {
        font-size: var(--guide-type-body);
    }

    #subpage.fe-guide .guide-final__copy h3 {
        line-height: 1.2;
    }
}

@media (max-width: 344px) {
    .fe-guide .guide-contact-card,
    .fe-guide .guide-notice {
        padding-right: 16px;
        padding-left: 16px;
    }

    #subpage.fe-guide .guide-contact-office,
    .fe-guide .guide-contact-list a {
        font-size: var(--guide-type-body);
    }

    #subpage.fe-guide .guide-hours {
        font-size: var(--guide-type-caption);
    }

    .fe-guide .guide-caution-list li {
        font-size: var(--guide-type-body);
    }

    .fe-guide .guide-contact-list a:nth-child(2) {
        font-size: var(--guide-type-caption);
    }

    .fe-guide .guide-contact-list a:nth-child(3) {
        font-size: var(--guide-type-body);
    }

    .fe-guide .guide-milestone strong {
        font-size: 1.125rem;
        line-height: 1.4;
    }
}

/* ============================================================
   09. Overview card typography and contrast normalization
   ============================================================ */
#subpage.fe-guide .guide-panel--qualify > h4:not(.guide-note),
#subpage.fe-guide .guide-panel--theme > h4:not(.guide-topic-closing) {
    font-size: 1.5rem;
    letter-spacing: .025em;
    line-height: 1.4;
}

#subpage.fe-guide .guide-panel--qualify > h4:nth-of-type(2) {
    margin-bottom: 34px;
}

.fe-guide .guide-panel--qualify > br {
    display: none;
}

.fe-guide .guide-panel--qualify .guide-topic-kicker li {
    border-top-color: rgba(29, 29, 29, .22);
    width: 20ch;
    color: var(--guide-figma-ink);
}

.fe-guide .guide-panel--qualify .guide-topic-kicker li::before {
    background: var(--guide-figma-red);
}

@media (max-width: 767px) {
    #subpage.fe-guide .guide-panel--qualify > h4:not(.guide-note),
    #subpage.fe-guide .guide-panel--theme > h4:not(.guide-topic-closing) {
        font-size: 1.625rem;
        line-height: 1.35;
    }

    #subpage.fe-guide .guide-panel--qualify > h4:nth-of-type(1),
    #subpage.fe-guide .guide-panel--qualify > h4:nth-of-type(2) {
        display: block;
    }

    #subpage.fe-guide .guide-panel--qualify > h4:nth-of-type(1)::after {
        content: none;
    }
}

@media (max-width: 344px) {
    #subpage.fe-guide .guide-panel--qualify > h4:not(.guide-note),
    #subpage.fe-guide .guide-panel--theme > h4:not(.guide-topic-closing) {
        font-size: 1.375rem;
    }
}

@media (max-width: 287px) {
    #subpage.fe-guide .guide-panel--qualify > h4:not(.guide-note),
    #subpage.fe-guide .guide-panel--theme > h4:not(.guide-topic-closing) {
        font-size: 1.1875rem;
    }
}

/* ============================================================
   10. Submission card hierarchy and URL wrapping
   ============================================================ */
.fe-guide .guide-home-url em {
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: normal;
}

.fe-guide .guide-spec {
    padding: clamp(26px, 3.2vw, 40px);
}

#subpage.fe-guide .guide-spec__label {
    margin-bottom: 12px;
    font-family: "OtokiSans3N", sans-serif;
    font-size: clamp(1.2rem, 1.9vw, 1.5rem);
    letter-spacing: -.04em;
    line-height: 1.3;
}

.fe-guide .guide-spec li,
.fe-guide .guide-spec__sub li {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .fe-guide .guide-spec {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .fe-guide .guide-spec li,
    .fe-guide .guide-spec__sub li {
        font-size: 1.285714rem;
    }

    .fe-guide .guide-home-url em {
        font-size: clamp(.7rem, 3.3vw, .8rem);
    }
}

/* ============================================================
   11. Submission availability bullet
   ============================================================ */
#subpage.fe-guide .guide-method--web .guide-method__meta > ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}

#subpage.fe-guide .guide-method--web .guide-method__meta > p:last-child,
#subpage.fe-guide .guide-method--web .guide-method__meta > ul > li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    color: #666666;
    font-size: var(--guide-type-body);
    line-height: var(--guide-leading-body);
}

#subpage.fe-guide .guide-method--web .guide-method__meta > p:last-child::before,
#subpage.fe-guide .guide-method--web .guide-method__meta > ul > li::before {
    flex: 0 0 auto;
    color: var(--guide-red);
    content: "\25CF";
    font-size: .5rem;
    line-height: 3;
}

/* ============================================================
   12. Bullet contrast normalization
   ============================================================ */
#subpage.fe-guide .guide-milestone p::before {
    color: var(--guide-figma-red);
    content: "\25CF";
    font-size: .5rem;
    line-height: 3;
}

/* ============================================================
   13. Mobile contact address alignment
   ============================================================ */
@media (max-width: 767px) {
    .fe-guide .guide-contact-list a:nth-child(2) {
        grid-template-columns: minmax(0, 1fr);
        gap: 2px;
    }

    .fe-guide .guide-contact-list a:nth-child(2) strong {
        overflow-wrap: normal;
        white-space: nowrap;
        word-break: normal;
        font-size: clamp(.75rem, 3.75vw, 1rem);
        letter-spacing: -.03em;
    }
}
