@charset "utf-8";


:root {
    --color-theme:       #000099;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Montserrat', '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 {
        color: var(--fg-color);
        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: 100%;
    height: 100%;
    background: #fff;
    transform-origin: right center;
    transform: scaleX( 1.0 );
    transition: all 1.0s ease-out;
}
.ws-scroll-wipeIn-r {
    position: relative;
}
.ws-scroll-wipeIn-r::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: left center;
    transform: scaleX( 1.0 );
    transition: all 1.0s 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%;
    background: #fffe;
    box-shadow: 0 4px 4px #0003;
    z-index: 90;
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {

    html {
        scroll-padding-top: calc( 40px + 100vw * 144 / 780 );
    }

    header {
        height: calc( 100vw * 144 / 780 );
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        margin: 0 0 0 2.0vw;
        padding: 2.0vw 0;
        width: auto;
        height: 100%;
        flex: 1 0 auto;
    }
    header .header-logo a {
        margin: 0;
        padding: 0;
        width: max-content;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 2.0vw;
    }
    header .header-logo figure {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 47 / 96;
    }
    header .header-logo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header .header-logo span {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 700;
        line-height: 1.0;
    }
    header .header-menus {
        display: none;
    }
    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.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::before {
        position: absolute;
        content: "";
        top: -300%;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 300%;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        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( 300% ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -300% ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: fixed;
        top: calc( 100vw * 144 / 780 );
        left: 0;
        width: 100%;
        height: calc( 100vh - 100vw * 144 / 780 );
        height: calc( 100dvh - 100vw * 144 / 780 );
        padding: 0 0 12.0vw;
        background: #102b39f3;
        list-style: none;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.5s ease-out;
        z-index: 99;
        overflow-y: auto;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li {
        margin: 0;
        padding: 2.4vw 4.0vw;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.head {
        color: #fff;
        font-size: 4.0vw;
        font-weight: 500;
        background: rgba( 255, 255, 255, 0.1 );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li:not(.head) {
        border-bottom: 1px solid #425a69;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        position: relative;
        display: block;
        margin: 0;
        color: #fff;
        font-size: 3.6vw;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.75em );
        right: 4.0vw;
        width: 1.5em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-r-white.svg) no-repeat center / contain;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact {
        border: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a {
        position: relative;
        margin: 1.0em auto 0;
        padding: 0.6em 2.0em;
        width: 80%;
        color: #fff;
        text-align: center;
        background: #5aa7d1;
        border-radius: 4.0em;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1.05em );
        right: 1.0em;
        width: 2.1em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-r-white.svg) no-repeat center / contain;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-entry {
        border: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-entry > a {
        position: relative;
        margin: 1.0em auto 0;
        width: 80%;
        padding: 0.6em 2.0em;
        color: var(--fg-color);
        text-align: center;
        background: #fff;
        border-radius: 4.0em;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-entry > a::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1.05em );
        right: 1.0em;
        width: 2.1em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-r-cyan.svg) no-repeat center / contain;
    }
    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: scaleY( 1.0 );
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    #contact {
        margin: 0 auto;
        padding: 8.0vw 0 0;
        width: 100%;
        border-top: 1px solid #e2e2e2;
    }
    #contact > h2 {
        margin: 0;
        padding: 0;
    }
    #contact > h2 span:nth-of-type(1) {
        margin: 0;
        display: block;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: center;
    }
    #contact > h2 span:nth-of-type(2) {
        margin: 24px 0 0;
        padding: 0;
        display: block;
        font-size: 8.0vw;
        font-weight: 700;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
    }
    #contact > h2 span:nth-of-type(2)::first-letter {
        color: #5aa7d1;
    }
    #contact > p {
        margin: 1.5em auto 0;
        width: 90%;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 32 / 16 );
    }
    #contact > .contact-btns {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    #contact > .contact-btns > .btn-contact {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 319;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.0vw 0;
    }
    #contact > .contact-btns > .btn-contact span:nth-of-type(1) {
        display: block;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 500;
        line-height: 1.0;
        text-align: center;
    }
    #contact > .contact-btns > .btn-contact span:nth-of-type(2) {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 4.0vw;
        color: #fff;
        font-size: 8.0vw;
        font-weight: 700;
        font-family: var(--font-alphabet);
        line-height: 1.0;
        text-align: center;
    }
    #contact > .contact-btns > .btn-contact span:nth-of-type(2)::after {
        content: "";
        width: 0.45em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-r-white.svg) no-repeat center / contain;
    }
    #contact > .contact-btns > .btn-contact:nth-child(1) {
        background: url(../images/top-pic11-sp.jpg) no-repeat center / cover;
    }
    #contact > .contact-btns > .btn-contact:nth-child(2) {
        background: url(../images/top-pic12-sp.jpg) no-repeat center / cover;
    }

    footer {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    footer .footer-wrap .footer-l {
        margin: 0;
        padding: 0;
        width: 100%;
        order: 2;
    }
    footer .footer-logo {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
    }
    footer .footer-logo figure {
        display: block;
        width: 6.0vw;
        height: auto;
        aspect-ratio: 34 / 70;
    }
    footer .footer-logo figure img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-logo span {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
        line-height: 1.0;
    }
    footer .footer-name {
        margin: 1.5em 0 0;
        padding: 0;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
    }
    footer .footer-address {
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 2.8vw;
        font-weight: 400;
        text-align: center;
    }
    footer .footer-tel {
        display: block;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 1.0vw;
        font-family: var(--font-alphabet);
    }
    footer .footer-tel span:nth-of-type(1) {
        display: block;
        font-size: 2.8vw;
        font-weight: 500;
    }
    footer .footer-tel span:nth-of-type(2) {
        display: block;
        font-size: 4.0vw;
        font-weight: 500;
    }
    footer .footer-txt1 {
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
    }
    footer .footer-txt2 {
        font-size: 3.2vw;
        font-weight: 500;
        text-align: center;
    }
    footer .footer-wrap .footer-r {
        margin: 0;
        padding: 0;
        width: 100%;
        order: 1;
    }
    footer .footer-menus {
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8.0vw 0;
    }
    footer .footer-menus .footer-menu {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    footer .footer-menus .footer-menu li {
        margin: 2.0vw 0 0;
        padding: 0;
        list-style: none;
    }
    footer .footer-menus .footer-menu li.head {
        margin: 0;
        padding: 0 0 2.0vw;
        font-size: 3.6vw;
        font-weight: 500;
        border-bottom: 1px solid #e2e2e2;
    }
    footer .footer-menus .footer-menu li a {
        margin: 0;
        padding: 0;
        font-size: 3.2vw;
        font-weight: 400;
    }
    footer .footer-btns {
        margin: 8.0vw 0 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    footer .footer-btns .footer-btn-entry {
        margin: 0 auto;
        padding: 0;
        display: grid;
        place-items: center;
        width: 45%;
        height: auto;
        aspect-ratio: 344 / 89;
        color: #5aa7d1;
        font-size: 3.6vw;
        font-weight: 500;
        background: #fff;
        border: 1px solid #5aa7d1;
        border-radius: 4.0em;
    }
    footer .footer-btns .footer-btn-contact {
        margin: 0 auto;
        padding: 0;
        display: grid;
        place-items: center;
        width: 45%;
        height: auto;
        aspect-ratio: 344 / 89;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 500;
        background: #5aa7d1;
        border: 1px solid #5aa7d1;
        border-radius: 4.0em;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 2.0em 0;
        width: 100%;
        color: #727272;
        font-size: 2.8vw;
        font-weight: 500;
        text-align: center;
        border-top: 1px solid #e2e2e2;
    }
    footer .copyright > div:nth-of-type(2) {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .fixed-btns {
        position: fixed;
        bottom: 0;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 164;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        z-index: 80;
    }
    .fixed-btns > a {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    .fixed-btns > a:nth-of-type(1) {
        width: calc( 100% * 320 / 780 );
        color: #5aa7d1;
        background: #fff;
        transition: color 0.3s ease-out;
    }
    .fixed-btns > a:nth-of-type(2) {
        width: calc( 100% * 460 / 780 );
        color: #fff;
        background: #5aa7d1;
        transition: color 0.3s ease-out;
    }
    .fixed-btns > a span:nth-of-type(1) {
        display: block;
        font-size: 4.8vw;
        font-weight: 700;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.5;
    }
    .fixed-btns > a span:nth-of-type(2) {
        display: block;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
    }
    .fixed-btns > a:nth-of-type(1) span:nth-of-type(2) {
        color: var(--fg-color);
        transition: color 0.3s ease-out;
    }
    @media ( hover: hover ) {
        .fixed-btns > a:hover {
            opacity: 1.0;
        }
        .fixed-btns > a:nth-of-type(1):hover {
            color: #5aa7d180;
        }
        .fixed-btns > a:nth-of-type(2):hover {
            color: #fff8;
        }
        .fixed-btns > a:nth-of-type(1):hover span:nth-of-type(2) {
            color: #3338;
        }
    }

}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    html {
        scroll-padding-top: 180px;
    }

    header {
        height: 144px;
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        margin: 0 0 0 40px;
        padding: 24px 0;
        width: auto;
        height: 100%;
        flex: 1 0 auto;
    }
    header .header-logo a {
        margin: 0;
        padding: 0;
        width: max-content;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 28px;
    }
    header .header-logo figure {
        display: block;
        width: 47px;
        height: 96px;
    }
    header .header-logo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header .header-logo span {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 33px;
        font-weight: 700;
        line-height: 1.0;
    }
    header .header-menus {
        margin: 0 40px 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 16px 0;
    }
    header .header-menu {
        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:nth-child(2) > li + li {
        border-left: 1px solid #e2e2e2;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.5em;
        color: #2e2e2e;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-menu:nth-child(1) > li > a {
        font-weight: 400;
    }
    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-btns {
        margin: 0;
        padding: 0;
        width: auto;
        height: 100%;
        aspect-ratio: 1 / 1;
        background: #5aa7d1;
    }
    header .header-btns > li {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        list-style: none;
    }
    header .header-btns > li > a {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        line-height: 1.0;
    }
    header .header-btns > li > a::before {
        display: block;
        content: "";
        width: 56px;
        height: 40px;
        background: url(../images/icon-email-white.svg) no-repeat center / contain;
    }
    header .header-sp-menu {
        display: none;
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    #contact {
        margin: 0 auto;
        padding: 56px 0 0;
        width: 100%;
        border-top: 1px solid #e2e2e2;
    }
    #contact > h2 {
        margin: 0;
        padding: 0;
    }
    #contact > h2 span:nth-of-type(1) {
        margin: 0;
        display: block;
        font-size: 19px;
        font-weight: 500;
        text-align: center;
    }
    #contact > h2 span:nth-of-type(2) {
        margin: 24px 0 0;
        padding: 0;
        display: block;
        font-size: 70px;
        font-weight: 700;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
    }
    #contact > h2 span:nth-of-type(2)::first-letter {
        color: #5aa7d1;
    }
    #contact > p {
        margin: 1.5em 0 0;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        line-height: calc( 32 / 16 );
    }
    #contact > .contact-btns {
        margin: 56px auto 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 0;
    }
    #contact > .contact-btns > .btn-contact {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 960 / 340;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px 0;
    }
    #contact > .contact-btns > .btn-contact span:nth-of-type(1) {
        display: block;
        color: #fff;
        font-size: 19px;
        font-weight: 500;
        line-height: 1.0;
        text-align: center;
    }
    #contact > .contact-btns > .btn-contact span:nth-of-type(2) {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 32px;
        color: #fff;
        font-size: 70px;
        font-weight: 700;
        font-family: var(--font-alphabet);
        line-height: 1.0;
        text-align: center;
    }
    #contact > .contact-btns > .btn-contact span:nth-of-type(2)::after {
        content: "";
        width: 0.45em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-arrow-r-white.svg) no-repeat center / contain;
    }
    #contact > .contact-btns > .btn-contact:nth-child(1) {
        background: url(../images/top-pic11-pc.jpg) no-repeat center / cover;
    }
    #contact > .contact-btns > .btn-contact:nth-child(2) {
        background: url(../images/top-pic12-pc.jpg) no-repeat center / cover;
    }

    footer {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 80px 0;
        width: 90%;
        max-width: 1280px;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
    }
    footer .footer-wrap .footer-l {
        margin: 0;
        padding: 0;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .footer-logo {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 20px;
    }
    footer .footer-logo figure {
        display: block;
        width: 34px;
        height: 70px;
    }
    footer .footer-logo figure img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .footer-logo span {
        display: block;
        margin: 0;
        padding: 0;
        font-size: 24px;
        font-weight: 700;
        line-height: 1.0;
    }
    footer .footer-name {
        margin: 1.5em 0 0;
        padding: 0;
        font-size: 19px;
        font-weight: 700;
    }
    footer .footer-address {
        margin: 1.0em 0 0;
        padding: 0;
        font-size: 13px;
        font-weight: 400;
    }
    footer .footer-tel {
        display: block;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 8px;
        font-family: var(--font-alphabet);
    }
    footer .footer-tel span:nth-of-type(1) {
        display: block;
        font-size: 13px;
        font-weight: 500;
    }
    footer .footer-tel span:nth-of-type(2) {
        display: block;
        font-size: 19px;
        font-weight: 500;
    }
    footer .footer-txt1 {
        font-size: 19px;
        font-weight: 700;
    }
    footer .footer-txt2 {
        font-size: 13px;
        font-weight: 500;
    }
    footer .footer-wrap .footer-r {
        margin: 0;
        padding: 0;
        width: 50%;
    }
    footer .footer-menus {
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 56px 16px;
    }
    footer .footer-menus .footer-menu {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    footer .footer-menus .footer-menu:nth-child(4) {
        grid-column: span 2;
    }
    footer .footer-menus .footer-menu li {
        margin: 12px 0 0;
        padding: 0;
        list-style: none;
    }
    footer .footer-menus .footer-menu li.head {
        margin: 0;
        padding: 0 0 12px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid #e2e2e2;
    }
    footer .footer-menus .footer-menu li a {
        margin: 0;
        padding: 0;
        font-size: 13px;
        font-weight: 400;
    }
    footer .footer-btns {
        margin: 56px 0 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 24px 16px;
    }
    footer .footer-btns .footer-btn-entry {
        margin: 0;
        padding: 0;
        display: grid;
        place-items: center;
        width: 296px;
        height: auto;
        aspect-ratio: 296 / 56;
        color: #5aa7d1;
        font-size: 16px;
        font-weight: 500;
        background: #fff;
        border: 1px solid #5aa7d1;
        border-radius: 4.0em;
    }
    footer .footer-btns .footer-btn-contact {
        margin: 0;
        padding: 0;
        display: grid;
        place-items: center;
        width: 296px;
        height: auto;
        aspect-ratio: 296 / 56;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        background: #5aa7d1;
        border: 1px solid #5aa7d1;
        border-radius: 4.0em;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 2.0em 0;
        width: 100%;
        color: #727272;
        font-size: 11px;
        font-weight: 500;
        text-align: center;
        border-top: 1px solid #e2e2e2;
    }
    footer .copyright > div:nth-of-type(2) {
        margin: 8px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    footer .copyright > div:nth-of-type(2) span {
        display: block;
        padding: 0 1.0em;
    }
    footer .copyright > div:nth-of-type(2) span:nth-of-type(2) {
        border-left: 1px solid #e2e2e2;
    }

    .fixed-btns {
        position: fixed;
        bottom: 40px;
        right: 40px;
        margin: 0;
        padding: 0;
        width: 168px;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #fff;
        border: 2px solid #5aa7d1;
        border-radius: 100%;
        box-shadow: 0 0 30px #b0b8ba5a;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 80;
        overflow: hidden;
    }
    .fixed-btns > a {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    .fixed-btns > a:nth-of-type(1) {
        width: 100%;
        color: #5aa7d1;
        background: #fff;
    }
    .fixed-btns > a:nth-of-type(2) {
        display: none;
    }
    .fixed-btns > a span:nth-of-type(1) {
        display: block;
        font-size: 28px;
        font-weight: 700;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.5;
    }
    .fixed-btns > a span:nth-of-type(2) {
        display: block;
        font-size: 19px;
        font-weight: 500;
        text-align: center;
        line-height: 1.5;
    }
    .fixed-btns > a:nth-of-type(1) span:nth-of-type(2) {
        color: var(--fg-color);
    }

}


@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 ); }
}

