@charset "utf-8";


:root {
    --color-theme:       #0083d6;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #000;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-calsans: 'Cal Sans', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-poppins: 'Poppins', '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;
}

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

@media ( hover: hover ) {
    body a:hover {
        color: inherit;
        opacity: 0.5;
    }
    body a:hover, body button:hover {
        color: inherit;
        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-wipe-l {
    position: relative;
}
.ws-scroll-wipe-l::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: right center;
    transition: transform 0.5s ease-out;
    z-index: 10;
}
.ws-scroll-wipe-l.ws-scroll-show::before {
    transform: scaleX( 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: relative;
    display: block;
    margin: 0 auto;
    padding: 1.2em 0;
    width: 100%;
    height: auto;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-calsans);
    text-align: center;
    line-height: 1.0;
    letter-spacing: 0.1em;
    background: #fff;
}
.ws-goto-top::before {
    position: absolute;
    content: "";
    top: calc( 50% - 0.5em );
    left: calc( 50% + 3.0em );
    width: 1.0em;
    height: auto;
    aspect-ratio: 1 / 1;
    background: var(--fg-color);
    border-radius: 100%;
}
.ws-goto-top::after{
    position: absolute;
    content: "";
    top: calc( 50% - 0.10em - 1px );
    left: calc( 50% + 3.35em - 1px );
    width: 0.3em;
    height: auto;
    aspect-ratio: 1 / 1;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    rotate: -45deg;
}

.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;
    background: #fffe;
    box-shadow: 0 4px 4px #0003;
}


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

    header {
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 120;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        margin: 0;
        padding: 0 0 0 20px;
        height: 100%;
    }
    header .header-logo a {
        margin: 0;
        padding: 2.8vw 0;
        display: block;
        width: auto;
        height: 100%;
    }
    header .header-logo figure {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 227 / 48;
    }
    header .header-logo 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: #fff;
    }
    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: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: background 0.3s 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: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.3s 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: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.3s 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 * 120 / 780 );
        right: 0;
        width: 100%;
        height: calc( 100vh - ( 100vw * 120 / 780 ) );
        height: calc( 100dvh - ( 100vw * 120 / 780 ) );
        padding: 0;
        background: #0082d6;
        border-left: 10vw solid #0d2b45;
        list-style: none;
        transform-origin: right center;
        transform: scaleX( 0.0 );
        transition: transform 0.3s 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 + li {
        border-top: 1px solid #fff;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        position: relative;
        display: block;
        margin: 0;
        padding: 1.0em 2.0em;
        color: #fff;
        font-size: 4.0vw;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 2.0em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.15em - 1px );
        right: calc( 2.5em - 0.12em );
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #0083d6;
        border-bottom: 2px solid #0083d6;
        rotate: -45deg;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a {
        margin: 2.0em auto 0;
        padding: 0.5em 2.0em;
        width: calc( 100% - 4.0em );
        color: var(--fg-color);
        text-align: center;
        background: #fff;
        border-radius: 4.0em;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleX( 1.0 );
    }

    #contact {
        margin: 12.0vw auto 0;
        padding: 12.0vw 0;
        width: 100%;
        background: url(../images/contact-bg.webp) no-repeat center / cover;
    }
    #contact .contact-wrap {
        margin: 0 auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    #contact .contact-wrap .contact-l {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #contact .contact-wrap .contact-r {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #contact .contact-wrap .contact-l h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0 0;
    }
    #contact .contact-wrap .contact-l h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 8.0vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #contact .contact-wrap .contact-l h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #contact .contact-wrap .contact-l p {
        margin: 1.5em 0 0;
        padding: 0;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: left;
        letter-spacing: 0.03em;
        line-height: calc( 32 / 18 );
    }
    #contact .contact-wrap .contact-r > div:nth-of-type(1) {
        padding: 4.0vw;
        background: #fff;
        border-radius: 2.0vw;
    }
    #contact .contact-wrap .contact-r .head {
        margin: 0;
        padding: 0.2em 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
        border: 1px solid #ccc;
        border-radius: 1.0vw;
    }
    #contact .contact-wrap .contact-r .btn-tel {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #contact .contact-wrap .contact-r .time {
        margin: 0;
        padding: 0;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #contact .contact-wrap .contact-r .btn-common {
        position: relative;
        margin: 4.0vw 0 0;
        padding: 4.0vw 0;
        width: 100%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 4.0vw;
        border-radius: 2.0vw;
    }
    #contact .contact-wrap .contact-r .btn-common figure {
        margin: 0;
        padding: 0;
        width: 16.0vw;
        height: 16.0vw;
    }
    #contact .contact-wrap .contact-r .btn-common figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #contact .contact-wrap .contact-r .btn-common span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
    }
    #contact .contact-wrap .contact-r .btn-common span:nth-of-type(2) {
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
        width: 1.2em;
        height: 1.2em;
    }
    #contact .contact-wrap .contact-r .btn-common span:nth-of-type(2)::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 1.2em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: var(--fg-color);
        border-radius: 100%;
    }
    #contact .contact-wrap .contact-r .btn-common span:nth-of-type(2)::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.15em - 1px );
        left: 0.30em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }

    footer {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        border-top: 1px solid #ccc;
    }
    footer .footer-wrap1 {
        margin: 0 auto;
        padding: 12.0vw 5%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    footer .footer-wrap2 {
        margin: 0 auto;
        padding: 12.0vw 5%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
        background: #f7f7f7;
    }
    footer .footer-wrap3 {
        margin: 0 auto;
        padding: 12.0vw 5% 18.0vw;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    footer .footer-logo {
        margin: 0;
        padding: 0;
        width: 100%;
        order: 3;
    }
    footer .footer-logo .btn-logo {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 60%;
    }
    footer .footer-logo figure {
        margin: 0;
        padding: 0;
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 227 / 48;
    }
    footer .footer-logo figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-logo .name {
        margin: 4.0vw 0 0;
        padding: 0;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
    }
    footer .footer-logo .site {
        margin: 2.0vw auto 0;
        padding: 0.2em 0.5em;
        width: max-content;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: center;
        border: 1px solid var(--fg-color);
    }
    footer .footer-logo .address {
        margin: 1.0vw 0 0;
        padding: 0;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: center;
        line-height: calc( 20 / 12 );
    }
    footer .footer-logo .telhead {
        margin: 6.0vw auto 0;
        padding: 0.2em 0;
        width: 90%;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 20 / 12 );
        border: 1px solid #ccc;
        border-radius: 1.0vw;
    }
    footer .footer-logo .btn-tel {
        display: block;
        margin: 2.0vw auto 0;
        padding: 0;
    }
    footer .footer-logo .btn-tel figure {
        margin: 0 auto;
        padding: 0;
        width: 70%;
        height: auto;
        aspect-ratio: 178 / 31;
    }
    footer .footer-logo .btn-tel figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-logo .btn-common {
        position: relative;
        display: grid;
        place-items: center;
        margin: 4.0vw auto 0;
        padding: 0 2.0em 0 1.0em;
        width: 90%;
        height: auto;
        aspect-ratio: 206 / 27;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
        background: #0083d6;
        border-radius: 4.0em;
    }
    footer .footer-logo .btn-common::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.0em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    footer .footer-logo .btn-common::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.15em - 1px );
        right: calc( 1.5em - 0.12em - 1px );
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #0083d6;
        border-bottom: 2px solid #0083d6;
        rotate: -45deg;
    }
    footer .footer-menu {
        width: 100%;
        order: 1;
    }
    footer .footer-menu .head {
        display: block;
        margin: 0;
        padding: 0 0 0.5em;
        color: #ccc;
        font-size: 4.8vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    footer .footer-menu ul {
        margin: 2.0vw 0 0;
        padding: 0 0 0 4.0vw;
        list-style: none;
        border-left: 1px solid #e6e6e6;
    }
    footer .footer-menu ul li {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    footer .footer-menu ul li + li {
        margin-top: 1.0vw;
    }
    footer .footer-menu ul li a {
        margin: 0;
        padding: 0;
        font-size: 3.6vw;
        font-weight: 400;
    }
    footer .footer-h2 {
        margin: 0;
        padding: 0 0 0 1.0em;
        width: 100%;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
        border-left: 4px solid #0083d6;
    }
    footer .footer-info {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    footer .footer-info > h3 {
        margin: 0;
        padding: 0 0 1.0vw;
        width: 100%;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: left;
    }
    footer .footer-wrap2 h3 {
        border-bottom: 1px solid #e6e6e6;
    }
    footer .footer-info > p {
        margin: 0;
        padding: 1.0vw 0 0;
        width: 100%;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: left;
    }
    footer .copyright {
        margin: 2.0em 0 0;
        padding: 0;
        color: #999;
        font-size: 3.2vw;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: center;
    }
    footer .footer-logo2 {
        margin: 0;
        padding: 0;
        width: 272px;
        height: auto;
        aspect-ratio: 272 / 35;
    }

    .ws-goto-top {
        font-size: 3.6vw;
    }

    body .btn-fixed {
        position: fixed;
        display: grid;
        place-items: center;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 98;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        background: #0083d6;
        z-index: 90;
    }
    body .btn-fixed:hover {
        color: #fff;
    }
    body .btn-fixed::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.6em );
        left: calc( 50% + 7.5em );
        width: 1.2em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    body .btn-fixed::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1px - 0.15em );
        left: calc( 50% + 7.85em );
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid var(--color-theme);
        border-bottom: 2px solid var(--color-theme);
        rotate: -45deg;
    }

}


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

    header {
        height: 96px;
    }
    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 {
        margin: 0;
        padding: 0;
        width: 227px;
        height: 100%;
    }
    header .header-logo a {
        display: block;
        margin: 0;
        padding: 24px 0;
        width: 227px;
        height: 100%;
    }
    header .header-logo figure {
        margin: 0;
        padding: 0;
        display: block;
        width: 227px;
        height: auto;
        aspect-ratio: 227 / 48;
    }
    header .header-logo figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header .header-menu {
        width: auto;
        height: 100%;
        flex: 1 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    header .header-menu > li {
        position: relative;
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-menu > li + li::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        left: 0;
        width: 1px;
        height: 1.0em;
        background: #d1d1d1;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        font-size: 15px;
        font-weight: 500;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header.scroll .header-menu > li > a {
        color: var(--fg-color);
    }
    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;
        padding: 0;
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 0 16px;
    }
    header .header-btns > li {
        margin: 0;
        padding: 16px 0;
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-btns > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        font-size: 15px;
        font-weight: 500;
        border-radius: 4.0em;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-btns > li.header-btn-recruit {
        padding: 32px 0;
    }
    header .header-btns > li.header-btn-recruit > a {
        padding: 0 1.2em;
        height: 100%;
        border: 1px solid #051b31;
    }
    header .header-btns > li.header-btn-tel {
        padding: 0;
    }
    header .header-btns > li.header-btn-tel > a {
        position: relative;
        padding: 0 0 8px;
        height: 100%;
        font-size: 24px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 0.2em;
    }
    header .header-btns > li.header-btn-tel > a::before {
        content: "";
        width: 1.0em;
        height: 1.0em;
        background: url(../images/icon-freedial-black.svg) no-repeat center / contain;
    }
    header .header-btns > li.header-btn-tel > a::after {
        position: absolute;
        top: calc( 50% + 4px );
        left: 0;
        width: 100%;
        content: "受付時間 / 平日 9:00〜18:00";
        font-size: 12px;
        font-weight: 400;
        text-align: center;
    }        
    header .header-btns > li.header-btn-contact {
        padding: 20px 0;
    }
    header .header-btns > li.header-btn-contact > a {
        position: relative;
        padding: 0 3.0em 0 1.5em;
        color: #fff;
        background: #0083d6;
        background: linear-gradient( to bottom, #ff3100, #fcab13 );
    }
    header .header-btns > li.header-btn-contact > a::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.6em );
        right: 1.2em;
        width: 1.2em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    header .header-btns > li.header-btn-contact > a::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.15em - 1px );
        right: calc( 1.8em - 0.12em - 1px );
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #0083d6;
        border-bottom: 2px solid #0083d6;
        border-right: 2px solid #ff3100;
        border-bottom: 2px solid #ff3100;
        rotate: -45deg;
    }
    header .header-sp-menu {
        display: none;
    }

    #contact {
        margin: 152px auto 0;
        padding: 90px 0;
        width: 100%;
        background: url(../images/contact-bg.webp) no-repeat center / cover;
    }
    #contact .contact-wrap {
        margin: 0 auto;
        width: 90%;
        max-width: 1200px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    #contact .contact-wrap .contact-l {
        margin: 0;
        padding: 0 0 0 100px;
        width: 50%;
    }
    #contact .contact-wrap .contact-r {
        margin: 0;
        padding: 0;
        width: 50%;
    }
    #contact .contact-wrap .contact-l h2 {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0 0;
    }
    #contact .contact-wrap .contact-l h2 span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 51px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    #contact .contact-wrap .contact-l h2 span:nth-of-type(2) {
        display: block;
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        text-align: left;
        letter-spacing: 0.03em;
    }
    #contact .contact-wrap .contact-l p {
        margin: 1.5em 0 0;
        padding: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        text-align: left;
        letter-spacing: 0.03em;
        line-height: calc( 32 / 18 );
    }
    #contact .contact-wrap .contact-r .head {
        margin: 0;
        padding: 0.2em 0;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.03em;
        border: 1px solid #67b3e3;
        border-radius: 4px;
    }
    #contact .contact-wrap .contact-r .btn-tel {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 75%;
    }
    #contact .contact-wrap .contact-r .time {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        letter-spacing: 0.03em;
    }
    #contact .contact-wrap .contact-r .btn-common {
        position: relative;
        margin: 30px 0 0;
        padding: 20px 0;
        width: 100%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 24px;
        border-radius: 8px;
    }
    #contact .contact-wrap .contact-r .btn-common figure {
        margin: 0;
        padding: 0;
        width: 96px;
        height: 96px;
    }
    #contact .contact-wrap .contact-r .btn-common figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #contact .contact-wrap .contact-r .btn-common span:nth-of-type(1) {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }
    #contact .contact-wrap .contact-r .btn-common span:nth-of-type(2) {
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
        width: 96px;
        height: 1.2em;
    }
    #contact .contact-wrap .contact-r .btn-common span:nth-of-type(2)::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 1.2em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: var(--fg-color);
        border-radius: 100%;
    }
    #contact .contact-wrap .contact-r .btn-common span:nth-of-type(2)::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.15em - 1px );
        left: 0.30em;
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }

    footer {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        border-top: 1px solid #ccc;
    }
    footer .footer-wrap1 {
        margin: 0 auto;
        padding: 60px max( 5%, calc( 50vw - 600px ) );
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0 96px;
    }
    footer .footer-wrap2 {
        margin: 0 auto;
        padding: 40px max( 5%, calc( 50vw - 600px ) );
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px 40px;
        background: #f7f7f7;
    }
    footer .footer-wrap3 {
        margin: 0 auto;
        padding: 40px max( 5%, calc( 50vw - 600px ) );
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .footer-logo {
        margin: 0;
        padding: 0;
        width: 227px;
        flex: 1 0 227px;
    }
    footer .footer-logo .btn-logo {
        display: block;
        margin: 0;
        padding: 0;
        width: 227px;
    }
    footer .footer-logo figure {
        margin: 0;
        padding: 0;
        display: block;
        width: 227px;
        height: auto;
        aspect-ratio: 227 / 48;
    }
    footer .footer-logo figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-logo .name {
        margin: 30px 0 0;
        padding: 0;
        font-size: 15px;
        font-weight: 500;
        text-align: left;
    }
    footer .footer-logo .site {
        margin: 17px 0 0;
        padding: 0.2em 0.5em;
        width: max-content;
        font-size: 12px;
        font-weight: 400;
        text-align: left;
        border: 1px solid var(--fg-color);
    }
    footer .footer-logo .address {
        margin: 8px 0 0;
        padding: 0;
        font-size: 12px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 20 / 12 );
    }
    footer .footer-logo .telhead {
        margin: 17px 0 0;
        padding: 0;
        font-size: 12px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 20 / 12 );
    }
    footer .footer-logo .btn-tel {
        display: block;
        margin: 0;
        padding: 0;
    }
    footer .footer-logo .btn-tel figure {
        margin: 0;
        padding: 0;
        width: 178px;
        height: auto;
        aspect-ratio: 178 / 31;
    }
    footer .footer-logo .btn-tel figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-logo .btn-common {
        position: relative;
        display: grid;
        place-items: center;
        margin: 8px 0 0;
        padding: 0 3.0em 0 1.0em;
        width: max-content;
        height: auto;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        aspect-ratio: 206 / 27;
        background: #0083d6;
        border-radius: 4.0em;
    }
    footer .footer-logo .btn-common::before {
        position: absolute;
        content: "";
        top: calc( 50% - 0.5em );
        right: 1.0em;
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 100%;
    }
    footer .footer-logo .btn-common::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.15em - 1px );
        right: calc( 1.5em - 0.12em - 1px );
        width: 0.3em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #0083d6;
        border-bottom: 2px solid #0083d6;
        rotate: -45deg;
    }
    footer .footer-menu {
    }
    footer .footer-menu .head {
        display: block;
        margin: 0;
        padding: 0 0 0.5em;
        color: #ccc;
        font-size: 18px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
        letter-spacing: 0.15em;
    }
    footer .footer-menu ul {
        margin: 25px 0 0;
        padding: 0 0 0 32px;
        list-style: none;
        border-left: 1px solid #e6e6e6;
    }
    footer .footer-menu ul li {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    footer .footer-menu ul li + li {
        margin-top: 2px;
    }
    footer .footer-menu ul li a {
        margin: 0;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
    }
    footer .footer-h2 {
        margin: 0;
        padding: 0 0 0 1.0em;
        width: 100%;
        font-size: 16px;
        font-weight: 700;
        text-align: left;
        border-left: 4px solid #0083d6;
    }
    footer .footer-info {
        margin: 0;
        padding: 0;
    }
    footer .footer-info > h3 {
        margin: 0;
        padding: 0 0 8px;
        min-width: 260px;
        font-size: 16px;
        font-weight: 500;
        text-align: left;
    }
    footer .footer-wrap2 h3 {
        border-bottom: 1px solid #e6e6e6;
    }
    footer .footer-info > p {
        margin: 0;
        padding: 8px 0 00;
        font-size: 14px;
        font-weight: 400;
        text-align: left;
    }
    footer .copyright {
        margin: 2.0em 0 0;
        padding: 0;
        color: #999;
        font-size: 15px;
        font-weight: 400;
        font-family: var(--font-calsans);
        text-align: left;
    }
    footer .footer-logo2 {
        margin: 0;
        padding: 0;
        width: 272px;
        height: auto;
        aspect-ratio: 272 / 35;
    }

    .btn-fixed {
        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 ); }
}

