/*ーーーーー 共通スタイル ーーーーー*/
.u-fs-16{
    font-size: 16px;
}
.u-fs-12{
    font-size: 12px;
}
.u-ml-80{
    margin-left:calc(100% * (80 / 1280));
}

.u-mt-128{
    margin-top: calc(100% * (128 / 1280));
}


.u-mt-80{
    margin-top: calc(100% * (80 / 1280));
}

.u-mt-40{
    margin-top: calc(100% * (40 / 1280));
}

.u-mt-n50{
    margin-top: -50px;
}

.u-mb-40{
    margin-bottom: calc(100% * (40 / 1280));
}

.u-mb-128{
    margin-bottom: calc(100% * (128 / 1280));
}

.u-pt-128{
    padding-top: calc(100% * (128 / 1280));
}

.u-pb-300{
    padding-bottom: 300px !important;
}
.sp-only{
    display: none;
}



.container{
    padding: 0 40px;
    background-image: url(../images/bg_container.png);
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: right top;
    padding-bottom: 128px;
    overflow: hidden;
}

.container-inner{
    width: 75vw;
    max-width: 1080px;
    margin: 0 auto;
}

h2{
    font-size: 1.667em;
}

.title2_wrap{
    display: flex;
    align-items: center;
    gap: 15px;
    color: #00552E;

    p{
        margin-bottom: -6px !important;
    }
}

.btn-page_top{
    width: 70px;
    height: auto;
    position: fixed;
    bottom: 10px;
    right: 10px;
    box-shadow: -3px 3px 8px #00000047;

    img{
        padding-top: 0;
    }
}


@media screen and (max-width: 960px){
    .title2_wrap{
        display: block;
        text-align: center;
    }
    .container{
        padding: 128px 20px !important;
    }
}

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

    h1{
    font-size: 26px;

}

   p{
    font-size: 16px;
    line-height: 2em;
   }
}

/* 内側：白いボタン本体 */
.c-btn{
    position: relative;
    z-index: 1;               /* 枠より前に出す */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.c-btn__green{
    position: relative;
    display: inline-block;
    padding: 0;
    border: none;
    background: transparent;
    height: 40px;
    width: 220px;
    padding: 3px;

    .c-btn{
    color: #00552E;
    }
}

/* 外側の枠は ::before で描く */
.c-btn__green::before{
    content: "";
    position: absolute;
    inset: 0;                 /* 上下左右0でピッタリ */
    border: 10px solid #2d5944;
    transition: transform 0.2s ease;  /* 動き用 */
}

/* hover時：外側の枠だけ少しズラす */
.c-btn__green:hover::before{
    transform: translate(4px, 4px);   /* 好きな量に調整してOK */
}


.c-btn__red{
    position: relative;
    display: inline-block;
    padding: 0;
    border: none;
    background: transparent;
    height: 40px;
    width: 220px;
    padding: 3px;

    .c-btn{
        color: #C80100;
    }
}

/* 外側の枠は ::before で描く */
.c-btn__red::before{
  content: "";
  position: absolute;
  inset: 0;                 /* 上下左右0でピッタリ */
  border: 10px solid #C80100;
  transition: transform 0.2s ease;  /* 動き用 */
}

/* hover時：外側の枠だけ少しズラす */
.c-btn__red:hover::before{
  transform: translate(4px, 4px);   /* 好きな量に調整してOK */
}


/* ーーーーー共通のスタイル（SP）ーーーーー */
@media screen and (max-width: 750px){
  html,
  body{
    font-size: 16px !important;
  }

  .sp-only{
    display: block !important;
    }

  .pc-only{
    display: none;
  }

  .c-btn__green,
  .c-btn__red{
    height: 50px;
    width: 180px;
    box-shadow: 3px 3px 6px #ccc
  }
}

/* AOSの挙動修正 */
/* AOS fade-up要素の初期状態を確実に非表示にする */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}

/* AOSが初期化された後の状態 */
[data-aos="fade-up"].aos-init {
  opacity: 0;
  transform: translateY(30px);
}

/* アニメーション実行時 */
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


 /*ーーーーー sideverのスタイル ーーーーー*/
.content-wrapper{
    display: flex;

    #header {
        width: 160px;
        height: auto;;
        z-index: 999;
        flex-shrink:0;


        .header-inner{
        /* padding: 40px 15px; */
        padding: 20px 15px;
        position: fixed;
        width: 160px;
        min-height: 100vh;
        flex: 1;
        background-image:url(../images/header/bg_sideslider.png);
        background-repeat: repeat-y;
        background-size: auto auto;
        background-position: top left;
        }
    }
    
    #content {
        flex: 1;
    }

    .bg-main{
        width: calc(100% - 160px);
        flex: 1;
    }

    .header-navPc{
        ul li{
            margin-top: 0;
            font-size: 14px;
            transition: all .5s;
            /* padding-left: 10px;
            padding: 8px; */

            a {
                display: block;
            padding: 8px;
            }
        }
        ul li:hover{
            background: #F8E4CC;
            mix-blend-mode:multiply;
        }
    }

    .header-bnr__wrap{
        margin-bottom: 20px;
    }

    .header-bnr{
        margin-bottom: 15px;
    }

    .header-bnr img {
        padding: 0;
    }

    .header-bnr__takeaout {
    display: block;
    }

     .header-bnr:hover .header-bnr__takeaout {
    transition: opacity 1s ease;
    }

    .header-bnr__line {
    display: block;
    }

    .header-bnr:hover .header-bnr__line {
    content: url(../images/header/c-Nav_bnrLINE_hover.png);
    transition: opacity 0.8s ease;
    }

    .fix-nav{
        display: none;
    }

}

/*ーーーーー TOP バナー用 ーーーーー*/
.slider--kv {
  width: 100%;
  height:auto;
}
.slider--kv .slider-item {
  width: 100vw;
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* スライダー初期化前は2枚目以降を非表示（縦並び防止） */
.js-slider:not(.slick-initialized) .slider-item:not(:first-child) {
  display: none;
}

/* 初期化前の1枚目だけ表示 */
.js-slider:not(.slick-initialized) .slider-item:first-child {
  display: block;
}

.l-kv{
    
    box-sizing: border-box;
    padding-top: 0;

    video{
        width: 100%;
    }
}

/* コンテナ内カード用（さっきのやつ） */
.slider--card {
  width: 100%;
  height: 100%;   
}
.slider--card .slider-item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* SPではサイドバーを上にして、kvを全幅に戻す例 */
@media screen and (max-width: 750px) {
  .kv {
    width: 100vw;
    margin-left: 0;
  }

  .l-kv{
    width: 100%;
  }

  .bg-main{
    width: 100% !important;
  }
}

 /*ーーーーーSP sideverのスタイルーーーーー*/
@media screen and (max-width: 750px){
    .content-wrapper{
        display: block;

        #header{
        background-image: url(../images/header/bg_headerSp.png);
        height: 70px;
        width: 100vw;

        .header-inner{
            background-image: none;
            padding-top: 5px;
            padding-bottom: 10px;
            position: relative;
            min-height: auto;
        }
        
        .logo{
            margin: 0;

            img{
                width: 75%;
            }
        }
        }
    }

    .header-navPc,
    .header-bnr__wrap{
        display: none;
    }

    .fix-nav{
    display: block !important;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647; 
    margin: auto;
    background-image: url(../images/header/bg_headerSp.png);
    height: 70px;
    width: 100vw;
 
    .header-navSp ul{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;

        li{
            width: 33%;
            text-align: center;
            border-right: 1px solid #000;
            margin-top: 5px;

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

            img{
                display:block;
                margin: 0 auto 4px;
            }

        }

        #page-top a{
                display: block;
                text-transform: uppercase; 
                transition:all 0.3s;
        }

        li:last-child{
            border-right: none;
        }
    }
    }
    
    /*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    display: none;
    /*ナビの位置と形状*/
	top:0;
    left: 0;
    right: 0; 
	width:100vw;
    height: 90vh;/*ナビの高さ*/
	background-image: url(../images/header/bg_g-nav.png);
    /*動き*/
	transition: all 0.3s;

    .g-nav__logo{
        width: 150px;
        text-align: center;
        margin: 100px auto 40px auto;
    }

    .g-nav_list{
        display: flex;
        flex-direction: column;
        align-items: center;

        ul{
            margin: 40px 0 0;
            padding: 0;
        }


    }

    .g-nav__btn{
        width: 155px;
        height: 50px;
        background-color: #03C755;
        color: #fff;
        border: none;
        text-align: center;
        margin: 40px auto 0;
        position: absolute;
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
    display: block;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:45%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
    text-align: center;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: left; 
}

#g-nav li a{
	color: #000;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 0;
	cursor: pointer;
    width: 80px;
    height:80px;
    background-image: url(../images/header/bg_g-nav.png);
    box-shadow: #cccccc87 -1px -2px 3px;
    width: 70px;
    height: 70px;
    top: 0;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 2px;
	background-color: #000;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:25px;	
    left: 20px;
}

.openbtn span:nth-of-type(2) {
	top:35px;
    left: 20px;
}

.openbtn span:nth-of-type(3) {
	top:45px;
    left: 20px;
}

.openbtn.active{
    box-shadow: none;
}

.openbtn.active span:nth-of-type(1) {
    top: 30px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 40px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

 }

 .slider{
    width: 100%;
    height: auto;

    .slider-item{
        width: 100%;
        height: auto;
    }
 }



/* ーーーーーfooterのスタイルーーーーー */
#footer{
    color: #fff;
    background:url(../images/bg-footer01.png) top left no-repeat,
    url(../images/bg-footer02.png) bottom right no-repeat,
    #c80000;
    background-size: 40% auto, 60% auto;
    padding-top: 30px;
    position: relative;
    z-index: 1000;
}
.l-flex{
    display: flex;
    margin: calc(100% * (150 / 1280)) auto calc(100% * (80 / 1280)) auto;
    padding-left:18.75vw ;
}
.logo-footer{
    text-align: left;
    width: 25vw;
}
#footer .l-footer__ul li a:hover{
    color: #F8E4CC;
}
.l-footer__line{
    display: flex;
    gap: 1.17vw;
    margin-top:3.13vw ;
    align-items: center;
}
.l-footer__line img {
  width: auto;
  height: 3.2vw;   /* 好きな高さに固定 */
  flex-shrink: 0; /* 押しつぶされないように */
}
.l-footer__ul__wrap{
    display: flex;
    width: 100%;
}
.l-footer__copy{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 40px;
    text-align: right;
}
.copyright{
    text-align: right;
    font-size: 12px;
}

/*ーーーーー Sp footerスタイル ーーーーー*/

@media screen and (max-width: 750px){
#footer{
    background-size: 60% auto, 80% auto;
    padding-bottom: 0 !important;
}
.l-flex{
    display: block;
    padding:calc(100% * (40 / 390));
}
.logo-footer,
.l-footer__line{
    text-align: center;
}
.l-footer__line{
      display: flex;              /* flexのままでOK */
      justify-content: center;    /* ← 横方向を中央寄せ */
      align-items: center;        /* ← 縦方向を中央寄せ */
      gap: 15px;
      margin: calc(100% * (40 / 390)) auto calc(100% * (80 / 390)) auto;
      font-size: 14px;
      width: 100%;                /* 幅いっぱいの中で中央に並べる */
}
.logo-footer{
    width: 55.28vw;
    margin: 0 auto;
}
.l-footer__line img{
    width: 11.54vw;
    height: auto;
}
.l-footer__ul__wrap{
    width: 100%;
    justify-content: space-between;
}
.l-footer__ul{
    padding-left: 0;
}
#footer .l-footer__ul li{
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
}
.l-footer__copy{
    text-align: center;
    padding-right: 0;
}
 }







 /* ーーーーーfront-page(toppage)のスタイルーーーーー */
 .l-title__wrap{
    padding: 80px 0;
    background-image: url(../images/top/bg_h2.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /* z-index: 5; */


    h1{
         text-align: center;
         font-size: 30px;
         line-height: 2em;
    }

    .hokkaido{
        position: relative;
    }
    .hokkaido::before{
        content: url(../images/top/hokkaido.png);
        position: absolute;
        /* top: 20%;
        left: 24%; */
         position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    }

    img{
        width: 12.34vw;
        position: absolute;
        top: 20%;
        left: 24%;
        z-index: 1;
    }
 } 
 
 .about_matsuriya{
    .v-set{
    position: relative;
    max-width: 1040px;
    margin: 0 auto;

    video{
        width: 60.16vw;
        height: auto;
        max-width: 770px;
    }
    
    p{
        width: 38.28%;
        min-width: 400px;
        padding: 50px;
        background-color: #fff;
        opacity: 0.8;
        position: absolute;
        z-index: 2;
        top: 65%;
        right: 0;
    }
 }
 }

 @media screen and (max-width: 750px){
     .l-title__wrap{
        background-image: url(../images/top/bg_sph2.png);

        h1{
            font-size: 26px;
        }
     }

      .about_matsuriya{
     .v-set{
        video{
            aspect-ratio: 390 / 630;
            overflow: hidden;
            width: 100vw;
        }

        p{
            background: none;
            opacity: 1;
            color: #fff;
            min-width: 90vw;
            line-height: 2.5em;
            top: 43%;
        }
     }
    }
 }
 
/* お知らせのセクション */
 .news{
    max-width: 980px;
    margin: 128px auto;
    
    .c-event-list__items{
        list-style: none;

        .title2_wrap{
            margin-bottom: 22px;
        }

        .c-event-list__item{
            border-top: 1px solid #999;
            margin-bottom: 15px;
            padding-top: 15px;
            position: relative;
            
            .c-event-list__link{
                display: flex;
                gap: 25px;
                align-items: center;
            }

            .c-event-list__link::after{
                content: url(../images/top/arrow.svg);
                position: absolute;
                right: 10%;
            }

            .c-event-list__thumb{
                aspect-ratio: 4 / 3;
                max-width: 120px;
                overflow: hidden;

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

            .c-event-list__item-title{
                font-size: 18px;
                color: #00552E;
                padding-right: 100px;
            }

            .c-event-list__date{
                font-size: 14px;
                color: #7B7B7B;
            }
        }

        .c-event-list__item:last-child{
            border-bottom: 1px solid #999;
            padding-bottom: 15px;
        }

        .c-event-list__item:hover{
            
            .c-event-list__link{
                opacity: 0.5;
                transition: 0.5s;
            }

            .c-event-list__link::after{
                right: 5%;
                transition: 0.5s;
            }
        }

        .btn_wrap{
            max-width: 980px;
            text-align: right;
        }
    }

 }

  @media screen and (max-width: 750px){
    .news{
        margin-top: 0;

        .c-event-list__items{
            padding-left: 0;

            .title2_wrap{
                .c-event-list__item
            }

            .c-event-list__item{
                .c-event-list__link::after{
                    content: none;
                }

                .c-event-list__item-title{
                padding-right: 0;
                font-size: 16px;
               }       
            }
            
            .btn_wrap{
                text-align: center;
        }
    }
  }
}

 /* お持ち帰りセクション */
 .c-item_takeout{
    display: flex;
    position: relative;
    margin:128px auto;
    max-width: 980px;

    .c-item_img_wrap{
        aspect-ratio: 236 / 273;
        width: 37.5vw;
        max-width: 480px;
        position: absolute;
        top: -10%;
        left: -5%;
        z-index: 2;
    }

    .c-item_text_wrap{
        background-color: #fff;
        opacity: 0.8;   
        padding: 6.25% 6.25% 6.25% 50%;
        aspect-ratio: 1000 / 425;

        p{
            padding-top: 30px;
        }
    }
 }

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

    .c-item_takeout{
        display: block;
        position: static;
        text-align: center;

        .c-item_img_wrap{
            width: 125%;
            margin-bottom: -15%;
            position: static;
        }

        .c-item_text_wrap{
            padding: 10% 6.25%;
            text-align: left;
        }
    }

 }

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

    .c-item_takeout{
        .c-item_img_wrap{
            width: 90%;
            left: 0;
            margin-bottom: -25%;
        }

        .c-item_text_wrap{
            text-align: center;

            p{
                text-align: left;
            }
        }
    }
  }

 /* こだわりのセクション */
  .c-item_kodawari{
    display: flex;
    position: relative;
    margin:128px auto;
    max-width: 980px;

    .c-item_img_wrap{
        width: 37.5vw;
        max-width: 480px;
        position: absolute;
        top: 20%;
        left: 50%;
        z-index: 2;
    }

    .c-item_text_wrap{
        background-color: #fff;
        opacity: 0.8;   
        padding: 6.25% 55% 6.25% 71px;
        aspect-ratio: 1000 / 425;

        p{
            padding-top: 30px;
        }
    }
  }

   @media screen and (max-width: 960px){
    .c-item_kodawari{
        display: block;
        position: static;
        text-align: center;

        .c-item_img_wrap{
            width: 100%;
            text-align: right;
        }
        .c-item_img_wrap{
        width: 125%;
        margin-bottom: 5%;
        position: sticky;
        }
        
        .c-item_text_wrap{
            padding: 10% 6.25%;
        }
         p{
            text-align: left;
        }
    }

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

    .c-item_kodawari{
        .c-item_img_wrap{
            width: 90%;
            right: 0;
        }

        .c-item_text_wrap{
            text-align: center;

            p{
                text-align: left;
            }
        }
    }
  }


   }
  /* スライダーのアニメーション */

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider li,
.slider .slick-slide {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;      /* テーマ側で li に枠線が付いている場合の保険 */
  font-size: 0;   


.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100%;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.c-item02 .c-item_img_wrap .slider {
  width: 100%;
  height: 100%;
}

.c-item02 .c-item_img_wrap .slider-item {
  width: 100%;
  height: 100%;
}

.c-item02 .c-item_img_wrap .slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
}

/* イベントのセクション */

 .c-item_event{
    display: flex;
    position: relative;
    margin:160px auto;
    max-width: 980px;

    .c-heading-left{
        position: absolute;
        top: 12%;
        left: 5%;
        z-index: 2;
    }

    .c-item_img_wrap{
        aspect-ratio: 236 / 273;
        width: 29.69vw;
        max-width: 380px;
        margin-top: 20px;
    }

    .c-item_text_wrap{
        background-color: #fff;
        opacity: 0.8;   
        padding: 15% 6.25% 6.25% 50%;
        aspect-ratio: 1000 / 425;
        z-index: 1;
    }
 }



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

    .c-item_event{
        display: block;
        position: static;
        text-align: center;

        .c-heading-left{
            position: static;
        }

        .c-item_img_wrap{
            width: 125%;
            margin-bottom: -15%;
            position: static;
        }

        .c-item_text_wrap{
            padding: 10% 6.25%;
        }
         p{
            text-align: left;
        }
    }

 }

  @media screen and (max-width: 750px){
    .c-item_event{
        .c-item_img_wrap{
            width: 90%;
            left: 0;
            margin-bottom: -25px;
        }

        .c-item_text_wrap{
            text-align: center;

            p{
                text-align: left;
            }

            .title2_wrap{

                margin-bottom: 20px;
                p{
                    text-align: center;
                }
            }
        }
    }
  }



 /* お品書きセクション */
 .c-item_menu{
    display: flex;
    position: relative;
    margin:128px auto;
    max-width: 980px;

    .c-item_img_wrap{
        max-width: 480px;
        z-index: 2;
    }

    .c-item_img01{
        position: absolute;
        top: 10%;
        left: 50%;
    }

    .c-item_img02{
        position: absolute;
        top: 50%;
        left: 70%;
    }

    .c-item_text_wrap{
        background-color: #fff;
        opacity: 0.8;   
        padding: 6.25% 55% 6.25% 71px;
        aspect-ratio: 1000 / 425;

        p{
            padding-top: 30px;
        }
    }
 }

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

    .c-item_menu{
        display: block;
        text-align: center;
        margin-top: 500px;

        .c-item_img_wrap{
            width: 125%;
        }

        .c-item_img01{
            top: -110%;
            left: 35%;
        }
        .c-item_img02{
            top: -65%;
            left: 12%;
        }
        .c-item_text_wrap{
            padding: 10% 6.25%;
        }
        p{
            text-align: left;
        }
    }

 }

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

    .c-item_menu{
        .c-item_img_wrap{

            margin-bottom: -25%;

            .c-item_img01{
                top: -85%;
                left: 15%;
            }

            .c-item_img02{
                left: 0;
                padding: 0;
                top: -45%;
                width: 50%;
            }
        }

        .c-item_text_wrap{
            text-align: center;

            p{
                text-align: left;
            }
        }
    }
  }
  



 /* ーーーーー求人情報ーーーーー */

 .c-item_recruit{

    position: relative;
    max-width: 1040px;
    margin: 0 auto;

    .v-set{
    padding-top: 23.44%;
    padding-bottom: 23.44%;

        video{
            width: 67.19vw;
            height: auto;
            max-width: 860px;
            aspect-ratio: 860 / 440;
            position: absolute;
            right: 0;
            top: 0;
        }
    }
    
    .text_wrap{
        width: 30%;
        height: 55%;
        max-height: 300px;
        background-color: #C80100;
        mix-blend-mode:multiply;
        position: absolute;
        top: 60%;
        left: 2.34%;
        z-index: 2;
    }

    .text_wrap__titlebox{
        background-color: #fff;
        color: #C80100;
        width: 30%;
        padding-top: 1%;
        padding-bottom: 1%;
        text-align: center;
        position: absolute;
        top: 65%;
        left: 6%;
        z-index: 4;
    }
    p{
        font-size: 1.222em;
        line-height: 2em;
        color: #fff;
        position: absolute;
        left: 9.34%;
        padding-top: 10%;
        text-align: left;
        z-index: 3;
    }

    .c-btn__red{
        position: absolute;
        top: 80%;
        right: 5%;
        margin-top: 10%;
    }
 }
 @media screen and (max-width: 960px){
    .c-item_recruit .text_wrap{
        width: 32%;
        height: 65%;
    }
 }

   @media screen and (max-width: 750px){
    .recruit_sp{
        aspect-ratio: 390 / 630;
        overflow: hidden;
        width: 90vw;
        position: relative;

        video{
            position: absolute;
            z-index: 1;
        }

        .content_wrap_recruit{
            position: absolute;
            top: 30%;
            left: 15%;
            z-index: 2;
            text-align: center;
            color: #fff;

            .text_wrap__titlebox{

                margin-bottom: 80px;
                h2{
                    margin-bottom: 20px;
                }

                p{
                    background-color: #C80100;
                    mix-blend-mode: multiply;
                    opacity: 0.8;
                    padding: 20px 40px;;
                    max-width: 310px;
                }
            }
        }
    }
   }
 

 /* ーーーーー店舗案内のセクションーーーーー */
 .shop{
    max-width: 1040px;
    margin: 240px auto 0 auto;

    .title2_wrap{
        width: 300px;
        margin: 0 auto;
    }

    .shop_map{
        position: relative;

        .c-btn__green{
            position: absolute;
            bottom: 5%;
            right: 3%;
        }
    }

    .title3_shop{
        font-size: 24px;
        text-align: center;
        margin: 40px 0;
        letter-spacing: 0.2em;
        padding: 0 40px;
        position: relative;

        .sapporo_title{
            color: #004575;
        }

        .tokachi_title{
            color: #00552E;
        }

        .kushiro_title{
            color: #C80100;
        }
    }

    

    /* 札幌（ブルー） */
    .sapporo_title::before,
    .sapporo_title::after
    {
        content: "";
        position: absolute;
        top: 50%;
        width: calc(50% - 100px);
        height: 2px;
        background-color: #004575;
    }

    .sapporo_title::before{
        left: 0;
    }

    .sapporo_title::after{
        right: 0;
    }

        /* 十勝（グリーン） */
    .tokachi_title::before,
    .tokachi_title::after
    {
        content: "";
        position: absolute;
        top: 50%;
        width: calc(50% - 100px);
        height: 2px;
        background-color: #00552E;
    }

    .tokachi_title::before{
        left: 0;
    }

    .tokachi_title::after{
        right: 0;
    }

        /* 釧路（赤） */
    .kushiro_title::before,
    .kushiro_title::after
    {
        content: "";
        position: absolute;
        top: 50%;
        width: calc(50% - 100px);
        height: 2px;
        background-color: #C80100;
    }

    .kushiro_title::before{
        left: 0;
    }

    .kushiro_title::after{
        right: 0;
    }

    .shop_items_wrap{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 5%;
        justify-content: space-between;
        margin-bottom: 15vh;

        .shop_item{
        box-shadow: 2px 4px 5px #a1a1a1;    
        }

        .shop_item_name{
            background-color: #fff;
            text-align: center;
            padding: 2%;
        }

        .shop_item_img{
            overflow: hidden;
            aspect-ratio: 210 / 130;

            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                padding-top: 0;
                transition: 0.5s;
            }
        }

        .shop_item_img:hover{
            img{
                scale: 1.2;
                transform: translate(-50% 0%);
            }
        }
    }
 }

 @media screen and (max-width: 750px){
    .shop{
        text-align: center;

        .title3_shop{
            padding: 0;

            h3{
                text-align: left;
            }

            .sapporo_title::before,
            .tokachi_title::before,
            .kushiro_title::before{
                content: none;
            }

            .sapporo_title::after,
            .tokachi_title::after,
            .kushiro_title::after{
                width: calc(50% - -10px);
            }

        }

        .shop_items_wrap{
            grid-template-columns: 1fr 1fr;

            .shop_item_img{
                aspect-ratio: 4 /3;
            }
        }
        }

    }
        


 /* おまつりくんの独り言のセクション */
 .column{
    max-width: 980px;
    margin: 128px auto;
    display: flex;
    align-items: flex-end;

    .coloumn_box{
        background-color: #F8E4CC;
        color: #C80100;
        text-align: center;
        height: 330px;
        width: 25.78vw;
        max-width: 330px;
        z-index: 1;

        p{
            padding-top: 40px;
            padding-bottom: 20px;
        }

        h2{
            padding-bottom: 20px;
        }
    }

    .colum_box_wrap{
        text-align: center;

        img{
            width: 50%;
            margin-bottom: -25px;
        }
    }

    .c-column-list__items{
        margin-bottom: 0;
    }
    
    .c-column-list__item{
        list-style: none;
        border-bottom: 1px solid #ccc;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .c-column-list__item:last-child{
        padding-bottom: 0;
        border-bottom: none;
    }

    .c-column-list__link{
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .c-column-list__thumb{
        aspect-ratio: 5 / 3;
        max-width: 230px;
        overflow: hidden;

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

    .c-column-list__title{
        font-size: 18px;
    }
}

 @media screen and (max-width: 750px){
    .column{
        display: block;

        .colum_box_wrap{
            /* ここを追加 */
            display: flex;
            flex-direction: column;
            align-items: center; 
        }

        .coloumn_box{
            height: auto;
            width: 100%;
        }

        .c-column-list .c-column-list__items{
            padding: 5px;
        }

        .c-column-list__item,
        .c-column-list__item:last-child{
            border-bottom: 2px solid #C80100;
        }

        .c-column-list__item{
            margin-bottom: 20px;
            padding-bottom: 5px;
            position: relative;
        

        .colum_box_wrap img{
        width: 50%;
        margin: 0 auto;
        margin-bottom: -25px;
        z-index: 4;
        }
        
        .c-column-list__link{
            display: block;
        }

        .c-column-list__link::after{
            content: url(../images/top/sparrow.png);
            position: absolute;
            right: 10%;
            top: 50%;
        }

        .c-column-list__meta{
            padding-right: 80px;
        }
        
        .c-column-list__thumb{
            display: none;
        }

        
    }
    }
    .c-btn__red{
            align-self: center;
        }
 }

/* 会社情報のセクション */
.company{
    max-width: 980px;
    margin: 128px auto;

    .title2_wrap{
     width: 300px;
     text-align: center;
     margin: 0 auto; 
    }

    .company_wrap{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    }
    img{
        height: auto;
        width: 100%;
    }

    .company_img-1{
        text-align: center;
        flex: 1;
    }

    .company_img-2{
        flex:2;
    }
}

 @media screen and (max-width: 750px){
    .company{
        .company_wrap{
        display: block;
        }
        .company_img-2{
            margin-bottom: 15px;
        }
        
}   
 }


/* ＝＝＝＝＝LNE追加ページ＝＝＝＝＝ */

.l-kv{
    img{
        width: 100%;
        padding: 0;
    }
}

.container_line{
    padding: 0 40px;
    background-image: url(../images/bg-line.png);
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: right top;
    padding-bottom: 240px;

    p{
        font-size: 18px;
        line-height: 2em;
    }

    .text-box{
        max-width: 980px;
        width: 44.53vw;
        margin: 0 auto;
        margin-bottom: 128px;
        padding-top: 128px;
        text-align: center;
        color: #00552E;

        h1{
            font-size: 26px;
            margin-bottom: 40px;
        }
    }

    .able_line{
        display: flex;
        gap: 20px;
        width: 65.63vw;
        max-width: 840px;
        margin: 0 auto;
        margin-bottom: 240px;
        align-items: flex-start;
        position: relative;
        

        img{
            height: auto;
        }

        .text-box{
            text-align: left;
            padding-top: 50px;
            margin-bottom: 0;

            h2{
                margin-bottom: 40px;
            }

            li{
                padding-bottom: 1em;
            }
        }

        .bg-sushi-01{
            position: absolute;
            right: -10%;
        }

        .bg-sushi-02{
            position: absolute;
            left: -100px;
            top: 75%;
        }
    }

    .coupon{
        text-align: center;
        margin-bottom: 240px;
        h2{
            margin-bottom: -4%;
            z-index: 2;
        }

        .coupon_box{
            background-color: #fff;
            border: 10px solid #03C755;
            z-index: 1;
            padding: 100px;
            width: 71.88vw;
            max-width: 920px;
            margin: 0 auto;

            p{
                text-align: left;
                padding-top: 30px;
            }
        }

    }

    .shop_line{
        text-align: center;

        h2{
            color: #00552E;
            margin-bottom: 40px;
        }

        .shop_area{
            display: flex;
            gap: 5%;
            justify-content: space-between;
            width: 52.34vw;
            max-width: 700px;
            margin: 0 auto;
            margin-bottom: 128px;

            .shop_area__btn{
                width: 180px;
                height: 50px;
                display: flex;
                justify-content: center;
                text-align: center;
                font-weight: bold;
                padding: 10px;
                color: #00552E;
                background-color: #FFF726;
                box-shadow: -3px 3px 8px #00000047;
            }

            .shop_area__btn:hover{
                box-shadow: none;
                transition: 0.2s;
            }
        }

        .area_list_items{
            margin: 0 auto;
            max-width: 980px;

            .area_list_title{
                text-align: left;
                position: relative;
                padding-left: 10%;
                margin-bottom: 40px;
                color: #00552E;
            }

            .area_list_title::before{
                content: "";
                position: absolute;
                top: 43%;
                left: 5%;
                width: 30px;
                height: 4px;
                background-color: #00552E;
            }
        }
        .area_list_wrap{
            max-width: 960px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            margin-bottom: 128px;


            .area_list_item{
                display: flex;
                flex-direction: column;
                max-width: 830px;
                margin: 0 auto;
                padding-bottom: 20%;

                .area_list_link{
                    display: flex;
                    background-color: #03C755;
                    color: #fff;
                    position: relative;
                    padding: 10px;
                    padding-left: 15px;
                    gap: 5px;
                    margin-bottom: 10px;
                    align-items: center;
                    box-shadow: -3px 3px 8px #00000047;

                    img{
                        margin-top: -4px;
                    }
                }

                .area_list_link::after{
                    content: url(../images/line/arrow_line.png);
                    position: absolute;
                    top: 20px;
                    right: 7%
                }   

                .area_list_link:hover{
                    box-shadow: none;
                    transition: 0.2s;
                }
        }
    }

}
}


 @media screen and (max-width: 750px){
    .container_line{
        padding: 128px 20px !important;
        overflow: hidden;

        p{
            font-size: 16px;
        }

        .text-box {
            padding: 0 15px;
            width: 100%;

            p{
                text-align: left;
            }
        }

        .able_line{
            display: block;
            text-align: center;
            width: 100%;
            margin-bottom: 128px;

            .bg-sushi-01{
                right: -7%;
                top: 13%;
                width: 25%;
            }

            .bg-sushi-02{
                left: -20px;
                top: 50%;
                width: 23%;
            }


            .text-box{
                margin-bottom: 40px;
                outline: 0;
                text-align: center;

                ul{
                    text-align: left;
                }
            }
        }

        .coupon{
        h2{
            width: 80%;
            margin: 0 auto;
            margin-bottom: -33px;
        }

        .coupon_box{
            width: 100%;
            padding: 25px;
        }
    }

        .shop_line{

            h2{
                margin-bottom: 20px;
            }
            .shop_area{
                width: 100%;
                margin-bottom: 80px;

                .shop_area__btn{
                    height: auto;
                    line-height: 1.2em;
                    padding: 15px;
                }
            }

            .area_list_items{

                .area_list_title{
                    margin-bottom: 20px;
                    padding-left: 0;

                }

                .area_list_title::before{
                    content:none !important;
                }

                .area_list_title::after{
                            content: "";
                            position: absolute;
                            top: 43%;
                            right: 5%;
                            width: 200px;
                            height: 2px;
                            background-color: #00552E;
                        }
            }
            
            .area_list_wrap{
                grid-template-columns: 1fr 1fr;
                margin-bottom: 80px;

                .area_list_item{

                    padding-bottom: 5%;

                    .area_list_link{
                        width: 160px;
                        height: 70px;
                        gap: 10px;
                    }

                    .area_list_link::after{
                        content: none;
                    }
                }
            }
        }
    }
    }


    /* ＝＝＝＝＝会社情報・特定商・プラポリのベース＝＝＝＝＝ */

.c-title-line,
.c-title-square{
    width: 75vw;
    max-width: 960px;
    margin: 0  auto;
    text-align: center;
    display: grid;
    place-items: center;
}

.c-title-square{
    border-top: 2px solid #C80100;
    border-bottom:  2px solid #C80100;
    background-color: #fff;
    position: relative;
    padding: 20px 60px;
}

.c-title-line{
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 5px solid #C80100;
    border-bottom:  5px solid #C80100;
    margin-bottom: 128px;
}

.c-title-square::before{
    position: absolute;
    content: url(../images/h1_square01.png);
    z-index: 2;
    left: 1%;
    top: 7%;
}

.c-title-square::after{
    position: absolute;
    content: url(../images/h1_square02.png);
    z-index: 2;
    bottom: 7%;
    right: 1%;
}

.title-center{
    width: 300px;
    margin: 0 auto;
    text-align: center;
}

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

    .c-title-line{
         margin-top: -100px;
         margin-bottom: 80px;
    }
    .c-title-line, 
    .c-title-square{
        width: 100%;
    }

    .c-title-square{
        height: auto;
        padding: 20px;
    }

}

    /* ＝＝＝＝＝会社情報＝＝＝＝＝ */

.company-wrap{
    width: 75vw;
    max-width: 960px;
    margin: 40px auto 128px auto;

    .company-row{
        border-bottom: 2px solid #909090;
        width: 100%;
        display: flex;
        padding: 30px;
        align-items: center;

        .company-label{
            flex:1;
            padding-left: 5%;
        }

        .company-value{
            flex: 3;
            
            a{
                text-decoration: underline;
            }
            a::before{
                content: url(../images/icon/icon_pdf_red.svg);
                padding-right: 3%;
            }
        }
    }
}

.bg-key{
    min-height: 430px;
    position: relative;
    overflow: hidden;
    z-index: -1;

    .key-visual{
        position: fixed;
        width: 100vw;
        top: 0;
        height: 100vh;
        background-image: url(../images/company/bg-key.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .key-text{
        position: absolute;
        z-index: 3;
        color: #fff;
        top: 20%;
        left: 5%;

        h2{
            margin-bottom: 20px;
        }

        p{
            line-height: 2em;
        }
    }
}

/* スクロールバー */

.scroll_wrap{
    position: relative;            /* 絶対配置の基準 */
  height: 300px;
}


.scrollbar-text_04 {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #c80100;
  font-size: 14px;
  font-family: serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
}

/* スクロールバー本体（中央下に配置） */
.scrollbar_04 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;

  /* 高さの基準を与えるとアニメの見通しが良い */
  width: 1px;
  height: 100px;                 /* 縦線の長さと揃える */
}

/* 縦線 */
.scrollbar_04::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #c80100;
  opacity: 0.9;
}

/* ← ここが「ドット」だった場所。今回は子要素.scroll-iconを使うので未使用
.scrollbar_04::before { ... }
*/

/* 可動パーツ（SVG） */
.scroll-icon {
  position: absolute;
  bottom: 0;                     /* アニメの開始基準は bottom */
  left: 50%;
  transform: translateX(-50%);   /* 1px線の中央に合わせる */
  width: 20px;                   /* SVGの元サイズに合わせる */
  height: 23.509px;
  animation:
    circlemove 3s ease-in-out infinite,
    cirlemovehide 3s ease-out infinite; /* 元コードのスペルに合わせています */
}

/* 上下移動（元コードの値を踏襲） */
@keyframes circlemove {
  0%   { bottom: 95px; }
  100% { bottom: 0px; }
}

/* フェード（元コードのスペルに合わせたまま） */
@keyframes cirlemovehide {
  0%   { opacity: 0;   }
  50%  { opacity: 1;   }
  80%  { opacity: 0.9; }
  100% { opacity: 0;   }
}


.history_wrap{
   width: 50vw;
    max-width: 960px;
    margin: 40px auto;

    .history_row{
        display: flex;
        padding-top: 30px;
        padding-bottom: 30px;
        align-items: center;
        border-left: 2px solid #C80100;


        .history_year{
            flex: 1;
            color: #C80100;
            padding-left: 20px;
            font-weight: bold;
            position: relative;
        }

        .history_year::before{
            content:"";
            width: 10px;
            height: 10px;
            background-color: #C80100; /* 赤 */
            border-radius: 50%;    /* 丸くする */
            display: inline-block; 
            position: absolute;
            top: 33%;
            left: -6px;

        }

        .history_value{
            flex: 4;
        }
    }
}

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

    .company-wrap{
        width: 100%;
        .company-row{
            display: block;
            padding: 20px;

            .company-label{
                padding-left: 0;
            }

            .company-value{

                p{
                    line-height: 1.5em;
                }
                
            }
        }
    }

    .bg-key{
        min-height: 590px;

        .key-visual{
            background-image: url(../images/company/bg-spkey.png);
        }

        .key-text{
            top: 30%;
            left: 0;
            text-align: center;
            padding: 10px;

            p{
                text-align: left;
            }
        }
    }

    .history_wrap{
        width: 100%;
        padding: 10%;

        .history_row{
            display: block;
            padding-left: 0;
        }

        .history_value{
            padding-left: 20px;
            padding-top: 10px;
        }
    }
}


    /* ＝＝＝＝＝特定商取引のページ＝＝＝＝＝ */

    .examination-wrap{
    width: 100%;
    max-width: 1080px;
    margin: -40px auto 128px auto;

    .examination-row{
        border-bottom: 2px solid #909090;
        width: 100%;
        display: flex;
        padding: 30px;
        align-items: center;

        .examination-label{
            flex:1;
            padding-left: 5%;
        }

        .examination-value{
            flex: 3;
            padding-right: 10%;
        }
    }
}

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

    .examination-wrap{
        width: 100%;
        .examination-row{
            display: block;
            padding: 20px;

            .examination-label{
                padding-left: 0;
                padding-bottom: 10px;
            }

            .examination-value{
                padding-right: 0;

                p{
                    line-height: 1.5em;
                }
                
            }
        }
    }
}

    /* ＝＝＝＝＝特定商取引のページ＝＝＝＝＝ */

.terms-wrap{
    width: 100%;
    max-width: 1080px;
    margin: -40px auto 128px auto;

    .terms_item{
        padding-top: 80px;

        p{
            padding-top: 15px;
        }
    }

    .terms-list {
        list-style: none;      /* デフォルトの 1. を消す */
        counter-reset: num;    /* カウンター初期化 */
        padding-left: 0;


        .terms-list__small {
            font-size: 0.9em;
            list-style: none;      /* デフォルトの 1. を消す */
            counter-reset: num;    /* カウンター初期化 */
            padding-left: 0;
            padding-top: 20px;
        }

        .terms-list__small li {
            counter-increment: num;   /* 行ごとに+1 */
            position: relative;
            padding-left: 2em;        /* 番号の分だけ左に余白 */
        }

        .terms-list__small li::before {
            content: counter(num) " ) ";  /* ← ここで「1 )」の形にする */
            position: absolute;
            left: 0;
            top: 0;
        }
    }

    .terms-list li {
        counter-increment: num;   /* 行ごとに+1 */
        position: relative;
        padding-left: 2em;        /* 番号の分だけ左に余白 */
        padding-bottom: 5px;
    }

    .terms-list li::before {
        content: counter(num) " ) ";  /* ← ここで「1 )」の形にする */
        position: absolute;
        left: 0;
        top: 0;
    }
    }

/* ＝＝＝＝＝こだわりページ＝＝＝＝＝ */
.kv_wrap{
    position: relative;
    padding-top: 0;

    .kv-textbox{
        position: absolute;
        bottom: 25%;
        left: 10%;
        color: #fff;
        

        h1{
            letter-spacing:0.3em;
        }
        
        p{
            line-height: 2em;
            letter-spacing:0.3em;
            line-height: 2.5em;
        }
    }
}

.u-rerative-sozai{
    position: relative;
    margin-top: 128px;
}

/*  壱　北海道の厳選素材 */
.u-rerative-sozai::before{
        content: "";
        background-image: url(../images/kodawari/bg-01.png);
        position: absolute;
        display: inline-block;
        width: 64.69vw;
        height: 67.81vw;
        max-height: 930px;
        top: -5%;
        left: -10%;
        mix-blend-mode: multiply;

    }

    .u-rerative-sozai::after{
        content: "";
        background-image: url(../images/kodawari/bg-02.png);
        position: absolute;
        display: inline-block;
        width: 55.78vw;
        height: 29.34vw;
        top: -20%;
        right: -10%;
        z-index: 1;
    }

.sozai_title{
    h2{
        padding-left: 80px;
        position: relative;
        font-size: 28px;
        letter-spacing: 0.2em;
    }

    h2::before{
        content: "";
        display: inline-block;
        width: 65px;
        height: 65px;
        background-image: url("../images/kodawari/one.svg");
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        left: 0;
        top: -7px;
    }
}

.sozai_wrap{
    position: relative;
    width: 62.5vw;
    min-height: 630px;
    max-width: 800px;
    margin: 0 auto 128px auto;
    z-index: 2;

    .sozai_title{
        width: 27.34vw;
        max-width: 350px;
        height: 65px;
        padding-top: 8.91vh;
        margin: 0 0 -100 auto;
    }

    .sozai01{
        width: 29.69vw;
        max-width: 380px;
        margin-bottom: -22.63vh;
        display: block;
    }

    .sozai02{
        width: 23.44vw;
        max-width: 300px;
        margin-left: auto;
        margin-bottom: 50px;
        display: block;
    }

    p{
        
        line-height: 2.5em;
    }
}



    /* 弍　究極の手作り */

.u-rerative-handmade{
    position: relative;
    margin-top: 300px;
}
.u-rerative-handmade::before{
        content: "";
        background-image: url(../images/kodawari/bg-01.png);
        position: absolute;
        display: inline-block;
        width: 34.69vw;
        height: 17.81vw;
        top: 30%;
        right: -10%;
        mix-blend-mode: multiply;
        z-index: 2;

    }

    .u-rerative-handmade::after{
        content: "";
        background-image: url(../images/kodawari/bg-02.png);
        position: absolute;
        display: inline-block;
        width: 45.78vw;
        height: 42.34vw;
        max-height: 600px;
        top: 30%;
        right: 110px;
        z-index: 1;                     
    }

.handmade_title{
    h2{
        padding-left: 80px;
        position: relative;
        font-size: 28px;
        letter-spacing: 0.2em;
    }

    h2::before{
        content: "";
        display: inline-block;
        width: 65px;
        height: 65px;
        background-image: url("../images/kodawari/secound.svg");
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        left: 0;
        top: -7px;
    }
}

.handmade_wrap{
    position: relative;
    width: 62.5vw;
    min-height: 630px;
    max-width: 800px;
    margin: 0 auto 128px auto;
    z-index: 2;

    .handmade_title{
        width: 27.34vw;
        max-width: 350px;
        height: 65px;
        padding-top: 8.91vh;
        margin: 0 auto -100 0;
    }

    .l-left{
        margin-left: auto;
        width: 50%;
        text-align: left;
    }

    p{
        line-height: 2.5em;
        display: inline-block;
        text-align: left;
    }

    .handmade01{
        width: 37.5vw;
        max-width: 480px;
        margin-bottom: -12.63vh;
        margin-left: auto;
        display: block;
    }

    .handmade02{
        width: 21.88vw;
        max-width: 280px;
        margin-bottom: -90px;
        display: block;
    }

    

}


/* 参　味の追求 */
.u-rerative-taste{
    position: relative; /* sticky から relative に変更 */
    margin-bottom: 0; /* -160px を削除 */
    transition: .5s;
    z-index: 1; /* z-indexを追加 */
}

.taste_title{
    width: 27.34vw;
    max-width: 220px;
    padding-top: 8.91vh;
    margin: 0 auto;
    position: relative;
}

.taste_title h2{
    padding-left: 80px;
    position: relative;
    font-size: 28px;
    letter-spacing: 0.2em;
}

.taste_title h2::before{
    content: "";
    display: inline-block;
    width: 65px;
    height: 65px;
    background-image: url("../images/kodawari/sard.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -7px;
}

.taste_title::after{
    content: "";
    background-image: url(../images/kodawari/bg-02.png);
    position: absolute;
    display: inline-block;
    width: 45.78vw;
    height: 52.34vh;
    max-height: 600px;
    top: 0%;
    left: -20%;
    z-index: -1;                     
}

.taste_wrap{
    width: 62.5vw;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    position: relative; /* 追加 */
    padding-bottom: 60px; /* セクション間の余白を追加 */
}

.taste_wrap p{
    line-height: 2em;
    margin: 40px auto;
    width: 100vw;
    max-width: 480px;
    text-align: center;
}

/* 横スクロール紙芝居風 */
.cardShow_wrap{
    position: relative;
    z-index: 2; /* z-index を 1 から 2 に変更 */
}

/* ★ 背景画像用の疑似要素を追加 */
.cardShow_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_container.png);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1; /* 背景を後ろに */
    pointer-events: none; /* クリックイベントを無効化 */
}

.kamishibai-text h3 {
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: bold;
}

.kamishibai-text p {
    font-size: 20px;
    line-height: 1.8;
}

/* 横スクロールコンテナ */
.horizontal-scroll-wrapper {
    height: 100vh;
    overflow: hidden;
}

.horizontal-scroll-container {
    display: flex;
    height: 100vh;
    will-change: transform;
}

.scroll-panel {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    position: relative;
}

/* 紙芝居風のため、各パネルを絶対配置で重ねる */
.kamishibai-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

/* ★ kamishibai-wrapperの背景画像用の疑似要素 */
.kamishibai-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_container.png);
    background-size: 100%;
    background-repeat: repeat-y;
    z-index: -1; /* 背景を後ろに */
    pointer-events: none;
}

.kamishibai-panel {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-1 {
    background-image: url(../images/kodawari/kome.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 4;
}

.panel-2 {
    background-image: url(../images/kodawari/su.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
}

.panel-3 {
    background-image: url(../images/kodawari/nori.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.panel-4 {
    background-image: url(../images/kodawari/syouyu.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.instruction {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    z-index: 1000;
    animation: fadeInOut 3s ease-in-out infinite;
}

.kamishibai-text{
    color: #fff;
    position: absolute;
    text-align: left;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

    .text_right{
        right: 20%;
    }

    .text_left{
        left: 10%;
    }


@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .taste_fixed_text {
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .taste_fixed_text h3 {
        font-size: 32px;
    }
    
    .taste_fixed_text p {
        font-size: 16px;
    }
}



@media screen and (max-width: 1180px){
    .sozai_wrap{
        .sozai_title{
            margin:0;
            width: auto;
            padding: 0;
        }

        .sozai01{
            aspect-ratio: 270 / 280;
            width: 37.33vw;
        }

        .sozai02{
            aspect-ratio: 1/1;
            width: 26.67vw;
        }
    }

    .handmade_wrap{
        .handmade_title{
            margin:0;
            width: auto;
            padding: 0;
        }

        .handmade02{
            margin-bottom: 0;
        }

        .l-left{
            width: 100%;
        }
    }
}

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


    .kv_wrap{
        .kv-textbox{
            top: 10%;
        }
    }

    .u-rerative-sozai{
        padding-top: 0;
    }

    .sozai_title,
    .handmade_title,
    .taste_title{
        margin: 0;
        margin-bottom: 20px;
        width: auto;
        h2{
            font-size: 22px;
        }
        h2::before{
            width: 60px;
            height: 60px;
        }
    }

    .sozai_wrap,
    .handmade_wrap,
    .taste_wrap{
        width: auto;
        padding: 0 20px;

        p{
            line-height: 2em;
            width: auto;
            text-align: left;
        }
    }
    
    .sozai_wrap{
        .sozai01{
            width: 55vw;
            margin-left: -40px;
        }

        .sozai02{
            width: 40.67vw;
            margin-top: 220px;
        }
    }

    .u-rerative-sozai::before{
        height: 80vh;
    }

    .u-rerative-sozai::after{
        height: 69.34vw;
        width: 81.78vw;
        top: -100px;
    }

    .handmade_wrap{
        margin: 0 auto;

        .handmade01{
            width: 57.5vw;
            margin-left: 42%;
        }

        .handmade02{
            margin-left: -13%;
            margin-top: 20%;
            margin-bottom: 15%;
            width: 41.88vw;
        }

    }
    .u-rerative-handmade{
        margin-top: 180px;
    }
    .u-rerative-handmade::before{
        width: 44.69vw;
        height: 57.81vw;        
    }

    .u-rerative-handmade::after{
        width: 95.78vw;
        height: 82.34vw;
        top: 22%;
        right: 10px;
    }

    .taste_title{
        padding-top: 40px;
    }

    .taste_title::after{
        width: 75.78vw;
        height: 42.34vh;
        top: 80%;
        left: 20%;
    }

    .taste_fixed_wrap{
        background-image: url(../images/bg_container.png);
    }

    .taste_fixed{
        top: 0%;
        padding: 360px 0;
    }


    /* 横のスライダー */
    .panel-1 {
        background-image: url(../images/kodawari/kome_sp.png);
    }

    .panel-2 {
        background-image: url(../images/kodawari/su_sp.png);
    }

    .panel-3 {
        background-image: url(../images/kodawari/nori_sp.png);
    }

    .panel-4 {
        background-image: url(../images/kodawari/syouyu_sp.png);
    }


    .kamishibai-text{
        text-align: center;
        position: static;

        h3{
            font-size: 28px;
        }

        p{
            font-size: 16px;
        }
    }
    

}


/* ーーーーー お知らせ一覧ページ　ーーーーー */
.btn_wrap{
    display: flex;
    gap: 1.56vw;
    width: 38.28vw;
    height: 35px;
    max-width: 490px;
    margin: 0 auto;
}

.info-btn{
    position: relative;
    display: inline-block;
    padding: 0;
    border: none;
    background: transparent;
    height: 40px;
    width: 220px;
    padding: 3px;
    cursor: pointer; /* 追加：カーソルをポインターに */
    transition: opacity 0.3s ease; /* 追加：透明度のトランジション */
}

.info-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    border: 10px solid #fff;
    transition: transform 0.2s ease;
    transform: translate(0, 0);
    z-index: 0;
}

.info-btn:hover::before,
.info-btn.active::before{ /* 追加：activeクラスでもホバー効果 */
    transform: translate(5px, 5px);
}

/* 追加：アクティブ状態とそれ以外の透明度 */
.info-btn.active {
    opacity: 1;
}

.info-btn:not(.active) {
    opacity: 0.7;
}

.info-btn__all,
.info-btn__event,
.info-btn__news{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.info-btn__all{
    background-color: #A0993D;
}

.info-btn__event{
    background-color: #49A078;
}

.info-btn__news{
    background-color: #B74A4A;
}

/* カテゴリータグのスタイル */
.c-category-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    margin-right: 5px;
}

/* info カテゴリー（ブログ）→ 赤 */
.c-category-tag--blog {
    background-color: #e1ab6a;
}

/* info カテゴリー（お知らせ）→ 赤 */
.c-category-tag--info {
    background-color: #B74A4A;
}

/* event カテゴリー（イベント）→ 緑 */
.c-category-tag--event {
    background-color: #49A078;
}

/* 投稿を引用 */
.info_wrap{
    margin-top: 128px;
}

/* メイン（最初の投稿） */
.c-info-list__featured {
    margin-bottom: 40px;
}

.c-info-list__featured-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    margin-bottom: 80px;
}

.c-info-list__featured-link a{
    display: flex;
    text-decoration: none;
    color: inherit;
}

.c-info-icon{
    margin: 0 auto;
    width: 50%;
    display: block;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.c-info-icon img{
    width: 20px;
    margin: 0 auto;
}

.c-info-icon::before,
.c-info-icon::after{
    content: "";
    position: absolute;
    top: 50%;
    width: calc(65% - 100px);
    height: 2px;
    background-color: #c80100;
}

.c-info-icon::before{
    left: 0;
}

.c-info-icon::after{
    right: 0;
}

.c-info-list__featured-thumb {
    aspect-ratio: 480 / 320;
    flex: 1;
}

.c-info-list__featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding-top: 0;
}

.c-info-list__featured-meta {
    padding: 40px;
    flex: 1;
    position: relative;
}

.c-info-list__featured-meta::before {
    content: '';
    display: block; 
    width: 20%; 
    height: 40%; 
    background-image: url(../images/icon/omatsuri-kun.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -34%;
    right: 20px; 
    pointer-events: none;
}

/* 本文のスタイルを追加 */
.c-info-list__featured-excerpt {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.c-info-list__featured-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

/* グリッド（2番目以降の投稿） */
.c-info-list__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    list-style: none;
    padding: 0;
    margin: 0;
}


.c-info-list__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.c-info-list__thumb img {
    width: 21.88vw;
    max-width: 280px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 28/18;
    margin-bottom: 10px;
}

.c-info-list__date {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.c-info-list__title {
    font-size: 16px;
    margin-top: 2px;
}


/* ページネーション */
.pagination-wrap{
    display: flex;
    gap: 5%;
    margin-top: 80px;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    height: 50px;

    a:link, a:visited {
        color: #fff;
    }
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid #D3B787;
    text-decoration: none;
    color: #fff;
    background-color: #D3B787;
}

 

.pagination .current {
    background-color: #00552E;
    color: #fff;
    border-color: #00552E;
}

.pagination a:hover {
    background-color: #f0f0f0;
}


/* レスポンシブ対応 */
@media (max-width: 750px) {

    .container-inner{
        width: auto;
    }
    .c-info-list__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .c-info-list__featured-meta::before {
        display: none;
    }

    .btn_wrap{
        width: auto;
    }

    .info-btn::before{
        border: none;
    }

    .info-btn__all, .info-btn__event, .info-btn__news{
        border-radius: 0;
        height: 150%;
    }

    .c-info-list__featured-link{
        display: block;
    }

    .c-info-list__featured-meta{
        background-color: #fff;
        padding: 20px;
    }

    .c-info-icon{
        width: 80%;
    }

    .c-info-icon::before, .c-info-icon::after{
        width: 40%;
    }


    .pagination-wrap{
        overflow: hidden;

        img{
            width: 20%;
            padding-top: 20px;
        }
    }
    .pagination{
        height: 45px;
    }

    .pagination a, .pagination span{
        padding: 10px;
    }

    .c-info-list__thumb img{
        width: 100%;
    }
}


/* =====お知らせ詳細===== */
.single-breadcrumb-container{
    max-width: 960px;
    margin: 20px auto;
}

.single-kv-contain{
    background-image: url(../images/bg_container.png);
    background-size: 100% auto;
    img{
       padding-top: 0;
    }
}

.flex-box{
    margin-top: 128px;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px 40px 10px;;
    gap: 20px;
    position: relative;
}

.flex-box::before{
    position: absolute;
    content: "クリックして表示";
    top: 8%;
    left: 42%;
    font-weight: bold;
    color: #00552E;
}

.flex-box::after{
    content:'';
    background-image: url(../images/icon/omatsuri-kun02.svg);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -27%;
    right: 20px;
    pointer-events: none;
    width: 20%;
    height: 40%;
}


 .emphasis-text {
    display: inline;
    padding: 0 1px 0px;
  }
  .emphasis-color-01 {
    background: linear-gradient(transparent 60%, #ffe77d 0%);
  }
  .emphasis-color-02 {
    background: linear-gradient(transparent 60%, #aeedff 0%);
  }
  .emphasis-color-03 {
    background: linear-gradient(transparent 60%, #bee5b8 0%);
  }
  .big-blue {
    font-size: 1.2em;
    color: blue;
  }
  .big-q {
    font-size: 1.4em;
    color: red;
  }
  .big-font {
    font-size: 1.8em;
  }
 
  .single-post #h1-lego .h1-font {
    padding: 53px 14%;
  }
  .kikan dl {
    display: flex;
    font-size: 1.2em;
  }
  .kikan dl dt,
  .kikan dl dd {
    padding: 10px 20;
    margin: 0;
    letter-spacing: 1.2;
  }
  .kikan dl dt {
    background: red;
    color: #fff;
    font-weight: bold;
  }
  .kikan dl dd {
    border: solid red;
  }
  @media screen and (max-width: 576px) {
    h2 {
      font-size: 24px;
    }
    .single-post #h1-lego .h1-font {
      padding: 25px 15%;
    }
    .big-font {
      font-size: 1.6em;
    }
    .kikan dl {
      flex-direction: column;
      text-align: center;
    }
  }

  html {
		scroll-behavior: smooth;
	}
	.tenpo-inner section {
		padding: 0;
	}
	.tenpo-inner section:last-of-type {
		margin-bottom: 0;
	}

	h2.p-area {
		color: #fff;
		padding: 10px 20px;
		background: #ba0000;
		margin-bottom: 20px;
	}
	.tenpo-inner {
		padding: 40px 0;
	}
	.font16 {
		font-size: 16px;
	}
	.text-red {
		color: #ba0000;
		font-weight: bold;
	}
	.tenpo-list {
		display: flex;
		margin-bottom: 20px;
	}
	.tenpo-list:last-child {
		margin-bottom: 0 !important;
	}
	.tenpo-list h3 {
		font-size: 18px;
		writing-mode: vertical-rl;
		padding: 5px;
		display: flex;
		align-items: center;
		flex-direction: column;
		letter-spacing: 10px;
		border: 1px solid #cccccc;
		background: #80af9a;
	}
	.tenpo-schedule ul {
		display: flex;
		flex-wrap: wrap;
		font-size: 17px;
		list-style: none;
		padding: 0;
		margin: 0;
	}
	.tenpo-schedule ul li {
		width: 129px;
		margin-left: -1px;
		border: 1px solid #cccccc;
	}
	.tenpo-schedule ul li p {
		text-align: center;
		padding: 5px 0;
		background: #ececec;
	}
	.tenpo-schedule ul li dl {
		margin: 0;
		padding: 10px 5px;
	}
	.tenpo-schedule ul li dl dd {
		margin: 0;
	}
	.bg-yellow {
		background-color: #fcffe8;
	}
	.bg-reds {
		text-align: center;
		background-color: #ffefef;
	}
	.area-link {
		text-align: center;
		padding-block: 20px;
		margin-block: 20px;
	}
	.area-link ul {
		list-style: none;
		display: flex;
		justify-content: center;
		gap: 20px;
		padding: 0;
		margin: 0;
	}
	.area-link ul a {
		font-size: 16px;
		color: #fff;
		padding: 5px 20px;
		background: #333;
		border-radius: 30px;
	}
	@media screen and (min-width: 501px) and (max-width: 950px) {
		.tenpo-list {
			display: block;
			margin-bottom: 30px;
		}
		.tenpo-list h3 {
			width: 100%;
			writing-mode: inherit;
		}
		.tenpo-schedule ul li {
			min-height: 120px;
			width: 25%;
			margin-left: inherit;
		}
	}
	@media screen and (max-width: 500px) {
		.tenpo-list {
			display: block;
			margin-bottom: 30px;
		}
		.tenpo-list h3 {
			width: 100%;
			writing-mode: inherit;
		}
		.tenpo-schedule ul li {
			min-height: 120px;
			width: 50%;
			margin-left: inherit;
		}
		h2.p-area {
			font-size: 20px;
		}
		.area-link ul {
			gap: 10px;
		}
		.area-link ul a {
			font-size: 14px;
			padding: 5px 10px;
		}
	}

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

    .single-kv-contain{
    overflow: hidden;
    height: auto;
    img{
        width: auto;
       padding-top: 0;
    }
    }

    .single-breadcrumb-container {
    margin-top: -80px;
    }

    .flex-box{
        grid-template-columns: 1fr;
         padding: 80px 20px 10px;
    }

    .flex-box::before{
        left: 30%;
    }

    .flex-box::after{
        width: 25%;
        height: 30%;
        top: -7%;
        right: 10px;
    }
}
    

/* ーーーーー求人ページーーーーー */

.p-recruit-textbox{
    text-align: center;
    padding-top: 128px;
    width: 66.41vw;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 128px;

    h1{
        margin-bottom: 20px;
        letter-spacing: 0.25em;
    }
}

.benefits{
        margin-bottom: 128px;
    }

.p-recruit-benefits{
    background-color: #fff;
    padding: 80px 40px;
    width: 81.25vw;
    max-width: 1040px;
    margin: 0 auto;


    .p-recruit-benefits__title{
        text-align: center;
        color: #AB0218;
        letter-spacing: 0.25em;
        margin-bottom: 40px;
    }

    .p-recruit-benefits__wrap{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 40px;


        .p-recruit-benefits__item{
            text-align: center;

            .p-recruit-benefits__item-title{
                margin-bottom: 20px;
            }

            .p-recruit-benefits__item-text{
                text-align: left;
            }
        }
    }
}


.nigiri,
.hole,
.kitchen{
    width: 81.25vw;
    max-width: 1040px;
    margin: 0 auto;
    margin-bottom: 260px;
    position: relative;
}
.nigiri::before,
.hole::before,
.kitchen::before{
    content: '';
    background-image: url(../images/recruit/bg-01.png);
    position: absolute;
    display: inline-block;
    width: 29.06vw;
    height: 20.44vw;
    mix-blend-mode: multiply;
}


.nigiri::before{
        top: -10%;
        left: 5%;
    }

.hole::before{
        top: -8%;
        right: 8%;
}

.kitchen::before{
        top: 16%;
        left: 11%;
}

.p-recruit-job-flex__wrap{
    display: flex;
    gap: 40px;

    .p-recruit-job__img{
        width: 43.75vw;
        margin-left: -40px;
        display: block;
        z-index: 1;
    }

    .p-recruit-job__textbox{
        width: 34.38vw;
        padding-top: 80px;

        .p-recruit-job__title{
            color: #00552E;
            margin-bottom: 40px;
        }
    }
}

.hole .p-recruit-job-flex__wrap{
    flex-direction: row-reverse;
}

.hole .p-recruit-job__img{
    margin-left: 0;
}

.p-recruit-kind__wrap{
    margin-top: 60px;
    margin-bottom: 40px;

    .p-recruit-kind__title{
 
        height: 40px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;

        p{
            width: 140px;
            padding: 5px;
            background-color: #000;
            color: #fff;
        }
    }

    .p-recruit-kind__title::before,
    .p-recruit-kind__title::after{
        content: "";
        position: absolute;
        top: 50%;
        width: calc(50% - 100px);
        height: 2px;
        background-color: #004575;
        
    }

    .p-recruit-kind__title::before{
        left: 0;
    }
    .p-recruit-kind__title::after{
        right: 0;
    }

    .p-recruit-kind__items{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 30px;
        margin: 0 auto;
        padding-top: 40px;
        text-align: center;

        .c-recruit-btn{
            position: relative;
            z-index: 1;               /* 枠より前に出す */
            display: flex;
            gap: 5px;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 100%;
            background-color: #F7F5ED;
            border-radius: 5px;
            letter-spacing: 0.25em;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            color: #00552E;
        }

        .c-recruit-btn::after{
            content: url(../images/icon/open.svg);
            position: absolute;
            right: 20px;
        }


        .c-recruit-btn__green{
            position: relative;
            display: inline-block;
            padding: 0;
            border: none;
            background: transparent;
            height: 50px;
            width: 280px;
            padding: 3px;

            .c-btn{
            color: #00552E;
            }
        }

        /* 外側の枠は ::before で描く */
        .c-recruit-btn__green::before{
            content: "";
            position: absolute;
            inset: 0;                 /* 上下左右0でピッタリ */
            border: 10px solid #2d5944;
            transition: transform 0.2s ease;  /* 動き用 */
        }

        /* hover時：外側の枠だけ少しズラす */
        .c-recruit-btn__green:hover::before{
            transform: translate(4px, 4px);   /* 好きな量に調整してOK */
        }


        }
    }

.recruit-img__bnr{
    max-width: 960px;
    margin: 0 auto;
}



@media screen and (max-width: 750px){
    .p-recruit-job-flex__wrap {
        display: block;


        .p-recruit-job__img{
            width: auto;
        }

        .p-recruit-job__textbox{
            width: auto;
            margin-top: 40px;
            padding-top: 0;
        }

        .p-recruit-job__title{
            margin-bottom: 20px;
        }

    }

    .hole .p-recruit-job-flex__wrap{
        .p-recruit-job__img{
            margin-right: -40px;
        }
    }

.nigiri::before,
.hole::before,
.kitchen::before{
    width: 79.06vw;
    height: 54.44vw;
}


.nigiri::before{
    top: -4%;
    left: 35px;
}

.hole::before{
    top: -3%;
    right: 11%;
}

.kitchen::before{
    top: 16%;
    left: 11%;
}

    .p-recruit-textbox{
        padding-top: 0;
        width: auto;

        p{
            text-align: left;
        }
    }
    
    .p-recruit-benefits {

        .p-recruit-benefits__wrap{
            display: block;
            margin-bottom: 40px;
    }
    }

    .p-recruit-kind__wrap{

        .p-recruit-kind__items{
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 20px 0;
        }
    }

    .nigiri, .hole, .kitchen {
        margin-bottom: 128px;
    }
}

/* ========================================
   モーダル iframe 用スタイル
   既存のCSSファイルの末尾に追加してください
======================================== */

/* モーダルオーバーレイ */
.modal-iframe-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-iframe-overlay.active {
  display: flex;
}

/* モーダルコンテナ */
.modal-iframe-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 80vh;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 閉じるボタン */
.modal-iframe-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-iframe-close:hover {
  background: #f0f0f0;
  transform: rotate(90deg);
}

.modal-iframe-close::before,
.modal-iframe-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #333;
}

.modal-iframe-close::before {
  transform: rotate(45deg);
}

.modal-iframe-close::after {
  transform: rotate(-45deg);
}

/* iframe */
.modal-iframe-content {
  width: 100%;
  height: 100%;
  border: none;
}

/* ローディング */
.modal-iframe-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #666;
}

.modal-iframe-loading::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* モーダルトリガーボタン */
.modal-trigger-btn {
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}


/* スクロール防止 */
body.modal-open {
  overflow: hidden;
}

/* ========================================
   モーダル iframe 用スタイル ここまで
======================================== */


}