    @charset "UTF-8";
    /*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/

    /* =================================================
p-mv
================================================= */
    .p-mv {
        position: relative;
        z-index: 5;
        width: 100%;
        overflow: hidden;
        isolation: isolate;
        background: linear-gradient(126deg,
                #fff 0%,
                #fff 55%,
                #9c9da2 55.1%,
                #9c9da2 100%);
    }

    .p-mv__loop {
        position: absolute;
        z-index: 1;
        bottom: 12vw;
        display: flex;
        align-items: center;
        overflow: hidden;
        pointer-events: none;
    }

    .p-mv__main {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 87.5vw;
        margin: 13rem auto 4rem;
    }

    .p-mv__content {
        position: relative;
        width: fit-content;
    }

    .p-mv__catch {
        display: block;
        margin: 0;
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 1.6;
        letter-spacing: var(--letter-spacing);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .p-mv__txt {
        margin: 1.5rem 0 0;
        line-height: 1.8;
        letter-spacing: var(--letter-spacing);
    }

    .p-mv .p-company__button {
        margin-top: 3.5rem;
    }

    .p-mv__image {
        position: relative;
        width: 64rem;
        min-width: 55%;
        aspect-ratio: 64 / 43;
    }

    .p-mv__image figure {
        position: absolute;
        aspect-ratio: 4 / 3;
        margin: 0;
    }

    .p-mv__image-main {
        top: 0;
        right: 0;
        width: 75%;
    }

    .p-mv__image-sub {
        left: 0;
        bottom: 0;
        width: 40%;
    }

    .p-mv__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ugkImgSlider {
        width: 100%;
        overflow: hidden;
    }

    .ugkImgSlider__lists {
        list-style: none;
        display: flex;
        column-gap: 20px;
        width: fit-content;
    }

    .ugkImgSlider__lists.animating {
        animation: imgSlider 140s linear infinite;
    }

    @keyframes imgSlider {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .ugkImgSlider__item img {
        height: 16vw;
        width: auto;
        opacity: .6;
    }

    @media screen and (max-width: 1199px) {
        .p-mv__main {
            width: 95%;
            gap: 2%;
            margin: 6rem auto 3rem;
        }

        .p-mv__catch {
            font-size: 2rem;
        }

        .p-mv__txt {
            text-align: justify;
        }
    }

    @media screen and (max-width: 991px) {
        .p-mv__main {
            margin: 8rem auto 3rem;
            gap: 2rem;
        }

        .p-mv__catch {
            font-size: 1.5rem;
        }

        .p-mv .p-company__button {
            margin-top: 1.5rem;
        }

        .p-mv__image {
            position: relative;
            aspect-ratio: 5 / 4;
        }

        .ugkImgSlider__item img {
            opacity: 1;
        }

        .ugkImgSlider__lists.animating {
            animation: imgSlider 100s linear infinite;
        }

    }

    @media screen and (max-width: 767px) {
        .p-mv {
            min-height: 100vh;
            min-height: 100svh;
            min-height: 100dvh;
            background: linear-gradient(105deg,
                    #fff 0%,
                    #fff 37%,
                    rgba(156, 157, 162, .7) 37.1%,
                    rgba(156, 157, 162, .7) 100%);
        }

        .p-mv__main {
            display: flex;
            flex-direction: column-reverse;
            flex-wrap: nowrap;
            justify-content: center;

            width: 90%;
            margin: 5rem auto 0;
            padding-bottom: 2rem;

            min-height: calc(100vh - 5rem);
            min-height: calc(100svh - 5rem);
            min-height: calc(100dvh - 5rem);

            gap: 1.25rem;
            align-items: stretch;
        }

        .p-mv__content {
            width: 100%;
        }

        .p-mv__catch {
            font-size: 1.5rem;
            line-height: 1.45;
            white-space: normal;
        }

        .p-mv__txt {
            margin-top: .75rem;
        }

        .p-mv .p-company__button {
            margin-top: 1.25rem;
        }

        .p-mv__image {
            width: 100%;
            min-width: 0;
            aspect-ratio: 5 / 4;
        }

        .p-mv__image-main {
            width: 78%;
        }

        .p-mv__image-sub {
            width: 42%;
        }

        .p-mv__loop {
            bottom: 1rem;
        }

        .ugkImgSlider__item img {
            height: 8rem;
            opacity: 1;
        }

        .ugkImgSlider__lists.animating {
            animation: imgSlider 80s linear infinite;
        }
    }


    .p-guide {
        background: url(../images/bg.jpg);
        background-size: contain;
    }

    .p-light__content {
        margin-top: 2.5rem;
        background-color: var(--white-color);
        padding: 3rem 2.5rem;
        border-radius: 1rem;
    }

    .l-attn {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
    }

    .attn {
        position: relative;
        padding-left: 1.25em;
        color: var(--gray-dark-color);
        font-size: .95em;
        line-height: initial;
        text-align: justify;
    }

    .attn::before {
        content: "※";
        position: absolute;
        top: 0;
        left: 0;
    }

    .p-guide-accordion,
    .p-guide-accordion__item {
        overflow-anchor: none;
    }

    .p-guide-accordion {
        margin-top: 2.5rem;
        background-color: var(--white-color);
        padding: 3rem 2.5rem;
        border-radius: 1rem;
    }

    .p-guide-accordion__trigger {
        color: var(--white-color);
        margin-top: 2rem;
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1rem 1rem;
        font-weight: 500;
        background: var(--black-color);
        text-align: left;
        cursor: pointer;
        transition: background-color .3s ease, border-bottom .2s ease;
    }

    .p-guide-accordion__title {
        display: block;
        font-size: 1.5rem;
        font-weight: 500;
    }

    .p-light__content,
    .p-guide-accordion__txt {
        margin-top: 2.5rem;
        text-align: justify;
        line-height: 2;
    }

    .p-guide-accordion__icon {
        position: relative;
        display: block;
        width: 1rem;
        height: 1rem;
        margin-left: auto;
        transition: transform .6s;
    }

    .p-guide-accordion__icon::before,
    .p-guide-accordion__icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1rem;
        height: 1px;
        background-color: var(--white-color);
        transform: translate(-50%, -50%);
        transition: transform .3s ease, opacity .3s ease;
    }

    .p-guide-accordion__icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .p-guide-accordion__trigger:hover .p-guide-accordion__icon {
        transform: rotate(180deg);
    }

    .p-guide-accordion__trigger-text {
        display: inline-block;
        transition: opacity .5s ease;
        letter-spacing: 0.25em;
    }

    .p-guide-accordion__trigger.is-switching .p-guide-accordion__trigger-text {
        opacity: 0;
    }

    .p-guide-accordion__content {
        height: 0;
        overflow: hidden;
        transition: height .4s ease, border-bottom .1s ease;
    }

    .p-guide-accordion__content-inner {
        padding: 1rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .p-guide-accordion__content-inner p {
        line-height: 2;
        margin-block: 1em;
        text-align: justify;
    }

    .p-guide-accordion__item.is-open .p-guide-accordion__icon::after {
        border-bottom: 1px solid var(--black-color);
        transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
    }

    .p-guide-accordion__item.is-open .p-guide-accordion__trigger {
        border-bottom: none;
    }

    .p-guide-accordion__item.is-open .p-guide-accordion__content {
        border-bottom: 1px solid var(--black-color);
    }

    .p-guide-accordion__block-image {
        width: 100%;
        max-width: 1000px;
    }

    .p-guide-accordion__block-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    @media (max-width: 991px) {

        .p-light__content,
        .p-guide-accordion {
            padding: 3% 2%;
        }

        .p-guide-accordion__content-inner {
            padding-inline: 0;
        }

        .p-guide-accordion__txt {
            margin-top: .75rem;
        }

        .p-guide-accordion__title {
            font-size: 1.35rem;
        }
    }

    @media (max-width: 767px) {

        .p-light__content,
        .p-guide-accordion {
            padding: 1.5rem;
        }
    }

    /* =================================================
p-recruit anchor nav
================================================= */

    :root {
        --recruit-nav-width: 7rem;
        --recruit-nav-gap: 3rem;
    }

    #message,
    #about,
    #requirements,
    #flow,
    #entry {
        scroll-margin-top: 140px;
    }

    .p-nav-area {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: var(--recruit-nav-gap);
    }

    .p-recruit__nav {
        position: sticky;
        top: 120px;
        z-index: 20;
        flex: 0 0 var(--recruit-nav-width);
        width: var(--recruit-nav-width);
        background: transparent;
        pointer-events: none;
        padding-block: 7rem;
    }

    .p-recruit__nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin: 0;
        padding: 0;
        list-style: none;
        pointer-events: auto;
    }

    .p-recruit__nav-item {
        margin: 0;
    }

    .p-recruit__nav-link {
        display: inline-flex;
        align-items: center;
        padding: 12px 16px;
        font-size: .9em;
        font-weight: 500;
        background: transparent;
        white-space: nowrap;
        transition:
            background-color .25s ease,
            color .25s ease,
            border-color .25s ease,
            opacity .25s ease;
    }

    .p-recruit__nav-link:hover,
    .p-recruit__nav-link:focus-visible,
    .p-recruit__nav-link.is-current {
        opacity: .5;
    }

    .p-recruit__nav-link:focus-visible {
        outline: none;
    }

    .p-recruit__sec-area {
        flex: 1 1 auto;
        min-width: 0;
    }

    .p-recruit__sec-area>.section {
        position: relative;
        margin-left: calc(-1 * (var(--recruit-nav-width) + var(--recruit-nav-gap)));
        padding-left: calc(var(--recruit-nav-width) + var(--recruit-nav-gap));
    }

    .p-recruit-message {
        background: url(../images/bg-rec.jpg);
        background-position: top;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #F2F7FA;
    }

    @media (max-width: 1199px) {
        .p-recruit__nav {
            display: none;
        }
    }

    @media (max-width: 767px) {
        .p-recruit__nav {
            display: none;
        }

    }

    .p-recruit-requirements .c-heading {
        text-align: center;
    }

    .p-recruit-requirements .btn-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 3rem;
        gap: 1rem;
    }

    .p-recruit-message {
        background: url(../images/bg-rec.jpg);
        background-position: top;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: #F2F7FA;
    }

    .p-recruit-about__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .p-recruit-about .c-heading {
        text-align: center;
    }

    .p-recruit-about__text {
        margin-top: 2rem;
        text-align: center;
    }

    .p-about__list {
        display: flex;
        justify-content: space-between;
        margin-top: 6rem;
        width: 100%;
    }

    .p-about__list-item {
        width: 24%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .p-about__list-item-text {
        margin-top: 2rem;
    }

    .p-about__list-item figure {
        width: 80%;
    }

    .p-about__list-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .p-list-item__num {
        font-size: .75em;
    }

    .p-list-item__ttl {
        font-size: 1.125rem;
        font-weight: 500;
        margin-top: .75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .p-list-item__txt {
        margin-top: 1rem;
    }

    @media screen and (max-width:1199px) {
        .p-recruit-about__content {
            align-items: flex-start;
        }
        .p-recruit-about .c-heading {
            text-align: justify;
        }
        .p-recruit-about__text {
            text-align: justify;
        }

        .p-about__list {
            flex-wrap: wrap;
            row-gap: 4rem;
        }

        .p-about__list-item {
            width: 50%;
        }
    }

    @media screen and (max-width:768px) {
        .p-about__list {
            justify-content: center;
        }

        .p-about__list-item {
            width: 100%;
            max-width: 400px;
        }

        .p-recruit-requirements {
            padding-top: var(--section-padding);
            border-top: 1px solid var(--gray-color);
        }

        .p-recruit-requirements .c-recruit-button {
            width: 100%;
        }
    }

    /* =================================================
p-service
================================================= */
    .p-service {
        background-image: url(../images/bg.jpg);
        background-size: contain;
        background-repeat: repeat;
    }

    .p-service__heading {
        margin-bottom: 3rem;
    }

    .p-service__list,
    .p-flow__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .p-flow__list {
        margin-top: 2rem;
    }

    .p-service__item,
    .p-flow__item {
        min-width: 0;
    }

    /* =================================================
c-service-card
================================================= */

    .c-service-card {
        height: 100%;
        padding: 2.5rem 2rem;
        background-color: var(--white-color);
        border-radius: 12px;
    }

    .c-service-card__image {
        margin: 0;
        aspect-ratio: 3 / 2;
        overflow: hidden;
    }

    .c-service-card__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .c-service-card__body {
        margin-top: 2rem;
    }

    .c-service-card__title {
        margin: 0;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.5;
        text-align: justify;
    }

    .c-service-card__text {
        margin: 1.5rem 0 0;
        line-height: 1.6;
        text-align: justify;
    }

    @media screen and (max-width: 1199px) {
        .c-service-card__title {
            display: flex;
            flex-direction: column;
            gap: .75em;
        }
    }

    @media screen and (max-width: 991px) {

        .p-service__list,
        .p-flow__list {
            grid-template-columns: 1fr;
            gap: 24px;
            max-width: 560px;
            margin-inline: auto;
        }

        .p-flow__list {
            gap: 3rem;
        }
    }

    @media screen and (max-width: 767px) {
        .p-service__heading {
            margin-bottom: 32px;
        }

        .p-service__list {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .c-service-card {
            padding: 16px 16px 20px;
            border-radius: 12px;
        }

        .c-service-card__body {
            margin-top: 16px;
        }

        .c-service-card__title {
            font-size: 1rem;
        }

        .c-service-card__text {
            margin-top: 12px;
            font-size: 0.875rem;
            line-height: 1.9;
        }
    }


    /* =================================================
p-strength
================================================= */

    .p-strength__heading {
        margin-bottom: 3rem;
        text-align: center;
    }

    .p-strength__heading .c-heading__en {
        justify-content: center;
    }

    .p-strength__list {
        display: flex;
        justify-content: center;
        gap: 4rem;
    }

    .p-strength__item {
        width: 24.25rem;
    }

    /* =================================================
c-strength-card
================================================= */

    .c-strength-card {
        height: 100%;
        text-align: center;
    }

    .c-strength-card__image {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .c-strength-card__image img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .c-strength-card__body {
        margin-top: 3rem;
    }

    .c-strength-card__num {
        margin-bottom: 1.25rem;
        font-size: 0.875rem;
        line-height: 1;
        font-family: var(--en-font);
    }

    .c-strength-card__title {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .c-strength-card__text {
        max-width: 100%;
        margin: 1.75rem auto 0;
        text-align: center;
    }

    @media screen and (max-width: 991px) {
        .p-strength__list {
            gap: 4rem;
            flex-wrap: wrap;
        }

        .p-strength__heading {
            margin-bottom: 3rem;
        }

        .p-strength__item {
            width: 100%;
        }

        .c-strength-card__image {
            max-width: 280px;
        }
    }

    @media screen and (max-width: 767px) {
        .p-strength__heading .c-heading__en {
            margin-bottom: .75rem;
        }

        .p-strength__list {
            gap: 2.5rem;
        }

        .c-strength-card__image {
            max-width: 240px;
        }

        .c-strength-card__body {
            margin-top: 1.5rem;
        }

        .c-strength-card__num {
            margin-bottom: .75rem;
        }

        .c-strength-card__text {
            margin-top: 1rem;
        }
    }

    /* =================================================
c-guide-panel
================================================= */

    .p-check {
        z-index: 2;
    }

    .c-guide-panel {
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(135deg, #000 0%, #000 50%, #1a1a1a 50%, #1a1a1a 100%);
        color: var(--white-color);
        transition: all .3s ease;
        width: fit-content;
        margin: 0 auto;
        opacity: 1;
    }

    .c-guide-panel__link {
        display: block;
        color: inherit;
        text-decoration: none;
    }

    .c-guide-panel:hover {
        transform: translateY(-1rem);
        opacity: 0.95;
    }

    .c-guide-panel.p-entry:hover {
        transform: initial;
        opacity: 1;
    }

    .c-guide-panel__inner {
        display: flex;
        align-items: center;
        gap: 4rem;
        padding: 5.5rem 10rem;
    }

    .p-recruit-entry .c-guide-panel__inner {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        padding: 5.5rem 3rem;
    }

    .c-guide-panel__media {
        flex-shrink: 0;
    }

    .c-guide-panel__media img {
        display: block;
        width: 11rem;
        height: auto;
    }

    .p-recruit-entry {
        background: url(../images/bg.jpg);
        background-size: contain;
    }

    .p-recruit-entry .c-guide-panel__media img {
        width: 14rem;
    }

    .c-guide-panel__content {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .c-guide-panel__title {
        margin: 0 0 1rem;
        font-size: 2.25rem;
        font-weight: 500;
    }

    .c-guide-panel__text {
        margin: 0;
        line-height: 2;
        margin: 0 0 1.5rem;
    }

    .c-guide-panel__cta {
        display: inline-flex;
        align-items: center;
        gap: .25rem;
        line-height: 1;
    }

    .c-guide-panel__cta .c-button__text,
    .c-guide-panel__cta .c-button__icon {
        color: var(--white-color);
    }

    .c-guide-panel__cta .c-button__icon.icon--arrow::before {
        mask: url("../images/common/icon-arrow.svg") no-repeat center / contain;
        -webkit-mask: url("../images/common/icon-arrow.svg") no-repeat center / contain;
        background-color: var(--white-color);
    }

    @media screen and (max-width: 1199px) {
        .c-guide-panel__inner {
            padding: 2rem 2rem;
            gap: 2rem;
        }


        .p-recruit-entry .c-guide-panel__media img {
            width: 11rem;
        }
    }

    @media screen and (max-width: 991px) {
        .c-guide-panel__inner {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
            padding: 2.5rem 2rem;
        }

        .p-recruit-entry .c-guide-panel__inner {
            gap: 2.5rem;
            padding: 3rem 1.5rem;
            width: 100%;
        }

        .p-recruit-entry .c-guide-panel__media img,
        .c-guide-panel__media img {
            width: 8rem;
        }
        .c-guide-panel__content {
            align-items: center;
        }

        .c-guide-panel__title {
            font-size: 1.5rem;
        }

        .c-guide-panel__text {
            text-align: justify;
        }

        .c-guide-panel__cta {
            justify-content: center;
        }
    }

    @media screen and (max-width: 767px) {
        .c-guide-panel__inner {
            gap: 1.5rem;
            padding: 2rem 1.5rem;
        }

        .c-guide-panel__title {
            margin-bottom: .75rem;
            font-size: 1.25rem;
        }

        .c-guide-panel__text {
            line-height: 1.8;
        }

        .c-guide-panel__cta {
            margin-top: 1.25rem;
        }
    }

@media (max-width: 767px) {
    .p-guide-accordion__block-image.js-zoom-image {
        cursor: pointer;
    }
}

.p-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.p-zoom-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.p-zoom-modal__image {
    display: block;
    width: auto;
    width: 105%;
    height: auto;
    object-fit: contain;
}

    /* =================================================
p-recruit
================================================= */

    .p-recruit {
        position: relative;
        overflow: hidden;
        background-image: url(../images/bg-arch.png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        margin-top: -3rem;
        z-index: 1;
    }

    .p-recruit.p-company__greeting {
        background-image: url(../images/bg.jpg);
        background-size: contain;
        margin-top: initial;
        background-repeat: repeat;
    }

    .p-recruit>.container {
        position: relative;
        z-index: 1;
    }

    .p-recruit__inner {
        padding-top: 14rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5rem;
        margin-left: calc(50% - 50vw);
    }

    .p-recruit.p-company__greeting .p-recruit__inner {
        padding-top: initial;
    }

    .p-recruit__image {
        flex: 0 0 50vw;
        margin: 0;
    }

    .p-recruit__image img {
        display: block;
        width: 100%;
        height: auto;
    }

    .p-recruit__heading {
        margin-bottom: 3rem;
    }

    .p-recruit__title {
        margin: 0;
        font-size: 6rem;
        line-height: .95;
        letter-spacing: .06em !important;
        transform: translateX(-.05em);
    }

    .p-recruit__sub {
        margin: .75rem 0 0;
        font-size: 1.125rem;
        font-weight: 500;
    }

    .p-recruit__catch {
        margin: 0 0 2rem;
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.5;
    }

    .p-recruit__text {
        margin: 0;
        line-height: 2.2;
        text-align: justify;
    }

    .p-recruit.p-company__greeting .p-recruit__text {
        margin-top: 2rem;
    }

    .p-recruit__name {
        margin-top: 2rem;
        font-weight: 500;
        text-align: right;
    }

    .p-recruit__button {
        margin-top: 2.5rem;
    }

    .p-entry__contact {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: .25rem;
    }

    .p-contact__tel-num,
    .p-contact__tel-num a {
        font-size: 2rem;
        line-height: 1;
        font-weight: 600;
        margin-bottom: .25rem;
        color: var(--white-color);
    }

    @media screen and (max-width: 1199px) {
        .p-recruit__inner {
            gap: 3rem;
        }

        .p-recruit__image {
            flex-basis: 50%;
        }

        .p-recruit__content {
            flex-basis: 28rem;
            max-width: 28rem;
            padding-right: 0;
        }
    }

    @media screen and (max-width: 991px) {
        .p-recruit__inner {
            padding-top: 9rem;
            flex-direction: column;
            align-items: stretch;
            gap: 2.5rem;
            margin-left: 0;
        }

        .p-recruit__image,
        .p-recruit__content {
            flex: none;
            width: 100%;
            max-width: none;
        }

        .p-recruit__content {
            padding-right: 0;
        }

        .p-recruit__title {
            font-size: 3.5rem;
        }

        .p-recruit__catch {
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .p-recruit__text {
            font-size: .9375rem;
        }

        .p-entry__contact {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
    }

    @media screen and (max-width: 767px) {
        .p-recruit__heading {
            margin-bottom: 1.5rem;
        }

        .p-recruit__title {
            font-size: 2.75rem;
        }

        .p-recruit__sub {
            margin-top: .5rem;
            font-size: .75rem;
        }

        .p-recruit__catch {
            font-size: 1.25rem;
            line-height: 1.7;
        }

        .p-recruit__text {
            line-height: 2;
        }

        .p-recruit__button {
            margin-top: 2rem;
        }
    }

    .p-recruit-flow {
        background: url(../images/bg.jpg);
        background-size: contain;
    }

    .p-flow__item {
        position: relative;
    }

    .p-flow__item::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -2rem;
        transform: translateY(-50%);
        -webkit-mask: url("../images/common/icon-triangle-rounded.svg") center / contain no-repeat;
        mask: url("../images/common/icon-triangle-rounded.svg") center / contain no-repeat;
        background-color: var(--black-color);
        width: 2rem;
        height: 2rem;
    }

    .p-flow__item:last-of-type:after {
        display: none;
    }

    .p-flow__item .c-service-card__title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .5em;
        /* justify-content: center; */
    }

    .step-num {
        font-family: var(--en-font);
        font-weight: 600;
        background-color: #f5ff66;
        font-size: .75em;
        padding: .25em .5em;
    }

    @media screen and (max-width: 991px) {
        .p-flow__item::after {
            content: "";
            position: absolute;
            top: initial;
            bottom: -2.5rem;
            right: 50%;
            transform: translate(50%, 0) rotate(90deg);
            width: 2rem;
            height: 2rem;
        }
    }

    /* =========================================
company info
========================================= */

    .p-company__table {
        margin-top: 8rem;
        width: 100%;
        padding: 2rem 3rem 3rem 3rem;
        border-radius: .5rem;
    }

    .access__block {
        width: 100%;
    }

    .access__block img {
        width: 100%;
        height: 100%;
    }

    .p-company__access {
        background-image: url(../images/bg.jpg);
        background-size: contain;
        background-repeat: repeat;
    }

    .p-access__content {
        background-color: var(--white-color);
        border-radius: 1rem;
        padding: 2rem 4rem;
        display: flex;
        width: fit-content;
    }

    .p-access__block:first-of-type {
        padding-right: 3.5rem;
        border-right: 1px solid var(--gray-color);
    }

    .p-access__block:last-of-type {
        padding-left: 3.5rem;
    }

    .p-access__title {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: .5rem;

    }

    .p-access__text span {
        line-height: 1;
    }

    .p-access__text span:last-of-type {
        font-size: 1.5rem;
        font-weight: 700;
        margin-left: .5rem;
    }

    .p-access__map {
        margin-top: 4rem;
        width: 100%;
    }

    .p-access__map iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 1;
    }

    @media screen and (max-width:991px) {
        .p-access__content {
            margin-top: 1.5rem;
        }

        .p-company__table {
            padding: 1.5rem 0 1rem;
        }

        .p-access__map {
            margin-top: 2rem;
        }
    }

    @media screen and (max-width:767px) {

        .p-company__table {
            margin-top: 100px;
        }
        .p-access__content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
            padding: 2rem 0;
        }

        .p-access__block:first-of-type,
        .p-access__block:last-of-type {
            padding: 0;
            border: none;
            text-align: center;
        }

        .p-access__block:first-of-type {
            border-bottom: 1px solid var(--gray-color);
            padding-bottom: 1.25rem;
        }

        .p-access__map {
            margin-top: 1rem;
        }

        .p-access__map iframe {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
        }
    }

    @media screen and (max-width:575px) {

        .p-access__map iframe {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1.5;
        }
    }

    /* =========================================
contact 
========================================= */

    .p-contact__contact {
        text-align: center;
        background-image: url(../images/bg.jpg);
        background-size: contain;
        background-repeat: repeat;
    }

    .p-contact__contact-list {
        display: flex;
        justify-content: center;
        gap: 4rem;
        margin-top: 4rem;
    }

    .p-contact__contact-item {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        background: var(--white-color);
        overflow: hidden;
        border-radius: 1rem;
        padding: 3rem 2rem;
    }

    .p-contact__contact-label {
        font-size: 2rem;
        font-weight: 600;
        font-family: var(--en-font);
        border-bottom: 1px solid var(--gray-color);
        padding-bottom: .75rem;
        margin-bottom: .5rem;
    }

    .p-contact__contact-number {
        display: flex;
        justify-content: center;
        gap: .5rem;
        font-size: 2.25rem;
        font-weight: 600;
        padding-inline: 1.5rem;
    }

    .sec-mail {
        background-color: var(--white-color);
    }

    .contact-info {
        font-size: 1.05rem;
        line-height: 2;
    }

    .h-adr {
        max-width: 1200px;
        margin: 0 auto;
    }

    @media screen and (max-width: 991px) {
        .p-contact__contact-list {
            margin-block: 3rem 0;
            gap: 2rem;
        }

        .p-contact__contact-item {
            width: 320px;
        }

        .p-contact__contact-number {
            font-size: 1.65rem;
        }
    }

    @media screen and (max-width: 767px) {
        .p-contact__contact-list {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .p-contact__contact-item {
            width: 80%;
            min-width: 320px;
            padding: 1rem 1rem;
        }

        .contact-info {
            font-size: 1rem;
            line-height: 2;
        }
    }