@charset "UTF-8";


div#main {
    margin-top: 0px;
}
/*------------------------------- 

             スライダー 

 ----------------------------------*/
.slider {
  margin:0 auto;
  width: 100%;
  height: auto;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  background-size: cover;
  height: 600px;
}

.slider{height: 45vw;
}
 .slider-item {
  width: auto;
  background-repeat: no-repeat;/*背景画像をリピートしない*/
  background-position: center;/*背景画像の位置を中央に*/
  background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}


@media screen and (max-width: 1030px) {
  .slider {
    width: auto;
	  margin-top:70px;
    
  }
  .l-4.s-1.h1-info.txt-mid {
    margin-top: 50px;
}
      .top-kodawari {
        margin-top: 110px;
  }
  
}



/*------------------------------- 

              お知らせ 

 ----------------------------------*/
.top-notice{
    max-width: 1400px;
    margin: auto;
 }
 .top-notice .top-container-bana{
    margin: 140px 10.71% 50px;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}
 .top-notice .top-container-bana .container{
    width: 500px;
    height: 200px;
 }
 .top-notice .top-container-bana .top-minbana{
    width: 500px;
 }
.top-container-bana .container{
    margin-right: 5%;
 }
.containerp{
    line-height: 2em;
}
.top-notice .top-container-bana .h1-info{
    font-size: 18px;
    font-weight: bold;
    /* text-align: center; */
    border-bottom: solid 1px #410a0b;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.scroll-box {
    /* border:  1px solid #333; */
    overflow-y: auto;
  }
  .scroll-content {
    height: 130px;
    margin: 0 auto;
  }
  .top-notice .scroll-content  p{
    margin: 10px 0;
    font-size: 14px;
  }
  .scroll-box::-webkit-scrollbar {
    background: #f3f3f3;
    width: 8px;
    height: 3px;
    border-radius: 50px;
  }
  .scroll-box::-webkit-scrollbar-thumb {
    background-color: #c9c9c9;
    border-radius: 50px;
  }
  .scroll-box::-webkit-scrollbar-thumb:hover {
    background-color: #c9c9c9;
  }

  @media screen and (max-width: 1030px) {
    .top-notice .top-container-bana{
        margin: 15% 1%;
    }
    .top-container-bana{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
    .top-container-bana .container{
        margin: 0;
        margin-top: 50px;
        margin: 50px 5%;
    }
   
    .top-notice .top-container-bana .container{
        width: 90%;
        height: 200px;
     }
    .l-4.s-1.h1-info.txt-mid {
    font-size: 11px;
}
     .top-notice .top-container-bana .top-minbana{
        width: 80%;
       margin-bottom: -140px;
     }
     .top-notice .scroll-content p {
        margin: 10px 4%;
        font-size: 14px;
      }
  }
/*------------------------------- 

              ミニスライダー 

 ----------------------------------*/

/* カルーセル全体 */
.carousel {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
	position: relative;
}
/* カルーセル内容 */
.contains {
  /* サイズは自由に変更してください。*/
  /* 下の.slideも同じサイズにしてください。 */
  max-width: 500px;
	width: 100%;
  /*height: 200px;*/
  overflow: hidden;
  padding: 0;
  list-style: none;
}
/* スライド切り換え用ラジオボタンは常に非表示 */
.slide_select {
  display: none;
}
/* 各スライド */
.slide {
  /* サイズは自由に変更してください。*/
  /* 上の.containsも同じサイズにしてください。 */
  max-width: 500px;
	width: 100%;
	padding-bottom: 10px;
  /*height: 200px;*/
  /*position: absolute;*/
  /* スライドの初期値は選択されていないので透明にしておく */
  opacity: 0;
}
/* 前へ次へボタン */
.scroll_button {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  /* 縦中央から20px上の位置 */
  top: 50%;
  margin-top: -20px;
/* 上辺と右辺のみ幅5pxの枠線 */
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #fdfdfd;
  cursor: pointer;
  /* 普段はボタンはやや薄くする */
  opacity: 0.5;
  /* スライドよりも前面にする */
  z-index: 3;
}
/* ホバー時にボタンを強調 */
.scroll_button:hover {
  opacity: 1;
}
/* 前へボタン */
.scroll_prev {
  left: 15px;
  /* 上辺と右辺の枠線を回転して"＜"にする */
  transform: rotate(-135deg);
}
/* 次へボタン */
.scroll_next {
  right: 15px;
  /* 上辺と右辺の枠線を回転して"＞"にする */
  transform: rotate(45deg);
}
/* スライド移動ボタンエリア */
.move_controler {
  /* width: 100%; */
  text-align: center;
	position: absolute;
	bottom: 0px;
}
/* スライド移動の各ボタン */
.button_move {
  display: inline-block;
  height: 6px;
  width: 45px;
  margin: 0 2px;
  cursor: pointer;
  /* 普段はやや薄くする */
  opacity: 0.5;
  /* スライドより前面にする */
  z-index: 2;
}
/* ホバー時はやや明るくする */
.button_move:hover {
  opacity: 0.75;
}
/* スライド移動ボタンの色 */
.button_move {
  background-color: #6b6b6b;
}
/* 1番目のスライド選択時 */
/* 1番目のスライドの透明度を0にして表示する */
.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
  opacity: 1;
}
/* 1番目のスライドの前へ次へボタンの領域を */
.slide_select:nth-of-type(1):checked
  ~ .move_controler
  .button_move:nth-of-type(1) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
  opacity: 1;
}
.slide_select:nth-of-type(2):checked
  ~ .move_controler
  .button_move:nth-of-type(2) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(3):checked
  ~ .move_controler
  .button_move:nth-of-type(3) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
  opacity: 1;
}
.slide_select:nth-of-type(4):checked
  ~ .move_controler
  .button_move:nth-of-type(4) {
  opacity: 1;
} 

@media screen and (max-width: 1300px) {
  .carousel{
  margin-bottom: 80px;
  }

}



/*------------------------------- 

              こだわり 

 ----------------------------------*/
 .top-kodawari{
    width: auto;
    background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/YmctaW1nMV8xMw.jpg?cmsp_timestamp=20240820141434);
    background-repeat:repeat;
    padding-top: 20px;
 }
 .top-kodawari .kodawari-all{
   padding-top: 160px;
    width: 100%;
    padding-bottom: 135px;
    text-align: center;
    background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/dG9wLWtvZGF3YXJpLTJfMDg.png?cmsp_timestamp=20240820141528),url(https://img21.shop-pro.jp/PA01473/673/etc_base64/dG9wLWtvZGF3YXJpLTJfMDY.png?cmsp_timestamp=20240820143551);
    background-repeat: no-repeat,no-repeat;
    background-position: top 42em left, top 4em right;
    background-size: 467px, 406px;
 }
 .top-kodawari .kodawari-all .top-hana{
    margin-bottom: 50px;
 }
.top-kodawari .kodawari-all h1{
    text-shadow: 0 0 20px #fff,0 0 15px #fff;
    text-shadow: 0px 1px 4px #fff;
    padding-bottom: 15px;
    border-bottom:3px solid #410a0b;
    width: 480px;
    margin-bottom: 85px;
    align-items: center;
    font-size: 30px;
 }
 .kodawarifont20{
    text-shadow: 0 0 20px #fff,0 0 15px #fff;
    text-shadow: 0px 1px 4px #fff;
    font-size: 20px;
    text-align: center;
    line-height:2em;
    font-weight: Medium;
}
.kodawari-all .kodawarifont20 {
    margin: 0 5%;
  }
.kodawari30{
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 1300px) {
  .top-hana{
  width:50px;
    margin:0 auto;
  }
  
  .top-kodawari{
        width: auto;
        background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/YmctaW1nMV8xMw.jpg?cmsp_timestamp=20240820141434);
        background-repeat:repeat;
        padding-top: 5px;
     }
    .top-kodawari .kodawari-all{
        margin: 0 auto;
        width: 100%;
        padding-top: 75px;
        padding-bottom: 276px;
        text-align: center;
        background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/dG9wLWtvZGF3YXJpLTJfMDg.png?cmsp_timestamp=20240820141528),url(https://img21.shop-pro.jp/PA01473/673/etc_base64/dG9wLWtvZGF3YXJpLTJfMDY.png?cmsp_timestamp=20240820143551);
        background-repeat: no-repeat,no-repeat;
        background-position: bottom left, top 1em right;
        background-size: 50%, 30%;
     }
     .top-kodawari .kodawari-all h1{
        text-shadow: 0 0 20px #fff,0 0 15px #fff;
        text-shadow: 0px 1px 4px #fff;
        padding-bottom: 15px;
        border-bottom:3px solid #410a0b;
        width: 45%;
        align-items: center;
        font-size: 30px;
     }
     .kodawarifont20{
        text-shadow: 0 0 20px #fff,0 0 15px #fff;
        text-shadow: 0px 1px 4px #fff;
        font-size: 18px;
        text-align: center;
        line-height:2em;
        font-weight: Medium;
    }
  }

@media screen and (max-width: 1000px) {
    .top-kodawari{
        width: auto;
        background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/YmctaW1nMV8xMw.jpg?cmsp_timestamp=20240820141434);
        background-repeat:repeat;
        padding-top: 5px;
     }
    .top-kodawari .kodawari-all{
        margin: 0 auto;
        width: 100%;
        padding-top: 180px;
        padding-bottom: 220px;
        text-align: center;
        background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/dG9wLWtvZGF3YXJpLTJfMDg.png?cmsp_timestamp=20240820141528),url(https://img21.shop-pro.jp/PA01473/673/etc_base64/dG9wLWtvZGF3YXJpLTJfMDY.png?cmsp_timestamp=20240820143551);
        background-repeat: no-repeat,no-repeat;
        background-position: bottom left, top 1em right;
        background-size: 60%, 40%;
     }
     .top-kodawari .kodawari-all h1{
        text-shadow: 0 0 20px #fff,0 0 15px #fff;
        text-shadow: 0px 1px 4px #fff;
        padding-bottom: 15px;
        border-bottom:3px solid #410a0b;
        width: 80%;
        padding: 0 10%;
        margin-bottom: 50px;
        align-items: center;
        font-size: 24px;
     }
     .kodawarifont20{
        text-shadow: 0 0 20px #fff,0 0 15px #fff;
        text-shadow: 0px 1px 4px #fff;
        font-size: 14px;
        text-align: center;
        line-height:2em;
        font-weight: Medium;
    }
  }
@media screen and (max-width: 700px) {
    .top-kodawari .kodawari-all {
        margin: 0 auto;
        width: 100%;
        padding-top: 180px;
        padding-bottom: 220px;
        text-align: center;
        background-image: url(https://img21.shop-pro.jp/PA01473/673/etc_base64/dG9wLWtvZGF3YXJpLTJfMDg.png?cmsp_timestamp=20240820141528), url(https://img21.shop-pro.jp/PA01473/673/etc_base64/dG9wLWtvZGF3YXJpLTJfMDY.png?cmsp_timestamp=20240820143551);
        background-repeat: no-repeat, no-repeat;
        background-position: bottom left, top 1em right;
        background-size: 80%, 60%;
    }
}
/*------------------------------- 

              おすすめ商品 

 ----------------------------------*/
 #top-recogihut{
    width: auto;
    background-image:url("https://img21.shop-pro.jp/PA01473/673/etc_base64/cmVjb21hbmQtYmdfMTI.png?cmsp_timestamp=20240820143853");
    background-size: cover;
    background-repeat:no-repeat;
	padding-top: 160px; 
}
.item_box{
    max-width: 320px;
    margin: 3% auto;
}
.ttl-h2{
    margin-bottom: 60px;
}
img.item {
    border: 1px solid #a8a8a8;
}
.recommend-items .prd-lst{
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}
.recommend-items .prd-lst-unit{
    width: 324px;
    height: 421px;
    padding: 0 20px;
    text-align: center;
}
.recommend-items .prd-lst img{
    width: 100%;
}
p.item_name {
    font-size: 16px;
    text-align: center;
}
p.item_price {
    font-size: 16px;
    text-align: center;
}
.items-all {
    display: flex;
    flex-wrap: wrap;
  	max-width:1200px;
  	margin: 0 auto;
}

@media screen and (max-width: 1030px) {
    #top-recogihut {
    width: auto;
    background-image: url(https://img21.shop-pro.jp/PA01473/673/etc_base64/cmVjb21hbmQtYmdfMTI.png?cmsp_timestamp=20240820143853);
    background-size: auto;
    background-repeat: repeat;
    padding-top: 160px;
}
  .items-all {
  width: 80%;
  }
  .item_box{
    margin: 10% auto;
}
    .ttl-h2{
    margin-bottom: 10px;
}
  }
/* ------------------ボタン--------------------- */

.top-bottan{
    text-align: center;
    padding-bottom: 156px;
  	margin-top:40px;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #410a0b;
  background-color: #f4f0ef;
  border-radius: 0.5rem;
}
a.btn-border {
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #410a0b;
    border-radius: 0;
    background: #f4f0ef;
  }
  
  a.btn-border:hover {
    font-size: 16px;
    font-weight: 700;
    color: #f4f0ef;
    background: #410a0b;
  }
.item_name{
  margin-top:20px;
}

.item_detail {
  font-weight: 700;
  color: #410a0b;
  border-left: 1px solid #a8a8a8;
}
.item_name a{
  	font-weight: 700;
	color:#410a0b;
}
.item_price{
  font-weight: 600;
  margin-top:12px;
}

  @media screen and (max-width: 1030px) {
    .{
    }
    
    
  }
/*------------------------------- 

              ギフト商品 

 ----------------------------------*/

.seller-items .prd-lst{
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}
.seller-items .prd-lst-unit{
    width: 324px;
    height: 421px;
    padding: 0 20px;
    text-align: center;
}
.seller-items .prd-lst img{
    width: 100%;
}
/*------------------------------- 

              店舗情報 

 ----------------------------------*/

.top-storein{
    width: auto;
    background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/YmctaW1nMV8xMw.jpg?cmsp_timestamp=20240820141434);
    background-repeat:repeat;
 }
 .shop-bg{
    background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/c2hvcC1iZy1pbWdoYW5hMV8wMw.png?cmsp_timestamp=20240820144034),
    url(https://img21.shop-pro.jp/PA01473/673/etc_base64/c2hvcC1iZy1pbWdoYW5hMl8wNw.png?cmsp_timestamp=20240820144103);
    background-repeat: no-repeat,no-repeat;
    background-position: top 2em left 1em, bottom 7em right 1em;
    background-size: 140px, 140px;
 }
 .top-storein-all{
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 170px;
 }
 
  .double_line {
    width: 80%;
    font-size: 16px;
    display: inline-block;
    position: relative;
    padding: 35px;
    border: solid 1px #410a0b;
    font-size: 0.8em;
    z-index: 10;
  }
  .double_line::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: -20px;
    right: -20px;
    left: 14px;
    border: solid 1px #410a0b;
    z-index: 9;
  }
.shop-right{
    width: 50%;
    /* border: solid 1px #e6181c; */
    text-align: center;
}
.shop-right-img{
    margin: 0 auto;
    margin-bottom: 15px;
    width: 200px;
}
.shop-box{
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
    padding-top: 50px;
    padding-bottom: 100px;
    align-items: center;
}
.top-storein dl {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
    padding-top: 10px;
    font-size: 14px;
}
.top-storein dd{
    margin: 10px auto;
    width: 70%;
    margin-bottom: 0.5em;
    font-weight: bold;
    }
.top-storein dt {
    margin: 10px auto;
    width: 30%;
    margin-bottom: 0.5em;
    font-weight: bold;
}

@media screen and (max-width: 1030px) {
    
  .top-storein-img {
    width: 90%;
    margin: 0 5%;
}
  .shop-bg{
        background-image:url(https://img21.shop-pro.jp/PA01473/673/etc_base64/c2hvcC1iZy1pbWdoYW5hMV8wMw.png?cmsp_timestamp=20240820144034),
    url(https://img21.shop-pro.jp/PA01473/673/etc_base64/c2hvcC1iZy1pbWdoYW5hMl8wNw.png?cmsp_timestamp=20240820144103);
        background-repeat: no-repeat,no-repeat;
        background-position: top 2em left 1em, bottom 0em right 1em;
        background-size: 20%, 20%;
     }
    .shop-box{
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 100px;
      margin: 0 10px;
        align-items: center;
    }
    
    .top-storein-all{
        padding-top: 100px;
        max-width: 1200px;
        margin: 0 auto;
        padding-bottom: 100px;
    }
    .double_line {
        width: 90%;
        font-size: 14px;
        display: inline-block;
        position: relative;
        padding: 35px;
        border: solid 1px #410a0b;
        font-size: 0.8em;
        z-index: 10;
    }
    .double_line::before {
        content: "";
        position: absolute;
        top: 14px;
        bottom: -16px;
        right: -16px;
        left: 14px;
        border: solid 1px #410a0b;
        z-index: 9;
    }
    .shop-right{
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }
  .shop-right-img{
    max-width: 95%;
    margin-bottom: 30px;
}
  }
