@charset "UTF-8";


/*==============================================================================
1.共通事項
2.header
3.footer
4.下層
5.パンクズ
6.404ページ
7.ポップアップ
8.フッター前採用コンテンツ
==============================================================================*/

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

	1.共通事項

==============================================================================================================================================================
============================================================================================================================================================*/
html {
    font-size: 10px;
}

body {
    min-width: var(--max-width);
    font-size: var(--fontsize-base);
    font-family: var(--font-base);
    color: var(--color-font);
    letter-spacing: var(--letter-spacing);
    line-height: var(--lingh-height);
}

#bodywrap {
    overflow: hidden;
}

.inner {
    margin: 0 auto;
    width: var(--min-width);
}
.inner-pc {
    margin: 0 auto;
    width: var(--min-width);
}

/*============ リンク ============*/
a {
    font-family: var(--font-base);
    color: var(--color-sub);
    transition: 500ms;

    &:hover {
        opacity: 0.6;
        color: var(--color-sub);
    }
}

/*============ フォント ============*/
[lang="en"] {
    font-family: var(--font-en);
}

/*============ selection ============*/
::selection {
    background: var(--color-sub);
    color: var(--color-font);
}

/*============ disc_list ============*/
ul.disc_list li {
    position: relative;
    padding-left: 1em;

    &::before {
        content: "";
        width: 0.3em;
        height: 0.3em;
        position: absolute;
        left: 0;
        top: 0.8em;
        background-color: var(--font-black);
        border-radius: 100%;
    }
}


/*============ flex-wrap ============*/
.flex-wrap{
    display: flex;
}


/*============ ボタン ============*/
.button {
    width: 320px;
    max-width: 100%;
    padding: 15px 35px 17px;
    display: inline-block;
    text-align: center;
    font-size: 1.6rem;
    font-family: var(--font-sub);
    font-weight: var(--weight-bold);
    color: #fff;
    background-color: var(--color-sub);
    line-height: 1.6;
    position: relative;
    transition: 500ms;
    
    &::before,
    &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
    }
    
    &::before {
        width: 20px;
        height: 20px;
        top: 50%;
        right: 10px;
        border: 1px solid var(--color-font);
        transform: translateY(-50%);
        border-radius: 100%;
    }

    &::after {
        width: 6px;
        height: 6px;
        top: 50%;
        right: 18px;
        border-bottom: 1px solid var(--color-font);
        border-right: 1px solid var(--color-font);
        transform: translateY(-50%) rotate(-45deg);
    }

    /* ========== ボタン 左向き ========== */
    &.left {
        &::before {
            left: 10px;
            right: unset;
        }
        &::after {
            left: 18px;
            right: unset;
            transform: translateY(-50%) rotate(-225deg);
        }
    }

    &:hover {
        opacity: 0.6;
        color: #fff;
    }

    /* ========== ボタン 白 ========== */
    &.white {
        background-color: #fff;
        color: var(--color-font);
        border: 1px solid #000;
    }

    /* ========== ボタン 黒 ========== */
    &.black {
        background-color: #000;

        &::before,
        &::after {
            border-color: #fff;
        }
    }

    /* ========== ボタン 白線 ========== */
    &.white-border {
        background-color: transparent;
        border: 1px solid #fff;
        color: #fff;

        &::before,
        &::after {
            border-color: #fff;
        }
    }

    /* ========== ボタン 金 ========== */
    &.gold {
        background-color: var(--color-sub);
        color: #000;

        &::before,
        &::after {
            border-color: #000;
        }
    }

    /* ========== ボタン 別窓 ========== */
    &.window {
        &::before {
            content: none;
        }
        &::after {
            right: 20px !important;
            width: 10px;
            height: 10px;
            background-color: transparent;
            background-image: url(../1_img/base/icon-window.svg);
            clip-path: unset;
            border: none;
            transform: translateY(-50%);
        }

        /* ========== ボタン 別窓 白 ========== */
        &.window-white::after {
            background-image: url(../1_img/base/icon-window-white.svg);
        }
    }
}

@media all and (min-width: 769px) {
    &.button {
        padding: 20px 0;
        line-height: 1;
    }
}

/*================================    inner内に入れても画面100%にする   ================================*/
.inner-100vw {
    width: 100vw;
    transform: translateX(calc((-100vw + var(--min-width)) / 2));
}

@media all and (max-width: 980px) and (min-width: 769px) {

    /* max-widthの値はvar(--min-width)と同じ */
    .inner-100vw {
        width: 100%;
        transform: translateX(0);
    }
}

@media all and (max-width: 768px) {
    .inner-100vw {
        width: calc(100% + 40px);
        transform: translateX(-20px);
    }
}

/*================================    clearfix   ================================*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*================================    表示・非表示   ================================*/
@media all and (min-width: 769px) {
    .only-sp {
        display: none !important;
    }
}

@media all and (max-width: 768px) {
    .only-pc {
        display: none !important;
    }
}

/*================================    pc   ================================*/
@media all and (min-width: 769px) {
    body{
        padding-top: 75px;
    }
}
/*================================    スマホ   ================================*/
@media all and (max-width: 768px) {
    body {
        min-width: auto;
    }

    .inner {
        margin: auto;
        padding: 0 20px;
        width: auto;
    }
    .inner-pc {
        margin: auto;
        padding: 0;
        width: auto;
    }
}

/*================================    スライダーのチラ見え防止   ================================*/
.slider {
	visibility: hidden;
	opacity: 0;
}
.slider.slick-initialized{
	visibility: visible;
	opacity: 1;
	transition: opacity 0.3s ease;
}

/*================================    カルーセルのチラ見え防止   ================================*/
.carousel-wrap .carousel {
    display: none;
}

/*================================    ローディングアニメーション   ================================*/
/* https://www.t-web.co.jp/blog/page-move-animation/ */
.md_transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    transition: transform 0.8s cubic-bezier(.39, .575, .565, 1) 0.8s;
    /* ここの最後の0.8sを増減するとアニメーションの開始タイミングを変更できます */
    z-index: 999998;
}
.md_transition::before {
    background: linear-gradient(0deg, hsla(0, 77%, 66%, 0), var(--color-main) 33.33333%, var(--color-main) 66.66667%, hsla(0, 0%, 100%, 0));
    content: "";
    display: block;
    width: 100%;
    height: 300%;
    position: absolute;
    left: 0;
    top: -100%;
    z-index: 1;
}
body.is_remove .md_transition {
    -webkit-animation: maskCloseTransition .8s cubic-bezier(.47, 0, .745, .715) 0s 1 forwards;
    animation: maskCloseTransition .8s cubic-bezier(.47, 0, .745, .715) 0s 1 forwards;
}
body:not(.is_fade) .md_transition {
    transform: translateY(-200%);
}
@-webkit-keyframes maskCloseTransition {
    0% {
        transform: translateY(200%);
    }
    to {
        transform: translate(0);
    }
}
@keyframes maskCloseTransition {
    0% {
        transform: translateY(200%);
    }
    to {
        transform: translate(0);
    }
}
/* ========== ローディングのアイコンの設定 ========== */
.md_icon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: url(../1_img/base/logo_white.svg) no-repeat center / 350px auto;
    transition: 800ms;
    z-index: 999998;
    pointer-events: none;
}
body:not(.is_fade) .md_icon {
    opacity: 0;
}
body.is_remove .md_icon {
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(.39, .575, .565, 1) 0.8s;
}
@media all and (max-width: 768px) {
    .md_icon {
        background-size: 250px auto;
    }
}

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

	2.header

==============================================================================================================================================================
============================================================================================================================================================*/
@media (min-width: 769px) {
    header {
        width: 100%;
        height: 75px;
        position: fixed;
        top: 0;
        left: 0;
        transition: 500ms;
        z-index: 9999;
        background-color: #fff;
        box-shadow: -14px 3px 14px 0px rgba(48, 48, 48, 0.1);

        & .header-inner {
            height: 100%;
            margin: 0 auto;
            padding: 0 0 0 20px;
            max-width: var(--min-width);
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            border-radius: 0 0 20px 20px;
        }
    }

    /* ========== ロゴの周り logo-wrap ========== */
    header .logo-wrap {
        display: flex;
        align-items: center;
        gap: 0 20px;

        & .logo {
            margin: 20px 0;
            width: 280px;
            aspect-ratio: 280 / 35;
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-image: url(../1_img/base/logo.svg);
            transition: 500ms;

            &:hover{
                opacity: 0.6;
            }
            
            & a {
                width: 100%;
                height: 100%;
                display: block;
                font-size: 0;
                color: transparent;
            }
        }

        & p:not(.logo) {
            display: none;
        }
    }

    /* ========== navの設定 ========== */
    header .nav-wrap {
        display: flex;
        align-items: center;

        & nav {
            height: 100%;
        }
    }

    /* ========== ベースメニュー ========== */
    header .nav-wrap nav ul.nav-menu-base {
        padding-right: 60px;
        display: flex;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        gap: 0 25px;

        &>li {
            transition: 500ms;

            &.current,
            &:hover {
                &>a {
                    color: var(--color-sub);
                }
            }

            /* === homeはsp用なので消しておく === */
            &.nav-menu-base-home {
                display: none;
            }

            &>a {
                color: var(--color-font);
                font-family: var(--font-sub);
                opacity: 1;
                transition: 500ms;

                & > span {
                    display: block;
                    text-align: center;

                    &[lang="en"] {
                        font-size: 2rem;
                        font-weight: var(--weight-bold);
                    }

                    &[lang="ja"] {
                        font-size: 1rem;
                        font-weight: var(--weight-bold);
                    }
                }
            }
        }
    }
}

@media (max-width: 900px) and (min-width: 768px) {
    header .logo-wrap .logo {
        width: 200px;
    }
    header .nav-wrap nav{
        & ul.nav-menu-base {
            gap: 0 15px;

            & >li {
                font-size: 1.2rem;
            }
        }
    }
}

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

	header スマホ

==============================================================================*/
@media all and (max-width: 768px) {
    header {
        padding: 18px 15px;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2);
        transition: 1000ms;
        z-index: 9999;
    }

    /* ========== ロゴの周り logo-wrap ========== */
    header .logo-wrap {
        display: flex;
        align-items: center;
        gap: 0 15px;
        color: #fff;

        & p:not(.logo) {
            display: none;
        }

        & .logo {
            width: 160px;
            aspect-ratio:  240 / 30;

            & a {
                width: 100%;
                height: 100%;
                display: block;
                position: relative;
                font-size: 0;
                color: transparent;
                background-size: 100% auto;
                background-repeat: no-repeat;
                background-image: url(../1_img/base/logo.svg);
                transition: 1000ms;
            }
        }
    }


    /* ========== navの設定 ========== */
    header .nav-wrap {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        transition: 800ms;
        z-index: 9999;
        background-color: var(--color-font);
        filter: drop-shadow(0px -5px 5px rgba(255, 255, 255, 0.2));
        padding: 0 10px;

        &::before {
            content: "";
            width: 85px;
            height: 21px;
            position: absolute;
            left: 50%;
            top: -21px;
            background: url(../1_img/base/deco-menu.svg);
            transform: translateX(-50%);
            filter: drop-shadow(0px -3px 2px rgba(255, 255, 255, 0.2));
        }
    }

    /* ========== ベースメニュー ========== */
    header nav ul.nav-menu-base {
        display: flex;
        justify-content: space-around;

        /* crttentなしの設定 */
        &>li {
            width: calc(100% / 5);

            &>a {
                padding-top: 30px;
                padding-bottom: 5px;
                display: block;
                position: relative;
                font-size: 1rem;
                letter-spacing: 0.15em;
                text-align: center;
                background-size: 20px auto;
                background-position: top 9px center;
                background-repeat: no-repeat;
                color: #fff;
                font-family: var(--font-sub);

                & > span {
                    display: block;
                }
            }

            &.about a {
                background-image: url(../1_img/base/menu-about.svg);
            }

            &.works a {
                background-image: url(../1_img/base/menu-works.svg);
            }

            &.service a {
                background-image: url(../1_img/base/menu-service.svg);
            }

            &.contact a {
                background-image: url(../1_img/base/menu-contact.svg);
            }
        }

        /* crttent時の設定 */
        &>li.current {
            &>a {
                color: var(--color-sub);
            }

            &.about a {
                background-image: url(../1_img/base/menu-about_on.svg);
            }

            &.works a {
                background-image: url(../1_img/base/menu-works_on.svg);
            }

            &.service a {
                background-image: url(../1_img/base/menu-service_on.svg);
            }

            &.contact a {
                background-image: url(../1_img/base/menu-contact_on.svg);
            }
        }

        /* homeのアイコン */
        &>li.nav-menu-base-home>a::before {
            content: "";
            position: absolute;
            width: 34px;
            height: 34px;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            background-image: url(../1_img/base/menu-home.svg);
            background-size: 100% auto;
        }
    }
}

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

	3.footer

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

/*================================    footer   ================================*/
footer {
    margin-top: 50px;
}

#to_top{
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid #333;
    background-color: #fff;
    z-index: 999;
    display: none;

    &::after {
        content: "";
        width: 15px;
        height: 15px;
        position: absolute;
        top: 27px;
        right: 17px;
        border-bottom: 1px solid var(--color-font);
        border-right: 1px solid var(--color-font);
        transform: translateY(-50%) rotate(-135deg);
    }
}

/*================================    footer-content   ================================*/
footer .footer-content {
    background-color: #333333;
    padding-top: 40px;
    padding-bottom: 90px;
    color: #fff;

    & .inner{
        display: flex;
        flex-direction: column;
    }
}

/*============= left ==============*/
footer .footer-content .footer-content-left {
    max-width: 100%;
    text-align: center;

    /* h2 */
    & .footer-content-left-h2 {
        margin-bottom: 20px;

        & img {
            width: 240px;
        }

        & span {
            display: none;
        }
    }

    & address {
        font-size: 1.4rem;
    }

    & .footer-content-left-info {
        margin-top: 10px;
        font-size: 1.2rem;

        & dl {
            display: flex;
            justify-content: center;
        }
        & a{
            color: #fff;
        }

        & .tel{
            font-size: 1.6rem;
            font-weight: var(--weight-bold);
        }
    }
}

/*============= right ==============*/
footer .footer-content-right{
    margin-top: 20px;

    & iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
    }
}


/*================================   copyright   ================================*/
footer #copyright {
    margin-top: 30px;
    text-align: center;
}


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

	footer PC

===========================================================================================================================================================*/
@media all and (min-width: 769px) {

    /*================================    footer   ================================*/
    footer {
        margin-top: 110px;
    }

    #to_top{
        display: block;
    }

    /*================================    footer-content   ================================*/
    footer .footer-content {
        padding-top: 70px;
        padding-bottom: 50px;

        & .inner{
            width: 800px;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
    }

    /*============= left ==============*/
    footer .footer-content .footer-content-left {
        width: 300px;
        text-align: left;

        /* h2 */
        & .footer-content-left-h2 {
            margin-bottom: 20px;

            & img {
                width: 200px;
            }
        }

        /* 住所 */
        & address {
            font-size: 1.6rem;
        }

        /* 情報 */
        & .footer-content-left-info {
            font-size: 1.4rem;

            & dl {
                justify-content: left;
            }

            & .tel{
                font-size: 1.8rem;
            }
        }
    }


    /*============= right ==============*/
    footer .footer-content-right {
        margin-top: 0;
        width: calc(100% - 300px);
    }

    /*================================   copyright   ================================*/
    footer #copyright {
        margin-top: 50px;
        width: 100%;
    }
}


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

	4.下層

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

.safari #title {
    & .title-content{
        transform: translateX(-50%);
    }
}

/*================================   下層 title   ================================*/
#title {
    margin-top: 55px;
    padding: 30px;
    min-height: 220px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: relative;
    text-align: left;
    background-color: #fff;
    background-size: cover;
    background-position: center;

    & .inner{
        padding: 0;
        margin: 0;
    }

    & .title-content{
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        writing-mode: vertical-rl;
    }
    

    & span {
        color: #fff;
        font-weight: var(--weight-bold);

        &[lang="ja"] {
            margin-top: 0px;
            font-size: 2rem;
            font-family: var(--font-sub);
            letter-spacing: 0.2em;
            line-height: 1.4;
        }

        &[lang="en"] {
            font-size: 1.2rem;
            letter-spacing: 0.2em;
            font-family: var(--font-sub);
        }
    }

    &.en{
        & .title-content{
            writing-mode: horizontal-tb;
        }
        & span{
            &[lang="en"] {
                margin-top: 0px;
                font-size: 2rem;
                font-family: var(--font-sub);
                letter-spacing: 0.2em;
                line-height: 1.4;
            }
        }
    }
}

/*================================   下層 title-lv2   ================================*/
.title-lv2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: var(--weight-bold);

    & span{
        display: block;
        font-family: var(--font-sub);

        &[lang="en"]{
            font-size: 1.2rem;
        }
    }
}

/*================================   下層 title-lv3   ================================*/
.title-lv3{
    text-align: center;
    font-size: 1.8rem;
    font-weight: var(--weight-bold);
    font-family: var(--font-sub);
    
    & span{
        min-width: 170px;
        padding: 0 10px;
        display: inline-block;
        border-bottom: 1px solid var(--color-font);
    }
}

/*================================   下層 content   ================================*/
.underlayer .content {
    padding: 50px 0;

    &.no-pankuzu{
        margin-top: calc(-1.76rem - 12px);
    }

    & >section+section {
        margin-top: 100px;
    }
}

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

	下層 PC

==========================================================================================================================================================*/
@media all and (min-width: 769px) {
    .safari #title {
        & .title-content{
            transform: translateX(0%);
        }
    }
    /*================================   title   ================================*/
    #title {
        margin-top: 0px;
        padding: 40px 0;
        min-height: 300px;

        & .inner{
            padding: 0 20px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            align-items: center;
            justify-content: start;
        }

        & span {
            &[lang="ja"] {
                font-size: 3rem;
            }

            &[lang="en"] {
                font-size: 1.4rem;
            }
        }

        &.en{
            & span{
                &[lang="en"] {
                    font-size: 3rem;
                }
            }
        }

        & .inner {
            width: var(--min-width);
        }
    }
    
    /*================================   下層 title-lv2   ================================*/
    .title-lv2 {
        font-size: 3rem;

        & span{

            &[lang="en"]{
                font-size: 1.5rem;
            }
        }
    }

    /*================================   下層 content   ================================*/
    .underlayer .content {
        padding: 100px 0;

        &>section+section {
            margin-top: 100px;
        }
    }
}

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

	5.パンクズ

==============================================================================================================================================================
============================================================================================================================================================*/
#pankuzu {
    padding-top: 10px;

    & ul {
        margin: auto;
        width: var(--min-width-s);
        display: flex;
        list-style: none;
        font-size: 1rem;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;

        & li {
            margin: 0;
            font-weight: 400;

            & a{
                font-family: var(--font-sub);
            }

            &:not(:first-child) {
                margin-left: 13px;
                padding-left: 22px;
                position: relative;

                &::before {
                    content: ">";
                    position: absolute;
                    font-size: 1.3rem;
                    top: 50%;
                    transform: translateY(-50%);
                    left: 0px;
                    line-height: 0;
                }
            }

            &:last-child {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                max-width: 15em;
            }
        }
    }
}


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

	6.404ページ

==============================================================================================================================================================
============================================================================================================================================================*/
#nopage {
    padding: 100px 20px;
    font-size: 1.8rem;
    text-align: center;
}

#nopage .to-top {
    margin-top: 30px;
}

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

	404ページ PC

==============================================================================*/
@media all and (min-width: 769px) {
    #nopage {
        margin: 0 auto;
        padding: 200px 0px;
        width: 980px;
        font-size: 1.8rem;
    }

    #nopage .to-top {
        margin-top: 50px;
    }
}

#nopage .btn_wrap {
    margin-top: 50px;
}



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

	7.ポップアップ

==============================================================================================================================================================
============================================================================================================================================================*/
#favorite-popup{
    max-width: 90%;
    max-height: calc(100svh - 80px);
    width: 800px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;

    & .favorite-title{
        text-align: center;
        
        & span{
            display: block;

            &[lang="ja"]{
                font-size: 1.6rem;
                font-family: var(--font-sub);
            }

            &[lang="en"]{
                margin-top: 5px;
                font-size: 1rem;
            }
        }
    }

    & .favorite-list{
        margin-top: 30px;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        overflow-x: hidden;
        overflow-y: auto;
        border: 1px solid var(--color-font);

        & .favorite-item{
            width: calc(100% / 3);
            aspect-ratio: 18 / 11;
            position: relative;
            overflow: hidden;

            & .favorite-item_img img{
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
                object-fit: cover;
                object-position: center;
                transition: 800ms;
            }
            & .favorite-item_img:hover img{
                scale: 1.2;
            }
        }

        & .favorite-none{
            padding: 20px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 1.6rem;
            font-family: var(--font-sub);
        }
        
    }
}
@media all and (min-width: 769px) {
    #favorite-popup{
        max-height: calc(100% - 200px);
        height: 600px;

        & .favorite-title{
            
            & span{

                &[lang="ja"]{
                    font-size: 2.2rem;
                }

                &[lang="en"]{
                    margin-top: 10px;
                    font-size: 1.2rem;
                }
            }
        }

        & .favorite-list{
            & .favorite-item{
                width: calc(100% / 4);
            }

            & .favorite-none{
                font-size: 1.4rem;
            }
            
        }
    }
}


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

	8.採用 recruit

==============================================================================================================================================================
============================================================================================================================================================*/
#footer-recruit{
    padding: 0 0 30px;
    position: relative;
    background: url(../1_img/base/footer-recruit_bg_sp.jpg) no-repeat center / cover;
    
    &::before{
        content:"";
        width: 100%;
        height: 80%;
        position: absolute;
        left: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.8) 80%);
    }

    & .inner{
        position: relative;
        padding: 0 40px;
        z-index: 2;
    }

    & h2{
        & > span{
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-self: center;
            writing-mode: vertical-rl;
            text-orientation: upright;
            gap: 10px;

            & span{
                padding: 10px 2px;
                display: inline-block;
                position: relative;
                background-color: #fff;
                font-family: var(--font-sub);
                font-weight: var(--weight-bold);
                font-size: 1.8rem;
                transform: translateY(-40px);
                opacity: 0;
                transition: 1500ms;

                /* アニメーション用 */
                &::after{
                    content: "";
                    display: block;
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    z-index: 2;
                    background-color: var(--color-main);
                    transition: 1500ms ease 500ms;
                }
                &.start{
                    opacity: 1;
                    transform: translateY(0px);

                    &.start::after{
                        height: 0;
                    }
                }
                
            }
        }
    }
    & .recruit-text{
        margin-top: 160px;
    }
    & .recruit-deco{
        position: absolute;
        top: 0px;
        left: -0.25rem;
        opacity: 0.4;
        writing-mode: vertical-rl;
        font-family: var(--font-sub);
        font-size: 3.5rem;
        letter-spacing: 0.15em;
        color: #fff;
        line-height: 1;
    }
    & .btn-wrap{
        margin-top: 20px;

        & a{
            width: 100%;
        }
    }
}
/*===========================================================================================================================================================

	採用 PC

===========================================================================================================================================================*/
@media all and (min-width: 769px) {
    #footer-recruit{
        position: relative;
        background: url(../1_img/base/footer-recruit_bg_pc.jpg) no-repeat center / cover;

        & .inner{
            position: static;
            padding: 0;
        }

        & h2{
            display: flex;
            justify-content: center;
            
            & > span{

                & span{
                    font-size: 2.2rem;
                }
            }
        }
        & .recruit-text{
            margin-top: 160px;
            position: relative;
            z-index: 2;
            font-size: 1.6rem;
            text-align: center;
        }
        & .recruit-deco{
            top: 0;
            font-size: 4rem;
        }
        & .btn-wrap{
            margin-top: 40px;
            text-align: center;

            & a{
                width: 280px;
            }
        }
    }
}



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

	footerスライダー

==============================================================================================================================================================
============================================================================================================================================================*/
.footer-carousel_wrap{
    margin-top: 40px;
    margin-bottom: 40px;

    & .footer-carousel{
        gap: 20px;

        & img{
            width: 300px;
        }
    }

    & .fukidashi_wrap{
        margin-top: 40px;

        & .fukidashi{
            text-align: center;

            & span{
                padding: 0 25px;
                display: inline-block;
                position: relative;
                font-family: var(--font-sub);
                font-size: 1.8rem;
                font-weight: var(--weight-bold);

                &::before,&::after{
                    content: "";
                    position: absolute;
                    bottom: 5px;
                    width: 23px;
                    height: 2px;
                    background:
                        radial-gradient(
                        circle at 1px 1px,
                        var(--color-font) 0 1px,
                        transparent 1px
                        );
                    background-size: 4px 2px; /* 間隔 */
                    background-repeat: repeat-x;
                }

                &::before{
                    left: 0;
                    transform: rotate(55deg);
                }

                &::after{
                    right: 0;
                    transform: rotate(125deg);
                }
            }
        }

        & .btn-wrap{
            margin-top: 20px;
            padding: 0 20px;

            & a{
                width: 100%;
            }
        }
    }
}
/*===========================================================================================================================================================

	footerスライダー

===========================================================================================================================================================*/
@media all and (min-width: 769px) {
    .footer-carousel_wrap{
        margin-top: 60px;
        margin-bottom: 60px;

        & .footer-carousel{
            gap: 20px;

            & img{
                width: 360px;
            }
        }

        & .fukidashi_wrap{
            margin-top: 60px;

            & .fukidashi{
                & span{
                    padding: 0 25px;
                    font-size: 2rem;
                }
            }

            & .btn-wrap{
                padding: 0;
                text-align: center;

                & a{
                    width: 280px;
                }
            }
        }
    }
}



/*============= お問い合わせとお気に入り =============*/
.fix-button {
    display: flex;
    position: absolute;
    right: 15px;
    top: 10px;
    transition: 800ms;
    z-index: 9999;
    gap: 0 10px;

    & a,
    & button{
        width: 35px;
        height: 35px;
        display: block;
        background-position: center;
        background-size: 100% auto;
        background-repeat: no-repeat;
        font-size: 0;
        color: transparent;
    }

    /* リンク */
    & a{
        &.en{
            background-image: url(../1_img/base/icon-en.svg);

            &.current{
                background-image: url(../1_img/base/icon-en_on.svg);
            }
        }
        & span{
            display: none;
            font-size: 0;
            color: transparent;
        }
    }

    /* お気に入りボタン */
    & button{
        background-image: url(../1_img/base/icon-favorite_gold.svg);
        position: relative;
        cursor: pointer;
        transition: 800ms;

        &:hover{
            opacity: 0.6;
        }
        &.on{
            background-image: url(../1_img/base/icon-favorite_on.svg);
        }
        & span{
            font-size: 1.2rem;
            position: absolute;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100%;
            background-color: var(--color-red);
            color: #fff;
            right: -0.5em;
            bottom: -0.5em;
            line-height: 1;
            letter-spacing: -0.01em;
            font-feature-settings: "palt";
            font-family: var(--font-en);
            font-weight: var(--weight-bold);
            opacity: 1;
            transition: opacity 500ms;
            opacity: 0;
            pointer-events: none;

            &.on{
                opacity: 1;
                pointer-events: all;
            }

            &.off{
                pointer-events: none;
            }
        }
    }
}
@media all and (min-width: 769px) {
    .fix-button {
        top: 50%;
        transform: translateY(-50%);
    }
}