@media screen and (max-width: 969px) {
  /* 969px以下の時に使用するCSSを記載  */


* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin:0 auto;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    background-color: #eae8e3;
}

a{
    color: inherit;
    text-decoration: none;
}

/* index Header Area*/
.header_all_smart{
    display:none;
}

.header_all_pc{
    width:100%;
    height:540px;
    display:flex;
    position: relative;
}

.header_left{
    height:540px;
    display:block;
    background-color: #ffffff;
}

.header_left_01{
    width:100%;
    height:330px;
    position: relative;
}

.header_left_01 img{
    margin-top: 0;
    display:block;
    width:48px;
    height:auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
}

.header_left_02{
    /*display:block;
    width:100%;
    height:42px;
    position: relative;*/
    position: absolute;
    top: 3%;
    right: 2%;
}

.header_left_03{
    display:block;
    width:100%;
    height:180px;
    position: relative;
    margin:0;
}

ul.ul_list_hd_top{
    display:block;
    writing-mode: vertical-rl;
    position: absolute;
    /*top: 69%;
    left: 49%;*/
    top: 50%;/*20240413追加*/
    left: 50%;/*20240413追加*/
    margin:0px;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    color:#534741;
    font-size: 14px;/*8ptより変更20240422*/
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
}

.header_p{
    position: absolute;
    top:79%;
    right:3%;
    width:auto;
    height:auto;
}

.header_p p{
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Noto Serif JP', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    font-size: 15pt;
    color:#ffffff;
    text-align: left;
    line-height: (30pt);
}

.header_right{
    width:87.5%;
    height:540px;
}

.header_right img{
    width:100%;
    height:540px;
}

.header_warabi img{
    position: absolute;
    top:77%;
    left:15%;
    width:10%;
    height:22%;
}

/*ハンバーガーメニュー*/
/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
  }
  
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 1px;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
    /*position: absolute;*/
    position: fixed;
    top: 25px;
    /*top: 28%;*/
    /*left: 49%;*/
    margin:0px;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    background: #534741;
  }


/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background: #eae8e3;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
  width:15px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #eae8e3;
}


#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  width:25px;
  transform: rotate(-45deg);
  background: #eae8e3;
}
  
/* メニューのデザイン*/
.nav_content {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: rgb(234, 232, 227);
    transition: .5s;
    text-align: center;
    padding-top: 20px;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  /*font-family: 'しっぽり明朝';*/
}

.nav_item a {
  color: #736357;
  text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
    left: 50%;/* メニューを画面に入れる */
  
}


/* index Main Area*/
.main_all_smart{
    display:none;
}

.main_all_pc{
    width:100%;
    height:900px;
    display:block;
}

.main_top{
    width:100%;
    height:540px;
    display:flex;
}

.main01{
    width:70%;
    height:540px;
    position: relative;
}

.main01 img{
    width:100%;
    height:540px;
    object-fit: cover;
}

/*トップ切り替え画像*/
.slider{
    margin: 100px auto;
    width: 80%;
}
.slider img{
    height:540px;
    width: 100%;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #000;
}

.main02{
    width:30%;
    height:540px;
    display:block;
}

.main02-1{
    height:462px;
    background-color:rgba(234, 232, 227, 0.5);
    mix-blend-mode: multiply;
}

.main02-2{
    height:78px;
    background-color: #eae8e3;
}

.main_bottom{
    width:95%;/*20240410変更*/
    height:360px;
    background-color: #eae8e3;
    display:flex;
    position: relative;
}

.main_bottom_l{
    width:30%;
    height:360px;
}

.main_bottom_l img{
    mix-blend-mode:multiply;
    align-items: flex-end;
    padding-left: -5%;
    width:292px;
    height:auto;
    margin-top: 10%;
}

/*わらび絵*/
.warabi_e img{
    position: absolute;
    width: 10%;
    height:30%;
    left: 66%;
    top:-18%;
}

.main_bottom_r {
    /*margin-left: 20%;*/
    margin-left: 15%;/*20240413追加*/
    margin-top: 5%
}

.main_bottom_r h3{
    color:black;
    font-size: 25pt;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    /*font-weight: 500;*/
    line-height:28pt;
    margin-bottom: 28px;
}

.main_bottom_r p{
    font-size: 1.4em;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
}

.kigen{
    border:1px solid rgba(148,129,117,0.5);
    width:100%;
}

.kigen p{
    padding:10px;
    width:100%;
    /*height:40px;*/
    font-size: 1em;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    text-align: center;
    color:#534741;
}

/* index kodawari Area*/
.kodawari_sm{
    display:none;
}

.kodawari{
    width:100%;
    height:1412px;
    display:flex;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.kodawari_l{
    width:43%;
    height:1412px;
}

.kodawari_l h2{
    color:black;
    font-size: 33pt;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    line-height: 33pt;
    font-weight: 500;
    margin-left: 20%;
    margin-top: 24%;
}

.kodawari_r{
    width:57%;
    height:1412px;
    display:block;
    margin-right: 0;
    padding-right: 0;
}

.kodawari_r p{
    writing-mode: vertical-rl;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Noto Serif JP', serif;*/
    font-weight: 400;
    font-size: 16pt;
    line-height: 33pt;
}

.kodawari_r_01,.kodawari_r_02,.kodawari_r_03{
    width:100%;
    height:320px;
    display:flex;
}

.kodawari_r_01{
    margin-top: 139px;
    margin-bottom:73px;
}

.kodawari_r_02{
    margin-bottom: 73px;
}

.kodawari_r_03{
    margin-bottom: 166px;
}

.kodawari_r_01_img,.kodawari_r_02_img,.kodawari_r_03_img{
    position: relative;
}

.kodawari_r_01_img video,.kodawari_r_02_img video{
    width:100%;
    height:320px;
    margin-right: 0;
    padding-right: 0;
    object-fit: cover;
}

.kodawari_r_03_img img{
    width:100%;
    height:320px;
    margin-right: 0;
    padding-right: 0;
    object-fit: cover; 
}

.kodawari_r_01_img p,.kodawari_r_02_img p{
    position: absolute;
    bottom:2%;
    left:74%;
    writing-mode: horizontal-tb;
    color:rgba(234, 232, 227, 0.5);
    font-size: 12pt;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    font-weight: 400;
    line-height: 33pt;
}

.kodawari_r_03_img p{
    position: absolute;
    bottom:2%;
    left:74%;
    writing-mode: horizontal-tb;
    color:rgba(115, 99, 87, 0.5);
    font-size: 12pt;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    font-weight: 400;
    line-height: 33pt;
}


/* index product Area*/
.product_sm{
    display:none;
}

.product{
    width:100%;
    height:1175px;
    display: block;
    position: relative;
}

.product-01{
    width:100%;
    height:604px;
    background-color: #eae8e3;
    text-align: center;
    position: relative;
}

.pd-warabi{
    position: absolute;
    top:-7%;
    left:40%;
    right:45%;
}

.pd-warabi img{
    width:100%;
    height:100%;
    margin-top: 50%;/*20240422追加*/
}

.product-01 img{
    margin-top: 133px;
    position: absolute;
    top: 29%;
    left: 46%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    width:88%;
    height:353px;
    object-fit: cover;
}

.pro_1{
    position:absolute;
    top:10%!important;
    left:46%!important;
    width:37px;
    height: 114px;
    background-color: #ffffff;
    z-index:10000;
}

.pro_1 p{
    position: absolute;
    color:black !important;
    font-size: 24px!important;
    padding: 2px;
    top:0%;
    left:130%!important;
    writing-mode: vertical-rl;
    height:100%;
    z-index: 20000;
}
.product-01 p{
    position: absolute;
    bottom:27%;
    right:10%;
    color:rgba(255, 255, 255, 0.5);
    font-size: 15px;
}

.product-02{
    width:100%;
    height:353px;
}

.product-02 img{
    width:100%;
    height:353px;
    margin-top: 65px;
}

.product-03{
    width:100%;
    height:218px;
    background-color: #eae8e3;
    position:relative;
}

.product-03 p{
    /*position:absolute;
    top:0%;
    left:30%;*/
    text-align: center;
    font-size: 1em;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    margin-top: 0;
}

/* index shop Area*/
.shop_mb{
    display:none;
}

.shop{
    width:100%;
    height:1186px;
    display:block;
    background-color:rgba(255, 255, 255, 0.5)
}

.shop_top{
    width:100%;
    height:745px;
    display:flex;
}

.shop_tl h2{
    margin-left: 4%;
    margin-top: 11%;
    font-size: 25px;
    line-height: 34px;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
}

.shop_bottom{
    width:100%;
    height:441px;
    display:flex;
}

.shop_tl{
    width:45%;
    height:745px;
}

.shop_tr{
    display:block;
    height:100%;
    width:50%;
}

.shop_tr_t{
    height:40%;
}

.shop_tr_t img{
    width:100%;
    height:100%;
    padding-right:5%;
}

.shop_tr_b{
    height:60%;
    display: block;
}

/*店舗の案内　文字部分*/

td{
    font-size:0.75em;
    border-bottom:2px solid #c7c7c7;
    padding: 10px;
    line-height: 1.5;
}

p.small{
    font-size: 12px;
    color:#534741;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    line-height: 1.5;

}

table.tb_shop{
    font-size: 1.2em;/*20240417追加*/
    margin-top: 27px;
    border-spacing: 0;
    margin-bottom: 24px;
    width:100%;
}

tr.tr_shop{
    width:100%;
    height:40px;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
}

tr.tr_shop02{
    width:100%;
    height:70px;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
}

td.td_shop{
    width:30%;
    font-size: 14px;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    line-height: 11px;
}

.shop_bl{
    width:45%;
    height:441px;
    position: relative;
}

.shop_br{
    width:50%;
    height:441px;
    position: relative;
}

.shop_bl p{
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    font-size:11px;
    margin-left: 4%;
    line-height: 15px;
    letter-spacing: 0.5;
    margin-left: 20%;/*20240410追加*/
}


/*index Access Area*/
.access_mb{
    display:none;
}


.access{
    width:100%;
    height:1363px;
    display:block;
}

.ac_top{
    width:100%;
    height:800px;
    position: relative;
}

.ac_top01 {
    width: 100%;
    height: 248px;
    text-align: center;
    position: relative;
}

.ac_top01 img{
    position:absolute;
    left:40%;
    top:-25%;
    width:18%;
}

.ac_top01 p{
    position: absolute;
}

.acs_1{
    position: absolute;
    top: 35%;
    left:49%;
    width: 37px;
    height: 120px;
    background-color: #ffffff;
    z-index: 10000;
}



.acs_1 p{
    position: absolute;
    color: black !important;
    font-size: 24px!important;
    top: 0%;
    left:-32%;
    writing-mode: vertical-rl;
    height: 100%;
    z-index: 20000;
}



.ac_top02{
    width:100%;
    height:324px;
    padding-top:20px;
    margin:0;
}

.ac_top02 iframe{
    width:100%;
    height:324px;
}

.ac_top03{
    width:100%;
    /*height:228px;*/
    height: auto;/*20240413追加*/
    position: relative;
}

.ac_top03_1{
    width:50%;
    top:5%;
    left:5%;
    /*height:38px;*/
    height: auto;
    position: absolute;
    margin: 5% 45%;
}

.ac_top03_1_t{
    /*display:flex;*/
    display: block;/*20240413追加*/
    /*height:58px;*/
    height: auto;/*20240413追加*/
}

.ac_top03_1_t1{
    width:40%;
    /*height:58px;*/
    height: auto;/*20240413追加*/
}

.ac_top03_1_t2{
    width:100%;
    /*height:58px;*/
    height:auto;/*20240413追加*/
    /*margin-left:5%;*/ 
}

.ac_top03_1_t2 p{
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    font-size:14px;
    line-height:1.5;
    padding-top: 0%;
}

.ac_top03_1_t2 p.small{
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    font-size: 12px;
    line-height:1.5;
    /*letter-spacing: 0.01em;*/
    /*padding-top: 3%;*/
}

.ac_top03_1_b{
    display:block;
    width:98%;
    height:108px;
}

.ac_top03_1_b p{
    align-items: flex-end;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    font-size:14px;
    line-height: 1.5;
    /*letter-spacing: 0.01em;*/
    color: black;
}

.ac_btm{
    width:100%;
    height:563px;
}

.ac_btm_pic{
    width:100%;
    height:231px;
}

.ac_btm_pic_pc img{
    width:100%;
    height:231px;
    margin-top: 25px;
}

.ac_btm_pic_mb{
    display:none;
}

.ac_btm_con{
    width:100%;
    height:332px;
    position: relative;
}

.ac_btm_con01{
    width:80%;
    height:200px;
    border:15px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
}

.ac_btm_con01-1,.ac_btm_con01-2{
    width:50%;
    height:43px;
}

.ac_btm_toi{
    background-color: #668453;
    width:70%;
    height:60px;
}

.ac_btm_con01-1 h4{
    color:#ffffff;
    width:100%;
    text-align: center;
    font-size:17px;
    line-height:34px;
}

.ac_btm_con01-2 p{
    top: 15%;
    left: 50%;
    width:100%;
    font-size:30px;
    text-align: center;

}

.ac_btm_con01-2 span.small{
    font-size:12px;
    text-align: center;
    color:#534741;
    width:100%;
}

/*index footer Area*/
.footer{
    width:100%;
    height:466px;
    display:block;
    background-color: #668453;
    position: relative;
}

.footer_top{
    width:100%;
    height:140px;
    margin: 5% 0%;
    text-align: center;
}

.footer_top img{
    margin-top: 8%;
    height:93px;
}

.footer_btm{
    width:80%;
    text-align: center;
    margin: 0% 10%;
    margin-top: 0;
    position: absolute;
}

.footer_btm p{
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    font-size:14px;
    color:white;
}

.footer_btm p.small{
    font-size:14px;
    /*font-family: 'Cormorant Garamond', serif;
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    font-family: 'Shippori Mincho B1', serif;*/
    color:rgba(255, 255, 255, 0.5)
}

/*20231218 top修正*/
.zu {
    display: flex;
    padding-top: 5%;
}

.product-01 img {
    margin-top: 150px;
    margin-left: 0%; 
    margin-right: 0%; 
    width: 41%;
    height: auto !important;
    position: absolute;
    left: 24%;
}

.hyou {
    width: 50%;
    margin: 2% auto;
    display: block;
    margin-left: 52%;
    margin-top: 166px;
}

table.shohin {
    width: 85%;
    border: 1px solid #000;
    font-size: 0.8em;
}

td.sen0 {
    border-bottom: none;
    text-align: left;
    /*font-size: 12px;*/
    line-height: 1.5;
}

table.eiyo {
    width: 90%;
    font-size:9px;
}

.eiyo td{
    font-size: 12px;
    line-height: 1.5;
}

/* 2025.08修正 */
.shop_tl, .shop_tr{
    height: auto;
}

.shop {
    height: auto;
}


}