@charset "utf-8";


:root {
    --color-theme:       #000099;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #000;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Mohave', '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: opacity 0.5s ease-out;
}
button {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover {
        opacity: 0.5;
    }
}

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-accent);
    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-scroll-wipeIn-l {
    position: relative;
}
.ws-scroll-wipeIn-l::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc( 100% + 1px );
    height: calc( 100% + 1px );
    background: #fff;
    transform-origin: right center;
    transform: scaleX( 1.0 );
    transition: all 0.5s ease-out;
}
.ws-scroll-wipeIn-r {
    position: relative;
}
.ws-scroll-wipeIn-r::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc( 100% + 1px );
    height: calc( 100% + 1px );
    background: #fff;
    transform-origin: left center;
    transform: scaleX( 1.0 );
    transition: all 0.5s ease-out;
}
.ws-scroll-wipeIn-l.ws-scroll-show::before,
.ws-scroll-wipeIn-r.ws-scroll-show::before {
    transform: scaleX( 0.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);
    border: 2px solid #fff;
    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::before {
    position: absolute;
    content: "";
    left: 40%;
    top: 42%;
    width: 20%;
    height: 20%;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    rotate: -45deg;
}
.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: 100px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-gothic);
    font-weight: 500;
    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.01; }
    100% { opacity: 1.00; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    transition: background 0.5s ease-out;
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {

    header {
        height: calc( 100vw * 144 / 780 );
        background: #fff;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0 0 0 20px;
        height: 100%;
    }
    header .header-logo a {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 161 / 81;
    }
    header .header-logo a figure {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 161 / 81;
    }
    header .header-logo a figure img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    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: #000;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area {
        display: block;
        position: absolute;
        top: 15%;
        left: 15%;
        width: 70%;
        height: 70%;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon {
        position: absolute;
        top: 50%;
        left: 15%;
        width: 70%;
        height: 0.8vw;
        background: #fff;
        border-radius: 1.0vw;
        transition: background 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::before {
        position: absolute;
        content: "";
        top: -400%;
        left: 0;
        width: 100%;
        height: 0.8vw;
        background: #fff;
        border-radius: 1.0vw;
        transition: transform 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 400%;
        left: 0;
        width: 100%;
        height: 0.8vw;
        background: #fff;
        border-radius: 1.0vw;
        transition: transform 0.5s 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( 400% ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -400% ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: fixed;
        top: calc( 100vw * 144 / 780 );
        right: 0;
        width: 100%;
        height: calc( 100vh - ( 100vw * 144 / 780 ) );
        height: calc( 100dvh - ( 100vw * 144 / 780 ) );
        padding: 0 0 8.0vw;
        background: rgba( 0, 0, 0, 0.96 );
        list-style: none;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.5s ease-out;
        overflow-y: auto;
        z-index: 99;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li {
        list-style: none;
        border-bottom: 1px solid #484848;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        display: block;
        margin: 0;
        padding: 0.8em 2.0em;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 500;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-tel {
        margin-top: 8.0vw;
        border: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-tel > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
        margin: 0 auto;
        width: 84%;
        height: auto;
        aspect-ratio: 636 / 135;
        color: var(--fg-color);
        font-size: 4.8vw;
        background: #fff;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-tel > a::before {
        display: block;
        content: "";
        margin: 0;
        padding: 0;
        width: 1.5em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-tel-black.svg) no-repeat center / contain;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-tel > a::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.2em - 1px );
        right: 2.0em;
        width: 0.4em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 3px solid var(--fg-color);
        border-bottom: 3px solid var(--fg-color);
        rotate: -45deg;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact {
        margin-top: 4.0vw;
        border: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
        margin: 0 auto;
        width: 84%;
        height: auto;
        aspect-ratio: 636 / 135;
        color: #fff;
        font-size: 4.8vw;
        font-family: var(--font-alphabet);
        background: #d00b0c;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a::before {
        display: block;
        content: "";
        margin: 0;
        padding: 0;
        width: 1.5em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-email-white.svg) no-repeat center / contain;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.2em - 1px );
        right: 2.0em;
        width: 0.4em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        rotate: -45deg;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    #contact {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 909;
        background: #000;
    }
    #contact::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/contact-bg-sp.webp) no-repeat center / cover;
        opacity: 0.2;
        z-index: 1;
    }
    #contact > .contact-info {
        position: absolute;
        bottom: 54%;
        left: 5%;
        margin: 0;
        padding: 0;
        width: 90%;
        z-index: 2;
    }
    #contact > .contact-info h2 {
        margin: 0;
        padding: 0;
        color: #fff;
    }
    #contact > .contact-info h2 span:nth-of-type(1) {
        display: block;
        margin: 0 0 1.0em;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    #contact > .contact-info h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 16.0vw;
        font-weight: 600;
        font-family: var(--font-alphabet);
        text-align: left;
        line-height: 1.0;
    }
    #contact > .contact-info p {
        margin: 0.5em 0 0;
        padding: 0;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 26 / 16 );
    }
    #contact > .contact-btns {
        position: absolute;
        top: 54%;
        left: 10%;
        width: 80%;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    #contact > .contact-btns .btn-tel {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 600 / 105;
        font-size: 4.8vw;
        background: #fff;
    }
    #contact > .contact-btns .btn-tel::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.2em - 1px );
        right: 1.5em;
        width: 0.4em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid var(--fg-color);
        border-bottom: 2px solid var(--fg-color);
        rotate: -45deg;
    }
    #contact > .contact-btns .btn-tel img {
        display: block;
        width: 6.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }
    #contact > .contact-btns .btn-tel span:nth-child(2) {
        display: none;
    }
    #contact > .contact-btns .btn-tel span:nth-child(3) {
        display: none;
    }
    #contact > .contact-btns .btn-tel span:nth-child(4) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 600;
        line-height: 1.0;
        translate: 0 5%;
    }
    #contact > .contact-btns div.sp {
        color: #fff;
        font-size: 3.6vw
    }
    #contact > .contact-btns .btn-contact {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 600 / 105;
        font-size: 4.8vw;
        background: #d00b0c;
    }
    #contact > .contact-btns .btn-contact::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.2em - 1px );
        right: 1.5em;
        width: 0.4em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }
    #contact > .contact-btns .btn-contact img {
        display: block;
        width: 6.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }
    #contact > .contact-btns .btn-contact span:nth-child(2) {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 600;
        font-family: var(--font-alphabet);
        line-height: 1.0;
        translate: 0 5%;
    }

    footer {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        background: #000;
    }
    footer .footer-info {
        position: relative;
        margin: 0 auto;
        padding: 12.0vw 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    footer .footer-info .footer-logo {
        margin: 0;
        padding: 0;
        width: 40%;
        height: auto;
        aspect-ratio: 161 / 81;
    }
    footer .footer-info .footer-logo a
    footer .footer-info .footer-logo a figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 161 / 81;
    }
    footer .footer-info .footer-logo a figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-info .footer-address {
        margin: 0;
        padding: 0;
        color: #fff;
    }
    footer .footer-info .footer-address .head {
        margin: 0;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.1em;
    }
    footer .footer-info .footer-address .info {
        margin: 0;
        padding: 0;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
        line-height: calc( 20 / 16 );
    }
    footer .footer-info .footer-address .info a {
        color: #fff;
    }
    footer .footer-info .footer-top {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 25%;
    }
    footer .footer-info .footer-top figure {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 101 / 50;
    }
    footer .footer-info .footer-top figure img {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-menus {
        margin: 0 auto;
        padding: 12.0vw 5%;
        border-top: 1px solid #323336;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8.0vw 0;
    }
    footer .footer-menus .footer-menu {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    footer .footer-menus .footer-menu li {
        margin: 2.0vw 0 0;
        padding: 0;
        list-style: none;
        color: #fff;
    }
    footer .footer-menus .footer-menu li a {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 24 / 16 );
    }
    footer .footer-menus .footer-menu li.head {
        margin: 0 0 3.0vw;
        padding: 0;
        list-style: none;
        font-size: 4.0vw;
        font-weight: 600;
        font-family: var(--font-alphabet);
        text-align: left;
        line-height: calc( 28 / 20 );
        letter-spacing: 0.05em;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 8.0vw 0 calc( 8.0vw + 100vw * 135 / 780 );
        width: 100%;
        color: #fff;
        font-size: 2.8vw;
        text-align: center;
        line-height: calc( 20 / 13 );
        letter-spacing: 0.03em;
        background: #161a1d;
        border-top: 1px solid #323336;
    }
    footer .copyright span {
        display: block;
    }
    footer .copyright span:nth-of-type(2) {
        margin-top: 1.0em;
        color: #5d5d5d;
    }

    .btn-fixed {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 135;
        color: #fff;
        font-size: 6.0vw;
        font-weight: 700;
        font-family: var(--font-alphabet);
        line-height: 1.0;
        background: #000;
        z-index: 80;
    }
    .btn-fixed::before {
        display: block;
        content: "";
        width: 1.5em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-plane-white.svg) no-repeat center / contain;
        translate: 0 -5%;
    }
    .btn-fixed::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.2em - 1px );
        right: 2.0em;
        width: 0.4em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        rotate: -45deg;
        translate: 0 -10%;
    }

}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    header {
        height: 120px;
    }
    header .header-wrap {
        position: absolute;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    header .header-logo {
        position: absolute;
        top: 2.0vw;
        left: 3%;
        margin: 0;
        padding: 0;
        width: calc( 161 * min( 100vw, 1400px ) / 1400 );
        height: auto;
        aspect-ratio: 161 / 81;
    }
    header .header-logo a {
        display: block;
        width: calc( 161 * min( 100vw, 1400px ) / 1400 );
        height: auto;
        aspect-ratio: 161 / 81;
    }
    header .header-logo a figure {
        display: block;
        width: calc( 161 * min( 100vw, 1400px ) / 1400 );
        height: auto;
        aspect-ratio: 161 / 81;
    }
    header .header-logo a figure img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header .header-menu {
        margin: 0;
        padding: 0 2.0em;
        width: auto;
        height: calc( 120 * min( 100vw, 1400px ) / 1400 );
        font-size: calc( 15 * min( 100vw, 1400px ) / 1400 );
        background: #fff;
        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.2em;
        font-size: calc( 15 * min( 100vw, 1400px ) / 1400 );
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-menu > li.header-recruit {
        display: grid;
        place-items: center;
    }
    header .header-menu > li.header-recruit > a {
        height: auto;
        border: 1px solid #d0d0d0;
    }
    header .header-btns {
        margin: 0;
        padding: 0;
        width: auto;
        height: calc( 120 * min( 100vw, 1400px ) / 1400 );
        aspect-ratio: 180 / 120;
        background: #000;
        list-style: none;
        gap: 0;
    }
    header .header-btns > li.header-btn-contact {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    header .header-btns > li.header-btn-contact > a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: calc( 19 * min( 100vw, 1400px ) / 1400 );
        font-weight: 700;
        font-family: var(--font-alphabet);
        line-height: 1.0;
    }
    header .header-btns > li.header-btn-contact > a::before {
        display: block;
        content: "";
        width: calc( 32 * min( 100vw, 1400px ) / 1400 );
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-plane-white.svg) no-repeat center / contain;
    }
    header .header-sp-menu {
        display: none;
    }

    #contact {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 1920 / 378;
        background: #000;
    }
    #contact::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/contact-bg-pc.webp) no-repeat center / cover;
        opacity: 0.2;
        z-index: 1;
    }
    #contact > .contact-info {
        position: absolute;
        top: 50%;
        right: 50%;
        margin: 0;
        padding: 0 5% 0 max( 5%, calc( 50vw - 520px ) );
        width: 50%;
        translate: 0 -50%;
        z-index: 2;
    }
    #contact > .contact-info h2 {
        margin: 0;
        padding: 0;
        color: #fff;
    }
    #contact > .contact-info h2 span:nth-of-type(1) {
        display: block;
        margin: 0 0 1.0em;
        padding: 0;
        font-size: calc( 19 * min( 90vw, 1280px ) / 1280 );
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    #contact > .contact-info h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: calc( 84 * min( 90vw, 1280px ) / 1280 );
        font-weight: 600;
        font-family: var(--font-alphabet);
        text-align: left;
        line-height: 1.0;
    }
    #contact > .contact-info p {
        margin: 0.5em 0 0;
        padding: 0;
        color: #fff;
        font-size: calc( 16 * min( 90vw, 1280px ) / 1280 );
        font-weight: 400;
        text-align: left;
        line-height: calc( 26 / 16 );
    }
    #contact > .contact-btns {
        position: absolute;
        top: 50%;
        left: 52%;
        width: 43%;
        max-width: 600px;
        translate: 0 -50%;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc( 24 * min( 90vw, 1280px ) / 1280 ) 0;
    }
    #contact > .contact-btns .btn-tel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 16px;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 600 / 105;
        background: #fff;
    }
    #contact > .contact-btns .btn-tel img {
        display: block;
        width: calc( 48 * min( 90vw, 1280px ) / 1280 );
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }
    #contact > .contact-btns .btn-tel span:nth-child(2) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: calc( 48 * min( 90vw, 1280px ) / 1280 );
        font-weight: 600;
        font-family: var(--font-alphabet);
        line-height: 1.0;
        translate: 0 5%;
    }
    #contact > .contact-btns .btn-tel span:nth-child(3) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: calc( 13 * min( 90vw, 1280px ) / 1280 );
        font-weight: 400;
        line-height: 1.0;
    }
    #contact > .contact-btns .btn-tel span:nth-child(4) {
        display: none;
    }
    #contact > .contact-btns .btn-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 calc( 16 * min( 90vw, 1280px ) / 1280 );
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 600 / 105;
        background: #d00b0c;
    }
    #contact > .contact-btns .btn-contact img {
        display: block;
        width: calc( 48 * min( 90vw, 1280px ) / 1280 );
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }
    #contact > .contact-btns .btn-contact span:nth-child(2) {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: calc( 48 * min( 90vw, 1280px ) / 1280 );
        font-weight: 600;
        font-family: var(--font-alphabet);
        line-height: 1.0;
        translate: 0 5%;
    }

    footer {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        background: #000;
    }
    footer .footer-info {
        position: relative;
        margin: 0 auto;
        padding: 48px max( 5%, calc( 50vw - 640px ) ) 40px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 65px;
    }
    footer .footer-info .footer-logo,
    footer .footer-info .footer-logo a
    footer .footer-info .footer-logo a figure {
        margin: 0;
        padding: 0;
        width: 161px;
        height: auto;
        aspect-ratio: 161 / 81;
    }
    footer .footer-info .footer-logo a figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-info .footer-address {
        margin: 0;
        padding: 0;
        color: #fff;
    }
    footer .footer-info .footer-address .head {
        margin: 0;
        padding: 0;
        font-size: 19px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.1em;
    }
    footer .footer-info .footer-address .info {
        margin: 0;
        padding: 0;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 20 / 16 );
    }
    footer .footer-info .footer-address .info a {
        color: #fff;
    }
    footer .footer-info .footer-top {
        display: block;
        margin: 0;
        padding: 0;
        flex: 1 0 auto;
        align-self: flex-end;
    }
    footer .footer-info .footer-top figure {
        display: block;
        margin: 0 0 0 auto;
        padding: 0;
        width: 101px;
        height: auto;
        aspect-ratio: 101 / 50;
    }
    footer .footer-info .footer-top figure img {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-menus {
        margin: 0 auto;
        padding: 40px max( 5%, calc( 50vw - 640px ) ) 64px;
        border-top: 1px solid #323336;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0 min( 120px, 6.0vw );
    }
    footer .footer-menus .footer-menu {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    footer .footer-menus .footer-menu li {
        margin: 24px 0 0;
        padding: 0;
        list-style: none;
        color: #fff;
    }
    footer .footer-menus .footer-menu li a {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 24 / 16 );
    }
    footer .footer-menus .footer-menu li.head {
        margin: 0 0 32px;
        padding: 0;
        list-style: none;
        font-size: 20px;
        font-weight: 600;
        font-family: var(--font-alphabet);
        text-align: left;
        line-height: calc( 28 / 20 );
        letter-spacing: 0.05em;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 40px 0;
        width: 100%;
        color: #fff;
        font-size: 13px;
        text-align: center;
        line-height: calc( 20 / 13 );
        letter-spacing: 0.03em;
        background: #161a1d;
        border-top: 1px solid #323336;
    }
    footer .copyright span {
        display: block;
    }
    footer .copyright span:nth-of-type(2) {
        margin-top: 1.0em;
        color: #5d5d5d;
    }

    .btn-fixed {
        display: none;
    }

}


/*
@media ( width < 1300px ) {
    header .header-menu > li:nth-child(7) {
        display: none;
    }
}

@media ( width < 1180px ) {
    header .header-menu > li:nth-child(6) {
        display: none;
    }
}

@media ( width < 1000px ) {
    header .header-menu > li:nth-child(5) {
        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 ); }
}

