@charset "utf-8";


:root {
    --color-theme:       #2e3b82;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --bg-color:          transparent;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-gothic: 'Helvetica', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-mincho: 'Helvetica', '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, input[type="submit"] {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover, input[type="submit"]: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;
}

.bit {
    font-size: 120%;
}
.small {
    font-size: 70%;
}


@media ( width < 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( width >= 768px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* スクロールアニメーション */
.ws-scroll-fadeIn {
    opacity: 0.0;
    /*transform: scale( 0.5, 0.5 ); */
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn.ws-scroll-show {
    opacity: 1.0;
    /* transform: scale( 1.0, 1.0 ); */
}

.ws-scroll-fadeIn-l {
    opacity: 0.0;
    transform: translateX( -200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-l.ws-scroll-show,
.ws-scroll-fadeIn-r.ws-scroll-show {
    opacity: 1.0;
    transform: translateX( 0 );
}

.ws-scroll-fadeIn-u {
    opacity: 0.0;
    transform: translateY( -200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-u.ws-scroll-show,
.ws-scroll-fadeIn-d.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 )  scale( 1.0, 1.0 );
}

.ws-goto-top {
    position: fixed;
    z-index: 20;
    margin: 0;
    padding: 0 0 2px;
    top: auto;
    bottom: 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.0; }
    100% { opacity: 1.0; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: #fffe;
    box-shadow: 0 4px 4px #0003;
    transition: background 0.5s ease-out;
}


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

    header {
        height: 60px;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        display: block;
        padding: 6px 0 6px 20px;
        width: 220px;
        height: 60px;
        flex: 0 0 229px;
    }
    header .header-logo img {
        width: 229px;
        height: 48px;
        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: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }
    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: -8px;
        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: 8px;
        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( 8px ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -8px ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: absolute;
        top: 60px;
        right: 0;
        width: max-content;
        padding: 2.0em 4.0em;
        background: #fffe;
        list-style: none;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.5s ease-out;
        z-index: 99;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li {
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        font-size: min( 16px, 3.6vw );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-contact > a {
        margin: 1.0em auto 0;
        padding: 0.5em 2.0em;
        color: #fff;
        text-align: center;
        background: var(--color-theme);
        border-radius: 4.0em;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li.header-btn-regist > a {
        margin: 1.0em auto 0;
        padding: 0.5em 2.0em;
        color: #fff;
        text-align: center;
        background: var(--color-theme);
        border-radius: 4.0em;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megamenu {
        padding: 0 0 0 1.0em;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu > li,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megabmenu > li {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu > li > a,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megamenu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        font-size: min( 16px, 3.6vw );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    #mv {
        margin: 60px auto 0;
        width: 100%;
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    #contact {
        margin: 0 auto;
        padding: 10.0vw 0;
        width: 100%;
        max-width: 1440px;
    }
    #contact::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/top-section-bg.webp) no-repeat center / cover;
        opacity: 0.3;
        z-index: -1;
    }
    #contact > .contact-box {
        margin: 0 auto;
        padding: 5.0vw;
        width: 90%;
        height: auto;
        background: #fff;
        box-shadow: 0 0 4px rgba( 0, 0, 0, 0.25 );
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 4.0vw 0;
    }
    .contact-box > div:nth-of-type(1) {
        width: 100%;
    }
    .contact-box > div:nth-of-type(2) {
        width: 100%;
    }
    .contact-box > div:nth-of-type(3) {
        width: 100%;
    }
    .contact-box > div h2 {
        color: #1cb6f1;
        font-size: 4.8vw;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
    }
    .contact-box > div h3 {
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
    }
    .contact-box > div:nth-of-type(2) > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 0.5em;

        margin: 0 auto;
        padding: 0 1.5em;
        width: 80%;
        height: auto;
        aspect-ratio: 320 / 62;
        background: #3a4689;

        color: #fff;
        font-size: 3.6vw;
        font-weight: 700;
        line-height: 1.0;
    }
    .contact-box > div:nth-of-type(2) > a + a {
        margin-top: 4.0vw;
    }
    .contact-box > div:nth-of-type(2) > a::after {
        display: block;
        content: "";
        width: 2.2em;
        height: auto;
        aspect-ratio: 30 / 4;
        background: url(../images/arrow-r-white.svg) no-repeat center / contain;
    }
    .contact-box > div:nth-of-type(3) > .txt1 {
        font-size: 3.2vw;
        font-weight: 500;
        text-align: center;
    }
    .contact-box > div:nth-of-type(3) > a {
        display: block;
        width: 100%;
        color: #3a4689;
        font-size: 6.0vw;
        font-weight: 400;
        font-family: var(--font-alphabet);
        text-align: center;
    }
    .contact-box > div:nth-of-type(3) > .txt2 {
        font-size: 2.8vw;
        font-weight: 400;
        text-align: center;
    }

    footer {
        margin: 0 auto;
        padding: 6.0vw 0;
        width: 100%;
        background: #fff;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 6.0vw 4.0vw;
        width: 90%;
        max-width: 600px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 4.0vw 0;
    }
    footer .footer-wrap > div:nth-of-type(1) {
        width: 100%;
    }
    footer .footer-wrap > div:nth-of-type(1) .footer-logo {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 412px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 412 / 69;
    }
    footer .footer-wrap > div:nth-of-type(1) .footer-logo img {
        width: 412px;
        height: 69px;
    }
    footer .footer-wrap > div:nth-of-type(1) p {
        margin: 1.5em auto 0;
        width: 412px;
        max-width: 100%;
        font-size: 3.2vw;
        font-weight: 400;
    }
    footer .footer-wrap > div:nth-of-type(1) a {
        display: block;
        margin: 1.0em auto 0;
        width: 412px;
        max-width: 100%;
        font-size: 3.2vw;
        font-weight: 500;
    }
    footer .footer-wrap > div:nth-of-type(n+2) {
        width: 50%;
    }
    footer .footer-wrap > div > div,
    footer .footer-wrap > div > a {
        display: block;
        margin: 0 0 1.0em;
        font-size: 3.2vw;
        font-weight: 500;
    }
    footer .footer-wrap > div > div + a {
        margin-top: 1.0em;
    }
    footer .footer-wrap > div > div ~ a {
        margin-left: 1.0em;
    }
    footer .footer-privacy {
        display: block;
        margin: 1.5em 0 0;
        color: #c5c5c5;
        font-size: 2.8vw;
        font-weight: 400;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 4.0vw 6.0vw;
        width: 100%;
        max-width: 1200px;
        font-size: 2.8vw;
        text-align: right;
        border-top: 1px solid var(--fg-color);
    }

}


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

    header {
        height: 78px;
    }
    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 {
        display: block;
        padding: 15px 0;
        width: 206px;
        height: 78px;
        aspect-ratio: 172 / 78;
        flex: 0 0 206px;
    }
    header .header-logo img {
        width: 229px;
        height: 48px;
        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 {
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        color: var(--fg-color);
        font-size: 14px;
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    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 {
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 0 10px;
    }
    header .header-btns > li {
        margin: 0;
        padding: 16px 0;
        width: auto;
        height: 80%;
        list-style: none;
    }
    header .header-btns > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 2.0em;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-btns > li.header-btn-contact > a {
        background: var(--color-theme);
    }
    header .header-btns > li.header-btn-guideline > a {
        color: var(--color-theme);
        border: 1px solid var(--color-theme);
    }
    header .header-sp-menu {
        display: none;
    }

    #mv {
        margin: 78px auto 0;
        width: 100%;
    }

    main {
        margin: 0 auto;
        width: 100%;
        /* max-width: 1440px; */
    }

    #contact {
        margin: 0 auto;
        padding: 50px 0;
        width: 100%;
        /* max-width: 1440px; */
    }
    #contact::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/top-section-bg.webp) no-repeat center / cover;
        opacity: 0.3;
        z-index: -1;
    }
    #contact > .contact-box {
        margin: 0 auto;
        padding: 50px;
        width: 90%;
        max-width: 460px;
        height: auto;
        background: #fff;
        box-shadow: 0 0 4px rgba( 0, 0, 0, 0.25 );
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 40px 0;
    }
    .contact-box > div:nth-of-type(1) {
        width: 100%;
    }
    .contact-box > div:nth-of-type(2) {
        width: 100%;
    }
    .contact-box > div:nth-of-type(3) {
        width: 100%;
    }
    .contact-box > div h2 {
        color: #1cb6f1;
        font-size: 60px;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: center;
    }
    .contact-box > div h3 {
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }
    .contact-box > div:nth-of-type(2) > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 0.5em;

        margin: 0 auto;
        padding: 0 1.5em;
        width: 320px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 320 / 62;
        background: #3a4689;

        color: #fff;
        font-size: 20px
        font-weight: 700;
        line-height: 1.0;
    }
    .contact-box > div:nth-of-type(2) > a + a {
        margin-top: 20px;
    }
    .contact-box > div:nth-of-type(2) > a::after {
        display: block;
        content: "";
        width: 2.2em;
        height: auto;
        aspect-ratio: 30 / 4;
        background: url(../images/arrow-r-white.svg) no-repeat center / contain;
    }
    .contact-box > div:nth-of-type(3) > .txt1 {
        font-size: 18px;
        font-weight: 500;
        text-align: center;
    }
    .contact-box > div:nth-of-type(3) > a {
        display: block;
        width: 100%;
        color: #3a4689;
        font-size: 44px;
        font-weight: 400;
        font-family: var(--font-alphabet);
        text-align: center;
    }
    .contact-box > div:nth-of-type(3) > .txt2 {
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }

    footer {
        margin: 0 auto;
        padding: 40px 0;
        width: 100%;
        background: #fff;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 40px 5%;
        width: 100%;
        max-width: 1440px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px 0;
    }
    footer .footer-wrap > div:nth-of-type(1) {
        width: 100%;
    }
    footer .footer-wrap > div:nth-of-type(1) .footer-logo {
        display: block;
        margin: 0;
        padding: 0;
        width: 412px;
        height: 69px;
        flex: 0 0 412px;
    }
    footer .footer-wrap > div:nth-of-type(1) .footer-logo img {
        width: 412px;
        height: 69px;
    }
    footer .footer-wrap > div:nth-of-type(1) p {
        margin: 1.5em 0 0;
        font-size: 16px;
        font-weight: 400;
    }
    footer .footer-wrap > div:nth-of-type(1) a {
        display: block;
        margin: 0 0 1.0em;
        font-size: 15px;
        font-weight: 500;
    }
    footer .footer-wrap > div > div,
    footer .footer-wrap > div > a {
        display: block;
        margin: 0 0 1.0em;
        font-size: 15px;
        font-weight: 500;
    }
    footer .footer-wrap > div > div + a {
        margin-top: 1.0em;
    }
    footer .footer-wrap > div > div ~ a {
        margin-left: 1.0em;
    }
    footer .footer-privacy {
        display: block;
        margin: 1.5em 0 0;
        color: #c5c5c5;
        font-size: 14px;
        font-weight: 400;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 20px 5%;
        width: 100%;
        max-width: 1440px;
        font-size: 14px;
        text-align: right;
        border-top: 1px solid var(--fg-color);
    }

}


/**
 * 最大設定
 */
@media ( width >= 1200px ) {

    #contact > .contact-box {
        margin: 0 auto;
        padding: 50px;
        width: 90%;
        max-width: 1400px;
        height: auto;
        background: #fff;
        box-shadow: 0 0 4px rgba( 0, 0, 0, 0.25 );
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    .contact-box > div:nth-of-type(1) {
        width: 320px;
    }
    .contact-box > div:nth-of-type(2) {
        width: calc( 100% - 740px );
    }
    .contact-box > div:nth-of-type(3) {
        width: 420px;
    }
    .contact-box > div h2 {
        color: #1cb6f1;
        font-size: 60px;
        font-family: var(--font-alphabet);
        font-weight: 700;
        text-align: left;
    }
    .contact-box > div h3 {
        font-size: 18px;
        font-weight: 700;
        text-align: left;
    }
    .contact-box > div:nth-of-type(2) > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 0.5em;

        margin: 0 auto;
        padding: 0 1.5em;
        width: 320px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 320 / 62;
        background: #3a4689;

        color: #fff;
        font-size: 20px
                   font-weight: 700;
        line-height: 1.0;
    }
    .contact-box > div:nth-of-type(2) > a + a {
        margin-top: 20px;
    }
    .contact-box > div:nth-of-type(2) > a::after {
        display: block;
        content: "";
        width: 2.2em;
        height: auto;
        aspect-ratio: 30 / 4;
        background: url(../images/arrow-r-white.svg) no-repeat center / contain;
    }
    .contact-box > div:nth-of-type(3) > .txt1 {
        font-size: 18px;
        font-weight: 500;
    }
    .contact-box > div:nth-of-type(3) > a {
        color: #3a4689;
        font-size: 48px;
        font-weight: 400;
        font-family: var(--font-alphabet);
    }
    .contact-box > div:nth-of-type(3) > .txt2 {
        font-size: 14px;
        font-weight: 400;
    }

    footer {
        margin: 0 auto;
        padding: 40px 0;
        width: 100%;
        background: #fff;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 40px 5%;
        width: 100%;
        max-width: 1440px;
        display: flex;
        flex-wrap: no-wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .footer-wrap > div:nth-of-type(1) {
        width: auto;
    }
    footer .footer-wrap > div:nth-of-type(1) .footer-logo {
        display: block;
        margin: 0;
        padding: 0;
        width: 412px;
        height: 69px;
        flex: 0 0 412px;
    }
    footer .footer-wrap > div:nth-of-type(1) .footer-logo img {
        width: 412px;
        height: 69px;
    }
    footer .footer-wrap > div:nth-of-type(1) p {
        margin: 1.5em 0 0;
        font-size: 16px;
        font-weight: 400;
    }
    footer .footer-wrap > div:nth-of-type(1) a {
        display: block;
        margin: 0 0 1.0em;
        font-size: 15px;
        font-weight: 500;
    }
    footer .footer-wrap > div > div,
    footer .footer-wrap > div > a {
        display: block;
        margin: 0 0 1.0em;
        font-size: 15px;
        font-weight: 500;
    }
    footer .footer-wrap > div > div + a {
        margin-top: 1.0em;
    }
    footer .footer-wrap > div > div ~ a {
        margin-left: 1.0em;
    }
    footer .footer-privacy {
        display: block;
        margin: 1.5em 0 0;
        color: #c5c5c5;
        font-size: 14px;
        font-weight: 400;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 20px 5%;
        width: 100%;
        max-width: 1440px;
        font-size: 14px;
        text-align: right;
        border-top: 1px solid var(--fg-color);
    }

}
