@charset "utf-8";


:root {
    --color-theme:       #013283;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --bg-color:          transparent;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Barlow', '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;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: all 0.5s ease-out;
}
button {
    cursor: pointer;
    transition: all 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover {
        color: #35b4cf;
    }
}

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-theme);
    font-style: normal;
}

u {
    font-weight: 700;
    text-decoration-color: #ffec5d;
    text-decoration-thickness: 4px;
    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;
}


@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: all 1.0s ease-out;
}
.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: all 1.0s ease-out;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: all 1.0s ease-out;
}
.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: all 1.0s ease-out;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.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: min( 15.0vw, 80px );
    left: auto;
    right: 2.0vw;
    width: clamp( 60px, 10.0vw, 80px );
    height: auto;
    aspect-ratio: 1 / 1;
    background: var(--color-theme);
    border: 1px solid #fff;
    border-radius: 8px;
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.01, 0.01 );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease-out;
}
.ws-goto-top::before {
    position: absolute;
    content: "";
    left: 35%;
    top: 35%;
    width: 30%;
    height: 30%;
    background: url(../images/icon-arrow-white.svg) no-repeat center / contain;
    rotate: -90deg;
    transition: all 0.5s ease-out 0.2s;
}
.ws-goto-top::after {
    position: absolute;
    content: "";
    left: 35%;
    top: 135%;
    width: 30%;
    height: 30%;
    background: url(../images/icon-arrow-navy.svg) no-repeat center / contain;
    rotate: -90deg;
    transition: all 0.5s ease-out 0.0s;
}
.ws-goto-top.ws-scroll-show {
    transform: scale( 1.0, 1.0 );
    opacity: 0.9;
}
@media ( hover: hover ) {
    .ws-goto-top:hover {
        background: #fff;
        border: 1px solid var(--color-theme);
    }
    .ws-goto-top:hover::before {
        top: -65%;
        transition: all 0.5s ease-out 0.0s;
    }
    .ws-goto-top:hover::after {
        top: 35%;
        transition: all 0.5s ease-out 0.2s;
    }
}

.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: 100px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-gothic);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.5;
    backgrdoun: var(--bg-color);
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
}

@keyframes anim-fadein {
    0%   { opacity: 0.0; }
    100% { opacity: 1.0; }
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: #fff;
    box-shadow: 0 4px 4px #0003;
    transition: background 0.5s ease-out;
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {

    header {
        height: 72px;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 22px 0 22px 10px;
        width: 194px;
        height: 100%;
    }
    header .header-logo img {
        width: 184px;
        height: auto;
        aspect-ratio: 184 / 28;
        object-fit: contain;
    }
    header .header-txt {
        margin: 0 0 0 16px;
        font-size: 9px;
        line-height: calc( 16.8 / 12 );
        letter-spacing: 0.04em;
        flex: 1 0 auto;
    }
    header .header-menu {
        display: none;
    }
    header .header-btns {
        display: none;
    }
    header .header-sp-menu {
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    header .header-sp-menu #sp-menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .header-sp-menu-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area {
        display: block;
        position: absolute;
        top: 12px;
        left: 12px;
        width: 48px;
        height: 48px;
        background: var(--color-theme);
        border-radius: 8px;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon {
        position: absolute;
        top: 50%;
        left: 20%;
        width: 60%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: background 0.25s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::before {
        position: absolute;
        content: "";
        top: -9px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.25s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 9px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.25s ease-out;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon {
        background: transparent;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::before {
        transform: translateY( 9px ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -9px ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: fixed;
        top: 72px;
        right: 0;
        width: 100%;
        height: calc( 100dvh - 72px );
        height: calc( 100vh - 72px );
        padding: 6.0vw 5.0vw;
        background: #0a1b38;
        list-style: none;
        overflow-y: auto;
        transform-origin: right center;
        transform: scaleX( 0.0 );
        transition: transform 0.25s ease-out;
        z-index: 99;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li {
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 0.8em 0;
        color: #fff;
        font-size: min( 16px, 3.6vw );
        font-weight: 700;
        border-bottom: 1px solid #364867;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a::after {
        content: "";
        width: 1.0em;
        height: 1.0em;
        background: url(../images/icon-arrow-white.svg) no-repeat center / contain;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a {
        position: relative;
        margin: 4.0em auto 0;
        padding: 0.8em 1.2em;
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 3.0em;

        color: var(--color-theme);
        font-size: min( 16px, 3.6vw );
        font-weight: 700;
        background: #fff;
        border: 1px solid #fff;
        border-radius: 8px;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a::before {
        position: absolute;
        content: "";
        top: 20%;
        right: 3.5em;
        width: 1px;
        height: 60%;
        background: #01328399;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a::after {
        display: none;
        content: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a span {
        position: relative;
        display: block;
        width: 1.5em;
        height: 1.5em;
        overflow: hidden;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a span::before {
        position: absolute;
        content: "";
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: url(../images/icon-arrow-navy.svg) no-repeat center / contain;
        transition: all 0.5s ease-out 0.25s;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a span::after {
        position: absolute;
        content: "";
        top: 10%;
        left: -100%;
        width: 80%;
        height: 80%;
        background: url(../images/icon-arrow-white.svg) no-repeat center / contain;
        transition: all 0.5s ease-out 0.0s;
    }
    @media ( hover: hover ) {
        header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a:hover {
            color: #fff;
            background: var(--color-theme);
        }
        header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a:hover::before {
            background: #fff9;
        }
        header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a:hover span::before {
            left: 110%;
            transition: all 0.5s ease-out 0.0s;
        }
        header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a:hover span::after {
            left: 10%;
            transition: all 0.5s ease-out 0.25s;
        }
    }

    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-regist > a {
        margin: 1.0em auto 0;
        padding: 0.5em 2.0em;
        color: #fff;
        text-align: center;
        background: var(--color-theme);
        border-radius: 4.0em;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megamenu {
        padding: 0 0 0 1.0em;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu > li,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megabmenu > li {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu > li > a,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megamenu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        color: #fff;
        font-size: min( 16px, 3.6vw );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleX( 1.0 );
    }

    footer {
        margin: 0 auto;
        padding: 80px 0 0;
        width: 100%;
        background: #0a1b38;
    }
    footer .footer-logo {
        margin: 0 auto;
        padding: 0;
        width: 60%;
        height: auto;
    }
    footer .footer-logo a {
        display: block;
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-logo img {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }
    footer .footer-menu1 {
        margin: 12.0vw auto 0;
        padding: 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.0vw 0;
    }
    footer .footer-menu1 a {
        margin: 0;
        padding: 4.0vw 0;
        width: 100%;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
        border-bottom: 1px solid #364867;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer .footer-menu1 a::after {
        content: "";
        width: 1.0em;
        height: 1.0em;
        background: url(../images/icon-arrow-white.svg) no-repeat center / contain;
    }
    footer .footer-menu2 {
        margin: 8.0vw auto 0;
        padding: 0 0 8.0vw;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6.0vw 0;
        border-bottom: 1px solid #364867;
    }
    footer .footer-menu2 a {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 500;
        text-align: left;
        line-height: 1.0;
    }
    footer .footer-relations {
        margin: 12.0vw auto 0;
        padding: 0;
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6.0vw 4.0vw;
    }
    footer .footer-relations .footer-relation {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    footer .footer-relations .footer-relation:nth-child(1) {
        width: 90%;
    }
    footer .footer-relations .footer-relation:nth-child(2) {
        width: 42%;
    }
    footer .footer-relations .footer-relation:nth-child(3) {
        width: 42%;
    }
    footer .footer-relations .footer-relation:nth-child(4) {
        width: 90%;
    }
    footer .footer-relations .footer-relation:nth-child(5) {
        width: 42%;
    }
    footer .footer-relations .footer-relation:nth-child(6) {
        width: 42%;
    }
    footer .footer-relations .footer-relation .head {
        margin: 0;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: left;
    }
    footer .footer-relations .footer-relation .icon {
        margin: 2.0vw 0 0;
        width: 100%;
        height: auto;
    }
    footer .footer-relations .footer-relation .icon img {
        margin: 0;
        width: 100%;
        height: auto;
    }
    footer .footer-relations .footer-relation p {
        margin: 2.0vw 0 0;
        color: #fff;
        font-size: 2.8vw;
        font-weight: 400;
        text-align: left;
    }
    footer .copyright {
        margin: 12.0vw auto 0;
        padding: 2.0em 0;
        width: 100%;
        color: #fff;
        font-size: 2.8vw;
        font-weight: 400;
        text-align: center;
        border-top: 1px solid #364867;
    }
    @media ( hover: hover ) {
        footer .footer-menu1 a:hover,
        footer .footer-menu2 a:hover {
            color: #35b4cf;
        }
    }

}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    header {
        height: 88px;
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        max-width: 1920px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 30px 0;
        width: 184px;
        height: 100%;
        flex: 0 0 184px;
    }
    header .header-logo img {
        width: 184px;
        height: auto;
        aspect-ratio: 184 / 28;
        object-fit: contain;
    }
    header .header-txt {
        margin: 0 0 0 16px;
        font-size: 12px;
        line-height: calc( 16.8 / 12 );
        letter-spacing: 0.04em;
        flex: 1 0 auto;
    }
    header .header-menu {
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    header .header-menu > li {
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        font-size: 15px;
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header.scroll .header-menu > li > a {
    }
    header .header-menu > li.has-submenu {
        position: relative;
    }
    header .header-menu > li.has-submenu > .header-submenu {
        position: absolute;
        top: 100%;
        right: 50%;
        width: max-content;
        margin: 0;
        padding: 0;
        background: #fff;
        box-shadow: 0 4px 4px #0003;
        list-style: none;
        opacity: 0.0;
        transform-origin: top center;
        transform: translateX( 50% ) scale( 1.0, 0.0 );
        transition: opacity 0.3s ease-out, transform 0.5s ease-out;
    }
    header .header-menu > li.has-submenu > .header-submenu > li {
        width: 100%;
        list-style: none;
    }
    header .header-menu > li.has-submenu > .header-submenu > li > a {
        display: block;
        margin: 0;
        padding: 1.0em 2.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: max( 14px, calc( 18 * min( 100vw, 1920px ) / 1920 ) );
        font-weight: 500;
        text-align: left;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    @media ( hover: hover ) {
        header .header-menu > li.has-submenu:hover > .header-submenu {
            opacity: 1.0;
            transform: translateX( 50% ) scale( 1.0, 1.0 );
            transition: opacity 0.3s ease-out, transform 0.5s ease-out;
        }
        header .header-menu > li.has-submenu > .header-submenu > li > a:hover {
            opacity: 1.0;
            color: #fff;
            background: var(--fg-color);
        }
    }
    header .header-menu > li.has-megamenu {
        position: relative;
    }
    header .header-menu > li.has-megamenu > .header-megamenu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 4px 4px #0003;
        list-style: none;
        opacity: 0.0;
        transform-origin: top center;
        transform: scale( 1.0, 0.0 );
        transition: opacity 0.3s ease-out, transform 0.5s ease-out;
    }
    header .header-menu > li.has-megamenu > .header-megamenu > li {
        width: 30%;
        list-style: none;
    }
    header .header-menu > li.has-megamenu > .header-megamenu > li > a {
        display: block;
        margin: 0;
        padding: 1.0em 2.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: max( 14px, calc( 18 * min( 100vw, 1920px ) / 1920 ) );
        font-weight: 500;
        text-align: center;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    @media ( hover: hover ) {
        header .header-menu > li.has-megamenu:hover > .header-megamenu {
            opacity: 1.0;
            transform: scale( 1.0, 1.0 );
            transition: opacity 0.3s ease-out, transform 0.5s ease-out;
        }
        header .header-menu > li.has-megamenu > .header-megamenu > li > a:hover {
            opacity: 1.0;
            color: #fff;
            background: var(--fg-color);
        }
    }
    header .header-btns {
        margin: 0 0 0 20px;
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 0 10px;
    }
    header .header-btns > li {
        margin: 0;
        padding: 16px 0;
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-btns > li > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 3.0em;
        margin: 0;
        padding: 0 1.2em;
        height: 100%;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        border-radius: 8px;
        transition: all 0.5s ease-out;
    }
    header .header-btns > li.header-btn-contact > a::before {
        position: absolute;
        content: "";
        top: 20%;
        right: 3.5em;
        width: 1px;
        height: 60%;
        background: #fff8;
    }
    header .header-btns > li.header-btn-contact > a span {
        position: relative;
        display: block;
        width: 1.5em;
        height: 1.5em;
        overflow: hidden;
    }
    header .header-btns > li.header-btn-contact > a span::before {
        position: absolute;
        content: "";
        top: 10%;
        left: 10%;
        width: 80%;
        height: 80%;
        background: url(../images/icon-arrow-white.svg) no-repeat center / contain;
        transition: all 0.5s ease-out 0.25s;
    }
    header .header-btns > li.header-btn-contact > a span::after {
        position: absolute;
        content: "";
        top: 10%;
        left: -100%;
        width: 80%;
        height: 80%;
        background: url(../images/icon-arrow-navy.svg) no-repeat center / contain;
        transition: all 0.5s ease-out 0.0s;
    }
    header .header-btns > li.header-btn-contact > a {
        border: 1px solid var(--color-theme);
        background: var(--color-theme);
    }
    header .header-btns > li.header-btn-regist > a {
        background: var(--color-theme);
    }
    @media ( hover: hover ) {
        header .header-btns > li.header-btn-contact > a:hover {
            color: var(--color-theme);
            background: #fff;
        }
        header .header-btns > li.header-btn-contact > a:hover::before {
            background: #01328399;
        }
        header .header-btns > li.header-btn-contact > a:hover span::before {
            left: 110%;
            transition: all 0.5s ease-out 0.0s;
        }
        header .header-btns > li.header-btn-contact > a:hover span::after {
            left: 10%;
            transition: all 0.5s ease-out 0.25s;
        }

    }
    header .header-sp-menu {
        display: none;
    }

    footer {
        margin: 0 auto;
        padding: 80px 0 0;
        width: 100%;
        background: #0a1b38;
    }
    footer .footer-logo {
        margin: 0 auto;
        padding: 0;
        width: 90%;
        max-width: 1160px;
        height: 28px;
    }
    footer .footer-logo a {
        display: block;
        margin: 0 auto 0 0;
        width: 184px;
        height: auto;
    }
    footer .footer-logo img {
        margin: 0 auto 0 0;
        width: 184px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 184 / 28;
        object-fit: contain;
    }
    footer .footer-menu1 {
        margin: 80px auto 0;
        padding: 0;
        width: 90%;
        max-width: 1160px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 40px 28px;
    }
    footer .footer-menu1 a {
        display: block;
        margin: 0;
        padding: 20px 0;
        width: 150px;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.0;
        border-bottom: 1px solid #364867;
    }
    footer .footer-menu2 {
        margin: 80px auto 0;
        padding: 20px 0;
        width: 90%;
        max-width: 1160px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 40px 40px;
        border-bottom: 1px solid #364867;
    }
    footer .footer-menu2 a {
        display: block;
        margin: 0;
        padding: 0;
        width: max-content;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.0;
    }
    footer .footer-relations {
        margin: 80px auto 0;
        padding: 20px 0;
        width: 90%;
        max-width: 1160px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px 40px;
    }
    footer .footer-relations .footer-relation {
        margin: 0;
        padding: 0;
        width: max-content;
    }
    footer .footer-relations .footer-relation .head {
        margin: 0;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        text-align: left;
    }
    footer .footer-relations .footer-relation .icon {
        margin: 10px 0 0;
        width: var(--icon-width);
        height: auto;
    }
    footer .footer-relations .footer-relation .icon img {
        margin: 0;
        width: 100%;
        height: auto;
    }
    footer .footer-relations .footer-relation p {
        margin: 10px 0 0;
        color: #fff;
        font-size: 12px;
        font-weight: 400;
        text-align: left;
    }
    footer .copyright {
        margin: 80px auto 0;
        padding: 2.0em 0;
        width: 100%;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        text-align: center;
        border-top: 1px solid #364867;
    }
    @media ( hover: hover ) {
        footer .footer-menu1 a:hover,
        footer .footer-menu2 a:hover {
            color: #35b4cf;
        }
    }

}
