@charset "utf-8";


:root {
    --color-theme:       #ccffff;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Impact', '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;
    --max-width: 1200px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid #f008; */
}
*::before, *::after {
    /* outline: 1px solid #f008; */
}

img {
    display: block;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--fg-color);
    text-decoration: none;
}

ul, p {
    line-height: 1.5;
}

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: 1.0s;
}
.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: 1.0s;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: 1.0s;
}
.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: 1.0s;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: 1.0s;
}
.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);
    font-size: clamp( 15px, 2.5vw, 30px );
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    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.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 );
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-gothic);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0.5s forwards;
}

@keyframes anim-fadein {
    0%   { opacity: 0.0; }
    100% { opacity: 1.0; }
}


header.ws-header {
    position: sticky;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: #fff;
    box-shadow: 0 0 4px #ccc;
}


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

    html {
        scroll-padding-top: 60px;
    }
    header.ws-header {
        height: 60px;
    }
    header.ws-header .header-wrap {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        height: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header.ws-header .header-logo {
        padding: 12px 0;
        height: 100%;
    }
    header.ws-header .header-logo img {
        width: auto;
        height: 100%;
    }
    header.ws-header .header-menu {
        display: none;
    }
    header.ws-header .header-sns {
        display: none;
    }
    header.ws-header .header-sp-menu {
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
        justify-self: end;
    }
    header.ws-header .header-sp-menu #sp-menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    header.ws-header .header-sp-menu #sp-menu-check ~ .header-sp-menu-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    header.ws-header .header-sp-menu #sp-menu-check ~ .sp-menu-area {
        display: block;
        position: absolute;
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }
    header.ws-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.ws-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.ws-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.ws-header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon {
        background: transparent;
    }
    header.ws-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.ws-header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: absolute;
        top: 60px;
        right: -20px;
        margin: 0;
        padding: 4.0vw 0;
        width: max-content;
        background: #fff;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.5s ease-out;
        z-index: 99;
    }
    header.ws-header .header-sp-menu #sp-menu-check ~ .sp-menu > a {
        display: block;
        margin: 0;
        padding: 0.8em 2.0em;
        font-size: min( 16px, 3.6vw );
        font-family: var(--font-mincho);
        font-weight: 500;
    }
    header.ws-header .header-sp-menu #sp-menu-check ~ .sp-menu > a.header-recruit {
        margin-top: 1.0em;
        color: #fff;
        background: #e56c47;
    }
    header.ws-header .header-sp-menu #sp-menu-check ~ .sp-menu .sp-sns {
        margin: 8.0vw 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 10px;
    }
    header.ws-header .header-sp-menu #sp-menu-check ~ .sp-menu .sp-sns img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }
    header.ws-header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    .sns {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    .sns .sns-tiktok {
        position: absolute;
        top: 8%;
        left: 10%;
        width: 80%;
    }
    .sns .sns-smartphone {
        position: absolute;
        bottom: 0;
        left: 25%;
        width: 50%;
    }
    .sns .sns-txt1 {
        position: absolute;
        top: 20%;
        left: 10%;
        width: 80%;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 500;
        line-height: calc( 21 / 14 ); 
    }
    .sns .sns-txt2 {
        position: absolute;
        top: 34%;
        left: 10%;
        width: 80%;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 700;
        line-height: calc( 21 / 16 ); 
    }
    .sns .sns-search {
        position: absolute;
        top: 39%;
        left: 10%;
        width: 80%;
    }

    .entry {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    .entry .entry-txt1 {
        position: absolute;
        top: 10%;
        left: 5%;
        margin: 0;
        padding: 0.6em 0.8em;
        width: max-content;
        color: var(--fg-color);
        font-size: 6.0vw;
        font-weight: 700;
        line-height: 1.0;
        background: #fff;
    }
    .entry .entry-txt2 {
        display: none;
    }
    .entry .entry-txt3 {
        position: absolute;
        top: 17.5%;
        left: 5%;
        margin: 0;
        padding: 0.6em 0.8em;
        width: max-content;
        color: var(--fg-color);
        font-size: 6.0vw;
        font-weight: 700;
        line-height: 1.0;
        background: #fff;
    }
    .entry .entry-txt3 em {
        color: #e56c47;
        font-style: normal;
    }
    .entry .entry-txt4 {
        position: absolute;
        top: 25%;
        left: 5%;
        margin: 0;
        padding: 0.6em 0.8em;
        width: max-content;
        color: var(--fg-color);
        font-size: 6.0vw;
        font-weight: 700;
        line-height: 1.0;
        background: #fff;
    }
    .entry .common-btn3 {
        position: absolute;
        top: 35%;
        left: 10%;
        width: 80%;
    }
    .entry .common-btn4 {
        position: absolute;
        top: 47%;
        left: 10%;
        width: 80%;
    }

    .common-btn1 {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0;
        width: 438px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 438 / 100;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
        background: #e56c47;
        border: 2px solid #e56c47;
        border-radius: 10.0em;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    .common-btn1::before {
        position: absolute;
        content: "";
        top: 14%;
        right: calc( 14% * 100 / 438 );
        height: 72%;
        aspect-ratio: 1 / 1;
        border-radius: 100%;
        background: #fff;
        transition: background 0.5s ease-out;
    }
    .common-btn1::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1.1vw );
        right: calc( 44% * 100 / 438 );
        width: 2.2vw;
        height: 2.2vw;
        border-right: 3px solid #e56c47;
        border-bottom: 3px solid #e56c47;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }

    .common-btn3 {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0 1.0em 0 0;
        width: calc( 100% * 380 / 1920 );
        height: auto;
        aspect-ratio: 300 / 70;
        color: #fff;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
        background: #e56c47;
        border: 2px solid #e56c47;
        border-radius: 10.0em;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    .common-btn3::before {
        position: absolute;
        content: "";
        top: 14%;
        right: calc( 14% * 70 / 300 );
        height: 72%;
        aspect-ratio: 1 / 1;
        border-radius: 100%;
        background: #fff;
        transition: background 0.5s ease-out;
    }
    .common-btn3::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1.1vw );
        right: calc( 44% * 70 / 300 );
        width: 2.2vw;
        height: 2.2vw;
        border-right: 3px solid #e56c47;
        border-bottom: 3px solid #e56c47;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    .common-btn4 {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0 1.0em 0 0;
        width: calc( 100% * 380 / 1920 );
        height: auto;
        aspect-ratio: 300 / 70;
        color: #e56c47;
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
        background: #fff;
        border: 2px solid #e56c47;
        border-radius: 10.0em;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    .common-btn4::before {
        position: absolute;
        content: "";
        top: 14%;
        right: calc( 14% * 70 / 300 );
        height: 72%;
        aspect-ratio: 1 / 1;
        border-radius: 100%;
        background: #e56c47;
        transition: background 0.5s ease-out;
    }
    .common-btn4::after {
        position: absolute;
        content: "";
        top: calc( 50% - 1.1vw );
        right: calc( 44% * 70 / 300 );
        width: 2.2vw;
        height: 2.2vw;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }

    .anim-scroll {
        margin: 0.5em 5% 1.0em auto;
        width: max-content;
        font-size: 3.6vw;
        text-align: right;
        animation: anim-scroll-right 2.0s infinite 0s ease-in-out;
    }

    footer {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
        background: #e5e5e5;
    }
    footer .footer-wrap {
        margin: 0 auto;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8.0vw 0;
    }
    footer .footer-wrap .footer-l {
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    footer .footer-wrap .footer-l .menu {
        padding: 0 1.0em 0 0;
        width: 100%;
    }
    footer .footer-wrap .footer-l .menu .head {
        color: var(--fg-color);
        font-size: 16px;
        font-family: var(--font-mincho);
        font-weight: 700;
        line-height: 2.0;
    }
    footer .footer-wrap .footer-l .menu a {
        display: block;
        margin: 0;
        padding: 0;
        color: var(--fg-color);
        font-size: 14px;
        font-family: var(--font-mincho);
        font-weight: 500;
        line-height: 2.0;
    }
    footer .footer-wrap .footer-r {
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    footer .footer-wrap .footer-r .parts {
        padding: 0 1.0em 0 0;
        width: 100%;
    }
    footer .footer-wrap .footer-r .parts .head {
        color: var(--fg-color);
        margin: 0 0 0.5em;
        font-size: 16px;
        font-family: var(--font-mincho);
        font-weight: 700;
        line-height: 1.0;
    }
    footer .footer-wrap .footer-r .parts .tel-btn {
        display: block;
        margin: 0.5em 0;
        color: var(--fg-color);
        font-size: 24px;
        font-family: var(--font-mincho);
        font-weight: 700;
        line-height: 1.0;
    }
    footer .footer-wrap .footer-r .parts p {
        margin: 0.5em 0;
        color: var(--fg-color);
        font-size: 14px;
        font-family: var(--font-mincho);
        font-weight: 500;
        line-height: 1.0;
    }
    footer .footer-wrap .footer-r .parts .contact-btn {
        display: block;
        margin: 2.0em 0 0;
        padding: 1.0em 2.0em;
        color: var(--fg-color);
        font-size: 16px;
        font-family: var(--font-mincho);
        font-weight: 700;
        line-height: 1.0;
        white-space: nowrap;
        background: #fff;
        border: 2px solid var(--fg-color);
        border-radius: 0.6em;
        cursor: pointer;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    footer .footer-wrap .footer-r .sns {
        padding: 0;
        text-align: center;
    }
    footer .footer-wrap .footer-r .sns .sns-btn {
        display: inline-block;
        margin: 0 27px 0 0;
        padding: 0;
        width: 27px;
        height: 27px;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 4.0em 0;
        width: 100%;
        max-width: 1600px;
        color: var(--fg-color);
        font-size: 14px;
        text-align: center;
    }
}


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

    html {
        scroll-padding-top: 100px;
    }
    header.ws-header {
        height: 100px;
    }
    header.ws-header .header-wrap {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        max-width: 1600px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 calc( 10 * min( 100vw, 1600px ) / 1600 );
    }
    header.ws-header .header-logo {
        padding: 30px 0;
        height: 100%;
        flex: 1 0 auto;
    }
    header.ws-header .header-logo img {
        margin: 0 auto 0 0;
        width: auto;
        height: 100%;
    }
    header.ws-header .header-menu {
        margin: 0;
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    header.ws-header .header-menu > li {
        height: 100%;
        list-style: none;
    }
    header.ws-header .header-menu > li > a {
        position: relative;
        display: block;
        height: 100%;
        padding: 0 calc( 20 * min( 100vw, 1600px ) / 1600 );
        color: var(--fg-color);
        font-size: 16px;
        font-family: var(--font-mincho);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header.ws-header .header-menu > li > a::after {
        position: absolute;
        content: "";
        top: 80%;
        left: 0;
        width: 100%;
        height: 2px;
        background: #e56c47;
        transform: scale( 0.0, 1.0 );
        transition: transform 0.25s ease-out;
    }
    header.ws-header.scroll .header-menu > li > a {
        color: var(--fg-color);
    }
    header.ws-header .header-menu > li.header-recruit {
        margin-left: calc( 20 * min( 100vw, 1600px ) / 1600 );
        background: #e56c47;
        border-left: 1px solid  #e56c47;
        border-right: 1px solid  #e56c47;
        transition: background 0.5s ease-out;
    }
    header.ws-header .header-menu > li.header-recruit > a {
        padding: 0 calc( 30 * min( 100vw, 1600px ) / 1600 );
        color: #fff;
        transition: color 0.5s ease-out;
    }
    header.ws-header .header-menu > li.has-submenu {
        position: relative;
    }
    header.ws-header .header-menu > li.has-submenu > .submenu {
        position: absolute;
        top: 100%;
        left: calc( 20 * min( 100vw, 1600px ) / 1600 );
        margin: 0;
        padding: 10px 20px;
        width: max-content;
        background: #fff;
        list-style: none;
        transform-origin: top center;
        transform: scale( 1.0, 0.0 );
        transition: transform 0.25s ease-out;
    }
    header.ws-header .header-menu > li.has-submenu > .submenu > li {
        list-style: none;
    }
    header.ws-header .header-menu > li.has-submenu > .submenu > li > a {
        display: block;
        padding: 0.5em 0;
        color: var(--fg-color);
        font-size: 16px;
        font-family: var(--font-mincho);
        font-weight: 600;
        text-align: left;
    }
    @media ( hover: hover ) {
        header.ws-header .header-menu > li.header-recruit:hover {
            background: #fff;
        }
        header.ws-header .header-menu > li.header-recruit:hover > a {
            color: #e56c47;
        }
        header.ws-header .header-menu > li:hover > a::after {
            transform: scale( 1.0, 1.0 );
        }
        header.ws-header .header-menu > li.has-submenu:hover > .submenu {
            transform: scale( 1.0, 1.0 );
        }
    }
    header.ws-header .header-sns {
        margin: 0;
        padding: 0 0 0 calc( 20 * min( 100vw, 1600px ) / 1600 );
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0 calc( 16 * min( 100vw, 1600px ) / 1600 );
    }
    header.ws-header .header-sns a {
        display: block;
        width: 40px;
        height: 40px;
    }
    header.ws-header .header-sns a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header.ws-header .header-sp-menu {
        display: none;
    }

    .sns {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    .sns .sns-tiktok {
        position: absolute;
        bottom: 39%;
        left: 43%;
        width: 25%;
        max-width: 510px;
    }
    .sns .sns-smartphone {
        position: absolute;
        bottom: 0;
        right: 54%;
        width: 13%;
        max-width: 248px;
    }
    .sns .sns-txt1 {
        position: absolute;
        top: 62%;
        left: 47%;
        color: #fff;
        font-size: calc( 14 * min( 100vw, 1000px ) / 1000 );
        font-weight: 500;
        line-height: calc( 21 / 14 ); 
    }
    .sns .sns-txt2 {
        position: absolute;
        top: 72%;
        left: 47%;
        color: #fff;
        font-size: calc( 16 * min( 100vw, 1000px ) / 1000 );
        font-weight: 700;
        line-height: calc( 21 / 16 ); 
    }
    .sns .sns-search {
        position: absolute;
        top: 80%;
        left: 47%;
        width: 12%;
        min-width: 298px;
    }

    .entry {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    .entry .entry-txt1 {
        position: absolute;
        top: 17%;
        left: 8%;
        margin: 0;
        padding: 0.4em 0.6em;
        width: max-content;
        color: var(--fg-color);
        font-size: calc( 43 * min( 100vw, 1920px ) / 1920 );
        font-weight: 700;
        line-height: 1.0;
        background: #fff;
    }
    .entry .entry-txt2 {
        position: absolute;
        top: calc( 17% + ( 100 * min( 100vw, 1920px ) / 1920 ) ) ;
        left: 8%;
        margin: 0;
        padding: 0.4em 0.6em;
        width: max-content;
        color: var(--fg-color);
        font-size: calc( 43 * min( 100vw, 1920px ) / 1920 );
        font-weight: 700;
        line-height: 1.0;
        background: #fff;
    }
    .entry .entry-txt2 em {
        color: #e56c47;
        font-style: normal;
    }
    .entry .entry-txt3,
    .entry .entry-txt4 {
        display: none;
    }
    .entry .common-btn3 {
        position: absolute;
        top: calc( 17% + ( 240 * min( 100vw, 1920px ) / 1920 ) ) ;
        left: 8%;
    }
    .entry .common-btn4 {
        position: absolute;
        top: calc( 17% + ( 240 * min( 100vw, 1920px ) / 1920 ) ) ;
        left: calc( 8% + 100% * 400 / 1920 );
    }

    .common-btn1 {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0;
        width: 438px;
        max-width: 100%;
        height: auto;
        aspect-ratio: 438 / 100;
        color: #fff;
        font-size: calc( 20 * min( 100vw, 1000px ) / 1000 );
        font-weight: 700;
        text-align: center;
        background: #e56c47;
        border: 2px solid #e56c47;
        border-radius: 10.0em;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    .common-btn1::before {
        position: absolute;
        content: "";
        top: 14%;
        right: calc( 14% * 100 / 438 );
        height: 72%;
        aspect-ratio: 1 / 1;
        border-radius: 100%;
        background: #fff;
        transition: background 0.5s ease-out;
    }
    .common-btn1::after {
        position: absolute;
        content: "";
        top: 44%;
        right: calc( 46% * 100 / 438 );
        height: 12%;
        aspect-ratio: 1 / 1;
        border-right: 3px solid #e56c47;
        border-bottom: 3px solid #e56c47;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }

    .common-btn3 {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0 1.0em 0 0;
        width: calc( 100% * 380 / 1920 );
        height: auto;
        aspect-ratio: 380 / 100;
        color: #fff;
        font-size: calc( 20 * min( 100vw, 1920px ) / 1920 );
        font-weight: 700;
        text-align: center;
        background: #e56c47;
        border: 2px solid #e56c47;
        border-radius: 10.0em;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    .common-btn3::before {
        position: absolute;
        content: "";
        top: 14%;
        right: calc( 14% * 100 / 380 );
        height: 72%;
        aspect-ratio: 1 / 1;
        border-radius: 100%;
        background: #fff;
        transition: background 0.5s ease-out;
    }
    .common-btn3::after {
        position: absolute;
        content: "";
        top: 44%;
        right: calc( 46% * 100 / 380 );
        height: 12%;
        aspect-ratio: 1 / 1;
        border-right: 3px solid #e56c47;
        border-bottom: 3px solid #e56c47;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    .common-btn4 {
        position: relative;
        display: grid;
        place-items: center;
        margin: 0;
        padding: 0 1.0em 0 0;
        width: calc( 100% * 380 / 1920 );
        height: auto;
        aspect-ratio: 380 / 100;
        color: #e56c47;
        font-size: calc( 20 * min( 100vw, 1920px ) / 1920 );
        font-weight: 700;
        text-align: center;
        background: #fff;
        border: 2px solid #e56c47;
        border-radius: 10.0em;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    .common-btn4::before {
        position: absolute;
        content: "";
        top: 14%;
        right: calc( 14% * 100 / 380 );
        height: 72%;
        aspect-ratio: 1 / 1;
        border-radius: 100%;
        background: #e56c47;
        transition: background 0.5s ease-out;
    }
    .common-btn4::after {
        position: absolute;
        content: "";
        top: 44%;
        right: calc( 46% * 100 / 380 );
        height: 12%;
        aspect-ratio: 1 / 1;
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }

    .anim-scroll {
        display: none;
    }

    footer {
        margin: 0 auto;
        padding: calc( 40 * min( 100vw, 1600px ) / 1600 ) 0;
        width: 100%;
        background: #e5e5e5;
    }
    footer .footer-wrap {
        margin: 0 auto;
        width: 96%;
        max-width: 1600px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .footer-wrap .footer-l {
        margin: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 0;
    }
    footer .footer-wrap .footer-l .menu {
        padding: 0 1.0em 0 0;
        width: max-content;
    }
    footer .footer-wrap .footer-l .menu .head {
        color: var(--fg-color);
        font-size: 16px;
        font-family: var(--font-mincho);
        font-weight: 700;
        line-height: 2.0;
    }
    footer .footer-wrap .footer-l .menu a {
        display: block;
        margin: 0;
        padding: 0;
        color: var(--fg-color);
        font-size: 14px;
        font-family: var(--font-mincho);
        font-weight: 500;
        line-height: 2.0;
    }
    footer .footer-wrap .footer-r {
        margin: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }
    footer .footer-wrap .footer-r .parts {
        padding: 0 1.0em 0 0;
        width: max-content;
    }
    footer .footer-wrap .footer-r .parts .head {
        color: var(--fg-color);
        margin: 0 0 0.5em;
        font-size: 16px;
        font-family: var(--font-mincho);
        font-weight: 700;
        line-height: 1.0;
    }
    footer .footer-wrap .footer-r .parts .tel-btn {
        display: block;
        margin: 0.5em 0;
        color: var(--fg-color);
        font-size: 24px;
        font-family: var(--font-mincho);
        font-weight: 700;
        line-height: 1.0;
    }
    footer .footer-wrap .footer-r .parts p {
        margin: 0.5em 0;
        color: var(--fg-color);
        font-size: 14px;
        font-family: var(--font-mincho);
        font-weight: 500;
        line-height: 1.0;
    }
    footer .footer-wrap .footer-r .parts .contact-btn {
        display: block;
        margin: 2.0em 0 0;
        padding: 1.0em 2.0em;
        color: var(--fg-color);
        font-size: 16px;
        font-family: var(--font-mincho);
        font-weight: 700;
        line-height: 1.0;
        white-space: nowrap;
        background: #fff;
        border: 2px solid var(--fg-color);
        border-radius: 0.6em;
        cursor: pointer;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    footer .footer-wrap .footer-r .sns {
        padding: 0;
        width: max-content;
    }
    footer .footer-wrap .footer-r .sns .sns-btn {
        display: inline-block;
        margin: 0 27px 0 0;
        padding: 0;
        width: 27px;
        height: 27px;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 4.0em 0;
        width: 100%;
        max-width: 1600px;
        color: var(--fg-color);
        font-size: 14px;
        text-align: center;
    }

}

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

@media ( hover: hover ) {
    .common-btn1:hover {
        color: #e56c47;
        background: #fff;
    }
    .common-btn1:hover::before {
        background: #e56c47;
    }
    .common-btn1:hover::after {
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
    }

    .common-btn3:hover {
        color: #e56c47;
        background: #fff;
    }
    .common-btn3:hover::before {
        background: #e56c47;
    }
    .common-btn3:hover::after {
        border-right: 3px solid #fff;
        border-bottom: 3px solid #fff;
    }
    .common-btn4:hover {
        color: #fff;
        background: #e56c47;
    }
    .common-btn4:hover::before {
        background: #fff;
    }
    .common-btn4:hover::after {
        border-right: 3px solid #e56c47;
        border-bottom: 3px solid #e56c47;
    }
    footer .footer-wrap .footer-r .parts .contact-btn:hover {
        color: #fff;
        background: var(--fg-color);
    }
}


@media ( width >= 768px ) and ( width < 1000px ) {
    header .header-menu li a {
        padding: 0 calc( 20 * min( 100vw, 1600px ) / 1600 ) 0 0;
    }
    header .header-menu li.header-recruit a {
        padding: 0 calc( 30 * min( 100vw, 1600px ) / 1600 );
    }
    header .header-sns {
        display: none;
    }
}

@media ( width >= 768px ) and ( width < 1280px ) {
    footer .footer-wrap .footer-r {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: calc( 80 * min( 100vw, 1600px ) / 1600 ) 0;
    }
    footer .footer-wrap .footer-r .sns {
        margin: 0;
    }
}

@media ( width >= 768px ) and ( width < 1100px ) {
    footer .footer-wrap {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: calc( 80 * min( 100vw, 1600px ) / 1600 ) 0;
    }
    footer .footer-wrap .footer-r {
    }
}
