

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


.sp{
    display: block;
}
.pc {
    display: none;
}


/* ===============================
   First View
   スマホ版 完成調整
=============================== */

.fv {
    position: relative;
    box-sizing: border-box;

    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding:
        clamp(96px, 26vw, 118px)
        clamp(28px, 8.5vw, 40px)
        max(clamp(28px, 7vw, 44px), env(safe-area-inset-bottom));

    background-image:
        linear-gradient(
            rgba(0, 0, 0, .52),
            rgba(0, 0, 0, .66)
        ),
        url("../image/fv.jpg");

    background-position: 64% center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* ===============================
   FV テキストエリア
=============================== */

.fv_inner {
    position: relative;

    /*
     * 画面の余った高さを引き伸ばさない
     */
    flex: 0 0 auto;
    min-height: 0;

    display: grid;

    grid-template-columns:
        max-content
        minmax(150px, 1fr);

    grid-template-rows: max-content;

    column-gap: clamp(8px, 2.5vw, 16px);

    align-content: start;
    align-items: end;

    width: 100%;
    padding: 0;
}


/* ===============================
   FV 縦書きタイトル
=============================== */

.fv__title {
    writing-mode: vertical-rl;
    text-orientation: mixed;

    display: block;

    width: fit-content;

    /*
     * 画面の高さではなく横幅を基準にすることで、
     * 縦長スマホだけ不自然に伸びるのを防ぐ
     */
    height: clamp(350px, 105vw, 450px);
    max-height: none;

    margin: 0;

    font-size: clamp(20px, 5.8vw, 25px);
    line-height: 1.34;
    letter-spacing: .08em;

    align-self: start;
    justify-self: start;

    grid-column: 1;
}

.fv__title br {
    display: block;
}

.fv__title .accent {
    font-size: clamp(40px, 11.5vw, 50px);
}


/* ===============================
   FV 説明文
=============================== */

.fv__subtitle {
    position: static;

    grid-column: 2;

    /*
     * FV全体の下ではなく、
     * 縦書きタイトルの下端に合わせる
     */
    align-self: end;
    justify-self: end;

    width: clamp(150px, 48vw, 220px);
    max-width: 220px;

    margin:
        0
        clamp(3px, 1vw, 8px)
        clamp(2px, 1vw, 8px)
        0;

    padding: 0;

    font-size: clamp(9.5px, 2.8vw, 12px) !important;
    line-height: 1.8;
    letter-spacing: .06em;

    text-align: right;

    text-shadow:
        0 3px 14px rgba(0, 0, 0, .65);
}


/* ===============================
   FV エントリーボタン
=============================== */

.fv_btn-entry {
    position: relative;
    inset: auto;

    flex-shrink: 0;

    box-sizing: border-box;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    /*
     * L型エリアのすぐ下へ配置
     */
    margin:
        clamp(20px, 5vw, 30px)
        0
        0;

    padding:
        clamp(18px, 2.8svh, 22px)
        clamp(20px, 6vw, 24px);

    font-size: clamp(15px, 4.2vw, 18px);
    letter-spacing: .06em;

    gap: 0;
}


/* ===============================
   高さが低いスマホ
=============================== */

@media screen and (max-height: 720px) {

    .fv {
        padding-top: 92px;

        padding-left: clamp(26px, 8vw, 32px);
        padding-right: clamp(26px, 8vw, 32px);

        padding-bottom:
            max(20px, env(safe-area-inset-bottom));
    }

    .fv_inner {
        flex: 0 0 auto;

        grid-template-columns:
            max-content
            minmax(145px, 1fr);

        grid-template-rows: max-content;

        column-gap: 8px;

        align-content: start;
        align-items: end;
    }

    .fv__title {
        height: clamp(315px, 100vw, 365px);
        max-height: none;

        font-size: clamp(20px, 5.5vw, 22px);
        line-height: 1.28;
    }

    .fv__title .accent {
        font-size: clamp(39px, 10.8vw, 44px);
    }

    .fv__subtitle {
        width: clamp(145px, 47vw, 180px);
        max-width: 180px;

        margin-right: 2px;
        margin-bottom: 2px;

        font-size: clamp(9.5px, 2.7vw, 10.5px) !important;
        line-height: 1.7;
    }

    .fv_btn-entry {
        margin-top: 14px;
        padding: 18px 20px;

        font-size: 15px;
    }
}


/* ===============================
   横幅が小さいスマホ
=============================== */

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

    .fv {
        padding-left: 26px;
        padding-right: 26px;
    }

    .fv_inner {
        grid-template-columns:
            max-content
            minmax(140px, 1fr);

        column-gap: 7px;
    }

    .fv__title {
        height: clamp(315px, 100vw, 365px);

        font-size: clamp(20px, 5.8vw, 22px);
        line-height: 1.3;
    }

    .fv__title .accent {
        font-size: clamp(40px, 11.4vw, 44px);
    }

    .fv__subtitle {
        width: clamp(140px, 47vw, 165px);
        max-width: 165px;

        margin-right: 0;
        margin-bottom: 2px;

        font-size: clamp(9.5px, 2.8vw, 10.5px) !important;
        line-height: 1.7;
    }

    .fv_btn-entry {
        margin-top: 14px;
        padding: 18px 20px;

        font-size: 15px;
    }
}

/* ===============================
   Header / Hamburger Menu
=============================== */

    .header_inner{
        height: 64px;
        margin: 18px 24px;
    }

    .header_logo{
        width: 150px;
        position: relative;
        z-index: 10001;
    }

    .hamburger{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 7px;

        width: 46px;
        height: 46px;

        cursor: pointer;
        position: relative;
        z-index: 10001;
    }

    .hamburger span{
        display: block;
        width: 20px;
        height: 1px;
        margin: 0 auto;
        background: #fff;

        transition:
            transform .45s cubic-bezier(.22,1,.36,1),
            opacity .3s ease;
    }

    .hamburger.is-open span:nth-child(1){
        transform: translateY(8px) rotate(35deg);
    }

    .hamburger.is-open span:nth-child(2){
        opacity: 0;
    }

    .hamburger.is-open span:nth-child(3){
        transform: translateY(-8px) rotate(-35deg);
    }

    .nav-container{
        position: fixed;
        inset: 0;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        background:
            linear-gradient(
                135deg,
                rgba(0,0,0,.95),
                rgba(10,18,22,.92)
            );

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity .5s ease,
            visibility .5s ease;

        z-index: 10000;
    }

    .nav-container.is-open{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .globalnav{
    display: block;
}

    .nav-container{
    width: 100vw;
    height: 100svh;
}
    .globalnav ul{
        flex-direction: column;
        gap: 28px;
    }

    .globalnav a{
        font-size: 18px;
        letter-spacing: .08em;
    }

    .entry{
        margin-left: 0;
        margin-top: 42px;
        padding: 16px 42px;
    }

    body.is-menu-open{
        overflow: hidden;
    }



/* ===============================
   Company
=============================== */

#company{
    background-color: #EAEAEA;
}

.section_inner{
    padding: 72px 24px 150px;
    gap: 18px;
}

.section_inner h2{
    font-size: 25px;
    line-height: 1.4;
}

.section_inner p{
    font-size: 14px;
    line-height: 2;
}

.section-lead{
    text-align: center;
}


.company-features{
    display: flex;
    flex-direction: column;
    gap: 32px;

    padding: 0 18px;
    margin-top: -100px;
}

.feature-box{
    min-height: 430px;
    padding: 220px 22px 26px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    position: relative;
    overflow: hidden;
}

.feature-box::before{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0,0,0,.08) 0%,
        rgba(0,0,0,.28) 45%,
        rgba(0,0,0,.68) 100%
    );

    z-index: 0;
}

.feature-box h3,
.feature-box p{
    position: relative;
    z-index: 1;
}

.feature-box h3{
    font-size: 28px;
    line-height: 1.35;
}

.feature-box__subtitle{
    margin-top: 6px;
    font-size: 14px;
}

.feature-box__text{
    margin-top: 22px;
    font-size: 14px;
    line-height: 2;
}

.company-reason{
    display: flex;
    flex-direction: column;
    gap: 40px;

    padding: 72px 18px 80px;
}
.company-reason__title{
    font-size: 24px;
}
.company-reason_text{
    gap: 22px;
}

.company-reason_text h2{
    font-size: 24px;
    line-height: 1.5;
}

.company-reason__list{
    font-size: 14px;
    line-height: 2.1;
}

.company-reason_image img{
    width: 100%;
    display: block;
}

.company-reason.is-active .company-reason__list li:nth-child(1) .marker::before{
    transform: scaleX(1);
    transition-delay: .05s;
}

.company-reason.is-active .company-reason__list li:nth-child(2) .marker::before{
    transform: scaleX(1);
    transition-delay: .35s;
}

.company-reason.is-active .company-reason__list li:nth-child(3) .marker::before{
    transform: scaleX(1);
    transition-delay: .65s;
}




/* ===============================
   Voice
=============================== */

#voice{
    background-color: #f7f7f7;
}

.voice_inner .section_inner{
    padding: 72px 28px 56px;
}

.voice_inner .section-title{
    font-size: 25px;
    line-height: 1.5;
    text-align: center;
}

.voice_inner .section-lead{
    font-size: 14px;
    line-height: 2;
    text-align: center;
}

.voice_real_cards{
    display: flex;
    flex-direction: column;
    gap: 82px;

    padding: 0 36px 96px;
}

.voice_real_item{
    width: 100%;
    gap: 24px;
    text-align: left;
}

.voice_real_item img{
    width: 170px;
    height: 170px;
    object-fit: cover;
    margin: 0 auto 6px;
}

.voice_real_item_name{
    width: 100%;
    font-size: 19px;
    line-height: 1.5;
    text-align: center;
    font-weight: 700;
}

.voice_real_item_text{
    font-size: 14px;
    line-height: 2;
    letter-spacing: .04em;
}


/* ===============================
   Voice / Executive
=============================== */

.voice-executive{
    padding-top: 72px;
}

.section_sub_inner{
    gap: 5px;
    padding-bottom: 44px;
}

.h2_subtitle{
    font-size: 14px;
    line-height: 1.4;
}

.h2_title{
    font-size: 28px;
    line-height: 1.3;
}

.voice-executive_inner{
    display: flex;
    flex-direction: column;
    gap: 78px;

    padding: 0 40px 96px;
}

.voice-executive_item{
    gap: 26px;
}

.voice-executive_item_title{
    gap: 18px;
}

.voice-executive_item_title img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: top center;
}

.voice-executive_item_name{
    flex: 1;
}

.sub_name{
    font-size: 13px;
}

.name{
    font-size: 23px;
}

.voice-executive_item > p{
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: .04em;
}


/* ===============================
   Change Your Life
=============================== */

.voice-change{
    padding: 72px 0 90px;
}

.voice-change .section-title{
    font-size: 28px;
    line-height: 1.4;
}

.voice-change h2::after{
    width: 70px;
    bottom: -18px;
}

.voice-change_list{
    margin-top: 80px;
    padding: 0 16px;
    gap: 42px;
}

.voice-change_item{
    display: block;

    padding: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}


.voice-change_img{
    max-width: 100%;
    margin-bottom: 20px;
}

.voice-change_img img{
    width: 100%;
    display: block;
}

.voice-change_body{
    padding: 0 2px;
}

.voice-change_name{
    margin-bottom: 14px;
    font-size: 13px;
}

.voice-change_job,
.voice-change_income{
    font-size: 12px;
    line-height: 1.7;
}

.voice-change_title{
    margin: 18px 0;
    font-size: 16px;
    line-height: 1.6;
}

.voice-change_text{
    font-size: 13px;
    line-height: 2;
}

.voice-change_item.played .marker:nth-of-type(1)::before{
    transform: scaleX(1);
    transition-delay: .2s;
}

.voice-change_item.played .marker:nth-of-type(2)::before{
    transform: scaleX(1);
    transition-delay: .8s;
}

/* ===============================
   Works
=============================== */

.works_inner{
    padding-top: 52px;
}

.works_inner .section_inner{
    padding: 0 28px 56px;
}

.works_inner .section-title{
    font-size: 25px;
    line-height: 1.5;
    text-align: center;
}

.works_inner .section-lead{
    font-size: 14px;
    line-height: 2;
    text-align: center;
}

.works-item{
    display: flex;
    flex-direction: column;
    gap: 0;

    padding: 48px 18px 56px;
}

.works-item:nth-child(even){
    flex-direction: column;
}

.works-item_image{
    order: 1;
    margin-bottom: 0;
}

.works-item_content{
    order: 2;
    gap: 14px;
}

.works-item_number{
    margin-top: -28px;
    font-size: 86px;
    line-height: .9;
    z-index: 50;
}

.works-item_role-en{
    font-size: 12px;
}

.works-item_role{
    font-size: 23px;
    line-height: 1.5;
}

.works-item_text{
    font-size: 13px;
    line-height: 1.9;
}

.works-item_content > p:not(.works-item_role-en):not(.works-item_text){
    font-size: 13px;
}

.works-item__skills{
    gap: 12px 10px;
}

.works-item__skills li{
    padding: 6px 14px;
    font-size: 12px;
}


/* ===============================
   Required Personnel
=============================== */

.personnel{
    padding: 76px 0 90px;
}

.personnel .section_sub_inner{
    padding-bottom: 46px;
}

.personnel .h2_subtitle{
    font-size: 14px;
    line-height: 1.4;
}

.personnel .h2_title{
    font-size: 28px;
    line-height: 1.4;
}

.personnel_cards{
    display: flex;
    flex-direction: column;
    gap: 34px;

    padding: 0 24px;
}

.personnel_cards_item{
    min-height: 260px;

    padding: 48px 34px;

    justify-content: center;
    gap: 28px;

    border-radius: 56px;

    background-size: cover;
    background-position: center;
}

.personnel_title{
    font-size: 22px;
}

.personnel_cards_item p{
    font-size: 16px;
    line-height: 1.9;
}

.under_text{
    margin-top: 64px;

    padding: 0 24px;

    text-align: center;
    font-size: 20px;
    line-height: 1.8;
}


/* ===============================
   Workstyle
   スマホ
=============================== */

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

    #workstyle {
        padding: 74px 0 88px;

        background:
            url("../image/workstyle-bg.jpg")
            center center / cover no-repeat;

        /*
         * スマホではfixedを解除
         */
        background-attachment: scroll;
    }

    #workstyle .workstyle_inner .section_inner {
        padding: 0 28px;
        gap: 10px;
    }

    #workstyle .workstyle_inner .section-title {
        font-size: 25px;
        line-height: 1.5;
        text-align: center;
    }

    #workstyle .workstyle_inner .section-lead {
        font-size: 14px;
        line-height: 1.8;
        text-align: center;
    }


    /* ===============================
       カード一覧
    =============================== */

    #workstyle .workstyle_cards {
        max-width: none;

        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;

        margin: 34px 0 0;
        padding: 0 24px;
    }


    /* ===============================
       カード本体
    =============================== */

    #workstyle .workstyle_cards_item {
        display: block;

        min-height: 0;
        padding: 0;

        border-radius: 24px;

        background: rgba(255, 255, 255, .94);

        box-shadow:
            0 12px 28px rgba(0, 0, 0, .12);

        text-align: left;

        overflow: hidden;

        transform: none;
        transition: none;
    }

    #workstyle .workstyle_cards_item:hover {
        transform: none;

        box-shadow:
            0 12px 28px rgba(0, 0, 0, .12);
    }


    /* ===============================
       アコーディオントリガー
    =============================== */

    #workstyle .card__trigger {
        appearance: none;
        -webkit-appearance: none;

        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        gap: 16px;

        margin: 0;
        padding: 20px 20px;

        border: 0;
        border-radius: 0;

        background: transparent;
        color: inherit;

        font: inherit;
        text-align: left;

        cursor: pointer;
        pointer-events: auto;
    }


    /* ===============================
       アイコン・タイトル・概要
    =============================== */

    #workstyle .card__heading {
        min-width: 0;
        width: auto;
        flex: 1;

        display: grid;

        grid-template-columns:
            36px
            minmax(0, 1fr);

        grid-template-rows:
            auto
            auto;

        column-gap: 14px;
        row-gap: 3px;

        align-items: center;

        text-align: left;
    }

    #workstyle .card__icon {
        grid-column: 1;
        grid-row: 1 / 3;

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

        margin: 0;
    }

    #workstyle .card__icon img {
        display: block;

        width: 30px;
        height: 30px;

        object-fit: contain;
    }

    #workstyle .card__title {
        grid-column: 2;
        grid-row: 1;

        width: auto;

        margin: 0;

        font-size: 16px;
        font-weight: 700;
        line-height: 1.5;

        text-align: left;

        word-break: keep-all;
        overflow-wrap: normal;
    }

    #workstyle .card__summary {
        grid-column: 2;
        grid-row: 2;

        display: block;

        margin: 0;

        font-size: 11px;
        line-height: 1.55;
        letter-spacing: .02em;

        color: rgba(0, 0, 0, .66);

        text-align: left;
    }


    /* ===============================
       ＋・−アイコン
    =============================== */

    #workstyle .card__toggle {
        position: relative;

        display: block;
        flex: 0 0 20px;

        width: 20px;
        height: 20px;
    }

    #workstyle .card__toggle::before,
    #workstyle .card__toggle::after {
        content: "";

        position: absolute;
        top: 50%;
        left: 50%;

        width: 16px;
        height: 1px;

        background: #111;

        transform:
            translate(-50%, -50%);

        transition:
            transform .3s ease,
            opacity .3s ease;
    }

    #workstyle .card__toggle::after {
        transform:
            translate(-50%, -50%)
            rotate(90deg);
    }

    #workstyle
    .card__trigger[aria-expanded="true"]
    .card__toggle::after {
        opacity: 0;

        transform:
            translate(-50%, -50%)
            rotate(0);
    }


    /* ===============================
       開閉パネル
    =============================== */

    #workstyle .card__panel {
        display: grid;

        width: 100%;

        grid-template-rows: 0fr;

        opacity: 0;

        transition:
            grid-template-rows .4s
                cubic-bezier(.22, 1, .36, 1),
            opacity .3s ease;
    }

    #workstyle .card__panel-inner {
        min-height: 0;
        overflow: hidden;
    }

    #workstyle
    .workstyle_cards_item.is-open
    .card__panel {
        grid-template-rows: 1fr;
        opacity: 1;
    }


    /* ===============================
       詳細本文
    =============================== */

    #workstyle .card__text {
        width: auto;

        margin: 0;

        padding:
            0
            20px
            22px
            70px;

        font-size: 12px;
        line-height: 1.8;
        letter-spacing: .02em;

        text-align: left;
    }


    /* ===============================
       操作時
    =============================== */

    #workstyle .card__trigger:focus-visible {
        outline: 2px solid #25b8d0;
        outline-offset: -4px;
    }

    #workstyle .card__trigger:active {
        background: rgba(0, 0, 0, .025);
    }


    /* ===============================
       下部テキスト
    =============================== */

    #workstyle .under_text {
        margin-top: 52px;
        padding: 0 24px;

        font-size: 20px;
        line-height: 1.7;
        text-align: center;
    }
}

/* ===============================
   Work Support
=============================== */

#work_support{
    background: #f7f7f7;
}

#work_support .section_inner{
    padding: 72px 24px 0;
}

#work_support .section_sub_inner{
    padding-bottom: 18px;
}

#work_support .h2_subtitle{
    font-size: 14px;
}

#work_support .h2_title{
    font-size: 28px;
}

#work_support .section-lead{
    font-size: 14px;
    line-height: 2;
}

.support_list{
    margin-top: 54px;
}

.support_item{
    display: flex;
    flex-direction: column;
    margin-bottom: 54px;
}

.support_item:nth-child(even) .support_item__image,
.support_item:nth-child(even) .support_item__content{
    order: initial;
}

.support_item__image img{
    min-height: auto;
    height: auto;
    aspect-ratio: 16 / 9;
}

.support_item__content{
    padding: 34px 22px 0;
}

.support_item__title{
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1.5;
}

.support_item__catch{
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
}

.support_item__text{
    font-size: 14px;
    line-height: 2;
}



/* ===============================
   24 Promises
=============================== */

#work_support_more{
    padding: 72px 0 96px;
}

.support_more__inner{
    padding: 0 18px;
}

.support_more_list{
    grid-template-columns: repeat(2, 1fr);
    gap: 64px 24px;
    overflow: hidden;
}

.support_more_item img{
    width: 135px;
    height: 135px;
    margin-bottom: 18px;
}

.support_more_title{
    font-size: 14px;
    line-height: 1.6;
}

.support_more_text{
    font-size: 14px;
    line-height: 1.9;
}

.support_more_item:nth-child(n+5){
    display: none;
}

.support_more_list.is-open .support_more_item:nth-child(n+5){
    display: block;
    animation: supportMoreFade .7s cubic-bezier(.22,1,.36,1) both;
}

.support_more_btn{
    display: block;

    width: 160px;
    height: 48px;
    margin: 56px auto 0;

    border: none;
    background: #000;
    color: #fff;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: .06em;

    cursor: pointer;
}

.support_more_btn.is-open{
    margin-top: 64px;
}

.bg_24{
    top: -58px;
    left: -20px;
    font-size: 260px;
}

.bg_text{
    font-size: 86px;
}

.bg_promises{
    top: 410px;
    left: 10%;
}

.bg_wellbeing{
    top: 900px;
    left: -20%;
}

.bg_future{
    top: 1450px;
    left: 20%;
}

.bg_support{
    bottom: 80px;
    left: -10%;
}

@keyframes supportMoreFade{
    from{
        opacity: 0;
        transform: translateY(28px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}



/* ===============================
   FAQ
=============================== */

#faq{
    padding: 78px 0 92px;
}

.faq_inner{
    display: flex;
    flex-direction: column;
    gap: 48px;

    padding: 0 18px;
}

.faq_intro{
    position: static;
    gap: 10px;
    padding-top: 0;
}

.faq_intro .section-title{
    font-size: 28px;
    line-height: 1.5;
}

.faq_intro .section-lead{
    font-size: 16px;
    line-height: 2;
    text-align: left;
}

.faq_btn{
    width: 230px;
    height: 50px;
    font-size: 14px;
    margin-top: 20px;
}

.faq_list{
    gap: 16px;
}

.faq_question{
    padding: 22px 22px;
}

.faq_text{
    font-size: 16px;
    line-height: 1.7;
}

.faq_icon{
    width: 24px;
    height: 24px;
}

.faq_icon::before{
    font-size: 32px;
    line-height: 24px;
}

.faq_answer{
    padding-top: 0;
}

.faq_answer p{
    padding: 0 22px;
    font-size: 16px;
    line-height: 2;
}

.faq_answer.is-open p{
    padding-bottom: 24px;
}


/* ===============================
   CTA / Carousel
=============================== */

.cta_section{
    padding-top: 76px;
}

.cta_section .section_inner{
    padding: 0 24px 52px;
}

.cta_section .section-title{
    font-size: 24px;
    line-height: 1.7;
    text-align: center;
}

.cta_section .section-lead{
    font-size: 14px;
    line-height: 2;
    text-align: center;
}

.cta_buttons{
    flex-direction: column;
    gap: 18px;

    padding: 0 40px 76px;
}

.cta_btn{
    width: 100%;
    height: 74px;

    font-size: 22px;
    letter-spacing: .08em;
}

.carousel_slide{
    width: 170px;
    height: 135px;
}

.carousel_track_1{
    animation-duration: 55s;
}

.carousel_track_2{
    animation-duration: 55s;
}


/* ===============================
   Footer
=============================== */

footer{
    padding: 80px 24px 48px;
}

.footer_inner img{
    width: 90px;
    margin-bottom: 48px;
}

.footer_nav{
    width:100%;
}

.footer_nav ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 0px;

    margin:0 0 48px;
    padding:0;

    text-align:center;
}

.footer_nav li{
    list-style:none;
}

.footer_nav a{
    font-size:14px;
    line-height:1.6;
}

.footer_copy{
    padding-top:32px;
    font-size:14px;
}

    
}