@charset "utf-8";
* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin:0 auto;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    /*font-family: 'Shippori Mincho B1', serif;*/
    font-family: "Shippori Mincho", serif;/*20240416追加*/
    background-color: #eae8e3;
    overflow-x: hidden;
    letter-spacing: 0.05em;
    line-height: 1.5;
}
/*テキストのアニメーション*/
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    animation-duration: 3s;
    animation-fill-mode: forwards;
  }
  
  .isVisible {
    opacity: 1 !important; /* 完全に表示 */
    transform: translateY(0) !important; /* 元の位置に */
  }


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

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

.header_all_pc{
    position:relative;
}

.header_all_pc{
    width:100%;
    height:765px;
    display:flex;
}

.header_left{
    width:170px;
    height:765px;
    display:block;
    background-color: #ffffff;
}

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

.header_left_01 img{
    margin-top: 0;
    display:block;
    width:auto;
    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:4%;
    position: relative;*/
    position: absolute;
    top: 3%;
    right: 2%;
}

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

ul.ul_list_hd_top{
    display:block;
    writing-mode: vertical-rl;
    position: absolute;
    top:50%;
    left: 45%;
    margin:0px 5%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    color:#534741;
    font-size: 12pt;/*デザイン案より小さく*/
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
}

ul.ul_list_hd_top li{
    padding-left:5%;
}

.header_right{
    width:calc(100% - 170px);
    height:765px;
}

.header_right img{
    width:100%;
    height:765px;
    object-fit: cover;
}

.header_warabi img{
    position: absolute;
    top: 73%;
    left:15%;
    width:auto;
    height:auto;
}

.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: 24pt;
    color:#ffffff;
    text-align: left;
    line-height: (42pt);
}

.header_t_p{
    position:absolute;
    top:0vh;
    right:0vh;
    width:auto;
    height:auto;
}

.header_t_p p{
    font-family: "游明朝";
    font-size: 12px;
    color:#ffffff;
    background-color: #534741;
    /*padding:20px 40px;*/
    padding: 20px 80px 20px 40px;/*20240416追加*/
}

/*ハンバーガーメニュー*/

label {
    width: 40px;
    height: 40px;
  }

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

  .drawer_open ::after{
    background: none;
  }



/* ハンバーガーメニューのアイコン */
.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: 15%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: rgb(234, 232, 227);
    transition: .5s;
    text-align: center;
    /*padding-top: 20px;*/
    padding-top: 80px;
}

/* メニュー黒ポチを消す */
.nav_list {
    list-style: none;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
}

li.nav_item{
    margin: 10px;
}

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

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


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

.main_all_pc{
    width:100%;
    height:1387px;
    display:block;
    position:relative;
}

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

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

.main01 img{
    width:100%;
    height:765px;
}

/*main画像切り替え ※変更したのでいらない
.slideshow-fade{
    position: relative;
    width: 100vw;
    height: 500px;
    margin-top: 0;
    li{
        list-style: none;
        width: 100vw;
        height: 100%;
        img{
          position: absolute;
          left: 0;
          top: 0;
          width: 100vw;
        }
    }
}
*/

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

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

.main02-2{
    height:38%;
    background-color: #eae8e3;
}

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

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

/*わらび絵*/
.warabi_e img{
    position: absolute;
    width:auto;
    height:auto;
    right:22%;
    bottom:92%;
}

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

.main_bottom_r h3{
    color:black;
    font-size: 36pt;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    line-height: 48pt;
    letter-spacing:0.1em;
}

.main_bottom_r p{
    /*font-size: 25pt;*/
    font-size: 1.8em;
    margin-top:5%;
    margin-bottom: 0%;
    line-height: (31.5pt);
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    /*letter-spacing:0.01em;*/
}

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

.kigen p{
    padding:10px;
    width:100%;
    font-size: 1em;
    line-height: 16pt;
    text-align: center;
    /*letter-spacing:0.01em;*/
    margin-top: 0%;
    padding:20px 10px;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    color:#534741;
}

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

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

.kodawari_l{
    width:42%;
    height:2004px;
}

.kodawari_l h2{
    color:black;
    font-size: 48pt;
    line-height: 48pt;
    font-family: 'Cormorant Garamond', serif;
    font-family: 'Noto Serif JP', serif;
    font-family: 'Shippori Mincho', serif;
    margin-left: 20%;
    margin-top: 16%;
    font-weight: 500;
}

.kodawari_r{
    width:58%;
    height:2004px;
    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:24pt;
    line-height: 48pt;
}

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

.kodawari_r_01{
    margin-top: 198px;
}

.kodawari_r_03{
    margin-bottom: 140px;
}

.kodawari_r_01_img,.kodawari_r_02_img,.kodawari_r_03_img{
    position: relative;
    width:100%;
}

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

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

.kodawari_r_01_img p,.kodawari_r_02_img p{
    position: absolute;
    bottom:19%;
    left:80%;
    writing-mode: horizontal-tb;
    color:rgba(234, 232, 227, 0.5);
    font-size: 18pt;
    font-family: 'Cormorant Garamond', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    line-height: 48pt;
}

.kodawari_r_03_img p{
    position: absolute;
    bottom:19%;
    left:80%;
    writing-mode: horizontal-tb;
    color:rgba(115, 99, 87, 0.5);
    font-size: 18pt;
    font-family: 'Cormorant Garamond', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    line-height: 48pt;
}*/


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

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

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

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

.pd-warabi img{
    width:100%;
    height:100%;
}

/*.product-01 img{
    margin-top: 190px;
    margin-left: 5%;
    margin-right: 5%;
    width:80%;
    height:500px;
}*/

.pro_1{
    position: absolute;
    right:50%;
    top:10%;
    background-color: #ffffff00;
    height:190px;
    width:55px;
    z-index:10000;
}

.pro_1 p{
    position: absolute;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Noto Serif JP', serif;    
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 30pt!important;
    line-height: 48pt;
    /*margin:4px;*/
    padding: 5px;
    writing-mode: vertical-rl;
    color:black !important;
    top:0%;
    left:100%;
    height:100%;
    z-index:20000;
}

.product-01 p{
    position: absolute;
    bottom:21%;
    right:14%;
    color:rgba(255, 255, 255, 0.5);
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Noto Serif JP', serif;    
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    font-size: 18pt;
    line-height: 48pt;

}

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

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

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

.product-03 p{
    padding-top:5% !important;
    padding-bottom: 4% !important;
    text-align: center !important;
    font-size: 1.2em;
    margin-top: 0;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    line-height: 22pt;
}

/* index shop Area*/
.shop_mb{
    display:none;
}
.shop{
    width:100%;
    height:2200px;/*1680pxから変更20231214*/
    display:block;
    background-color:rgba(255, 255, 255, 0.5)
}

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

.shop_tl h2{
    margin-left: 20%;
    margin-top: 5%;
    font-size: 36pt;
    line-height: 48pt;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

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

.shop_tl,.shop_tr{
    width:50%;
    height:650px;
}

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

.shop_tr_t{
    height:33%;/*40％から変更20231214*/
}

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

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

#events-container {
    width: 60%; /* あるいは必要な幅に調整 */
    margin: 0 auto; /* 左右中央揃え */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px; /* 角丸のデザイン */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* 軽い影をつけて立体感を出す */
    background-color: #f8f8f8; /* 営業カレンダーに合わせた色 */
    color: #333; /* 営業カレンダーに合わせた文字色 */
    text-align: center; /* テキストを中央揃え */
}

#events-container p {
    margin-left: 0%;/*20240413追加*/
}



/* 個々のイベントのスタイル */
.event-summary {
    line-height: 5px;
    margin-bottom: 10px;
    font-size: 1.2em; 
    padding: 10px;
    font-size: 1.2em; /* テキストのサイズを大きくする */
}

/* 本日のイベントに特別なスタイル */
.today-events {
    background-color: rgb(252, 240, 218);
    font-size: 1.2em;  /* テキストのサイズを大きくする */
    padding:10px

    /* 他にも特別なスタイルがあればここに追加 */
}

/* タイトルのスタイル */
#events-container > h3 {
    
    font-size: 1.5em; /* タイトルのサイズを大きくする */
    margin-bottom: 20px;
}



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

td{
    font-size:1.2em;
    border-bottom:2px solid #c7c7c7;
    padding: 10px;
    line-height: 1.3em;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
}

p.small{
    font-size: 12pt;
    color:#534741;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
}

table{
    border-collapse: collapse ;
}

table.tb_shop{
    margin-top: 30px;
    border-spacing: 0;
    margin-bottom: 30px;
    width:90%;
}

.tb_shop{
    border-top:2px #c7c7c7 solid;
    font-size: 12pt;
    /*letter-spacing:0.1em;*/
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
}

tr.tr_shop{
    width:100%;
    height:75px;/*87pxから変更20231214*/
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
}

tr.tr_shop02{
    width:100%;
    height:75px;
    /*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:12pt;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Shippori Mincho', serif;
    /*font-family: 'Shippori Mincho B1', serif;*/
}

.shop_bl,.shop_br{
    width:50%;
    position: relative;
}

.shop_bl {
    margin-bottom: 300px; /* カレンダーしたのマージン既存の値から調節してください */
}
.shop_bl p{
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 16pt;
    line-height: 22pt;
    /*letter-spacing:0.5px;*/
    margin-left: 20%;/*20240410変更*/
    padding-bottom: 5%;
}
.shop_bl h4{
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 12pt;
    line-height: 22pt;
    /*letter-spacing:0.5px;*/
    margin-left: 20%;/*20240410変更*/
    padding-bottom: 5%;

}

.blue {
    background-color:rgba(0, 0, 255, 0.1); /* お好きな背景色を指定してください */
    padding: 2px 5px; /* 背景色の内側に少し余白を追加 */
    border-radius: 3px; /* 角を少し丸くする */
}
.green {
    background-color:rgba(0, 128, 0, 0.1);; /* お好きな背景色を指定してください */
    padding: 2px 5px; /* 背景色の内側に少し余白を追加 */
    border-radius: 3px; /* 角を少し丸くする */
}


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

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

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

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

.ac_top01 img{
    position:absolute;
    left:45%;
    top:-14%;
    width:10%;
}

.acs_1{
    position: absolute;
    top: 30%;
    right: 50%;
    background-color: #ffffff00;
    height:180px;
    width:53px;
    z-index: 10000;
}

.acs_1 p{
    position:absolute;
    line-height: 48pt;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    font-family: 'Shippori Mincho', serif;
    color: black;
    font-size: 30pt;
    font-weight: 600;
    writing-mode: vertical-rl;
    height:101%;
    top:0%;
    left:-10%;
    z-index: 20000;
}

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

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

.ac_top03{
    width:100%;
    height:322px;
}

.ac_top03_1{
    margin-left: 45%;
    margin-right: 5%;
    width:50%;
    margin-top: 50px;
    height:180px;
}

.ac_top03_1_t{
    display:flex;
    height:80px;
}

.ac_top03_1_t1{
    width:40%;
    height:80px;
}

.ac_top03_1_t2{
    width:80%;
    height:80px;
}

.ac_top03_1_t1 img{
    width:190px;
    /*height:47px;*/
    padding-top: 5%;
}

.ac_top03_1_t2 p{
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Noto Serif JP', serif;
    font-family: 'Shippori Mincho', serif;
    font-size: 16pt;
    line-height: 16pt;
    /*letter-spacing: 0.01em;*/
    font-weight: 400;
    padding-top: 5%;
}

.ac_top03_1_t2 p.small{
    font-size: 12pt;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    line-height: 21pt;
    padding-top: 0;
    font-weight: 400;
    color:#534741;
}

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

.ac_top03_1_b p{
    align-items: flex-end;
    font-size: 16pt;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    line-height: (28pt);
    color: black;
    padding-top: 5%;
}

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

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

.ac_btm_pic_pc{
    width:100%;
    height:328px;
}

.ac_btm_pic_pc p{
    margin-right: 5%;
    text-align: right;
    margin-top:0;
    font-size: 12pt;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Hina Mincho', serif;
    font-family: 'Noto Serif JP', serif;
    color:#534741;
    /*letter-spacing: 0.01em;*/
}

.ac_btm_pic_pc img{
    width:100%;
    height:100%;
}

.ac_btm_pic p {
    text-align: right;
    margin-right: 10%;
    margin-top: 0%;
    font-size: 12pt;
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Noto Serif JP', serif;
    font-family: 'Shippori Mincho', serif;
    /*letter-spacing: 0.01em;*/
    color: rgb(83, 71, 65);
}

.ac_btm_pic_mb{
    display:none;
}

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

.ac_btm_con01{
    width:80%;
    height:230px;
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    border:15px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.ac_btm_con01-1,.ac_btm_con01-2{
    width:50%;
    text-align: center;
    position: relative;
}

.ac_btm_toi{
    background-color: #668453;
    width:70%;
    height:60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.ac_btm_con01-1 h4{
    color:#ffffff;
    width:100%;
    text-align: center;
    font-family: 'Shippori Mincho', serif;
    font-size:24px;
}

.ac_btm_con01-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ac_btm_con01-2 p{
    width:80%;
    font-family: 'Shippori Mincho', serif;
    font-size: 30pt;
    line-height: 16pt;
    text-align: center;
}

.ac_btm_con01-2 span.small{
    font-family: 'Shippori Mincho', serif;
    font-size: 12pt;
    line-height: 16pt;
    text-align: center;
    color:#534741;
    width:100%;
}
.ac_btm_con01-2 div.small{
    font-family: 'Shippori Mincho', serif;
    font-size: 12pt;
    line-height: 16pt;
    text-align: center;
    color:#534741;
    width:100%;
    text-align: center;
}

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

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

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

.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: 'Noto Serif JP', serif;
    font-family: 'Shippori Mincho', serif;
    /*font-family: 'Shippori Mincho B1', serif;*/
    font-size: 14pt;
    color:white;
    line-height: 20pt;
}

.footer_btm p.small{
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Noto Serif JP', serif;
    font-family: 'Shippori Mincho', serif;
    /*font-family: 'Shippori Mincho B1', serif;*/
    font-size: 14pt;
    /*letter-spacing: 0.01em;*/
    color:rgba(255, 255, 255, 0.5)
}

/*トップ切り替え画像*/
.slider{
    margin: 100px auto;
    width: 70%;
}
.slider img{
    height: 765px;
    width: 100%;
    object-fit: cover;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #000;
}
/*20231214トップ修正*/
.hyou {
    width: 80%;
    margin: 2% auto;
    display: flex;
}

table.shohin {
    width: 50%;
    border: 1px solid #000;
}

td.sen0 {
    border-bottom: none;
    text-align: left;
    font-size: 1em;
}

th.zairyo {
    width: 20%;
    border-right: 1px solid #000;
}

table.eiyo {
    width: 45%;
    margin-left: 5%;
}

td.eiyo1 {
    line-height: 2;/*20240410変更*/
    font-size: 1.0em;
}

td.eiyo2 {
    line-height: 2;
    font-size: 1.0em;
}

td.arg {
    font-size: 0.8em;
    text-align: right;
    border-bottom: none;
}

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

.product-01 img {
    margin-top: 190px;
    margin-left: 5%;
    margin-right: 5%;
    width: 40%;
    height: 500px;
    object-fit: contain;
}

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

table.shohin {
    width: 80%;
    border: 1px solid #000;
}

table.eiyo {
    width: 80%;
    margin-top: 5%;
    margin-left: 0%;
}

/* 2025.08修正 */
.free-tel {
    font-size: 40%;
    display: block;
    padding-top: 0.2em;
    margin: 0.4em 0;
}

.shop {
    height: auto;
    padding-bottom: 50px;
}

.shop_tl, .shop_tr {
    height: auto;
}