@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:600,700,800|Source+Sans+Pro:600,700,900");
@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot?9llpgb");
  src: url("fonts/icomoon.eot?9llpgb#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?9llpgb") format("truetype"), url("fonts/icomoon.woff?9llpgb") format("woff"), url("fonts/icomoon.svg?9llpgb#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-x:before {
  content: "\e900";
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.d-block > span {
  display: block;
}

a:hover {
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
  color: #bf9900;
}

a img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover img {
  opacity: 0.6;
}

@-webkit-keyframes radial-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

@keyframes radial-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}
.link-animation {
  display: block;
  -webkit-animation: radial-pulse 1s infinite;
          animation: radial-pulse 1s infinite;
}

/*==============================
  box-sizing 
==============================*/
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

/*==============================
  flex-box
==============================*/
.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-box-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex-box-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-box-row-rever {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-box-space-b {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-box-space-a {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-box-space-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-box-item-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-box-item-e {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*==============================
  中央寄せ
==============================*/
.center-type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-align: center;
}

.center-type2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*==============================
  フォント
==============================*/
.font-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

/*==============================
  全体幅
==============================*/
#wrapper {
  width: 100%;
  max-width: 1010px;
  /*overflow: auto;*/
}

#wrapper.home {
  max-width: 100%;
}

#wrapper.page {
  max-width: 100%;
  margin-top: 80px;
  max-width: 1070px;
  overflow: auto;
}

#wrapper.page.recruit {
  overflow: initial;
}
#wrapper.page.recruit .recruit-content {
  min-height: 150px;
}

#wrapper.page.product {
  max-width: initial;
  overflow: initial;
}

.inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}

.inner {
  max-width: 1070px;
}

@media screen and (max-width: 767px) {
  /* Mobile */
  .inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1050px) {
  #wrapper.page {
    padding-left: 15px;
    padding-right: 15px;
    overflow: auto;
  }
  #wrapper.page.product {
    padding-left: 0;
    padding-right: 0;
  }
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 1051px) and (max-width: 1091px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*==============================
  PC・スマホ
==============================*/
.pc-view,
.sp-view {
  display: none;
}

@media screen and (max-width: 767px) {
  /* Mobile */
  .sp-view {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1050px) {
  /* ipad */
  .pc-view {
    display: block;
  }
}
@media screen and (min-width: 1051px) {
  /* PC */
  .pc-view {
    display: block;
  }
}
/*==============================
  共通クラス
==============================*/
/* button */
.button {
  display: inline-block;
  width: 150px;
  height: 36px;
  text-align: center;
  text-decoration: none;
  line-height: 36px;
  outline: none;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.button > a {
  display: block;
  color: #fff;
}

.button-color1 {
  background-color: #ab8420;
  color: #fff;
}

.button-color1:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/*==============================
  ヘッダー
==============================*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 20px 0;
  /*z-index: 100;*/
  z-index: 10000;
  background: #fff;
  /*background: #efefef;*/
  background: rgba(255, 255, 255, 0.8);
}

header.scroll-border {
  border-bottom: 1px solid #dcdcdc;
}

.main-nav {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  position: relative;
}

.main-nav > div.flex-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 325px;
}

.header-left h1 img {
  max-width: 100%;
  height: auto;
}

.header-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  margin-left: 4em;
}

.header-right nav .web-fonts {
  /*font-family: 'Open Sans', sans-serif;*/
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.header-right nav {
  margin: 0 0 0 0;
  height: auto;
}

.header-right nav > ul > li {
  float: none;
  margin-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0px 0;
  /*font-size: 13px;*/
  border-left: 1px solid #000;
  line-height: 1;
  text-align: center;
}

.header-right nav > ul > li > a {
  padding: 12px 0;
}

.header-right nav > ul > li > div {
  padding: 12px 0;
  /*color: #fff;*/
}

.header-right nav > ul > li > div:hover {
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
  color: #bf9900;
}

.header-right nav > ul > li > a:hover {
  border-bottom: transparent;
}

@media only screen and (max-width: 959px) {
  .header-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .main-nav {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1050px) {
  .header-right {
    margin-left: 1em;
  }
}
/*==============================
  SNS
==============================*/
.sns-link-upper {
  margin-top: 90px;
  margin-bottom: 5px;
}

.sns-link-lower {
  margin-bottom: 20px;
}

.sns-link ul.flex-box {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sns-link ul li {
  margin: 0 5px;
  font-size: 24px;
}

.sns-link ul li.en a {
  display: block;
  padding: 3px 10px;
  font-size: 13px;
  color: #fff;
  background: #000;
  border-radius: 3px;
}

/*==============================
  バナー・サムネイル
==============================*/
.banner-type1 div.flex-box > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.2%;
          flex: 0 0 31.2%;
}

/*
.banner-type1 div.flex-box > div:not(:nth-last-child(-n+3)){
  margin-bottom: 10px;
}
*/
.banner-type1 div.flex-box > div:not(:nth-of-type(3n)) {
  margin-right: 1.75em;
}

.banner-type1 div.flex-box > div img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.banner-type2 div.flex-box > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 1.75em) * 0.5);
          flex: 0 0 calc((100% - 1.75em) * 0.5);
}

/*
.banner-type2 div.flex-box > div:not(:nth-last-child(-n+3)){
  margin-bottom: 10px;
}
*/
.banner-type2 div.flex-box > div:not(:nth-of-type(2n)) {
  margin-right: 1.75em;
}

.banner-type2 div.flex-box > div img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

/* ピックアップ */
.thumnail-block1 div.flex-box {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
}

.thumnail-block1 div.flex-box > div {
  /* -webkit-flex: 0 0 24%; */
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 3rem) * 0.25);
          flex: 0 0 calc((100% - 3rem) * 0.25);
  /* margin-bottom: 10px; */
}

.thumnail-block1 div.flex-box > div:not(:nth-last-child(-n+4)) {
  /*margin-bottom: 10px;*/
}

.thumnail-block1 div.flex-box > div img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
}

.thumnail-block1 div.flex-box > div .itemname {
  display: none;
}

.thumnail-block1 div.flex-box > div .itemprice {
  display: none;
}

@media screen and (min-width: 961px) and (max-width: 1050px) {
  .banner-type1 div.flex-box > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32.2%;
            flex: 0 0 32.2%;
  }
  .banner-type1 div.flex-box > div:not(:nth-of-type(3n)) {
    margin-right: 1.2em;
  }
}
/*==============================
  コンテンツ
==============================*/
/* TOPページ */
.wideslider {
  /*margin-top: 80px;*/
  margin-bottom: 80px;
  /*height: 435px !important;*/
}

.wideslider .wideslider_base li img {
  /*height: 435px;*/
}

.slide-top {
  margin-bottom: 60px;
  padding-bottom: 40px;
}

.slide-top .flexslider {
  /*width: 1070px;*/
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
}

#pickup ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#pickup ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 165px;
  height: auto;
  margin: 0px 22px 30px 0;
}

#pickup .pickup_post .description {
  height: auto;
}

#pickup div.view {
  width: auto;
}

#social_box > div {
  width: 355px;
}

.title-type1 {
  padding: 0.25em 0 0.25em 0.75em;
  margin-bottom: 40px;
  border-left: 4px solid #ccc;
}

.banner-block1 {
  margin-bottom: 60px;
}

.banner-block1 div.flex-box > div {
  margin-bottom: 10px;
  border: 3px solid #e2e2e2;
}

.thumnail-block1 {
  margin-bottom: 60px;
}

.thumnail-block1 div.flex-box > div {
  border: 1px solid #000;
}

/* filter */
.itemcategory-block {
  padding: 80px 0 120px;
  background: #f0f0f0;
  background-color: #f0f0f0;
  background-image: url("https://www.transparenttextures.com/patterns/bedge-grunge.png");
}

.item-category h2 {
  padding: 0.25em 0 0.25em 0.75em;
  margin-bottom: 40px;
  /*border-left: 4px solid #ccc;*/
}

.item-category h2 i {
  font-size: 22px;
  margin-right: 5px;
}

.item-category .category-filter {
  margin-bottom: 15px;
}

.item-category .category-filter li {
  display: inline-block;
  margin-bottom: 5px;
}

.item-category .category-filter li a {
  display: block;
  padding: 10px 18px;
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  color: #333;
  /*font-size: 15px;*/
  font-size: 13px;
  border-radius: 6px;
}

.item-category .category-filter li a:hover {
  color: #333;
  background-color: #f8f8f8;
  border-color: #adadad;
}

.item-category div.flex-box > div:not(:nth-child(4n+1)) {
  /*margin-left: .8em;*/
}

.item-category .thumnail img {
  max-width: 100%;
  height: 100%;
  padding: 4px;
  border: 1px solid #e4e4e4;
  background-color: #fff;
}

.item-category-name {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.filter {
  margin: 30px 0 10px;
}

.filter a {
  display: inline-block;
  padding: 10px;
  border: 2px solid #333;
  position: relative;
}

.boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.item-category div.boxes > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  max-width: 260px;
  position: relative;
  /*height: 280px;*/
  margin: 0 0.3em;
  margin-bottom: 15px;
}

.boxes a {
  /*width: 23%;*/
  /*max-width: 230px;*/
  /*border: 2px solid #333;*/
  /*margin: 0 1% 20px 1%;*/
  /*line-height: 0.8;*/
  /*padding: 4px;*/
  /*border: 1px solid #e4e4e4;*/
  /*background-color: #fff;*/
}

.boxes a > img {
  max-width: 100%;
  height: auto;
}

.filter a.active {
  -webkit-box-shadow: 0px 2px 10px #bfbfbf inset;
          box-shadow: 0px 2px 10px #bfbfbf inset;
}

.filter a.active:before {
  content: "";
  content: none;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: #333 transparent transparent transparent;
}

.is-animated {
  -webkit-animation: 0.6s zoom-in;
          animation: 0.6s zoom-in;
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
.shop-bg img {
  width: 100%;
  height: auto;
}

.shop-info {
  padding: 50px 0 40px;
}

.shop-info div.flex-box > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  margin-bottom: 30px;
}

.shop-info div.flex-box > div:not(:nth-of-type(3n+1)) {
  margin-left: 1.75em;
}

.shop-info div.flex-box > div img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.shop-info div.flex-box > div span {
  display: block;
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  /*font-family: 'M PLUS 1p', sans-serif;*/
  font-weight: 700;
}

.instagram {
  margin-top: 80px;
  margin-bottom: 80px;
}

.instagram h2 {
  margin-bottom: 40px;
}

.banner-block3 {
  padding: 50px 0 40px;
  background: #dcdddd;
  background-color: #f0f0f0;
  background-image: url("https://www.transparenttextures.com/patterns/bedge-grunge.png");
}

.banner-block3 + .banner-block3 {
  padding-top: 0px;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}

.banner-block3 div.flex-box > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.banner-block3 div.flex-box > div {
  border: 3px solid #c3c3c3;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  #news_paper > ul.flex-box > li:not(:nth-of-type(3n+1)) {
    margin-left: 5em;
  }
  #news_paper ul li {
    margin-bottom: 25px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1050px) {
  #event_info {
    max-width: 670px !important;
  }
  #news_paper > ul.flex-box {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .instagram > .inner {
    padding-left: 5px;
    padding-right: 5px;
  }
  .instagram iframe {
    width: 100% !important;
    height: 38vh !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1090px) {
  .shop-info div.flex-box > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.3%;
            flex: 0 0 31.3%;
  }
}
@media screen and (min-width: 961px) and (max-width: 1050px) {
  #news_paper > ul.flex-box > li:not(:nth-child(4n-3)) {
    margin-left: 3.1em;
  }
}
/*==============================
  固定ページ
==============================*/
#wrapper.page #containt {
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.shop_post h2 {
  /*height: 37px;*/
  height: auto;
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: 'M PLUS 1p', sans-serif; */
  font-weight: 700;
  line-height: 1;
}

.jb .shop_post h2 {
  font-size: 15px;
}

.shop_post h2 img {
  max-width: 100%;
  height: auto;
  font-size: 0;
}

/* 商品ページ */
#containt.product .product-title {
  padding-top: 50px;
  padding-bottom: 50px;
}

#containt.product .product-title h2 {
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

#containt.product .product-title h2 + p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

#containt.product .product-content {
  padding-top: 90px;
  padding-bottom: 90px;
  margin-bottom: 90px;
  background: #eeefef;
}

#containt.product .product-text {
  padding: 90px;
  margin-bottom: 90px;
  background: #fff;
}

#containt.product .product-description .img {
  margin-bottom: 45px;
}

#containt.product .product-description .img > img {
  max-width: 100%;
  height: auto;
}

#containt.product .product-description .text-type1 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

#containt.product .product-description .text-type2 {
  font-size: 16px;
  line-height: 1.5;
}

#containt.product .recommend-type1 {
  margin-bottom: 90px;
}

#containt.product .recommend-type1 h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

#containt.product .recommend-type1 div.flex-box > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  padding: 20px;
  margin-bottom: 25px;
  background: #fff;
  border-top: 2px solid #000;
}

#containt.product .recommend-type1 div.flex-box > div:not(:nth-of-type(4n+1)) {
  margin-left: 1em;
}

#containt.product .recommend-type1 .thumnail {
  margin-bottom: 15px;
}

#containt.product .recommend-type1 .itemname {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.2;
}

#containt.product .recommend-type1 .itemprice {
  font-size: 15px;
  text-align: right;
}

#containt.product .recommend-type1 .itemprice::after {
  /*content: "円";*/
}

#containt.product .recommend-type1 div.flex-box > div img {
  max-width: 100%;
  height: auto;
}

#containt.product .product-banner div.flex-box > div {
  border: 3px solid #e2e2e2;
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
  #containt.product .product-content {
    padding-left: 30px;
    padding-right: 30px;
  }
  #containt.product .recommend-type1 div.flex-box > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}
#containt.product .organic-content1 {
  margin-top: 50px;
}

#containt.product .organic-content1 .text-type1 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}

#containt.product .organic-content1 .text1 {
  margin-bottom: 60px;
}

#containt.product .organic-content1 .img {
  margin-bottom: 50px;
  text-align: center;
}

#containt.product .organic-content1 .banner > div {
  margin: 0 15px;
}

#containt.product .product-content .online-link {
  position: relative;
}

#containt.product .product-content .online-link .button {
  position: absolute;
  bottom: 0;
  right: 0;
}

#containt.product .online-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -50px;
  margin-bottom: 50px;
}

#containt.product .online-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ab8420;
  border: 1px solid #ab8420;
  color: #fff;
  font-size: 16px;
  min-height: 60px;
  border-radius: 100vmax;
  padding: 1em 2em;
  margin: 0 auto;
}

@media (any-hover: hover) {
  #containt.product .online-button a {
    -webkit-transition: ease 200ms;
    transition: ease 200ms;
  }
  #containt.product .online-button a:hover {
    background-color: #fff;
    color: #ab8420;
  }
}
/* English */
#wrapper.eng .contents header {
  position: static;
}

/*　定期便 */
.teikibin-content {
  margin-top: 80px;
  padding: 40px;
  background-color: #f6ab00;
  text-align: center;
}

.teikibin-content .block1 {
  margin-bottom: 150px;
}

.teikibin-content .block2 {
  margin-bottom: 150px;
}

.teikibin-content .block2 > div {
  display: inline-block;
  padding: 45px;
  background-color: #fff;
}

.teikibin-content .block3 {
  margin-bottom: 100px;
}

.teikibin-content .block3 > div {
  margin-bottom: 75px;
}

.teikibin-content .block4 {
  margin-bottom: 150px;
}

.teikibin-content .block4 > div {
  display: inline-block;
  padding: 45px;
  background-color: #fff;
}

.teikibin-content .btn1 {
  margin-bottom: 150px;
}

/*　デカフェ */
.dacef-content {
  margin-top: 40px;
  padding: 40px;
  text-align: center;
}

.dacef-content br {
  display: none;
}

.dacef-content .block1 {
  margin-bottom: 150px;
}

.dacef-content .block2 h2 {
  margin-bottom: 80px;
  font-size: 2em;
  font-weight: bold;
  line-height: 2;
}

.dacef-content .block2 h2 + p {
  margin-bottom: 80px;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 2.5;
}

.dacef-content .block3 {
  margin: 80px;
  text-align: left;
}

.dacef-content .block3 .draw-img {
  padding: 40px 80px;
  border: 3px solid #000;
}

.dacef-content .block3 h3 {
  margin-bottom: 40px;
  font-size: 2em;
  line-height: 2;
}

.dacef-content .block3 h3 > span {
  font-size: 0.7em;
}

.dacef-content .block3 h3 + p {
  margin-bottom: 40px;
  font-size: 1em;
  line-height: 2;
}

.dacef-content .block3 .draw-img .img {
  text-align: center;
}

.dacef-content .recommend-type1 div.flex-box > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  padding: 20px;
  margin-bottom: 25px;
  background: #eeefef;
  border-top: 2px solid #000;
}

.dacef-content .recommend-type1 div.flex-box > div:not(:nth-of-type(4n+1)) {
  margin-left: 1em;
}

.dacef-content .recommend-type1 .thumnail {
  margin-bottom: 15px;
}

.dacef-content .recommend-type1 .itemname {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.2;
}

.dacef-content .recommend-type1 .itemname br {
  display: block;
}

.dacef-content .recommend-type1 .itemprice {
  font-size: 15px;
  text-align: right;
}

.dacef-content .recommend-type1 .itemprice::after {
  /*content: "円";*/
}

.dacef-content .recommend-type1 div.flex-box > div img {
  max-width: 100%;
  height: auto;
}

/*　バースデーケーキ予約 */
.yoyakucake-content {
  margin-top: 40px;
  padding: 40px;
  text-align: center;
}

.yoyakucake-content br {
  display: none;
}

.yoyakucake-content .block1 {
  margin-bottom: 150px;
  background: url(../img/yoyakucake-bg1.png) repeat-y 0 0;
}

.yoyakucake-content .block1 > div.img {
  position: relative;
  top: -5px;
}

.yoyakucake-content .block1 > div.flex-box {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0;
}

.yoyakucake-content .block1 > div.flex-box > div:nth-child(2) {
  margin: 0 55px 0 85px;
}

.yoyakucake-content .block2 {
  margin-bottom: 150px;
}

.yoyakucake-content .block2 > div.img {
  margin-bottom: 40px;
}

.yoyakucake-content .block2 .menu-img {
  margin: 0 30px;
}

.yoyakucake-content .block3 {
  margin-bottom: 150px;
}

.yoyakucake-content .block4 {
  max-width: 742px;
  margin: 0 auto;
  margin-bottom: 150px;
}

.yoyakucake-content .block4 .title {
  margin-bottom: 40px;
}

.yoyakucake-content .block4 .img {
  text-align: right;
}

.yoyakucake-content .block5 .title {
  margin-bottom: 40px;
}

.yoyakucake-content .shop-info {
  padding: 0;
}

/* 営業時間テキスト */
#shop_article .shop-notice {
  margin-top: 15px;
  font-size: 15px;
  color: #f00;
  line-height: 1.2;
}

/* もりひこの時間 */
.youtube-box {
  text-align: center;
}

/* CEO */
#wrapper.page #containt .ceo-content {
  max-width: 635px;
  margin: 50px auto 0;
}

#wrapper.page #containt .ceo-content .img1 {
  margin-bottom: 40px;
}

#wrapper.page #containt .ceo-content .img1 > p {
  display: none;
}

.ceo-content .img2 {
  margin-bottom: 50px;
}

.ceo-content .sns-link > br {
  display: none;
}

.ceo-content .sns-link > span {
  display: inline-block;
  margin: 0 2px;
}

/*==============================
  ページトップ
==============================*/
#page-top {
  position: fixed;
  /*bottom: 5%;*/
  bottom: 10%;
  right: 5%;
  font-size: 77%;
}

#page-top a {
  text-decoration: none;
  color: #ab8420;
  width: 70px;
  padding: 20px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}

#page-top a:hover {
  text-decoration: none;
  color: #B1B1B1;
}

/*==============================
  商品カテゴリ
==============================*/
div.category-list-f {
  padding-top: 50px;
  padding-bottom: 50px;
}

div.category-list-f h3 {
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-size: 16px;
  border-bottom: 1px solid #bfbfbf;
}

div.category-list-f div.flex-box > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 29%;
          flex: 0 0 29%;
  margin-bottom: 40px;
}

div.category-list-f div.flex-box > div:not(:nth-of-type(3n+1)) {
  margin-left: 5em;
}

div.category-list-f ul li {
  font-size: 13px;
  line-height: 1.2;
}

div.category-list-f ul li {
  margin-bottom: 10px;
  font-size: 13px;
}

div.category-list-f ul li a {
  /*color: #000;*/
}

@media screen and (min-width: 768px) and (max-width: 960px) {
  div.category-list-f div.flex-box > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 27%;
            flex: 0 0 27%;
  }
}
/*==============================
  フッター
==============================*/
footer {
  height: auto;
  padding-top: 0;
  background: transparent;
  color: #000;
}

footer div.footer-link {
  padding: 40px 0 30px;
  background: #d0d0d0;
}

footer ul {
  width: auto;
  height: auto;
}

footer ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

footer ul li a {
  color: #000;
}

footer #copyright {
  height: auto;
  padding: 20px;
  margin-top: 0;
  font-size: 14px;
  color: #fff;
  background: #727171;
}

@media screen and (min-width: 768px) and (max-width: 1050px) {
  footer div.footer-link div.flex-box > div {
    /*-webkit-flex: 0 0 32%;*/
    /*flex: 0 0 32%;*/
  }
}
/*==============================
  onesignal
==============================*/
#onesignal-bell-container.onesignal-reset.onesignal-bell-container-bottom-right {
  bottom: 70px;
}

/*==============================
  renew2604
==============================*/
.header-right nav > ul > li > a:hover svg path,
.header-right nav > ul > li > div:hover svg path {
  fill: #A98320;
}
.header-right nav > ul > li > a:hover .min,
.header-right nav > ul > li > div:hover .min {
  color: #A98320;
}

@media screen and (min-width: 960px) {
  .header-right nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 140px;
    grid-template-columns: 1fr 140px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-right nav > ul {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0 0 0 auto;
    min-height: 40px;
  }
  .header-right nav > ul > li {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    border-color: rgba(0, 0, 0, 0.28);
  }
  .header-right nav > ul > li:first-child {
    border-left: none;
  }
  .header-right nav > ul > li:not(:first-child) {
    background: transparent !important;
  }
  .header-right nav > ul > li > a,
  .header-right nav > ul > li > div {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 30px;
    padding: 0;
  }
  .header-right .onlineshop-btn a {
    aspect-ratio: 140/43;
    background: #A98320;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 4.5px;
    gap: 5px;
    color: #fff;
    -webkit-transition: ease 0.15s;
    transition: ease 0.15s;
    padding-bottom: 2px;
  }
  .header-right .onlineshop-btn a img {
    display: block;
    width: 104px;
    opacity: 1 !important;
  }
  .header-right .onlineshop-btn a:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  .header-right .txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-right .txt svg {
    width: auto;
    height: 12.5px;
    display: block;
    margin-bottom: 8px;
  }
  .header-right .txt svg path {
    -webkit-transition: ease 0.15s;
    transition: ease 0.15s;
    fill: #231815;
  }
  .header-right .txt .min {
    font-size: 7px;
    color: #9e9e9f;
    font-weight: 700;
    -webkit-transition: ease 0.15s;
    transition: ease 0.15s;
  }
}
@media screen and (max-width: 959px) {
  .header-right .onlineshop-btn {
    position: absolute;
    right: 80px;
    top: 2px;
    width: 125px;
  }
  .header-right .onlineshop-btn a {
    width: 100%;
    aspect-ratio: 140/43;
    background: #A98320;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 4.5px;
    gap: 5px;
    color: #fff;
    -webkit-transition: ease 0.15s;
    transition: ease 0.15s;
    padding-bottom: 2px;
  }
  .header-right .onlineshop-btn a img {
    display: block;
    width: 104px;
    opacity: 1 !important;
  }
  .header-right .onlineshop-btn a:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  .header-right .txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-right .txt svg {
    width: auto;
    height: 12.5px;
    display: block;
    margin-bottom: 8px;
  }
  .header-right .txt svg path {
    -webkit-transition: ease 0.15s;
    transition: ease 0.15s;
    fill: #fff;
  }
  .header-right .txt .min {
    font-size: 7px;
    color: #fff;
    font-weight: 700;
    -webkit-transition: ease 0.15s;
    transition: ease 0.15s;
  }
}
#wrapper.page.for-business {
  overflow: initial;
}
#wrapper.page.for-business .breadcrumbs {
  position: relative;
  z-index: 1;
}
#wrapper.page.for-business .forbiz-message {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #wrapper.page.for-business .forbiz-message {
    overflow: hidden;
  }
}
#wrapper.page.for-business .forbiz-message .bg {
  width: 450px;
  position: absolute;
  left: -40px;
  top: -80px;
}
@media screen and (max-width: 1050px) {
  #wrapper.page.for-business .forbiz-message .bg {
    top: 0;
    left: auto;
    right: 0;
  }
}
#wrapper.page.for-business .forbiz-message .inner {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 325px;
  grid-template-columns: 1fr 325px;
  gap: 20px;
  width: 100%;
  max-width: 910px;
  margin: 0 auto;
}
@media screen and (max-width: 1050px) {
  #wrapper.page.for-business .forbiz-message .inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 700px;
    gap: 40px;
  }
}
#wrapper.page.for-business .forbiz-message .box {
  padding-top: 35px;
}
#wrapper.page.for-business .forbiz-message .box .ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 50px;
}
#wrapper.page.for-business .forbiz-message .box .txt {
  font-size: 13px;
  line-height: 1.75;
  font-weight: 700;
}
#wrapper.page.for-business .forbiz-message .img {
  width: 100%;
}
#wrapper.page.for-business .forbiz-message .img img {
  width: 100%;
}
#wrapper.page.for-business .forbiz-soltions {
  background: #f5f0e4;
  padding: 100px 0 175px;
  margin-bottom: 20px;
}
#wrapper.page.for-business .forbiz-soltions .inner {
  width: 100%;
  max-width: 910px;
  margin: 0 auto;
}
@media screen and (max-width: 1050px) {
  #wrapper.page.for-business .forbiz-soltions .inner {
    padding: 0 40px;
  }
}
#wrapper.page.for-business .forbiz-soltions .inner > .ttl {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 23px;
  margin-bottom: 100px;
}
#wrapper.page.for-business .forbiz-soltions .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 120px;
}
@media screen and (max-width: 1050px) {
  #wrapper.page.for-business .forbiz-soltions .list {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
#wrapper.page.for-business .forbiz-soltions .list li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 350px;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}
@media screen and (max-width: 1050px) {
  #wrapper.page.for-business .forbiz-soltions .list li {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#wrapper.page.for-business .forbiz-soltions .list li:not(:last-of-type) {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 2px solid #fff;
}
#wrapper.page.for-business .forbiz-soltions .list .box .ttl {
  font-size: 28px;
  padding-left: 35px;
  border-left: 10px solid #a98320;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#wrapper.page.for-business .forbiz-soltions .list .box > .txt {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 40px;
}
#wrapper.page.for-business .forbiz-soltions .list .box .btn {
  border-radius: 8px;
  background: #a98320;
  width: 100%;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  position: relative;
}
#wrapper.page.for-business .forbiz-soltions .list .box .btn img {
  width: 10px;
  position: absolute;
  right: 24px;
}
#wrapper.page.for-business .forbiz-soltions .list .box .btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1050px) {
  #wrapper.page.for-business .forbiz-soltions .list .img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
#wrapper.page.for-business .forbiz-soltions .list .img img {
  width: 100%;
}
#wrapper.page.for-business .forbiz-soltions .otherbtn {
  border-radius: 8px;
  background: #fff;
  width: 100%;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
  width: 100%;
  max-width: 580px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 13px;
  position: relative;
  margin: 0 auto;
}
#wrapper.page.for-business .forbiz-soltions .otherbtn img {
  width: 10px;
  position: absolute;
  right: 24px;
}
#wrapper.page.for-business .forbiz-soltions .otherbtn:hover {
  opacity: 0.6;
}

.fab.icon-x {
  font-size: 0.75em;
}

/*==============================
  renew2605
==============================*/
.top-shop-info .flex-box img {
  aspect-ratio: 356/220;
  -o-object-fit: cover;
     object-fit: cover;
}

#shop_catalog > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#shop_info .shopSingleData__baout {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #dcdcdc;
}

.shopSingleNews__ttl {
  line-height: 1;
}

/*==============================
  renew2606-30th aniv
==============================*/
body[data-mode=aniv] header {
  padding: 5px 0;
  height: 90px;
}
body[data-mode=aniv] .header-right {
  margin-top: 15px;
}
body[data-mode=aniv] .sns-link-upper {
  margin-top: 100px;
}

:root:has(.slide-top) body {
  background: #faf4e0;
}
:root:has(.slide-top) body header {
  background: rgba(250, 244, 224, 0.8);
}
:root:has(.slide-top) body .slide-top {
  position: relative;
}
:root:has(.slide-top) body .slide-top .flexslider {
  border: none;
}
:root:has(.slide-top) body .inner {
  position: relative;
}
:root:has(.slide-top) body .aniv-head-bird01 {
  display: block;
}

.aniv-cars {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 55px;
}
.aniv-cars .aniv-car01,
.aniv-cars .aniv-car02 {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  pointer-events: auto;
}

.aniv-wrap {
  pointer-events: none;
  max-width: 1070px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  height: 90px;
}

.aniv-parts {
  position: absolute;
  z-index: 10001;
}

.aniv-head-bird01 {
  left: 0;
  bottom: -60px;
  display: none;
}

.aniv-head-baloon01 {
  left: 330px;
  top: 25px;
}

.aniv-head-baloon02 {
  right: 360px;
  bottom: -60px;
}

.aniv-head-baloon03 {
  right: -5px;
  top: 20px;
}

.aniv-event-baloon01 {
  left: 50px;
  top: -70px;
}

.aniv-event-baloon02 {
  right: 30px;
  top: -60px;
}

.aniv-event-bird01 {
  right: 100px;
  top: 0;
}

.aniv-news-other01 {
  top: -10px;
  right: 330px;
}

.aniv-pickup-other01 {
  top: -10px;
  right: 160px;
}

.aniv-shopinfo-other01 {
  left: 400px;
  top: -20px;
}

.aniv-school-baloon01 {
  right: 480px;
  top: -30px;
}

.aniv-school-baloon02 {
  right: 410px;
  top: 0;
}

.aniv-insta-other01 {
  right: 150px;
  top: -10px;
}

.aniv-insta-other02 {
  bottom: -120px;
  left: 10px;
}

.aniv-insta-baloon01 {
  bottom: -50px;
  right: 300px;
}

.aniv-baloon-anim01,
.aniv-baloon-anim02,
.aniv-baloon-anim03,
.aniv-bird-anim01,
.aniv-bird-anim02,
.aniv-other-anim01 {
  will-change: transform;
  -webkit-transform-origin: center;
          transform-origin: center;
}