@charset "UTF-8";

/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
    background-color: #FBF8EB;
    /* ベージュ系 */
    overflow-x: hidden;
    font-family: "游ゴシック", sans-serif;
}


.english-title {
    font-family: 'Cabin', sans-serif;
    letter-spacing: 0.16em;
    font-size: 24px;
    font-weight: 500;
    color: #b78269;
}

.japanese-title {
    font-family: '游ゴシック', sans-serif;
    font-size: 44px;
    font-weight: bold;
    color: #b78269;
    margin-top: 24px;
    letter-spacing: 0.10em;
    /* 英語見出しとの間 */
    margin-bottom: 48px;
}


/*  初期状態（透明＆少し下に移動） */
.english-title,
.japanese-title {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/*  スクロールで表示されるときのスタイル */
.english-title.show,
.japanese-title.show {
    opacity: 1;
    transform: translateY(0);
}


.p-medium {
    font-family: '游ゴシック', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 106px;
    color: #2f0000;
    letter-spacing: 0.05em;
}

.p-medium span {
    display: block;
}


.section-border {
    width: 120%;
    /* 横幅いっぱいに広げる */
    margin-left: -10%;
    height: auto;
    margin-bottom: 64px;
}


.btn-more {
    display: inline-block;
    margin-top: 80px;
    /* 本文とボタンの余白 */
    width: 296px;
    height: 60px;
    background-color: #e58e5b;
    /* オレンジ系 */
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    font-family: "游ゴシック", sans-serif;
    font-weight: bold;
    font-size: 18px;
    transition: 0.7s ease-in-out;
}

.btn-more:hover {
    border: #e58e5b solid 2px;
    color: #e58e5b;
    background-color: #fff;
}

.btn-more::after {
    content: "";
    display: inline-block;
    width: 7px;
    /* 矢印画像のサイズ */
    height: 11px;
    background-image: url("../images/btn-arrow@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 16px;
    transition: 0.7s ease-in-out;
}

.btn-more:hover::after {
    content: "";
    display: inline-block;
    width: 7px;
    /* 矢印画像のサイズ */
    height: 11px;
    background-image: url("../images/2x/btn-arrow-hover@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 16px;
    /* テキストと矢印の間隔 */
}


.sp-only {
    display: none;
}


@media screen and (max-width:640px) {
    .section-inner {
        padding: 0 15px;
    }

    /* pcとspで表示を切り替えたい時のCSS② */
    .pc-only {
        /* pc時に非表示 */
        display: none;
    }

    .sp-only {
        /* pc時に表示 */
        display: block;
    }

    .p-medium {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 48px;
        color: #2f0000;
        letter-spacing: 0.05em;
        text-align: left;

    }

    .p-medium span {
        display: inline;
    }

    .english-title {
        font-family: 'Cabin', sans-serif;
        letter-spacing: 0.16em;
        font-size: 16px;
        font-weight: 500;
        color: #b78269;
    }

    .japanese-title {
        font-family: '游ゴシック', sans-serif;
        font-size: 24px;
        font-weight: bold;
        color: #b78269;
        margin-top: 16px;
        letter-spacing: 0.10em;
        /* 英語見出しとの間 */
        margin-bottom: 24px;
    }

    .btn-more {
        width: 240px;
        margin: 48px 0 32px;
        font-size: 16px;
    }

    .btn-more::after:active {
        content: "";
        display: inline-block;
        width: 7px;
        /* 矢印画像のサイズ */
        height: 11px;
        background-image: url("../images/2x/btn-arrow-hover@2x.png");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 16px;
        /* テキストと矢印の間隔 */
    }

    .btn-more:active {
        border: #e58e5b solid 2px;
        color: #e58e5b;
        background-color: #fff;
    }
}


/** -----------------------------------------------
PC :  画面の横幅が641px以上
------------------------------------------------**/
.header {
    background-color: #FBF8EB;
    height: 100px;
    align-items: center;
    width: 100%;
    display: flex;
    padding: 0 40px;
    position: fixed;
    top: 0;
    z-index: 1;
    justify-content: space-between;
}

/* ロゴ */
.logo {
    display: flex;
    align-items: center;
    /* 縦方向の中央揃え */
}


.logo img {
    height: 57px;
    width: 242px;
    align-items: center;
}

.gnav-pc-wrap {
    display: flex;
    align-items: center;
}

.gnav-pc {
    display: flex;
}

/* ナビゲーション */
ul.gnav-pc li {
    display: flex;
    list-style: none;
    margin-right: 24px;
    /* メニュー間の余白 */
}

ul.gnav-pc a {
    font-family: 'cabin', sans-serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: #2f0000;
    padding-bottom: 4px;
    transition: opacity 0.2s ease-in-out;
    position: relative;
}

.gnav-pc a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e58e5b;
    /* 下線の色 */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    border-radius: 20px;
}


.gnav-pc a:hover {
    color: #e58e5b;

}

.gnav-pc a:hover::after {
    width: 100%;
    left: 0;

}

/* ENTRY ボタン */
header .btn-entry {
    display: flex;
    width: 190px;
    height: 70px;
    background-color: #e58e5b;
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    line-height: 70px;
    letter-spacing: 0.08em;
    border-radius: 35px;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    transition: 0.7s ease-in-out;
}

.btn-entry::after {
    content: "";
    display: inline-block;
    width: 15px;
    /* 矢印画像のサイズ */
    height: 18px;
    background-image: url("../images/btn-arrow@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 16px;
}

.btn-entry:hover {
    border: #e58e5b solid 2px;
    color: #e58e5b;
    background-color: #fff;
}

.btn-entry:hover:after {
    content: "";
    display: inline-block;
    width: 15px;
    /* 矢印画像のサイズ */
    height: 18px;
    background-image: url("../images/2x/btn-arrow-hover@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 16px;
    transition: 0.7s ease-in-out;
}



.gnav-sp-wrap {
    display: none;
}

/** -----------------------------------------------
SP :  画面の横幅が640px以下
------------------------------------------------**/

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

    .header {
        height: 70px;
        padding: 0;
    }

    .logo {
        /* sp時ロゴの大きさを横幅180pxに */
        width: 180px;
        /* 左余白24px */
        padding-left: 24px;
        padding: 0;
    }


    .header .logo img {
        width: 100%;
        height: 50px;
        padding-left: 16px;
        padding-top: 10px;
    }

    nav.gnav-pc-wrap {
        /* sp時、pc用のメニューは非表示にする */
        display: none;
    }

    header .btn-entry {
        display: none;
    }


    #menu-button {
        /* sp時ハンバーガーメニューを表示 */
        display: block;
        /* ハンバーガーメニューのクリックエリア 横60px,高さ60pxに指定 */
        width: 60px;
        height: 60px;
        /* paddingでクリックエリアに内側余白を作る */
        padding: 18px 16px;


    }

    .menu-button-inner {
        /* 親要素#menu-buttonの大きさいっぱいに要素を広げる */
        display: block;
        width: 100%;
        height: 100%;
        /* span（三本の線）の配置基準とするため、position:relative;を指定 */
        position: relative;
    }

    .menu-button-inner span {
        display: block;
        /* 高さ3px 横幅100%の矩形にする */
        width: 100%;
        height: 3px;
        /* 矩形の背景色を#333333に */
        background: #e58e5b;
        /* positionで配置したい要素なので、absoluteを指定 */
        position: absolute;
    }

    .menu-button-inner span:nth-of-type(1) {
        /* ハンバーガーボタン一番目の線 */
        top: 0;
    }

    .menu-button-inner span:nth-of-type(2) {
        /* ハンバーガーボタン二番目の線（上下中央に配置） */
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .menu-button-inner span:nth-of-type(3) {
        /* ハンバーガーボタン三番目の線 */
        bottom: 0;
    }

    /* ハンバーガーボタンをクリックしたら×にする */
    .close span:nth-of-type(1) {
        width: 100%;
        /* 線を45度右下に傾ける */
        transform: rotate(45deg);
        /* 位置の微調整 */
        top: 10px;
    }

    .close span:nth-of-type(2) {
        /* 2番目の線は見えなくする */
        opacity: 0;
    }

    .close span:nth-of-type(3) {
        width: 100%;
        /* 線を45度右上に傾ける */
        transform: rotate(-45deg);
        /* 位置の微調整 */
        bottom: 11px;
    }


    /* SP用ハンバーガーメニュー中身のスタイル */
    .gnav-sp-wrap {
        position: relative;
        /* JSで表示させるので、最初は非表示にしておく */
        /* 背景色を指定 */
        background-color: #ffffff;
        /* 背景色を画面いっぱいに広がるようにする */
        width: 100vw;
        height: 100vh;
        /* スクロールしないように画面に固定 */
        position: fixed;
        /* 他の要素よりも重なり順を上にする */
        z-index: 100;
        /* メニューの位置を調整するため、上部に内側余白をつける */
        padding-top: 120px;
        opacity: 0.8;
        margin-top: 70px;
    }

    ul.gnav-sp {
        position: relative;
    }


    ul.gnav-sp::before {
        content: "";
        position: absolute;
        top: -120px;
        width: 464px;
        /* 波の大きさを調整 */
        height: 169px;
        /* 波の高さを調整 */
        background-image: url('../images/2x/2x/sp_menu_wave_top@2x.png');
        /* 波の画像を指定 */
        background-size: cover;
        left: -96px;
        transform: rotate(180deg);
    }

    ul.gnav-sp::after {
        content: "";
        position: absolute;
        bottom: -74px;
        width: 438px;
        /* 波の大きさを調整 */
        height: 119px;
        /* 波の高さを調整 */
        background-image: url('../images/2x/2x/sp_menu_wave_bottom@2x.png');
        /* 波の画像を指定 */
        background-size: cover;
    }




    ul.gnav-sp li {
        /* 左右中央に配置 */
        text-align: center;
        /* 下側に余白30px */
        margin-bottom: 30px;
    }

    ul.gnav-sp li a {
        /* ハンバーガー内の各メニューの文字スタイルを指定 */
        font-family: 'cabin', sans-serif;
        font-size: 20px;
        letter-spacing: 0.16em;
        color: #2f0000;
        font-weight: bold;
        text-decoration: none;
    }

    .btn-entry-sp {
        display: flex;
        align-items: center;
        width: 100%;
        height: 48px;
        color: #fff;
        font-weight: bold;
        background: #e58e5b;
        font-size: 20px;
        letter-spacing: 0.05em;
        line-height: 50px;
        margin: 0 auto;
        padding: 0 10px;
        position: relative;
        z-index: 999;
        position: fixed;
        bottom: 0;
        text-decoration: none;
        justify-content: center;
    }

    .btn-entry-sp::after {
        content: "";
        display: inline-block;
        width: 12px;
        /* 矢印画像のサイズ */
        height: 16px;
        background-image: url("../images/btn-arrow@2x.png");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 16px;
        /* テキストと矢印の間隔 */
    }

    .btn-entry-sp:active {
        display: flex;
        align-items: center;
        width: 100%;
        height: 48px;
        color: #e58e5b;
        font-weight: bold;
        background: #fff;
        border: #e58e5b solid 2px;
        font-size: 20px;
        letter-spacing: 0.05em;
        line-height: 50px;
        margin: 0 auto;
        padding: 0 10px;
        position: relative;
        z-index: 999;
        position: fixed;
        bottom: 0;
        text-decoration: none;
        justify-content: center;
    }

    .btn-entry-sp:active:after {
        content: "";
        display: inline-block;
        width: 12px;
        /* 矢印画像のサイズ */
        height: 16px;
        background-image: url("../images/2x/btn-arrow-hover@2x.png");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 16px;
        /* テキストと矢印の間隔 */
    }




}

/** -----------------------------------------------
PC :  MAIN VISUAL メインビジュアル
------------------------------------------------**/

.main-visual {
    width: 100%;
    height: calc(120vh - 100px);
    /* 好きな高さに調整してね */
    position: relative;
    overflow: hidden;
}

.bg-image {
    position: relative;

    width: 100%;
    height: calc(120vh - 100px);
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0;
    animation: fade 24s ease-in-out infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 6s;
}

.slide:nth-child(3) {
    animation-delay: 12s;
}

.slide:nth-child(4) {
    animation-delay: 18s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/*  メインタイトル（背景画像に変更） */
.main-text {
    position: absolute;
    bottom: 12%;
    left: 10px;
    width: 385px;
    height: 240px;
    /* 適宜調整 */
    background-image: url("../images/2x/fv_maintitle_0314@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
}


.carousel-wrapper {
    width: 100%;
    position: relative;
    animation: slide 40s linear infinite;
}

.company-carousel {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    /* ボタンとカルーセルの間 */
}

.carousel-item {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
        /* 最初の位置 */
    }

    100% {
        transform: translateX(-100%);
        /* すべての画像が左にスライドして消える */
    }
}

/** -----------------------------------------------
SP :  メインビジュアル
------------------------------------------------**/

@media screen and (max-width:640px) {
    .main-visual {
        width: 100vw;
        height: 100vh;
        position: relative;
        overflow: hidden;
        margin-top: -50px;
    }


    .bg-image {
        height: calc(100vh - 70px);
        margin-top: 70px;
    }




    .main-text {
        width: 254px;
        height: 237px;
        bottom: -26px;
        left: 15px;
    }








}



/** -----------------------------------------------
PC :  COMPANY 私たちについて
------------------------------------------------**/

/*  セクション全体 */

.section-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.company {
    padding-top: 96px;
    /* メインビジュアルとの余白 */
    padding-bottom: 64px;
    /* 波線画像との余白 */
    text-align: center;
    position: relative;
}

.background-moji {
    position: absolute;
    right: 0;
    opacity: 0.7;
    width: 177px;
    top: 0;

}


/* ✅ 左上の大きな円 */
.whitecircle-lg {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 250px;
    height: auto;
}

/* ✅ 右下の小さな円 */
.whitecircle-sm {
    position: absolute;
    bottom: 375px;
    /* 初期値（調整しやすく） */
    right: 175px;
    width: 150px;
    /* 適宜調整 */
    height: auto;
}

/* ✅ 背景の白い円 */
.background-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    /* 適宜調整 */
    height: 600px;
    z-index: -1;
    /* 背景として配置 */
}

/* ✅ 本文 */
.company-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.company-text {
    font-family: '游ゴシック', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    color: #5c4635;
    margin-bottom: 24px;
    /* 段落間の余白 */
}


/* ✅+ カルーセル（写真） */
.company-carousel {
    display: flex;
    justify-content: center;
    gap: 48px;
    /* 指定通り */
    margin-top: 64px;
    /* ボタンとカルーセルの間 */
}

.carousel-item {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

@media screen and (max-width:640px) {
    .company-text {
        font-size: 14px;
        text-align: left;
        margin: 16px;
    }

    .carousel-item {
        width: 170px;
        height: auto;
        border-radius: 8px;
    }

    .background-circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        /* 適宜調整 */
        height: 600px;
        z-index: -1;
        /* 背景として配置 */
    }

    .background-moji {
        display: none;
    }

    .background-moji-sp{
        position: absolute;
        bottom: 0;
        left: -90px;
        width: 490px;
    }
    
    

}





/** -----------------------------------------------
PC :  WORKS 事業内容
------------------------------------------------**/


.works {
    position: relative;
}

.works .whitecircle-lg {
    position: absolute;
    top: 150px;
    left: 70%;
    width: 250px;
    height: auto;
}

.works .whitecircle-sm {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 150px;
    height: auto;
}

.works .whitecircle-lg2 {
    position: absolute;
    bottom: 20px;
    left: 80%;
    width: 250px;
    height: auto;
}

.works-item1,
.works-item2 {
    display: flex;
    /* 横並び */
    align-items: stretch;
    gap: 0px;
    /* 写真と文字の間の余白 */
    background-color: #ffffff;
    border-radius: 55px 55px 55px 55px;
    margin-bottom: 80px;
    height: 265px;
    width: 880px;
}

.works-item3 {
    flex-direction: row-reverse;
    display: flex;
    /* 横並び */
    align-items: stretch;
    gap: 0px;
    /* 写真と文字の間の余白 */
    background-color: #ffffff;
    border-radius: 55px 55px 55px 55px;
    height: 265px;
    width: 880px;
}


/*  写真エリア */
.works-pic1,
.works-pic3 {
    width: 440px;
    height: 265px;
    border-top-left-radius: 55px;
    /* 左上のみ角丸 */
    border-bottom-left-radius: 55px;
    /* 左下のみ角丸 */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-position: cover;
}

.works-pic2 {
    width: 440px;
    height: 265px;
    background-position: cover;
}





/*  文字エリア（親） */
.works-text_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-top-right-radius: 55px;
    /* 右上角丸 */
    border-bottom-right-radius: 55px;
    /* 右下角丸 */
    align-items: center;
    /* 縦方向（垂直）の中央揃え */
    justify-content: center;
    /*横方向（水平方向）の中央揃え */
}

/*  文字コンテンツ */
.works-text {
    position: relative;
    z-index: 0;
    /* 背景より前に表示 */
    padding: 20px;
    align-items: left;

}

.works-title-container {
    display: flex;
    align-items: center;
    /* 下揃え */
    gap: 8px;
    margin-bottom: 24px;
}


/* ✅ 数字のスタイル */
.works-number {
    font-family: 'Cabin', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #ea9459;
}

/* ✅ タイトル */

.works-title {
    font-size: 32px;
    font-weight: 500;
    color: #b78269;
    font-family: "游ゴシック", sans-serif;
}

/* ✅ 説明文 */
.works-description {
    font-size: 16px;
    line-height: 1.6;
    color: #170000;
    text-align: left;
    font-family: "游ゴシック", sans-serif;
}


/** -----------------------------------------------
SP :  WORKS 事業内容
------------------------------------------------**/



@media screen and (max-width:640px) {
    .works .whitecircle-lg {
        position: absolute;
        top: 100px;
        left: 70%;
        width: 100px;
        height: auto;
    }

    .works .whitecircle-sm {
        position: absolute;
        top: 30px;
        left: 6%;
        width: 80px;
        height: auto;
    }

    .works-item1,
    .works-item2,
    .works-item3 {
        display: flex;
        flex-direction: column;
        /* 横並びを解除し、縦並びに変更 */
        align-items: center;
        height: auto;
        /* 高さを自動調整 */
        width: 100%;
        /* 横幅を親要素いっぱいに */
        border-radius: 55px;
        /* 全体に角丸 */
    }





    .works-pic1,
    .works-pic2,
    .works-pic3 {
        width: 100%;
        height: auto;
        /* 高さを自動調整 */
        border-radius: 55px 55px 0 0;
        /* 上部の角丸を適用 */
    }

    .works-text {
        padding: 0;
    }

    .works-text_wrapper {
        border-radius: 0 0 55px 55px;
        /* 下部の角丸を適用 */
        text-align: center;
        /* テキストを中央揃え */
        margin: 0 auto;
    }

    .works-title-container {
        flex-direction: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        gap: 8px;
        margin-bottom: 8px;
    }

    .works-number {
        font-size: 24px;
    }

    .works-title {
        font-size: 24px;
    }

    .works-description {
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
    }


    .whitecircle-sm {
        position: absolute;
        top: -37px;
        right: 5px;
        width: 150px;
        height: auto;
    }

}






/** -----------------------------------------------
PC :  MEMBER メンバー紹介
------------------------------------------------**/
.member {
    position: relative;
}

.member .whitecircle-lg {
    position: absolute;
    top: 115px;
    left: 77%;
    width: 205px;
    height: auto;
}

.member .whitecircle-sm {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 150px;
    height: auto;
}

.member .whitecircle-sm2 {
    position: absolute;
    top: 350px;
    left: 10%;
    width: 150px;
    height: auto;
}



.member .whitecircle-lg2 {
    position: absolute;
    bottom: 20px;
    left: 85%;
    width: 120px;
    height: auto;
}


.member-pics-gr1 {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.member-pics-gr2 {
    display: flex;
    gap: 40px;
}

.member-pics {
    width: 460px;
    height: 343px;
    transition: 0.3s ease-in-out;
}

.member-pics:hover {
    opacity: 0.7;
    cursor: pointer;
}

/** -----------------------------------------------
SP :  MEMBER 社員紹介
------------------------------------------------**/

@media screen and (max-width:640px) {
    .member-carousel {
        max-width: 80%;
        margin: 0 auto;

    }

    .member-pics {
        width: 100%;
        border-radius: 20px;
        object-fit: contain;
    }

    .member .whitecircle-lg {
        position: absolute;
        top: 115px;
        left: 0%;
        width: 100px;
        height: auto;
    }

    .member .whitecircle-lg2 {
        position: absolute;
        top: 50px;
        left: 76%;
        width: 120px;
        height: auto;
    }

    .member .whitecircle-sm {
        display: none;
    }

    .slick-prev,
    .slick-next {
        font-size: 0;
        line-height: 0;
        position: absolute;
        top: 50%;
        display: block;
        width: 40px;
        /* 矢印の幅 */
        height: 40px;
        /* 矢印の高さ */
        padding: 0;
        transform: translate(0, -50%);
        cursor: pointer;
        border: none;
        outline: none;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 100;
        /* 他の要素より前に表示 */
    }

    /* 左矢印 */
    .slick-prev {
        background-image: url("../images/2x/member-arrow@2x.png") !important;
        left: -50px;
        transform: rotate(180deg);
        /* 左向きに反転 */
        background-size: cover !important;
        width: 20px !important;
        height: 20px !important;
    }

    /* 右矢印 */
    .slick-next {
        background-image: url("../images/2x/member_arrow_reverse@2x.png") !important;
        right: -50px;
        background-size: cover !important;
        width: 20px !important;
        height: 20px !important;

    }

    .slick-prev:before,
    .slick-next:before {
        display: none !important;
        content: "";
        /* Slick.js のデフォルト矢印を消す */
    }

}




/** -----------------------------------------------
PC :  ENVIRONMENT 働く環境
------------------------------------------------**/
.environment {
    position: relative;
}


.environment .whitecircle-lg {
    position: absolute;
    top: 150px;
    left: 75%;
    width: 220px;
    height: auto;
}

.environment .whitecircle-sm {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 150px;
    height: auto;
}


.environment .whitecircle-lg2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 250px;
    height: auto;
}

.work-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 955px;
    background-color: white;
    border-radius: 20px;
    margin: 0 auto;
    padding: 45px 56px 40px 56px;
    gap: 56px;
}

.work-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.work-icon {
    max-width: 100%;
    max-height: 156px;
    object-fit: contain;
    margin-bottom: 16px;
}



.work-title {
    font-size: 20px;
    font-family: "游ゴシック", sans-serif;
    font-weight: bold;
    letter-spacing: 0.08em;
    color: #170000;
    margin-bottom: 8px;
}

.work-description {
    font-size: 14px;
    line-height: 1.6;
    font-family: "游ゴシック", sans-serif;
    font-weight: normal;
    color: #170000;
    flex-grow: 1;
    /* すべての本文を均等な高さにする */
}

.entry-process {
    text-align: center;
}


/** -----------------------------------------------
SP :  ENVIRONMENT 働く環境
------------------------------------------------**/
@media screen and (max-width: 640px) {
    .work-container {
        flex-direction: column;
        /* 横並びから縦並びに変更 */
        align-items: center;
        /* 中央揃え */
        gap: 32px;
        /* アイテム間の余白を適度に調整 */
        padding: 24px;
        /* 内側の余白も調整 */
    }

    .work-item {
        width: 100%;
        /* アイテムの横幅を100%に */
        text-align: center;
        /* テキストを中央揃え */
    }

    .work-icon {
        max-width: 120px;
        /* アイコンのサイズを調整 */
        max-height: auto;
    }

    .work-description {
        text-align: left;
    }

    .environment .whitecircle-lg {
        position: absolute;
        top: 50px;
        left: 0%;
        width: 80px;
        height: auto;
    }

    .environment .whitecircle-sm {
        display: none;
    }

    .environment .whitecircle-lg2 {
        top: 100px;
        left: 74%;
        width: 100px;
    }



}



/** -----------------------------------------------
PC : JOBS 募集職種
------------------------------------------------**/
.jobs {
    position: relative;
}

.jobs .whitecircle-lg {
    position: absolute;
    top: 150px;
    left: 75%;
    width: 300px;
    height: auto;
}

.jobs .whitecircle-sm {
    position: absolute;
    top: 50%;
    left: 90%;
    width: 150px;
    height: auto;
}

.jobs .whitecircle-sm2 {
    position: absolute;
    top: 350px;
    left: 10%;
    width: 200px;
    height: auto
}


.jobs .whitecircle-lg2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 250px;
    height: auto;
}


/* ✅ 職種リスト */
.job-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 80px;
}

.job-item {
    display: flex;
    /* フレックスボックスを適用 */
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    height: 91px;
    width: 303px;
    align-items: center;
    padding: 12px 24px;
    border: 3px solid #e5bf89;
    border-radius: 60px;
    font-size: 24px;
    color: #b78269;
    background: white;
    list-style: none;
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

.job-item:hover {
    background-color: #e58e5b;
    color: #ffffff;
    transition: 0.5s ease-in-out;

}

.job-item::after {
    content: "";
    display: inline-block;
    width: 12px;
    /* 矢印画像のサイズ */
    height: 16px;
    background-image: url("../images/2x/job-arrow@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 16px;
    /* テキストと矢印の間隔 */
}

.job-item:hover::after {
    filter: brightness(0) invert(1);
    transition: 0.5s ease-in-out;

}


/* ✅ エントリー後の流れ（枠） */
.process-box {
    font-family: 'Cabin', sans-serif;
    position: relative;
    background: white;
    padding: 40px;
    border: #e5bf89 2px solid;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

/* 採用フロー*/
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-bottom: 36px;
}

.section-title .line {
    display: inline-block;
    width: 28px;
    /* ← 線の長さ。調整できる */
    height: 4px;
    /* ← 線の太さ */
    background-color: #c48d69;
    border-radius: 9999px;
    /* ← 端を丸くする魔法 */
}

.section-title .text {
    color: #c48d69;
    font-size: 20px;
    font-weight: bold;
}




/* ✅ ステップのリスト */
.process-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

/* ✅ 各ステップ */
.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;

}

.process-item img {
    object-fit: contain;
    margin-bottom: 10px;
    display: block;
    max-height: 103px;
}

.process-arrow {
    width: 25px;
    height: 27px;
    align-self: center;
}

.process-item:nth-child(1) img {
    width: 103px;
    height: 103px;
}

.process-item:nth-child(2) img {
    width: 83px;
    height: 105px;
}

.process-item:nth-child(3) img {
    width: 130px;
    height: 100px;
}

/* ✅ ステップ番号 */
.step-number {
    font-family: 'cabin' sans-serif;
    font-size: 60px;
    font-weight: bold;
    color: #e4cfa5;
    display: block;
    margin-bottom: 8px;
}

.process-item h3 {
    font-family: "游ゴシック", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #2f0000;
    margin-bottom: 8px;
}

.process-item p {
    font-family: "游ゴシック", sans-serif;
    font-size: 14px;
    color: #2f0000;
}




.jobs .whitecircle-lg {
    position: absolute;
    top: 150px;
    left: 75%;
    width: 300px;
    height: auto;
}

.jobs .whitecircle-sm {
    position: absolute;
    top: 50%;
    left: 90%;
    width: 150px;
    height: auto;
}

.jobs .whitecircle-sm2 {
    position: absolute;
    top: 350px;
    left: 10%;
    width: 200px;
    height: auto
}


.jobs .whitecircle-lg2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 250px;
    height: auto;
}


/** -----------------------------------------------
SP : JOBS 募集職種
------------------------------------------------**/
@media screen and (max-width:640px) {

    .job-list {
        gap: 24px;
        margin-bottom: 80px;
    }

    .job-item {
        height: 56px;
        width: 287px;
        font-size: 18px;
    }

    a.job-item:active {
        background-color: #e5bf89;
        color: #ffffff;
    }


    .jobs .whitecircle-lg {
        top: 45px;
        left: 68%;
        width: 120px;
    }

    .jobs .whitecircle-sm2 {
        top: 120px;
        left: 0%;
        width: 100px;
    }

    .jobs .whitecircle-lg2 {
        display: none;
    }

    .job-item::after {
        content: "";
        display: inline-block;
        width: 10px;
        /* 矢印画像のサイズ */
        height: 12px;
        background-image: url("../images/2x/job-arrow@2x.png");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 16px;
        /* テキストと矢印の間隔 */
    }

    .process-box {
        position: relative;
        background: white;
        padding: 40px 24px;
        border: #e5bf89 2px solid;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .process-label {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        width: auto;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: #e5bf89;
        color: #2f0000;
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 8px;


    }


    .process-list {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
    }

    .process-pic {
        width: calc((100% - 8px)/2);
    }

    .process-pics {
        max-width: 90%;
    }

    .process-item {
        display: block;
        align-items: center;
        width: calc((100% - 8px)/2);
        text-align: left;
    }


    .process-item .step-number {
        font-size: 32px;
        width: 60px;
        text-align: left;
        font-family: "cabin" sans-serif;
        margin-bottom: 0px;
    }

    .process-item h3 {
        font-size: 14px;
        font-weight: bold;
        color: #2f0000;
        margin-bottom: 4px;
    }

    .process-item p {
        font-size: 14px;
        color: #2f0000;
    }

    /* ✅ 矢印を適切な位置に配置 */
    .process-arrow {
        width: 20px;
        height: 20px;
        align-self: center;
        margin: 8px 0;
        transform: rotate(90deg);
    }
}








/** -----------------------------------------------
PC : FAQ よくある質問
------------------------------------------------**/

.faq {
    position: relative;
}

.faq .whitecircle-lg {
    position: absolute;
    top: 150px;
    left: 10%;
    width: 250px;
    height: auto;
}


.faq .whitecircle-sm2 {
    position: absolute;
    top: 300px;
    left: 70%;
    width: 250px;
    height: auto
}


.faq .whitecircle-lg2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 250px;
    height: auto;
}





/* ✅ FAQリスト */

/* ✅ 各質問ボックス */
.faq-body {
    border: 2px solid #e5bf89;
    /* 枠線色 */
    background: white;
    border-radius: 20px;
    /* 角丸 */
    margin-bottom: 40px;
    transition: height 0.3s ease;
}

.faq-question span,
.faq-answer span {
    font-family: 'Cabin', sans-serif;
    color: #b78269;
    display: inline-block;
    text-indent: -20px;
    margin-right: -4px;
}


/* ✅ 質問ボタン */
.faq-question,
.faq-answer {
    padding: 24px 72px 24px 36px;
    font-size: 16px;
    font-weight: 400;
    /* Regular */
    color: #5c4635;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
}

/* ✅ 矢印（疑似要素） */
.faq-question::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../images/2x/2x/アセット\ 228@2x.png") no-repeat center / contain;
    position: absolute;
    right: 40px;
    transition: transform 0.6s ease;
}

.faq-answer {
    display: none;
}


/* ✅ 矢印を回転 */
.faq-body.active .faq-question::after {
    transform: rotate(180deg);
}

/* ✅ Q アイコン */
.a-sentence-link {
    color: #e58e5b;
    border-bottom: #e58e5b;
}

/** -----------------------------------------------
SP : FAQ よくある質問
------------------------------------------------**/
@media screen and (max-width:640px) {
    .faq-body {
        border: 2px solid #e5bf89;
        /* 枠線色 */
        background: white;
        border-radius: 20px;
        /* 角丸 */
        margin-bottom: 24px;
        transition: height 0.3s ease;
    }



    .faq .p-medium {
        text-align: center;
    }

    .faq .whitecircle-lg {
        position: absolute;
        top: 35px;
        left: 0%;
        width: 100px;
        height: auto;
    }

    .faq .whitecircle-sm2 {
        position: absolute;
        top: 100px;
        left: 70%;
        width: 120px;
        height: auto;
    }

    .faq .whitecircle-sm {
        display: none;
    }

    .faq .whitecircle-lg2 {
        display: none;
    }


}









/** -----------------------------------------------
PC :  ENTRY エントリー
------------------------------------------------**/

.entry {
    margin-top: 64px;
    background-image: url(../images/entry-bg_pic.png);
    background-size: cover;
    height: 740px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;



}

.text-container img {
    width: 693px;
    height: 391px;
    margin-bottom: 40px;

}

.entry-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn-entry-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
    height: 120px;
    background-color: #e58e5b;
    /* オレンジ系 */
    color: white;
    text-align: center;
    border-radius: 70px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-family: "游ゴシック", sans-serif;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0.05em;
    margin-right: 40px;
}



.btn-entry-lg::after {
    content: "";
    display: inline-block;
    width: 20px;
    /* 矢印画像のサイズ */
    height: 32px;
    background-image: url("../images/btn-arrow@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 16px;
    /* テキストと矢印の間隔 */
}

.btn-entry-lg:hover {
    border: #e58e5b solid 2px;
    color: #e58e5b;
    background-color: #fff;
}

.btn-entry-lg::after {
    content: "";
    display: inline-block;
    width: 20px;
    /* 矢印画像のサイズ */
    height: 32px;
    background-image: url("../images/2x/btn-arrow-hover@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 16px;
    /* テキストと矢印の間隔 */
}




/** -----------------------------------------------
SP :  ENTRY エントリー
------------------------------------------------**/
@media screen and (max-width:640px) {

    .entry {
        margin-top: 64px;
        background-image: url(../images/2x/entry_pic_sp@2x.png);
        background-size: cover;
        height: 318px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .text-container img {
        width: 302px;
        height: 222px;
        margin-bottom: 0;
    }

    .btn-entry-lg {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 240px;
        height: 60px;
        background-color: #e58e5b;
        /* オレンジ系 */
        color: white;
        text-align: center;
        border-radius: 70px;
        text-decoration: none;
        transition: 0.3s ease-in-out;
        font-family: "游ゴシック", sans-serif;
        font-weight: bold;
        font-size: 18px;
        letter-spacing: 0.05em;
        margin-top: -24px;
        margin-right: 0;
    }

    .btn-entry-lg::after {
        content: "";
        display: inline-block;
        width: 7px;
        /* 矢印画像のサイズ */
        height: 11px;
        background-image: url("../images/btn-arrow@2x.png");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 16px;
        /* テキストと矢印の間隔 */
    }

    .btn-entry-lg:active {
        background-color: #f3a57c;
    }

}




/** -----------------------------------------------
PC :  FOOTER　フッター
------------------------------------------------**/

.footer {
    height: 160px;
    padding: 40px 0;
    text-align: center;
    font-size: 16px;
    color: #2f0000;
    align-items: center;
    justify-content: center;
}

/* ✅ フッターのリンク */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    /*リンク同士の間隔 */
    margin-bottom: 24px;
}

.footer-links a {
    color: #5c4635;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #e58e5b;
    /* 🔥 ホバー時にオレンジ系に */
}

/* ✅ コピーライト */
.copyright {
    font-size: 16px;
    color: #2f0000;
}

/** -----------------------------------------------
SP :  FOOTER　フッター
------------------------------------------------**/

@media screen and (max-width:640px) {
    .footer {
        height: 140px;
        padding: 16px 0;
        text-align: center;
        font-size: 10px;
        color: #2f0000;
        align-items: center;
        justify-content: center;
        display: block;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 24px;
        flex-direction: column;
    }

    .footer-links a:active {
        color: #e58e5b;
    }


    .footer-links-gr1,
    .footer-links-gr2 {
        display: flex;
        align-items: center;
        margin: 0 auto;
        gap: 24px;
    }

    .copyright {
        font-size: 10px;
        color: #2f0000;
    }

}