@charset "utf-8";


:root {
    --color-theme:       #ccffff;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --bg-color:          #f8f8f8;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Impact', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-gothic: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-mincho: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
    --max-width: 1200px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover {
        opacity: 0.5;
    }
}

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-accent);
    font-style: normal;
}

u {
    text-decoration-color: #000d4e;
    text-decoration-thickness: 1px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 0.3em;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.bold {
    font-weight: 700;
}

.big {
    font-size: 200%;
}
.small {
    font-size: 80%;
}

.red {
    color: #ac0000;
}

.navy {
    color: #000d4e;
}

@media ( width < 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( width >= 768px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* スクロールアニメーション */
.ws-scroll-fadeIn {
    opacity: 0.0;
    transform: scale( 0.5, 0.5 );
    transition: 1.0s;
}
.ws-scroll-fadeIn.ws-scroll-show {
    opacity: 1.0;
    transform: scale( 1.0, 1.0 );
}

.ws-scroll-fadeIn-l {
    opacity: 0.0;
    transform: translateX( -200px );
    transition: 1.0s;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: 1.0s;
}
.ws-scroll-fadeIn-l.ws-scroll-show,
.ws-scroll-fadeIn-r.ws-scroll-show {
    opacity: 1.0;
    transform: translateX( 0 );
}

.ws-scroll-fadeIn-u {
    opacity: 0.0;
    transform: translateY( -200px ) scale( 0.8, 0.8 );
    transition: 1.0s;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: 1.0s;
}
.ws-scroll-fadeIn-u.ws-scroll-show,
.ws-scroll-fadeIn-d.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 )  scale( 1.0, 1.0 );
}

.ws-goto-top {
    position: fixed;
    z-index: 20;
    margin: 0;
    padding: 0 0 2px;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    width: clamp( 30px, 5.0vw, 60px );
    height: clamp( 30px, 5.0vw, 60px );
    background: var(--color-theme);
    font-size: clamp( 15px, 2.5vw, 30px );
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: clamp( 15px, 2.5vw, 30px );
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.01, 0.01 );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.0s;
}
.ws-goto-top.ws-scroll-show {
    transform: scale( 1.0, 1.0 );
    opacity: 0.9;
}
@media ( hover: hover ) {
    .ws-goto-top:hover {
        opacity: 0.5;
    }
}

.ws-scroll-top-menu {
    opacity: 0.0;
    transform: translateY( -150px );
    transition: 0.5s;
}
.ws-scroll-top-menu.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 );
}



/* 以下サイトごと */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: min( 18px, 3.0vw );
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    background: var(--bg-color);
    font-family: var(--font-gothic);
    font-weight: 400;
    z-index: 0;
    line-height: 1.5;
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
}

@keyframes anim-fadein {
    0%   { opacity: 0.0; }
    100% { opacity: 1.0; }
}

body.lp::before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: url(../images/back.png) no-repeat center / cover;
    z-index: 0;
}

body.thanks::before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: url(../images/thanks-bg.jpg) no-repeat center / cover;
    z-index: 0;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 90;
    transition: background 0.5s ease-out;
}
header.scroll {
    background: #fffe;
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {

    .mv {
        margin: 0 auto;
        width: 100%;
        z-index: 2;
    }

    main {
        position: relative;
        margin: 0 auto;
        padding: 0 0 8.0vw;
        width: 100%;
        background: #fff;
        z-index: 1;
    }
    .thanks main {
        padding-top: 8.0vw;
    }

    main p {
        margin: 1.0em 0 0;
        font-size: 4.0vw;
        line-height: 1.8;
    }
    main p:first-child {
        margin-top: 0;
    }
    main p:last-child {
        margin-bottom: 0;
    }
    main p.no-margin {
        margin: 0;
    }
    main p.no-margin + p.no-margin {
        margin-top: 1.0em;
    }
    main ul {
        margin: 0 0 0 7.2vw;
    }
    main ul li {
        font-size: 3.6vw;
        line-height: 1.8;
    }
    main .pic + p {
        margin-top: 3.0em;
    }

    main hr {
        margin: 8.0vw auto;
        width: 100%;
        height: 1px;
        background: #000d4e;
        border: 0;
    }

    section + section {
        margin-top: 16.0vw;
    }

    h2 {
        color: #000d4e;
        font-size: 5.0vw;
        font-family: var(--font-mincho);
        text-align: center;
    }
    .arrows {
        margin: 4.0vw auto;
        width: 90%;
        max-width: 290px;
        aspect-ratio: 300 / 30;
        background: #000d4e;
        clip-path: polygon( 0 0, 30% 0, 15% 100%, 0 0, 65% 0, 50% 100%, 35% 0, 100% 0, 85% 100%, 70% 0 );
    }

    .wrap {
        margin: calc( 3 * 3.6vw ) auto 0;
        width: 90%;
    }
    .thanks .wrap {
        margin: 0 auto;
    }

    .pic {
        position: relative;
        margin: 0 auto;
        width: 100%;
    }
    .pic img {
        width: 100%;
        height: auto;
    }
    .w90 {
        width: 100%;
    }

    .cta-btn {
        position: relative;
        margin: 0 auto 8.0vw;
        padding: 10px;
        width: 94%;
    }
    .cta-btn a {
        display: block;
        filter: drop-shadow( 0 4px 2px #ccc );
    }
    .cta-btn::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 10%;
        height: 100%;
        background: #fffc;
        filter: blur( 16px );
        z-index: 10;
        transform: skewX( -30deg );
        animation: anim-flash 10.0s linear infinite;
    }

    .voice-frame {
        margin: 0 auto;
        padding: 4.0vw;
        width: 100%;
        background: #001a55;
    }
    .gold-frame {
        margin: 0 auto;
        padding: 4.0vw;
        width: 100%;
        background: #ceb762;
    }
    .float-pic {
        margin: 6.0vw 0 4.0vw 4.0vw;
        width: 50%;
        float: right;
    }
    .grad-frame {
        margin: 0 auto;
        padding: 4.0vw;
        width: 100%;
        background: linear-gradient( to right, #f1f1e3, #ffffff, #f1f1e3 );
    }

    .white-box {
        margin: 0;
        padding: 4.0vw;
        width: 100%;
        background: #fff;
    }
    .white-box + .white-box {
        margin-top: 4.0vw;
    }
    .white-box .pic + p {
        margin-top: 8.0vw;
    }
    .white-box h3 {
        margin: 2.0em 0 0;
        font-size: 4.4vw;
        font-weight: 700;
        text-align: center;
    }

    .prof-list {
        margin: 4.0vw auto 0;
        padding: 4.0vw;
        width: 100%;
        box-shadow: 0 0 3.2vw #ccc;
        list-style: none;
    }
    .prof-list li {
        position: relative;
        margin: 0;
        padding: 0 0 0 1.5em;
        font-size: 4.0vw;
        list-style: none;
    }
    .prof-list li + li {
        margin-top: 1.0em;
    }
    .prof-list li::before {
        position: absolute;
        content: "";
        top: 0.5em;
        left: 0;
        width: 1.2em;
        aspect-ratio: 56 / 47;
        background: url(../images/pc/title08_check.png) no-repeat center / contain;
    }

    .ng-list {
        margin: 4.0vw auto 8.0vw;
        padding: 4.0vw;
        width: 100%;
        list-style: none;
        background: #fbfbfb;
        border: 0.8vw solid #282828;
    }
    .ng-list li {
        position: relative;
        margin: 0;
        padding: 0 0 0 2.0em;
        font-size: 4.0vw;
        font-family: var(--font-mincho);
        list-style: none;
    }
    .ng-list li + li {
        margin-top: 1.0em;
    }
    .ng-list li::before {
        position: absolute;
        content: "";
        top: 0.2em;
        left: 0;
        width: 1.5em;
        aspect-ratio: 51 / 51;
        background: url(../images/pc/title09_check01.png) no-repeat center / contain;
    }

    .ok-list {
        margin: 4.0vw auto 8.0vw;
        padding: 4.0vw;
        width: 100%;
        list-style: none;
        background: #fffdf8;
        border: 0.8vw solid;
        border-image: linear-gradient( to bottom, #c2971e, #c2971e30, #c2971e ) 1;
    }
    .ok-list li {
        position: relative;
        margin: 0;
        padding: 0 0 0 2.0em;
        font-size: 4.0vw;
        font-family: var(--font-mincho);
        list-style: none;
    }
    .ok-list li + li {
        margin-top: 1.0em;
    }
    .ok-list li::before {
        position: absolute;
        content: "";
        top: 0.2em;
        left: 0;
        width: 1.5em;
        aspect-ratio: 51 / 51;
        background: url(../images/pc/title09_check02.png) no-repeat center / contain;
    }

    .gray-box {
        margin: 0 auto;
        padding: 4.0vw;
        width: 96%;
        background: #f7f7f7;
        box-shadow: 4px 4px 2px #ccc;
    }

    .navy-box {
        margin: 12.0vw auto 0;
        padding: 4.0vw;
        width: 90%;
        border: 0.8vw solid #001a5a;
        box-shadow: 4px 4px 2px #ccc;
    }
    p.navy-dot {
        position: relative;
        padding: 0 0 0 1.5em;
    }
    p.navy-dot::before {
        position: absolute;
        content: "●";
        top: 0;
        left: 0;
        color: #001a5a;
    }

    .schedule-table {
        margin: 8.0vw auto;
        width: 100%;
        display: grid;
        grid-template-columns: 40% 20% 40%;
    }
    .schedule-table > div:nth-child(1),
    .schedule-table > div:nth-child(2),
    .schedule-table > div:nth-child(3),
    .schedule-table > div:nth-child(4) {
        display: none !important;
        padding: 0.2em 0;
        color: #fff;
        font-size: 4.4vw;
        font-weight: 700;
        text-align: center;
        background: #001a5a;
    }
    .schedule-table > div:nth-child(4n+1) {
        text-align: right;
    }
    .schedule-table > div:nth-child(4n+2) {
        text-align: center;
    }
    .schedule-table > div:nth-child(4n+3) {
        text-align: left;
    }
    .schedule-table > div:nth-child(4n) {
        margin-bottom: 8.0vw;
        grid-column: span 3;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .schedule-table > div {
        padding: 0;
        font-size: 5.6vw;
        font-weight: 500;
        background: #fff;
    }
    .schedule-table > div.disabled {
        background: #bbb;
    }
    .schedule-table > div form {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .schedule-table > div img {
        width: 100%;
        height: auto;
    }
    .schedule-table > div button[type="submit"] {
        display: block;
        margin: 0 auto;
        padding: 0.5em 0;
        width: 90%;
        border: 0;
        color: #fff;
        font-size: 6.0vw;
        font-family: inherit;
        font-weight: 600;
        border-radius: 1.6vw;
        outline: 0;
        cursor: pointer;
    }
    .schedule-table > div button[type="submit"].red {
        background: linear-gradient( to bottom, #f72e2e, #c50607 );
    }
    .schedule-table > div button[type="submit"].blue {
        background: linear-gradient( to bottom, #5e8cc4, #0d25ad );
    }

    .sec-navy {
        margin: 12.0vw auto 4.0vw;
        padding: 4.0vw;
        width: 100%;
        border: 4.0vw solid #001a5a;
    }

    .info-table {
        margin: 8.0vw auto;
        width: 100%;
        display: grid;
        grid-template-columns: 26.0vw 1fr;
        gap: 0;
    }
    .info-table > div:nth-child(1),
    .info-table > div:nth-child(3) {
        padding: 0.5em 1.0em;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        background: #001a5a;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .info-table > div:nth-child(2),
    .info-table > div:nth-child(4) {
        padding: 0.5em 1.0em;
        font-size: 4.0vw;
        font-weight: 400;
        border-top: 1px solid #001a5a;
        border-right: 1px solid #001a5a;
        border-bottom: 1px solid #001a5a;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .contact-table {
        margin: 8.0vw auto;
        width: 100%;
        display: grid;
        grid-template-columns: 16.0vw 1fr;
        gap: calc( 20 * min( 100vw, 1080px ) / 1080 ) 0;
    }
    .contact-table > :is(dt,dd) {
        font-size: 4.0vw;
        font-weight: 400;
    }
    .contact-table > dt {
        text-align: right;
    }

    .anim-scroll {
        margin: 1.0em 0 1.0em auto;
        width: max-content;
        font-size: 3.6vw;
        text-align: right;
        animation: anim-scroll-right 2.0s infinite 0s ease-in-out;
    }

    footer {
        position: absolute;
        width: 100%;
        background: var(--fg-color);
        z-index: 2;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 2.0em 0 1.0em;
        width: 100%;
        max-width: 1080px;
        color: #fff;
        font-size: 3.0vw;
        text-align: center;
    }
    footer .footer-wrap a {
        color: #fff;
        font-size: 3.0vw;
        text-align: center;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0 2.0em;
        width: 100%;
        color: #fff;;
        font-size: 3.0vw;
        text-align: center;
    }
}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    .mv {
        margin: 0 auto;
        width: 100%;
        z-index: 2;
    }

    main {
        position: relative;
        margin: 0 auto;
        padding: 0 0 calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 100%;
        max-width: 1080px;
        background: #fff;
        box-shadow: 0 0 calc( 16 * min( 100vw, 1080px ) / 1080 ) #ccc;
        z-index: 1;
    }
    .thanks main {
        padding-top: calc( 40 * min( 100vw, 1080px ) / 1080 );
    }

    main p {
        margin: 1.0em 0;
        font-size: calc( 24 * min( 100vw, 1080px ) / 1080 );
        line-height: 1.8;
    }
    main p:first-child {
        margin-top: 0;
    }
    main p:last-child {
        margin-bottom: 0;
    }
    main p.no-margin {
        margin: 0;
    }
    main p.no-margin + p.no-margin {
        margin-top: 1.0em;
    }
    main ul {
        margin: 0 0 0 calc( 40 * min( 100vw, 1080px ) / 1080 );
    }
    main ul li {
        font-size: calc( 24 * min( 100vw, 1080px ) / 1080 );
        line-height: 1.8;
    }
    main .pic + p {
        margin-top: 3.0em;
    }

    main hr {
        margin: calc( 40 * min( 100vw, 1080px ) / 1080 ) auto;
        width: 100%;
        height: 1px;
        background: #000d4e;
        border: 0;
    }

    section + section {
        margin-top: calc( 80 * min( 100vw, 1080px ) / 1080 );
    }

    h2 {
        color: #000d4e;
        font-size: calc( 36 * min( 100vw, 1080px ) / 1080 );
        font-family: var(--font-mincho);
        text-align: center;
    }
    .arrows {
        margin: calc( 20 * min( 100vw, 1080px ) / 1080 ) auto;
        width: 90%;
        max-width: 290px;
        aspect-ratio: 300 / 30;
        background: #000d4e;
        clip-path: polygon( 0 0, 30% 0, 15% 100%, 0 0, 65% 0, 50% 100%, 35% 0, 100% 0, 85% 100%, 70% 0 );
    }

    .wrap {
        margin: calc( 3 * 24 * min( 100vw, 1080px ) / 1080 ) auto 0;
        width: 90%;
    }
    .thanks .wrap {
        margin: 0 auto;
    }

    .pic {
        position: relative;
        margin: 0 auto;
        width: 100%;
    }
    .pic img {
        width: 100%;
        height: auto;
    }
    .w90 {
        width: 90%;
    }

    .cta-btn {
        position: relative;
        margin: 0 auto 40px;
        padding: 10px;
        width: 94%;
        overflow: hidden;
    }
    .cta-btn a {
        display: block;
        filter: drop-shadow( 0 4px 2px #ccc );
    }
    .cta-btn::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 10%;
        height: 100%;
        background: #fffc;
        filter: blur( 16px );
        z-index: 10;
        transform: skewX( -30deg );
        animation: anim-flash 10.0s linear infinite;
    }

    .voice-frame {
        margin: 0 auto;
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: calc( 100% - ( 80 * min( 100vw, 1080px ) / 1080 ) );
        background: #001a55;
    }
    .gold-frame {
        margin: 0 auto;
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: calc( 100% - ( 80 * min( 100vw, 1080px ) / 1080 ) );
        background: #ceb762;
    }
    .float-pic {
        margin: calc( 40 * min( 100vw, 1080px ) / 1080 ) 0 calc( 40 * min( 100vw, 1080px ) / 1080 ) calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 50%;
        float: right;
    }
    .grad-frame {
        margin: 0 auto;
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: calc( 100% - ( 80 * min( 100vw, 1080px ) / 1080 ) );
        background: linear-gradient( to right, #f1f1e3, #ffffff, #f1f1e3 );
    }

    .white-box {
        margin: 0;
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 100%;
        background: #fff;
    }
    .white-box + .white-box {
        margin-top: calc( 40 * min( 100vw, 1080px ) / 1080 );
    }
    .white-box .pic + p {
        margin-top: calc( 40 * min( 100vw, 1080px ) / 1080 );
    }
    .white-box h3 {
        margin: 1.0em 0 0;
        font-size: calc( 40 * min( 100vw, 1080px ) / 1080 );
        font-weight: 700;
        text-align: center;
    }

    .prof-list {
        margin: calc( 40 * min( 100vw, 1080px ) / 1080 ) auto 0;
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 100%;
        box-shadow: 0 0 calc( 16 * min( 100vw, 1080px ) / 1080 ) #ccc;
        list-style: none;
    }
    .prof-list li {
        position: relative;
        margin: 0;
        padding: 0 0 0 1.5em;
        font-size: calc( 24 * min( 100vw, 1080px ) / 1080 );
        list-style: none;
    }
    .prof-list li + li {
        margin-top: 1.0em;
    }
    .prof-list li::before {
        position: absolute;
        content: "";
        top: 0.5em;
        left: 0;
        width: 1.2em;
        aspect-ratio: 56 / 47;
        background: url(../images/pc/title08_check.png) no-repeat center / contain;
    }

    .ng-list {
        margin: 0 auto calc( 40 * min( 100vw, 1080px ) / 1080 );
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 100%;
        list-style: none;
        background: #fbfbfb;
        border: calc( 4 * min( 100vw, 1080px ) / 1080 ) solid #282828;
    }
    .ng-list li {
        position: relative;
        margin: 0;
        padding: 0 0 0 2.0em;
        font-size: calc( 28 * min( 100vw, 1080px ) / 1080 );
        font-family: var(--font-mincho);
        list-style: none;
    }
    .ng-list li + li {
        margin-top: 1.0em;
    }
    .ng-list li::before {
        position: absolute;
        content: "";
        top: 0.2em;
        left: 0;
        width: 1.5em;
        aspect-ratio: 51 / 51;
        background: url(../images/pc/title09_check01.png) no-repeat center / contain;
    }

    .ok-list {
        margin: 0 auto calc( 40 * min( 100vw, 1080px ) / 1080 );
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 100%;
        list-style: none;
        background: #fffdf8;
        border: calc( 4 * min( 100vw, 1080px ) / 1080 ) solid;
        border-image: linear-gradient( to bottom, #c2971e, #c2971e30, #c2971e ) 1;
    }
    .ok-list li {
        position: relative;
        margin: 0;
        padding: 0 0 0 2.0em;
        font-size: calc( 28 * min( 100vw, 1080px ) / 1080 );
        font-family: var(--font-mincho);
        list-style: none;
    }
    .ok-list li + li {
        margin-top: 1.0em;
    }
    .ok-list li::before {
        position: absolute;
        content: "";
        top: 0.2em;
        left: 0;
        width: 1.5em;
        aspect-ratio: 51 / 51;
        background: url(../images/pc/title09_check02.png) no-repeat center / contain;
    }

    .gray-box {
        margin: 0 auto;
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 90%;
        background: #f7f7f7;
        box-shadow: 4px 4px 2px #ccc;
    }

    .navy-box {
        margin: calc( 60 * min( 100vw, 1080px ) / 1080 ) auto 0;
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 90%;
        border: calc( 4 * min( 100vw, 1080px ) / 1080 ) solid #001a5a;
        box-shadow: 4px 4px 2px #ccc;
    }
    p.navy-dot {
        position: relative;
        padding: 0 0 0 1.5em;
    }
    p.navy-dot::before {
        position: absolute;
        content: "●";
        top: 0;
        left: 0;
        color: #001a5a;
    }

    .schedule-table {
        margin: calc( 40 * min( 100vw, 1080px ) / 1080 ) auto;
        width: 90%;
        display: grid;
        grid-template-columns: 22% 20% 25% 33%;
    }
    .schedule-table > div:nth-child(1),
    .schedule-table > div:nth-child(2),
    .schedule-table > div:nth-child(3),
    .schedule-table > div:nth-child(4) {
        padding: 0.5em 0;
        min-height: 3.0em;
        color: #fff;
        font-size: calc( 28 * min( 100vw, 1080px ) / 1080 );
        font-weight: 700;
        text-align: center;
        background: #001a5a;
        border: 1px solid #eee;
    }
    .schedule-table > div {
        padding: 0.5em 0;
        min-height: 4.0em;
        width: 100%;
        font-size: calc( 24 * min( 100vw, 1080px ) / 1080 );
        font-weight: 400;
        text-align: center;
        background: #fff;
        border: 1px solid #ccc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .schedule-table > div.disabled {
        border: 1px solid #eee;
        background: #bbb;
    }
    .schedule-table > div form {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .schedule-table > div img {
        width: 100%;
        height: auto;
    }
    .schedule-table > div button[type="submit"] {
        display: block;
        margin: 0 auto;
        padding: 0.5em 0;
        width: 90%;
        border: 0;
        color: #fff;
        font-size: calc( 28 * min( 100vw, 1080px ) / 1080 );
        font-family: inherit;
        font-weight: 600;
        border-radius: calc( 8 * min( 100vw, 1080px ) / 1080 );
        outline: 0;
        cursor: pointer;
    }
    .schedule-table > div button[type="submit"].red {
        background: linear-gradient( to bottom, #f72e2e, #c50607 );
    }
    .schedule-table > div button[type="submit"].blue {
        background: linear-gradient( to bottom, #5e8cc4, #0d25ad );
    }

    .sec-navy {
        margin: calc( 60 * min( 100vw, 1080px ) / 1080 ) auto 0;
        padding: calc( 40 * min( 100vw, 1080px ) / 1080 );
        width: 100%;
        border: calc( 54 * min( 100vw, 1080px ) / 1080 ) solid #001a5a;
    }

    .info-table {
        margin: calc( 40 * min( 100vw, 1080px ) / 1080 ) auto;
        width: 100%;
        display: grid;
        grid-template-columns: calc( 240 * min( 100vw, 1080px ) / 1080 ) 1fr;
        gap: 0;
    }
    .info-table > div:nth-child(1),
    .info-table > div:nth-child(3) {
        padding: 0.5em 1.0em;
        color: #fff;
        font-size: calc( 24 * min( 100vw, 1080px ) / 1080 );
        font-weight: 700;
        background: #001a5a;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .info-table > div:nth-child(2),
    .info-table > div:nth-child(4) {
        padding: 0.5em 1.0em;
        font-size: calc( 20 * min( 100vw, 1080px ) / 1080 );
        font-weight: 400;
        border-top: 1px solid #001a5a;
        border-right: 1px solid #001a5a;
        border-bottom: 1px solid #001a5a;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .contact-table {
        margin: calc( 40 * min( 100vw, 1080px ) / 1080 ) auto;
        width: 100%;
        display: grid;
        grid-template-columns: calc( 100 * min( 100vw, 1080px ) / 1080 ) 1fr;
        gap: calc( 20 * min( 100vw, 1080px ) / 1080 ) 0;
    }
    .contact-table > :is(dt,dd) {
        font-size: calc( 24 * min( 100vw, 1080px ) / 1080 );
        font-weight: 400;
    }
    .contact-table > dt {
        text-align: right;
    }

    .anim-scroll {
        display: none;
    }

    footer {
        position: absolute;
        width: 100%;
        background: #001a5a;
        z-index: 1;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 4.0em 0 1.0em;
        width: 100%;
        max-width: 1080px;
        color: #fff;
        font-size: calc( 14 * min( 100vw, 1080px ) / 1080 );
        text-align: center;
    }
    footer .footer-wrap a {
        color: #fff;
        font-size: calc( 14 * min( 100vw, 1080px ) / 1080 );
        text-align: center;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0 4.0em;
        width: 100%;
        max-width: 1080px;
        color: #fff;
        font-size: calc( 14 * min( 100vw, 1080px ) / 1080 );
        text-align: center;
    }

}

.fixed-cta {
    display: none;
}

@keyframes anim-scroll-right {
    0%   { opacity: 1.0; transform: translateX( 0 ); }
    50%  { opacity: 0.2; transform: translateX( -20% ); }
    100% { opacity: 1.0; transform: translateX( 0 ); }
}

@keyframes anim-flash {
    0%   { transform: skewX( -30deg ) translateX( max( -20vw, -220px ) ); }
    90%  { transform: skewX( -30deg ) translateX( max( -20vw, -220px ) ); }
    100% { transform: skewX( -30deg ) translateX( min( 100vw, 1080px ) ); }
}
