@charset "utf-8";


:root {
    --color-theme:       #1992ff;
    --color-light-theme: #f0ffff;
    --color-accent:      #ff8010;
    --color-header:      #073F8F;
    --fg-color:          #333;
    --bg-color:          transparent;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Fira Sans', '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;
    --content-width-pc: 80.56%;
    --content-width-sp: 90%;
}


*, *::before, *::after {
    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.3s ease-out;
}
button {
    cursor: pointer;
    transition: all 0.3s 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: calc( 100vw * 80 / 1440 );
    left: auto;
    right: 2.0vw;
    /*width: calc( 100vw * 80 / 1440 );*/
    width: 40px;
    height: auto;
    aspect-ratio: 1 / 1;
    background: var(--color-accent);
    border: 1px solid #fff;
    border-radius: 8px;
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.0, 0.0 );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
.ws-goto-top::before {
    position: absolute;
    content: "";
    left: 35%;
    top: 35%;
    width: 30%;
    height: 30%;
    background: #fff;
    -webkit-mask-image: url(../images/icon-arrow-white.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-image: url(../images/icon-arrow-white.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    rotate: -90deg;
    transition: background 0.3s ease-out;
}
.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-accent);
    }
    .ws-goto-top:hover::before {
        background: var(--color-accent);
    }
}

.ws-scroll-top-menu {
    opacity: 0.0;
    transform: translateY( -150px );
    transition: 0.2s;
}
.ws-scroll-top-menu.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 );
}



/* 以下サイトごと */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: calc( 100vw * 18 / 1440 );
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: calc( 100vw * 100 / 1440 );
}

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;
    background: 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.2s ease-out;
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {
    html {
        font-size: 62.5%;
    }
    body {
        font-size: 3.75vw;
    }
    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: #fff;
        border: 1px solid #073f8f;
        border-radius: 4px;
        transition: background 0.25s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon {
        position: absolute;
        top: 50%;
        left: 30%;
        width: 40%;
        height: 2px;
        background: #073f8f;
        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: -8px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #073f8f;
        border-radius: 2px;
        transition: transform 0.25s ease-out, background 0.25s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 8px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #073f8f;
        border-radius: 2px;
        transition: transform 0.25s ease-out, background 0.25s ease-out;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area {
        background: #073f8f;
    }
    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 {
        background: #fff;
        transform: translateY( 8px ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        background: #fff;
        transform: translateY( -8px ) 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: var(--color-theme);
        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 #65b6ff;
    }
    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.6em;
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 3.0em;

        color: #013283;
        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::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 10%;
        width: 1.0em;
        height: auto;
        aspect-ratio: 20 / 18;
        background: var(--color-theme);
        -webkit-mask-image: url(../images/icon-arrow-white.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        mask-image: url(../images/icon-arrow-white.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        transition: background-color 0.3s ease-out;
    }
    @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-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 );
    }

    #contact {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        height: auto;
        background: var(--color-theme);
    }
    #contact > .title-area {
        position: relative;
        margin: 0 auto;
        width: var(--content-width-sp);
        color: #329dfd;
        font-size: 20.0vw;
        font-weight: 500;
        font-style: italic;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        letter-spacing: 0;
    }
    #contact > .title-area h2 {
        position: absolute;
        top: 50%;
        left: 0;
        translate: 0 -40%;
        width: 100%;
        color: #fff;
        font-size: 6.0vw;
        font-weight: 800;
        font-style: normal;
        text-align: center;
        line-height: 1.0;
        letter-spacing: 0.04em;
    }
    #contact > p {
        margin: 1.0em 0 0;
        width: 100%;
        color: #fff;
        font-size: 3.75vw;
        font-weight: 500;
        text-align: center;
    }
    #contact > .contact-btn {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0 1.5em;
        margin: 8.0vw auto 0;
        width: var(--content-width-sp);
        height: auto;
        aspect-ratio: 600 / 104;
        font-size: 4.0vw;
        font-weight: 700;
        border-radius: 2.0vw;
    }
    #contact > .contact-btn::after {
        position: absolute;
        content: "";
        display: block;
        top: calc( 50% - 0.5em );
        right: 1.5em;
        width: 1.2em;
        height: 1.0em;
        aspect-ratio: 20 / 18;
        background: #fff;
        -webkit-mask-image: url(../images/icon-arrow-white.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        mask-image: url(../images/icon-arrow-white.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
        transition: background 0.3s ease-out;
    }

    footer {
        margin: 0 auto;
        padding: 12.0vw 0 0;
        width: 100%;
        background: #fff;
    }
    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: var(--content-width-sp);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /*gap: 2.0vw 0;*/
    }
    footer .footer-menu1 a {
        margin: 0;
        padding: 5vw 0;
        width: 100%;
        font-size: 4vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
        border-bottom: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer .footer-menu1 a:first-child{
        border-top: 1px solid #ddd;
    }
    footer .footer-menu1 a::after {
        content: "";
        width: 1.0em;
        height: 1.0em;
        background: url(../images/icon-arrow-navy.svg) no-repeat center / contain;
    }
    footer .footer-menu2 {
        margin: 8.0vw auto 0;
        padding: 0 0 8.0vw;
        width: var(--content-width-sp);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6.5vw 0;
        border-bottom: 1px solid #ddd;
    }
    footer .footer-menu2 a {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        font-size: 3.75vw;
        font-weight: 500;
        text-align: left;
        line-height: 1.0;
    }
    footer .footer-relations {
        margin: 12.0vw auto 0;
        padding: 0;
        width: var(--content-width-sp);
        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: var(--content-width-sp);
    }
    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: var(--content-width-sp);
    }
    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;
        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;
        &.icon-bcp{
         max-width:8em;
        }
    }
    footer .footer-relations .footer-relation .icon img {
        margin: 0;
        width: 100%;
        height: auto;
    }
    footer .footer-relations .footer-relation p {
        margin: 2.0vw 0 0;
        font-size: 2.8vw;
        font-weight: 400;
        text-align: left;
    }
    footer .copyright {
        margin: 12.0vw auto 0;
        padding: 2.0em 0;
        width: 100%;
        font-size: 2.8vw;
        font-weight: 400;
        text-align: center;
        border-top: 1px solid #ddd;
    }
    @media ( hover: hover ) {
        footer .footer-menu1 a:hover,
        footer .footer-menu2 a:hover {
            color: #35b4cf;
        }
    }

}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    header {
        width: 100%;
        height: auto;
        aspect-ratio: 1440 / 88;
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0 20px;
        padding: 0 calc( 100vw * 20 / 1440 );
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: calc( 100vw * 30 / 1440 ) 0;
        width: calc( 100vw * 184 / 1440 );
        height: 100%;
        flex: 0 0 calc( 100vw * 184 / 1440 );
    }
    header .header-logo img {
        width: calc( 100vw * 184 / 1440 );
        height: auto;
        aspect-ratio: 184 / 28;
        object-fit: contain;
    }
    header .header-txt {
        margin: 0 0 0 calc( 100vw * 16 / 1440 );
        font-size: calc( 100vw * 12 / 1440 );
        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 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: 60%;
        padding: 0 1.0em;
        font-size: calc( 100vw * 15 / 1440 );
        font-weight: 600;
        transition: color 0.2s ease-out, opacity 0.2s ease-out;
        @media screen and ( max-width: 1330px ) {
            padding: 0 .6vw;
        }
    }
    header .header-menu > li > a:hover{
        color: #1992ff;
    }
    header .header-menu > li.active > a {
        border-bottom: 2px solid #073f8f;
    }
    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: calc( 100vw * 14 / 1440 );
        font-weight: 500;
        text-align: left;
        transition: color 0.2s ease-out, background 0.2s 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.2s 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: calc( 100vw * 88 / 1440 );
        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.2s 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: calc( 100vw * 14 / 1440 );
        font-weight: 500;
        text-align: center;
        transition: color 0.2s ease-out, background 0.2s 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.2s 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 calc( 100vw * 20 / 1440 );
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 0 calc( 100vw * 10 / 1440 );
    }
    header .header-btns > li {
        margin: 0;
        padding: calc( 100vw * 20 / 1440 ) 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 3.0em;
        height: 100%;
        font-size: calc( 100vw * 14 / 1440 );
        font-weight: 700;
        border-radius: 4.0em;
        transition: all 0.2s ease-out;
    }
    header .header-btns > li.header-btn-contact > a {
        color: var(--color-header);
        border: 1px solid var(--color-header);
        background: #fff;
        transition: background 0.3s ease-out, color 0.3s ease-out;
    }
    header .header-btns > li.header-btn-contact > a::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 10%;
        width: 1.0em;
        height: auto;
        aspect-ratio: 20 / 18;
        background: var(--color-header);
        -webkit-mask-image: url(../images/icon-arrow-white.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        mask-image: url(../images/icon-arrow-white.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        transition: background-color 0.3s ease-out;
    }
    @media ( hover: hover ) {
        header .header-btns > li.header-btn-contact > a:hover {
            color: #fff;
            background: var(--color-header);
        }
        header .header-btns > li.header-btn-contact > a:hover::after {
            background-color: #fff;
        }
    }

    header .header-sp-menu {
        display: none;
    }

    #contact {
        margin: 0 auto;
        padding: calc( 100vw * 96 / 1440 ) 0;
        width: 100%;
        height: auto;
        background: var(--color-theme);
    }
    #contact > .title-area {
        position: relative;
        margin: 0 auto;
        width: var(--content-width-pc);
        color: #329dfd;
        font-size: calc( 100vw * 200 / 1440 );
        font-weight: 500;
        font-style: italic;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
        letter-spacing: 0;
    }
    #contact > .title-area h2 {
        position: absolute;
        top: 50%;
        left: 0;
        translate: 0 -40%;
        width: 100%;
        color: #fff;
        font-size: calc( 100vw * 56 / 1440 );
        font-weight: 800;
        font-style: normal;
        text-align: center;
        line-height: 1.0;
        letter-spacing: 0.04em;
    }
    #contact > p {
        margin: 1.0em 0 0;
        width: 100%;
        color: #fff;
        font-size: calc( 100vw * 18 / 1440 );
        font-weight: 500;
        text-align: center;
    }
    #contact > .contact-btn {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0 calc( 100vw * 20 / 1440 );
        padding: 0 1.5em;
        margin: calc( 100vw * 60 / 1440 ) auto 0;
        width: calc( 100vw * 600 / 1440 );
        height: auto;
        aspect-ratio: 600 / 104;
        font-size: calc( 100vw * 28 / 1440 );
        font-weight: 700;
        border-radius: calc( 100vw * 8 / 1440 );
    }
    #contact > .contact-btn::after {
        position: absolute;
        content: "";
        display: block;
        top: calc( 50% - 0.5em );
        right: 1.5em;
        width: 1.2em;
        height: 1.0em;
        aspect-ratio: 20 / 18;
        background: #fff;
        -webkit-mask-image: url(../images/icon-arrow-white.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        mask-image: url(../images/icon-arrow-white.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
        transition: background 0.3s ease-out;
    }

    footer {
        margin: 0 auto;
        padding: calc( 100vw * 80 / 1440 ) 0 0;
        width: 100%;
        background: #fff;
    }
    footer .footer-logo {
        margin: 0 auto;
        padding: 0;
        width: var(--content-width-pc);
        height: calc( 100vw * 28 / 1440 );
    }
    footer .footer-logo a {
        display: block;
        margin: 0 auto 0 0;
        width: calc( 100vw * 184 / 1440 );
        height: auto;
    }
    footer .footer-logo img {
        margin: 0 auto 0 0;
        width: calc( 100vw * 184 / 1440 );
        max-width: 100%;
        height: auto;
        aspect-ratio: 184 / 28;
        object-fit: contain;
    }
    footer .footer-menu1 {
        margin: calc( 100vw * 80 / 1440 ) auto 0;
        padding: 0;
        width: var(--content-width-pc);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: calc( 100vw * 40 / 1440 ) calc( 100vw * 28 / 1440 );
    }
    footer .footer-menu1 a {
        display: block;
        flex:auto;
        margin: 0;
        padding: calc( 100vw * 20 / 1440 ) 0;
        font-size: calc( 100vw * 15 / 1440 );
        font-weight: 700;
        line-height: 1.0;
        border-bottom: 1px solid #ddd;
    }
    footer .footer-menu2 {
        margin: calc( 100vw * 80 / 1440 ) auto 0;
        padding: calc( 100vw * 20 / 1440 ) 0;
        width: var(--content-width-pc);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: calc( 100vw * 40 / 1440 ) calc( 100vw * 40 / 1440 );
        border-bottom: 1px solid #ddd;
    }
    footer .footer-menu2 a {
        display: block;
        margin: 0;
        padding: 0;
        width: max-content;
        font-size: calc( 100vw * 14 / 1440 );
        line-height: 1.0;
    }
    footer .footer-relations {
        margin: calc( 100vw * 80 / 1440 ) auto 0;
        padding: calc( 100vw * 20 / 1440 ) 0;
        width: var(--content-width-pc);
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: calc( 100vw * 40 / 1440 ) calc( 100vw * 40 / 1440 );
    }
    footer .footer-relations .footer-relation {
        margin: 0;
        padding: 0;
        width: max-content;
    }
    footer .footer-relations .footer-relation .head {
        margin: 0;
        font-size: calc( 100vw * 14 / 1440 );
        font-weight: 400;
        text-align: left;
    }
    footer .footer-relations .footer-relation .icon {
        margin: calc( 100vw * 10 / 1440 ) 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: calc( 100vw * 10 / 1440 ) 0 0;
        font-size: calc( 100vw * 12 / 1440 );
        font-weight: 400;
        text-align: left;
    }
    footer .copyright {
        margin: calc( 100vw * 80 / 1440 ) auto 0;
        padding: 2.0em 0;
        width: 100%;
        font-size: calc( 100vw * 14 / 1440 );
        font-weight: 400;
        text-align: center;
        border-top: 1px solid #ddd;
    }
    @media ( hover: hover ) {
        footer .footer-menu1 a:hover,
        footer .footer-menu2 a:hover {
            color: #1992ff;
        }
    }

}

.btn-white {
    color: var(--color-theme) !important;
    border: 1px solid #fff !important;
    background: #fff !important;
}
.btn-white::after {
    background-color: var(--color-theme) !important;
}
.btn-cyan {
    color: #fff !important;
    border: 1px solid var(--color-theme) !important;
    background: var(--color-theme) !important;
}
.btn-cyan::after {
    background-color: #fff !important;
}
.btn-orange {
    color: #fff !important;
    border: 1px solid #fff !important;
    background: var(--color-accent) !important;
}
.btn-orange::after {
    background-color: #fff !important;
}

@media ( hover: hover ) {
    .btn-white:hover {
        color: #fff !important;
        border: 1px solid #fff !important;
        background: var(--color-theme) !important;
    }
    .btn-white:hover::after {
        background-color: #fff !important;
    }
    .btn-cyan:hover {
        color: var(--color-theme) !important;
        border: 1px solid var(--color-theme) !important;
        background: #fff !important;
    }
    .btn-cyan:hover::after {
        background-color: var(--color-theme) !important;
    }
    .btn-orange:hover {
        color: var(--color-accent) !important;
        border: 1px solid var(--color-accent) !important;
        background: #fff !important;
    }
    .btn-orange:hover::after {
        background-color: var(--color-accent) !important;
    }
}