@charset "utf-8";


:root {
    --color-theme:       #000099;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #07273e;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: '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, body input[type="submit"], body input[type="button"] {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    body a:hover {
        color: var(--fg-color);
        opacity: 0.5;
    }
    body button:hover, body input[type="submit"]:hover, body input[type="button"]:hover {
        opacity: 0.5;
    }
}

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-accent);
    font-style: normal;
}

u {
    font-weight: 700;
    text-decoration-color: #ffec5d;
    text-decoration-thickness: 4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 0.3em;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}


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

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


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

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

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

.ws-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;
    margin: 0;
    padding: 0;
    background: #fffe;
    z-index: 90;
}


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

    header {
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 157;
    }
    header .header-wrap {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    header .header-main {
        position: absolute;
        top: 0;
        left: 2%;
        height: 100%;
    }
    header .header-main a {
        margin: 0;
        padding: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        color: #07273e;
        test-align: left;
        line-height: 1.5;
    }
    header .header-main a span:nth-of-type(1) {
        font-size: 3.2vw;
        font-weight: 700;
    }
    header .header-main a span:nth-of-type(2) {
        font-size: 4.8vw;
        font-weight: 700;
    }
    header .header-menu {
        position: absolute;
        top: 0;
        right: 0;
        width: auto;
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    header .header-menu #menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    header .header-menu #menu-check ~ .header-menu-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    header .header-menu #menu-check ~ .menu-area {
        display: block;
        position: absolute;
        top: calc( 50% - 32px );
        left: calc( 50% - 32px );
        width: 64px;
        height: 64px;
        cursor: pointer;
    }
    header .header-menu #menu-check ~ .menu-area > .menu-icon {
        position: absolute;
        top: 50%;
        left: 15%;
        width: 70%;
        height: 4px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: background 0.5s ease-out;
    }
    header .header-menu #menu-check ~ .menu-area > .menu-icon::before {
        position: absolute;
        content: "";
        top: -400%;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-menu #menu-check ~ .menu-area > .menu-icon::after {
        position: absolute;
        content: "";
        top: 400%;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-menu #menu-check:checked ~ .menu-area > .menu-icon {
        background: transparent;
    }
    header .header-menu #menu-check:checked ~ .menu-area > .menu-icon::before {
        transform: translateY( 400% ) rotate( 45deg );
    }
    header .header-menu #menu-check:checked ~ .menu-area > .menu-icon::after {
        transform: translateY( -400% ) rotate( -45deg );
    }
    header .header-menu #menu-check ~ .menu-list {
        position: fixed;
        top: calc( 100vw * 157 / 780 );
        left: 0;
        width: 100%;
        height: calc( 100vh - 100vw * 157 / 780 );
        height: calc( 100dvh - 100vw * 157 / 780 );
        padding: 12.0vw 0 0;
        background: #07273eda;
        list-style: none;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.3s ease-out;
        z-index: 99;
    }
    header .header-menu #menu-check ~ .menu-list > li {
        list-style: none;
    }
    header .header-menu #menu-check ~ .menu-list > li > a {
        display: block;
        margin: 0 auto;
        padding: 1.0em 4.0em 0.8em;
        width: 100%;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 500;;
        font-family: var(--font-mincho);
        border-bottom: 1px solid #1f5679;
    }
    header .header-menu #menu-check:checked ~ .menu-list {
        transform: scaleY( 1.0 );
    }
    header .header-contact {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 0.5em;
        margin: 0;
        padding: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 780 / 128;
        color: #fff;
        font-size: 4.8vw;
        line-height: 1.0;
        background: linear-gradient( to right, #305dc4, #007fdd );
        z-index: 90;
    }
    header .header-contact::before {
        content: "";
        display: block;
        margin: 0;
        padding: 0;
        width: 1.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-contact-white.svg) no-repeat center / contain;
    }
    header .header-contact span:nth-of-type(1) {
        font-weight: 500;
        font-family: var(--font-alphabet);
        line-height: 1.5;
    }
    header .header-contact span:nth-of-type(2) {
        font-size: 75%;
        font-weight: 500;
        font-family: var(--font-mincho);
        line-height: 1.5;
    }

    #contact {
        margin: 0 auto 0 0;
        padding: 0 0 12.0vw;
        width: 100%;
    }

    footer {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    footer .footer-menu {
        margin: 0;
        padding: 0;
        width: 100%;
        background: #051e2f;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    footer .footer-menu > ul {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 0;
        list-style: none;
    }
    footer .footer-menu > ul li {
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #13354d;
    }
    footer .footer-menu > ul li:nth-child(2n+1) {
        border-right: 1px solid #13354d;
    }
    footer .footer-menu > ul li a {
        display: block;
        margin: 0;
        padding: 2.0em 0;
        width: 100%;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: center;
        line-height: 1.0;
    }
    footer .footer-menu > .btn-contact {
        margin: 0 auto;
        padding: 0;
        width: 80%;
        height: auto;
        aspect-ratio: 604 / 136;
        color: #fff;
        font-size: 4.8vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        background: #1165c7;
        border-radius: 1.0vw;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 2.0vw;
    }
    footer .footer-menu > .btn-contact::before {
        content: "";
        width: 1.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-contact-white.svg) no-repeat center / contain;
    }
    footer .footer-info {
        margin: 0 auto;
        padding: 8.0vw 0;
        background: #051e2f;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    footer .footer-info .footer-info-l {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    footer .footer-info .footer-info-l .name {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 6.0vw;
        font-weight: 700;
        font-family: var(--font-mincho);
        text-align: center;
    }
    footer .footer-info .footer-info-l .name span {
        font-size: 3.6vw;
        font-weight: 500;
        font-family: var(--font-gothic);
    }
    footer .footer-info .footer-info-l p {
        margin: 0.5em 0 0;
        padding: 0;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: center;
    }
    footer .footer-info .footer-info-l p a {
        color: #fff;
    }
    footer .footer-info .footer-info-r {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    footer .footer-info .footer-info-r .head {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
    }
    footer .footer-info .footer-info-r p {
        margin: 0.5em auto 0;
        padding: 0;
        width: 90%;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0 calc( 100vw * 157 / 780 );
        width: 100%;
        color: #fff;
        font-size: 3.2vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        background: #08263b;
    }

}


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

    header {
        top: 0;
        right: 0;
        width: 160px;
        height: 100vh;
        height: 100dvh;
    }
    header .header-wrap {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    header .header-main {
        position: absolute;
        top: 140px;
        left: 50%;
        height: calc( 100% - 140px - 20px - 130px );
        translate: -50% 0;
    }
    header .header-main a {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5em 0;
        width: 100%;
        height: 100%;
        color: #07273e;
        font-size: max( 12px, calc( 16 * min( 100vh, 800px ) / 800 ) );
        font-weight: 700;
        writing-mode: vertical-rl;
        line-height: 1.0;
		letter-spacing: 0.2em;
    }
    header .header-menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px;
    }
    header .header-menu #menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    header .header-menu #menu-check ~ .header-menu-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    header .header-menu #menu-check ~ .menu-area {
        display: block;
        position: absolute;
        top: calc( 50% - 32px );
        left: calc( 50% - 32px );
        width: 64px;
        height: 64px;
        cursor: pointer;
    }
    header .header-menu #menu-check ~ .menu-area > .menu-icon {
        position: absolute;
        top: 50%;
        left: 15%;
        width: 70%;
        height: 4px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: background 0.5s ease-out;
    }
    header .header-menu #menu-check ~ .menu-area > .menu-icon::before {
        position: absolute;
        content: "";
        top: -400%;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-menu #menu-check ~ .menu-area > .menu-icon::after {
        position: absolute;
        content: "";
        top: 400%;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-menu #menu-check:checked ~ .menu-area > .menu-icon {
        background: transparent;
    }
    header .header-menu #menu-check:checked ~ .menu-area > .menu-icon::before {
        transform: translateY( 400% ) rotate( 45deg );
    }
    header .header-menu #menu-check:checked ~ .menu-area > .menu-icon::after {
        transform: translateY( -400% ) rotate( -45deg );
    }
    header .header-menu #menu-check ~ .menu-list {
        position: absolute;
        top: 0;
        right: 160px;
        width: max-content;
        height: 100vh;
        height: 100dvh;
        padding: 160px 64px 0;
        background: #07273eda;
        list-style: none;
        transform-origin: right center;
        transform: scaleX( 0.0 );
        transition: transform 0.3s ease-out;
        z-index: 99;
    }
    header .header-menu #menu-check ~ .menu-list > li {
        list-style: none;
    }
    header .header-menu #menu-check ~ .menu-list > li > a {
        display: block;
        margin: 0 auto;
        padding: 1.0em 0;
        width: 20.0em;
        color: #fff;
        font-size: 20px;
        font-weight: 500;;
        font-family: var(--font-mincho);
        border-bottom: 1px solid #1f5679;
    }
    header .header-menu #menu-check:checked ~ .menu-list {
        transform: scaleX( 1.0 );
    }
    header .header-contact {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 130px;
        color: #fff;
        font-size: 20px;
        background: linear-gradient( to right, #305dc4, #007fdd );
    }
    header .header-contact::before {
        content: "";
        display: block;
        margin: 0;
        padding: 0;
        width: 1.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-contact-white.svg) no-repeat center / contain;
    }
    header .header-contact span:nth-of-type(1) {
        font-weight: 500;
        font-family: var(--font-alphabet);
        line-height: 1.5;
    }
    header .header-contact span:nth-of-type(2) {
        font-size: 75%;
        font-weight: 500;
        font-family: var(--font-mincho);
        line-height: 1.5;
    }

    footer {
        margin: 0 auto 0 0;
        padding: 0;
        width: calc( 100% - 160px );
    }
    footer .footer-menu {
        margin: 0 auto;
        padding: 56px max( 40px, calc( 50.0vw - 80px - 600px ) );
        background: #051e2f;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer .footer-menu > ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 40px;
        list-style: none;
    }
    footer .footer-menu > ul li {
        list-style: none;
    }
    footer .footer-menu > ul li a {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.0;
    }
    footer .footer-menu > .btn-contact {
        margin: 0;
        padding: 0;
        width: 170px;
        height: auto;
        aspect-ratio: 170 / 41;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--font-mincho);
        background: #1165c7;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 4px;
    }
    footer .footer-menu > .btn-contact::before {
        content: "";
        width: 1.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-contact-white.svg) no-repeat center / contain;
    }
    footer .footer-info {
        margin: 0 auto;
        padding: 56px max( 40px, calc( 50.0vw - 80px - 600px ) );
        background: #051e2f;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top: 1px solid #13354d;
    }
    footer .footer-info .footer-info-l {
        margin: 0;
        padding: 0;
        width: 360px;
        border-right: 1px solid #13354d;
    }
    footer .footer-info .footer-info-l .name {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        font-family: var(--font-mincho);
    }
    footer .footer-info .footer-info-l .name span {
        font-size: 16px;
        font-weight: 500;
        font-family: var(--font-gothic);
    }
    footer .footer-info .footer-info-l p {
        margin: 0.5em 0 0;
        padding: 0;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        text-align: left;
    }
    footer .footer-info .footer-info-l p a {
        color: #fff;
    }
    footer .footer-info .footer-info-r {
        margin: 0;
        padding: 0 0 0 56px;
        width: calc( 100% - 360px );
    }
    footer .footer-info .footer-info-r .head {
        margin: 0;
        padding: 0;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
    }
    footer .footer-info .footer-info-r p {
        margin: 0.5em 0 0;
        padding: 0;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
        background: #08263b;
    }

}


@media ( width >= 768px) and ( width < 1200px ) {
    #contact {
        margin: 0 auto 0 0;
        padding: 0 0 80px;
        width: calc( 100% - 160px );
    }
}

@media ( width < 1200px ) {

    #contact .contact-box {
        margin: 0 auto;
        padding: min( 120px, 12.0vw ) 5%;
        width: 90%;
        background: url(../images/common-contact-bg.png) no-repeat center / cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #contact .contact-box .contact-l {
        width: 100%
    }
    #contact .contact-box .contact-r {
        width: 100%
    }
    #contact .contact-box .contact-l h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        line-height: 1.5;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
    }
    #contact .contact-box .contact-l h2 span:nth-of-type(1) {
        color: #fff;
        font-size: min( 20px, 4.0vw );
        font-weight: 600;
        font-family: var(--font-mincho);
    }
    #contact .contact-box .contact-l h2 span:nth-of-type(2) {
        color: #fff;
        font-size: min( 70px, 8.0vw );
        font-weight: 600;
        font-family: var(--font-alphabet);
        letter-spacing: 0.1em;
    }
    #contact .contact-box .contact-l p {
        margin: 1.5em 0 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: min( 16px, 3.6vw );
        font-weight: 400;
        line-heith: calc( 35 / 16 );
    }
    #contact .contact-box .contact-r .head {
        display: none;
    }
    #contact .contact-box .contact-r .btn-tel {
        display: none;
    }
    #contact .contact-box .contact-r .btn-sp-tel {
        margin: 8.0vw auto 0;
        padding: 0;
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 684 / 136;
        color: #07273e;
        font-size: min( 22px, 4.8vw );
        font-weight: 500;
        font-family: var(--font-mincho);
        background: #fff;
        border-radius: 1.0vw;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 1.0vw;
    }
    #contact .contact-box .contact-r .btn-sp-tel::before {
        content: "";
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #07273e;
        -webkit-mask-image: url(../images/icon-tel-white.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        mask-image: url(../images/icon-tel-white.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
    }
    #contact .contact-box .contact-r .btn-contact {
        margin: 4.0vw auto 0;
        padding: 0;
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 684 / 136;
        color: #07273e;
        font-size: min( 22px, 4.8vw );
        font-weight: 500;
        font-family: var(--font-mincho);
        background: #fff;
        border-radius: 1.0vw;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 1.0vw;
    }
    #contact .contact-box .contact-r .btn-contact::before {
        content: "";
        width: 1.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #07273e;
        background: #1165c7;
        -webkit-mask-image: url(../images/icon-contact-white.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        mask-image: url(../images/icon-contact-white.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
    }

}

@media ( width >= 1200px ) {

    #contact {
        margin: 0 auto 0 0;
        padding: 0 0 120px;
        width: calc( 100% - 160px );
    }
    #contact .contact-box {
        margin: 0 auto;
        padding: 120px 8%;
        width: 90%;
        max-width: 1440px;
        background: url(../images/common-contact-bg.png) no-repeat center / cover;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #contact .contact-box .contact-l {
        width: 48%
    }
    #contact .contact-box .contact-r {
        width: 48%
    }
    #contact .contact-box .contact-l h2 {
        margin: 0;
        padding: 0;
        width: 100%;
        line-height: 1.5;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
    }
    #contact .contact-box .contact-l h2 span:nth-of-type(1) {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        font-family: var(--font-mincho);
    }
    #contact .contact-box .contact-l h2 span:nth-of-type(2) {
        color: #fff;
        font-size: 70px;
        font-weight: 600;
        font-family: var(--font-alphabet);
        letter-spacing: 0.1em;
    }
    #contact .contact-box .contact-l p {
        margin: 1.5em 0 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        line-heith: calc( 35 / 16 );
    }
    #contact .contact-box .contact-r .head {
        margin: 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 26px;
        font-weight: 500;
        font-family: var(--font-mincho);
        text-align: center;
    }
    #contact .contact-box .contact-r .btn-tel {
        margin: 0;
        padding: 0;
        width: 100%;
        color: #fff;
        font-size: 46px;
        font-weight: 600;
        font-family: var(--font-alphabet);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 8px;
    }
    #contact .contact-box .contact-r .btn-tel::before {
        content: "";
        width: 1.0em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: url(../images/icon-tel-white.svg) no-repeat center / contain;
    }
    #contact .contact-box .contact-r .btn-sp-tel {
        display: none;
    }
    #contact .contact-box .contact-r .btn-contact {
        margin: 30px auto 0;
        padding: 0;
        width: 90%;
        height: auto;
        aspect-ratio: 560 / 104;
        color: #07273e;
        font-size: 22px;
        font-weight: 500;
        font-family: var(--font-mincho);
        background: #fff;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 8px;
    }
    #contact .contact-box .contact-r .btn-contact::before {
        content: "";
        width: 1.6em;
        height: auto;
        aspect-ratio: 1 / 1;
        background: #07273e;
        background: #1165c7;
        -webkit-mask-image: url(../images/icon-contact-white.svg);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        mask-image: url(../images/icon-contact-white.svg);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
    }

}



#contact-form .wpcf7-list-item {
    display: block;
}


@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 ); }
}

