@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
.pc {
  display: none;
}

@media (min-width: 640px) {
  .pc {
    display: none;
  }
}

@media (min-width: 1025px) {
  .pc {
    display: block;
  }
}

@media (min-width: 1025px) {
  .tab {
    display: none;
  }
}

@media (min-width: 640px) {
  .sp {
    display: block;
  }
}

@media (min-width: 1025px) {
  .sp {
    display: none;
  }
}

@font-face {
  font-family: 'butlerultralight';
  src: url('../fonts/butler_ultra_light-webfont.woff2') format('woff2'),
       url('../fonts/butler_ultra_light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'hiragino_mincho_pronw3';
  src: url('../fonts/Hiragino-Mincho-ProN-W3.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'HiraginoSansW4';
  src: url('../fonts/HiraginoSansW4.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/*********************************
 共通CSS モジュール
*********************************/
body {
  -webkit-animation: fade_anime 1800ms forwards;
          animation: fade_anime 1800ms forwards;
  color: #3e3a39;
  /* transform: translateY(0); */
  /* font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', '游ゴシック体', 'メイリオ', sans-serif;
  font-family: 'ToppanBunkyuMinchoPr6N-Regular', serif; */
}

body.is-fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

body::after {
  background-color: #fff;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  pointer-events: none;
  top: 0;
  -webkit-transition: 600ms ease;
  transition: 600ms ease;
  width: 100%;
  z-index: 9999;
}

body.fadeout::after {
  -webkit-animation: fade_anime 1000ms backwards;
          animation: fade_anime 1000ms backwards;
}

@-webkit-keyframes fade_anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade_anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#container {
  position: relative;
  overflow: hidden;
}

.l-document {
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
}

.l-inner {
  margin: 0 auto;
}

@media (min-width: 640px) {
  .l-inner {
    max-width: 640px;
  }
}

@media (min-width: 1025px) {
  .l-inner {
    max-width: calc(1000px + 40px);
    padding: 0 20px;
  }
}

.mouseoff {
  position: relative;
}

.mouseon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.m-font_gothic {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
}

.m-font_gothicpro {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", sans-serif;
}

.m-font_mincho {
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho Pro", serif;
}

.m-font_en {
  font-family: "Source Sans Pro", sans-serif;
}

.m-viewbtn {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  padding-bottom: 10px;
  position: relative;
  width: 35%;
  /* width: 100%; */
}

@media (min-width: 1025px) {
  .m-viewbtn {
    margin: 0;
    width: 150px;
  }
}

.m-viewbtn::after {
  content: "";
  background-color: #3e3a39;
  bottom: 0;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.m-viewbtn_hover::after {
  -webkit-animation-name: slide-line;
          animation-name: slide-line;
  -webkit-animation-duration: 1400ms;
          animation-duration: 1400ms;
  -webkit-animation-fill-mode: infinite;
          animation-fill-mode: infinite;
}

@-webkit-keyframes slide-line {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
            animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  45% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  55% {
    -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
            animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes slide-line {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
            animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  45% {
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  55% {
    -webkit-animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
            animation-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.m-txtbtn {
  font-size: 3.2vw;
  display: block;
  margin-top: 1vw;
  position: relative;
  padding: 8px 5px;
  color: #fff;
  text-align: center;
  -webkit-transition: 400ms ease-in;
  transition: 400ms ease-in;
}

@media (min-width: 1025px) {
  .m-txtbtn {
    font-size: 14px;
    margin-top: 10px;
  }
  .m-txtbtn::after {
    bottom: 0;
    content: "";
    right: 0;
    left: inherit;
    position: absolute;
    -webkit-transition: 300ms ease-in;
    transition: 300ms ease-in;
    height: 3px;
    width: 0;
  }
  .m-txtbtn:hover::after {
    left: 0;
    width: 100%;
  }
}

/* ***********************************************************
ローダー
**************************************************************/
#loader {
  /* animation: slideTop 300ms linear; */
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #c3c3c3;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: 800ms ease-in-out;
  transition: 800ms ease-in-out;
  z-index: 9999;
  /* @keyframes slideTop {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(0, -100%);
    }
  } */
}

#loader.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#loader.is-loaded {
  /* transition: transform 300ms 0, opacity 300ms 200ms; */
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  /* opacity: 0; */
}

#loader .l-loader_content {
  width: 100%;
}

#loader .l-loader_logo {
  margin: 0 auto;
  text-align: center;
  width: 30%;
}

@media (min-width: 640px) {
  #loader .l-loader_logo {
    width: 20%;
  }
}

@media (min-width: 1025px) {
  #loader .l-loader_logo {
    width: 160px;
  }
}

/***********************************************************
* スクロールアニメーション
************************************************************/
.fadeIn {
  opacity: 0;
  -webkit-transition: 1100ms;
  transition: 1100ms;
}

.fadeIn.scrollIn {
  opacity: 1;
}

.fadeIn.left {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}

.fadeIn.left.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.right {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}

.fadeIn.right.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.top {
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}

.fadeIn.top.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.bottom {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}

.fadeIn.bottom.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.left-top {
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
}

.fadeIn.left-top.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.left-bottom {
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
}

.fadeIn.left-bottom.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.right-top {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
}

.fadeIn.right-top.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.right-bottom {
  -webkit-transform: translate(20px, 0);
          transform: translate(20px, 0);
}

.fadeIn.right-bottom.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.bottom-hidden {
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  opacity: 1;
}

.fadeIn.bottom-hidden.scrollIn {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeIn.mask-left, .fadeIn.mask-right, .fadeIn.mask-bottom, .fadeIn.mask-top {
  overflow: hidden;
  position: relative;
  /* opacity: 1; */
}

.fadeIn.mask-left::after, .fadeIn.mask-right::after, .fadeIn.mask-bottom::after, .fadeIn.mask-top::after {
  content: "";
  position: absolute;
  background: #ffffff;
  /* height: 100%; */
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  display: block;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.fadeIn.mask-left.scrollIn::after, .fadeIn.mask-right.scrollIn::after, .fadeIn.mask-bottom.scrollIn::after, .fadeIn.mask-top.scrollIn::after {
  -webkit-animation: mask_left 600ms ease-in-out;
          animation: mask_left 600ms ease-in-out;
}

.fadeIn.mask-right.scrollIn::after {
  -webkit-animation: mask_right 600ms ease-in-out;
          animation: mask_right 600ms ease-in-out;
}

.fadeIn.mask-bottom::after, .fadeIn.mask-top::after {
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
}

.fadeIn.mask-bottom.scrollIn::after {
  -webkit-animation: mask_bottom 600ms ease-in-out;
          animation: mask_bottom 600ms ease-in-out;
}

.fadeIn.mask-top.scrollIn::after {
  -webkit-animation: mask_top 600ms ease-in-out;
          animation: mask_top 600ms ease-in-out;
}

@media (min-width: 1025px) {
  .fadeIn.left-top {
    -webkit-transform: translate(-20px, -10px);
            transform: translate(-20px, -10px);
  }
  .fadeIn.left-top.scrollIn {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .fadeIn.left-bottom {
    -webkit-transform: translate(-20px, 10px);
            transform: translate(-20px, 10px);
  }
  .fadeIn.left-bottom.scrollIn {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .fadeIn.right-top {
    -webkit-transform: translate(20px, -10px);
            transform: translate(20px, -10px);
  }
  .fadeIn.right-top.scrollIn {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .fadeIn.right-bottom {
    -webkit-transform: translate(20px, 10px);
            transform: translate(20px, 10px);
  }
  .fadeIn.right-bottom.scrollIn {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes mask_left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  /* 50% {
    transform: translate(-100%, 0);
  } */
  /* 40%,
  60% {
    transform: translate(0, 0);
  } */
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    /* opacity: 0; */
  }
}

@keyframes mask_left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  /* 50% {
    transform: translate(-100%, 0);
  } */
  /* 40%,
  60% {
    transform: translate(0, 0);
  } */
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    /* opacity: 0; */
  }
}

@-webkit-keyframes mask_right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

@keyframes mask_right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

@-webkit-keyframes mask_bottom {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
}

@keyframes mask_bottom {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
  }
}

@-webkit-keyframes mask_top {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}

@keyframes mask_top {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}

/* ************************************************************
ヘッダー・ハンバーガー
************************************************************** */
#header {
  /* ******************************************************************
  トップメニュー TOP Menu
  *******************************************************************/
}

#header .l-header_inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  left: 0;
  right: 0;
  position: absolute;
}

@media (min-width: 1025px) {
  #header .l-header_inner {
    max-width: 1000px;
    margin: 0 auto;
  }
}

#header .l-header_ttl {
  margin-left: 5%;
  width: 40%;
  z-index: 2;
}

@media (min-width: 640px) {
  #header .l-header_ttl {
    width: 250px;
  }
}

@media (min-width: 1025px) {
  #header .l-header_ttl {
    margin-left: 0;
    width: 200px;
  }
}

#header .l-header_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  /* transition-delay: 500ms; */
  -webkit-transition: 800ms;
  transition: 800ms;
  top: 0;
  right: 0;
  z-index: 111;
}

#header .l-header_btn_wrap.is-scroll {
  /* transition: 800ms; */
  opacity: 0;
}

@media (min-width: 1025px) {
  #header .l-header_btn_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#header #hamburger {
  cursor: pointer;
}

@media (min-width: 1025px) {
  #header #hamburger {
    /* right: 3vw;
      top: 2.5vw; */
    /* &:hover {
        &::after {
          border-width: 100%;
        }
      } */
  }
}

#header #hamburger .l-hamburger_toggle {
  background-color: #82acba;
  height: 60px;
  width: 60px;
  position: relative;
}

#header #hamburger .l-hamburger_line {
  background-color: #fff;
  position: absolute;
  -webkit-transition: opacity 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), height 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), -webkit-transform 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99);
  transition: opacity 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), height 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), -webkit-transform 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99);
  transition: transform 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), opacity 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), height 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99);
  transition: transform 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), opacity 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), height 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99), -webkit-transform 400ms cubic-bezier(0.81, 0.26, 0.66, 0.99);
  height: 1px;
  left: 20%;
  top: 50%;
  width: 60%;
}

#header #hamburger .l-hamburger_line:nth-of-type(1) {
  /* transform-origin: left top; */
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  /* &::after {
          background-color: rgb(172, 33, 33);
          content: '';
          position: absolute;
          height: 1px;
          transition: 400ms;
          width: 3px;
          top: 0;
          left: 0;
        } */
}

#header #hamburger .l-hamburger_line:nth-of-type(3) {
  /* transform-origin: left bottom; */
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

#header #hamburger.is-active .l-hamburger_line {
  margin-top: 0;
}

#header #hamburger.is-active .l-hamburger_line:nth-of-type(1) {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  /* top: 50%; */
  /* transform-origin: left top; */
}

#header #hamburger.is-active .l-hamburger_line:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translate(30px);
          transform: translate(30px);
}

#header #hamburger.is-active .l-hamburger_line:nth-of-type(3) {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  /* top: 50%; */
  /* transform-origin: left bottom; */
}

#header .l-reservation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 60px;
}

@media (min-width: 1025px) {
  #header .l-reservation {
    width: 90px;
  }
}

#header .l-reservation_btn {
  display: block;
  margin: 0 auto;
  width: 90%;
}

@media (min-width: 1025px) {
  #header .l-reservation_btn {
    width: 70%;
  }
}

#header .l-gnav {
  background-color: #eee;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  -webkit-transition: opacity 600ms, visibility 800ms;
  transition: opacity 600ms, visibility 800ms;
  top: 0;
  left: 0;
  height: 100vh;
  overflow: auto;
  will-change: opacity;
  width: 100%;
  z-index: 100;
}

#header .l-gnav.is-active {
  opacity: 1;
  visibility: visible;
}

#header .l-gnav.is-active .l-gnav_logo {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

#header .l-gnav.is-active .l-menu_list {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#header .l-gnav.is-active .l-menu_list:nth-of-type(1) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#header .l-gnav.is-active .l-menu_list:nth-of-type(2) {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}

#header .l-gnav.is-active .l-menu_list:nth-of-type(3) {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

#header .l-gnav.is-active .l-menu_list:nth-of-type(4) {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

#header .l-gnav.is-active .l-menu_list:nth-of-type(5) {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}

#header .l-gnav.is-active .l-menu_list:nth-of-type(6) {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}

#header .l-gnav.is-active .l-menu_list:nth-of-type(7) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}

#header .l-gnav.is-active .l-menu_list:nth-of-type(8) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}

#header .l-gnav.is-active .l-menu_sns::before {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
  width: 100%;
}

#header .l-gnav.is-active .l-menu_sns_inner {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
  opacity: 1;
}

#header .l-gnav_logo_wrap {
  width: 100%;
}

@media (min-width: 1025px) {
  #header .l-gnav_logo_wrap {
    margin: 0 auto;
    max-width: 1000px;
  }
}

#header .l-gnav_logo {
  height: 60px;
  line-height: 60px;
  margin-left: 5%;
  opacity: 0;
  /* position: absolute; */
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
  -webkit-transition: 800ms;
  transition: 800ms;
  width: 40%;
  z-index: 1;
}

#header .l-gnav_logo img {
  vertical-align: middle;
}

@media (min-width: 640px) {
  #header .l-gnav_logo {
    width: 250px;
  }
}

@media (min-width: 1025px) {
  #header .l-gnav_logo {
    margin-left: 0;
    width: 200px;
  }
}

#header .l-gnav_wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  /* top: 0; */
  /* position: fixed;
    height: 100vh; */
  width: 100%;
}

@media (min-width: 1025px) {
  #header .l-gnav_wrap {
    min-height: calc(100vh - 60px);
  }
}

#header #gnav {
  width: 100%;
}

#header .l-gnav_inner {
  margin: 8%;
}

@media (min-width: 1025px) {
  #header .l-gnav_inner {
    margin: 10% auto;
    max-width: 1000px;
  }
}

#header .l-menu_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1025px) {
  #header .l-menu_lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#header .l-menu_list {
  margin-top: 6%;
  max-width: 400px;
  -webkit-transition: 800ms;
  transition: 800ms;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  opacity: 0;
  width: 75%;
}

#header .l-menu_list a {
  display: block;
  margin: 0;
}

#header .l-menu_list:nth-of-type(1) a {
  width: 51.8%;
}

#header .l-menu_list:nth-of-type(2) a {
  width: 33.1%;
}

@media (min-width: 1025px) {
  #header .l-menu_list:nth-of-type(2) {
    margin-right: 13%;
  }
}

#header .l-menu_list:nth-of-type(3) a {
  width: 100%;
}

#header .l-menu_list:nth-of-type(4) a {
  width: 33.3%;
}

#header .l-menu_list:nth-of-type(5) a {
  width: 100%;
}

@media (min-width: 1025px) {
  #header .l-menu_list:nth-of-type(5) {
    margin-right: 13%;
  }
}

#header .l-menu_list:nth-of-type(6) a {
  width: 41.6%;
}

#header .l-menu_list:nth-of-type(7) a {
  width: 41.9%;
}

#header .l-menu_list:nth-of-type(8) a {
  width: 68.5%;
}

@media (min-width: 1025px) {
  #header .l-menu_list {
    margin-top: 0;
    width: 29%;
    /* a {
        margin: 0 auto;
      } */
  }
  #header .l-menu_list:not(:nth-of-type(3n)) {
    /* margin-right: 5%; */
  }
  #header .l-menu_list:nth-of-type(n + 4) {
    margin-top: 4.2vw;
  }
}

#header .l-menu_anchor {
  position: relative;
}

#header .l-menu_anchor::after {
  content: "";
  background-color: #3e3a39;
  height: 1px;
  left: 0;
  bottom: -5px;
  position: absolute;
  -webkit-transition: 400ms ease-in;
  transition: 400ms ease-in;
  width: 0;
}

@media (min-width: 1025px) {
  #header .l-menu_anchor:hover::after {
    width: 100%;
  }
}

#header .l-menu_sns {
  /* border-top: 1px solid $text-color; */
  margin-top: 8%;
  position: relative;
}

#header .l-menu_sns::before {
  background-color: #3e3a39;
  content: "";
  position: absolute;
  -webkit-transition: 800ms;
  transition: 800ms;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
}

#header .l-menu_sns_inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* margin-top: 4vh; */
  opacity: 0;
  padding: 6% 2% 0;
  -webkit-transition: 800ms;
  transition: 800ms;
}

#header .l-menu_sns_ttl {
  margin-right: 4vw;
  max-width: 110px;
  width: 25%;
}

@media (min-width: 1025px) {
  #header .l-menu_sns_ttl {
    margin-right: 3vw;
  }
}

#header .l-menu_sns_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 36%;
}

@media (min-width: 1025px) {
  #header .l-menu_sns_lists {
    width: 18%;
  }
  #header .l-menu_sns_lists a {
    -webkit-transition: 400ms ease-in;
    transition: 400ms ease-in;
  }
  #header .l-menu_sns_lists a:hover {
    opacity: 0.7;
  }
}

#header .l-menu_sns_list {
  max-width: 45px;
  width: 25%;
}

#header .l-menu_sns_list:not(:nth-last-of-type(1)) {
  margin-right: 3vw;
}

@media (min-width: 1025px) {
  #header .l-menu_sns_list:not(:nth-last-of-type(1)) {
    margin-right: 12%;
  }
}

/* ***************************************************************
ページネーション
*******************************************************************/
.l-pagination {
  margin: 12vw auto 0;
  width: 92%;
}

@media (min-width: 1025px) {
  .l-pagination {
    margin: 120px auto 0;
    width: 80%;
  }
}

.l-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (min-width: 1025px) {
  .l-pagination .nav-links {
    font-size: 13px;
  }
}

.l-pagination .page-numbers {
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  display: block;
  line-height: 30px;
  text-align: center;
  -webkit-transition: 400ms;
  transition: 400ms;
  /* margin: 0 2px; */
  height: 30px;
  width: 30px;
}

@media (min-width: 1025px) {
  .l-pagination .page-numbers {
    margin: 0 2px;
    line-height: 40px;
    height: 40px;
    width: 40px;
  }
  .l-pagination .page-numbers:hover {
    background-color: #ddd;
  }
}

.l-pagination .page-numbers.current {
  border: 1px solid #ddd;
}

.l-pagination .page-numbers.current:hover {
  background-color: rgba(0, 0, 0, 0);
}

.l-pagination .page-numbers.dots:hover {
  background-color: rgba(0, 0, 0, 0);
}

/******************************************************************
footer
******************************************************************/
.l-footer_wrap {
  background-color: #82acba;
  padding: 14% 8%;
}

@media (min-width: 1025px) {
  .l-footer_wrap {
    padding: 100px 0;
  }
}

.l-footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 1025px) {
  .l-footer_inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-footer_logo {
  margin: 10vw auto 0;
  max-width: 280px;
  width: 55%;
}

@media (min-width: 1025px) {
  .l-footer_logo {
    margin: 0;
    max-width: none;
    width: 26%;
  }
}

.l-footer_link {
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
}

@media (min-width: 1025px) {
  .l-footer_link {
    margin: 0;
    width: 35%;
  }
}

.l-footer_link_app {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  width: 80%;
}

@media (min-width: 1025px) {
  .l-footer_link_app {
    padding-bottom: 25px;
  }
}

.l-footer_link_app::after {
  content: "";
  background-color: #fff;
  bottom: 0;
  left: -10%;
  position: absolute;
  /* margin-top: 30px; */
  height: 1px;
  width: 120%;
}

.l-footer_link_app_ttl {
  width: 40%;
}

.l-footer_link_app_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
}

@media (min-width: 1025px) {
  .l-footer_link_app_icon a {
    -webkit-transition: 400ms ease-in;
    transition: 400ms ease-in;
  }
  .l-footer_link_app_icon a:hover {
    opacity: 0.7;
  }
}

.l-footer_link_app_apple {
  margin-right: 20%;
  width: 40%;
}

.l-footer_link_app_google {
  width: 40%;
}

.l-footer_link_sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-bottom: 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 6vw auto 0;
  width: 80%;
}

@media (min-width: 1025px) {
  .l-footer_link_sns {
    margin: 25px auto 0;
    padding-bottom: 25px;
  }
}

.l-footer_link_sns::after {
  content: "";
  background-color: #fff;
  bottom: 0;
  left: -10%;
  position: absolute;
  /* margin-top: 30px; */
  height: 1px;
  width: 120%;
}

.l-footer_link_sns_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.l-footer_link_sns_icon li {
  width: 26%;
}

.l-footer_link_sns_icon li:not(:nth-last-of-type(1)) {
  margin-right: 11%;
}

.l-footer_link_sns_icon a {
  display: block;
  position: relative;
}

.l-footer_link_sns_icon a span {
  -webkit-transition: 400ms ease-in;
  transition: 400ms ease-in;
}

@media (min-width: 1025px) {
  .l-footer_link_sns_icon a:hover .mouseoff {
    opacity: 0;
  }
}

.l-footer_link_sns_company {
  position: relative;
  width: 30%;
}

.l-footer_link_sns_company span {
  -webkit-transition: 600ms;
  transition: 600ms;
}

@media (min-width: 1025px) {
  .l-footer_link_sns_company:hover .mouseoff {
    opacity: 0;
  }
}

.l-copy {
  color: #fff;
  font-size: clamp(10px, 2.8vw, 14px);
  margin-top: 14vw;
  text-align: center;
}

@media (min-width: 1025px) {
  .l-copy {
    font-size: clamp(10px, 1.8vw, 12px);
    margin-top: 20px;
    text-align: right;
  }
}

/* ***************************************************
404ページ
******************************************************/
.p-404_sec {
  background-color: #ddd;
}

.p-404_wrap {
  padding: 10em 0;
}

.p-404_ttl {
  font-size: clamp(14px, 5.4vw, 32px);
  text-align: center;
}

.p-404_txtblock {
  font-size: clamp(12px, 3.6vw, 16px);
  text-align: center;
  margin: 3.5em auto 0;
}

.p-404_btn {
  background-color: #000;
  color: #fff;
  font-size: clamp(12px, 3.6vw, 16px);
  padding: 10px;
  display: block;
  text-align: center;
  margin: 3.5em auto;
  width: clamp(200px, 30%, 250px);
}
/*# sourceMappingURL=common.css.map */



/*********************************************************
New Classes
*********************************************************/
html {
  scroll-behavior: smooth;
}
.produce-container{
  max-width: 1400px;
  padding: 58px 150px;
  margin: 0 auto;
}
.produce-page{  
  font-family: 'HiraginoSansW4';
  font-weight: normal;
}
.produce-page .produce-header {
  position: relative;
}
.produce-page .produce-header .overlay, .produce-page .produce-header .slick-list:after{
  content: '';
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.produce-page .produce-header .produce-header-slider .slick-list .slick-track {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); 
  display: flex;*/
  /* height: 625px; */
}

.produce-page .produce-header .produce-header-slider img {
  object-fit: cover;
  /* width: 33.33%;
  height: 100%; */
}
.produce-page .produce-header .produce-header-content{
  text-align: center;
  color: #ffffff;
}
.produce-page .produce-header .produce-header-content {
  text-align: center;
  color: #ffffff;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 30px;
}
.produce-page .produce-header .produce-header-content h2{
  font-family: 'butlerultralight';
  font-size: 72px;
  line-height: 75px;
  letter-spacing: 5px;
  margin-bottom: 40px;
}
.produce-page .produce-header .produce-header-content h2 span{
  display: block;
  font-size: 16px;
  line-height: normal;
  letter-spacing: normal;
}
/******************produce-section1*****************/
.produce-page .produce-section1-inner{
  font-family: 'hiragino_mincho_pronw3';
  font-size: 16px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  justify-content: center;
}
.produce-page .produce-section1-inner img.coffee-cup {
  position: absolute;
  right: 0;
  top: 0;
}
.produce-page .produce-section1-right{
  position: relative;
}
.produce-page .produce-section1-inner img.coffee-cup.one {
  right: 220px;
  top: 80px;
}
.produce-page .produce-section1-inner img.coffee-cup.two {
  right: 30px;
  top: 110px;
}
.produce-page .produce-section1-inner img.coffee-cup.three {
  right: 30px;
  top: 110px;
}
.produce-page .produce-section1-inner img.coffee-cup.four {
  right: 30px;
  top: 110px;
}
.produce-page .produce-section1-inner img.coffee-cup.five {
  right: 30px;
  top: 110px;
}
.produce-page .produce-section1-inner img.coffee-cup.six {
  right: 30px;
  top: 110px;
}
.produce-page .produce-section1-inner img.coffee-cup.seven {
  right: 30px;
  top: 110px;
}
.produce-page .produce-section1-inner h2 {
  font-size: 32px;
  line-height: 45px;
  margin-bottom: 18px;
}
.produce-page .produce-section1-inner h4 {
  font-family: 'butlerultralight';
  margin-bottom: 50px;
}
.produce-page .produce-section1-inner p {
  line-height: 40px;
}
/***************************************************/
/******************produce-section-list-block*****************/
.produce-page .produce-section-list-block{
  font-family: 'hiragino_mincho_pronw3';
  font-size: 16px;
}
.produce-page .produce-section-list-block .produce-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  line-height: 35px;
  border-right:1px #cccccc solid;
}
.produce-page .produce-section-list-block .produce-section-list li img {
  width: 32px;
}
.produce-page .produce-section-list-block .produce-section-list li{
  border-left:1px #cccccc solid;
}
.produce-page .produce-section-list-block .produce-section-list li a{
  padding-bottom: 18px;
  position: relative;
  display: block;
}
.produce-page .produce-section-list-block .produce-section-list li a:after {
  content: "";
  background-image: url(../images/produce/down-arrow.svg);
  width: 11px;
  height: 6px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
}
.produce-page .produce-section-list-block .produce-section-list li .number {
  background-color: #000;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  width: 32px;
  height: 32px;
  padding: 8px;
}
.produce-page .produce-section-list-block .produce-section-list li .number.one{
  background-color: #96907D;
}
.produce-page .produce-section-list-block .produce-section-list li .number.two{
  background-color: #75B0C0;
}
/***************************************************/
/******************produce-section-list-block-one*****************/

.produce-page .produce-section-list-block-one{  
  background-color: #F4F0E7;
  text-align: center;
  font-size: 14px;
}
.produce-page .produce-section-list-block-one p{
  line-height: 22px;
}
.produce-page .produce-section-list-block-one .produce-container{
  padding-top: 100px;
  padding-bottom: 102px;
}
.produce-page .produce-section-list-block-one h2 {
  font-family: 'hiragino_mincho_pronw3';
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.produce-page .produce-section-list-block-one h4 {
  font-family: 'butlerultralight';
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box{
  margin-top: 70px;
  background-color: #ffffff;
  padding: 75px 82px 98px;
  box-shadow: 0 0 16px rgba(0,0,0,.08);
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box h3.head {
  font-family: 'hiragino_mincho_pronw3';
  font-size: 24px;
  position: relative;
  display: inline-table;
  margin-bottom: 33px;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box h3.head:before {
  content: '';
  position: absolute;
  left: -38px;
  background-color: #707070;
  height: 1px;
  width: 12px;
  top: 50%;
  transform: translate(0, -50%);
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box h3.head:after{
  content: '';
  position: absolute;
  right: -38px;
  background-color: #707070;
  height: 1px;
  width: 12px;
  top: 50%;
  transform: translate(0, -50%);
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list {
  padding: 0;
  margin: 34px 0 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list ul{
  text-align: left;
  font-size: 12px;
  display: inline-block;
  line-height: 18px;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li{
  position: relative;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:before {
  content: '';
  background: #96907D;
  height: 1px;
  width: 50%;
  position: absolute;
  left: 0;
  top: 21px;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:after {
  content: '';
  background: #96907D;
  width: 50%;
  position: absolute;
  right: 0;
  top: 21px;
  height: 1px;
  z-index: 0;
}

.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li li:before, .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li li:after, .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:first-child:before, .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:last-child:after{
  display: none;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list span.number {
  font-family: 'hiragino_mincho_pronw3';
  border: 2px #96907D solid;
  color: #96907D;
  border-radius: 50%;
  font-size: 13px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 17px;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
	padding-top:2px;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li span{
  position: relative;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li h3 {
  color: #96907D;
  margin-bottom: 17px;
  font-size: 16px;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li span.number:after {
  content: '';
  background-color: #96907D;
  width: 100px;
  height: 2px;
  position: absolute;
  right: 33px;
  display: none;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:first-child span.number:after {
  display: none;
}
.produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .produce-section-list-block-one-btn{
  font-family: 'hiragino_mincho_pronw3';
  background-color: #97907d;
  color: #ffffff;
  display: block;
  font-size: 22px;
  padding: 18px;
  margin-top: 63px;
  margin-bottom: 40px;
}
/*****************************************************************/
/**************************Blog***********************************/
.blog-box {
  font-family: 'HiraginoSansW4';
  text-align: left;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.blog-box .inner-box .inner-box-img{
  width: 100%;
  height: 357px;
}
.blog-box .inner-box .inner-box-img a[href="#"]:hover {
  cursor: default;
}
.blog-box .inner-box .inner-box-img img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.blog-box .inner-box h2{
  font-family: 'hiragino_mincho_pronw3';
  font-size: 20px;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}
.blog-box .inner-box h4{
  font-family: 'HiraginoSansW4';
  font-size: 13px;
}
.blog-box .inner-box .tag-list{
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 18px;
}
.blog-box .inner-box .tag-list li{
  border: 1px #707070 solid;
  padding: 5px 10px;
  font-size: 11px;
  background-color: #ffffff;
}
.blog-box .inner-box .see-details{
  font-size: 12px;
  position: relative;
  padding-right: 30px;
  padding-bottom: 6px;
}
.work-page .blog-box .inner-box .see-details{
  padding-right: 18px;
}
.blog-box .inner-box .see-details:after {
  content: '';
  background-image: url(../images/produce/btn-right-img.svg);
  position: absolute;
  right: 1px;
  top: 1px;
  width: 11px;
  height: 9px;
  background-repeat: no-repeat;
}
.blog-box .inner-box .see-details:before {
  content: '';
  background: #707070;
  width: 75px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.blog-box .inner-box{
  margin-bottom: 22px;
}
.produce-page-btn {
  background-color: #333333;
  color: #ffffff;
  padding: 24px 20px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  width: 442px;
  margin-top: 40px;
  transition: all .2s ease-in;
}
.produce-page-btn:hover {
  background-color:rgba(51,51,51,.6);
  transition: all .2s ease-out;
}
.produce-page-btn:after {
  content: '';
  background-image: url(../images/produce/arrow-right.svg);
  position: absolute;
  width: 8px;
  height: 14px; 
  right: 23px; 
  top: 50%;
  transform: translateY(-50%);
}
/*****************************************************************/
/******************produce-section-list-block-two*****************/

.produce-page .produce-section-list-block-two{  
  background-color: #E7F3F7;
  text-align: center;
  font-size: 14px;
}
.produce-page .produce-section-list-block-two p{
  line-height: 22px;
}
.produce-page .produce-section-list-block-two .produce-container{
  padding-top: 100px;
  padding-bottom: 102px;
}
.produce-page .produce-section-list-block-two h2 {
  font-family: 'hiragino_mincho_pronw3';
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.produce-page .produce-section-list-block-two h4{
  font-family: 'butlerultralight';
  font-size: 16px;
  margin-bottom:45px
}
.produce-page .produce-section-list-block-two .produce-section-list-block-two-inner .produce-section-list-block-two-btn{
  font-family: 'hiragino_mincho_pronw3';
  background-color: #75b0c0;
  color: #ffffff;
  display: block;
  font-size: 22px;
  padding: 18px;
  margin-top: 63px;
  margin-bottom: 40px;
}
.produce-page .produce-section-list-block-two .produce-section-list-block-two-inner .blog-box h4{
  font-family: 'HiraginoSansW4';
  font-size: 12px;
  margin-bottom: 0;
}
.produce-page .produce-section-list-block-two .produce-section-list-block-two-inner .blog-box .inner-box .tag-list li {
  /* border: 1px #75B0C0 solid;
  color: #75B0C0;
  padding: 5px 10px;
  font-size: 11px;
  background-color: #ffffff; */
}
.produce-page .produce-section-list-block-two .produce-section-list-block-two-inner .blog-box .inner-box .see-details {
  font-size: 14px;
  padding-right: 20px;
}
.produce-page .produce-section-list-block-two .blog-box .inner-box h2 {
  font-size: 20px;
}
.produce-page .produce-section-list-block-two .produce-page-btn{
  margin-top: 60px;
}
.produce-page .produce-section-list-block-two .meb-img-box img {
  height: 214px;
  object-fit: cover;
  width: 100%;
}
.produce-page .machines-equipment-box {
  background-color: #ffffff;
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  text-align: left;
  gap: 40px;
  margin: 22px 0 0 0;
}
.produce-page .machines-equipment-box h2{
  font-size: 24px;
  margin: 0px;
  position: relative;
  padding: 0 0 15px 0;
}
.produce-page .machines-equipment-box h2:after{
  content: '';
  background-color: #75B0C0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 1px;
}
.produce-page .machines-equipment-box h3{
  font-family: 'hiragino_mincho_pronw3';
  font-size: 20px;
  padding: 26px 0 22px;  
}
.produce-page .machines-equipment-box a.meb-btn{
  border:1px #333333 solid;
  border-radius: 32px;
  font-size: 12px;
  padding: 8px 24px;
  margin-top: 18px;
  display: table;
}
.produce-page .machines-equipment-box .meb-content-box{
  position: relative;
}
.produce-page .machines-equipment-box .meb-content-box-img1{
  position: absolute;
  right: 0;
  top: -50px;
}
.produce-page .machines-equipment-box .meb-content-box-img2{
  position: absolute;
  right: 0;
  bottom: 0;
}

/*****************************************************************/
/******************produce-section-list-block-three*****************/

.produce-page .produce-section-list-block-three{  
  background-color: #f7f7f7;
  text-align: center;
  font-size: 14px;
}
.produce-page .produce-section-list-block-three p{
  line-height: 22px;
}
.produce-page .produce-section-list-block-three .produce-container{
  padding-top: 100px;
  padding-bottom: 102px;
}
.produce-page .produce-section-list-block-three h2 {
  font-family: 'hiragino_mincho_pronw3';
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.produce-page .produce-section-list-block-three h4{
  font-family: 'butlerultralight';
  font-size: 16px;
  margin-bottom:45px
}
.produce-page .produce-section-list-block-three .produce-page-btn {
  background-color: #807148;
  width: auto;
  padding-left: 95px;
  padding-right: 95px;
  transition: all .2s ease-in;
}
.produce-page .produce-section-list-block-three .produce-page-btn:hover {
  background-color: rgba(93,82,53,1);
  transition: all .2s ease-out;
}
.produce-page .produce-section-list-block-three .produce-section-list-block-three-inner .blog-box h4{
  margin-bottom: 0;
}

/*****************************************************************/

/****************************/

.produce-page .produce-section2-inner{
  font-family: 'hiragino_mincho_pronw3';
  font-size: 16px;
}
.produce-page .produce-section2-inner .produce-section2-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-img{
  height: 140px;
}
.produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content{
  font-family: 'HiraginoSansW4';
  font-size: 14px;
}
.produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content h2{
  font-size: 16px;
  margin: 17px 0 12px 0;
}
.produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content .box-btn {
  background-color: #333333;
  font-size: 14px;
  color: #ffffff;
  padding: 11px 36px 11px 27px;
  display: inline-block;
  border-radius: 50px;
  margin: 12px 0 0 0;
  position: relative;
  transition: all .2s ease-in; 
}
.produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content .box-btn:hover {
  background-color: rgba(51,51,51,.6);
  transition: all .2s ease-out;
}
.produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content .box-btn:after {
  content: '';
  background-image: url(../images/produce/btn-right-icon.svg);
  position: absolute;
  width: 9px;
  height: 8px;
  right: 18px;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(0, -50%);
}
.produce-page .produce-section2 .produce-container {
  padding: 64px 150px 94px;
}

/****************************/

/****************************Image Style Section CSS**************************/

.img-style-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 56px;
}
.img-style-section .img-box{
  height: 400px;
}
.img-style-section .img-box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.img-style-section .img-box .inner-img-box {
  display: flex;
  flex-wrap: wrap;
}
.img-style-section .img-box .inner-img-box img {
  width: 50%;
  height: 200px;
  object-fit: cover;
}
.img-style-section .img-box .inner-img-box img:first-child {
  width: 100%;
}

/*****************************************************************************/

/**********************************Work Page CSS***********************************/
.custom_page-work .l-header_ttl img{
  filter: invert(1);
}
.work-page{
  font-family: 'butlerultralight';
}
.work-container{
  max-width: 1400px;
  padding: 99px 150px;
  margin: 0 auto;
}
.work-page .work-header .work-header-content h2{
  font-size: 72px;
}
.work-page ul.work-tab-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 73px 0 64px;
  gap: 16px;
}
.work-page ul.work-tab-list li a{
  border: 1px #707070 solid;
  padding: 17px 20px;
  display: block;
  min-width: 240px;
  text-align: center;
  transition: all .2s ease-in;
}
.work-page ul.work-tab-list li.selected a, .work-page ul.work-tab-list li a:hover{
  background-color: #333333;
  color: #ffffff;
  transition: all .2s ease-out;
}
.work-page ul.page-numbers {
  font-family: 'hiragino_mincho_pronw3';
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.work-page ul.page-numbers li a, .work-page ul.page-numbers li span {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 400ms;
  transition: 400ms;
}
.work-page .pagination-container a.prev, .work-page .pagination-container a.next {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: 400ms;
  transition: 400ms;
  margin: 0 5px;
  line-height: 40px;
}
.work-page ul.page-numbers li span.current {
  border: 1px #ddd solid;
}
.work-page ul.page-numbers li a:hover, .work-page .pagination-container a.prev:hover, .work-page .pagination-container a.next:hover {
  background-color: #ddd;
}
.work-page ul.page-numbers li.prev a, .work-page ul.page-numbers li.next a {
  width: auto;
  height: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.work-page ul.page-numbers li.prev a:hover, .work-page ul.page-numbers li.next a:hover {
  border: none;
}
.work-page .pagination-container {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Meiryo", "メイリオ", sans-serif;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.work-page .blog-box {
  grid-template-columns: repeat(3, 1fr);
}
.work-page .blog-box .inner-box .inner-box-img {
  height: 230px;
}
.blog-box .cafe-produce.inner-box .tag-list li {
  border: 1px #75B0C0 solid;
  color: #75B0C0;
  padding: 5px 10px;
  font-size: 11px;
  background-color: #ffffff;
}

/**********************************************************************************/

/*********************************Animation****************************************/

@-webkit-keyframes fading {
  from {
      opacity: 0;
  }
  to {
       opacity: 1;   
  }
}
@-moz-keyframes fading {
  from {
      opacity: 0;
  }
  to {
       opacity: 1;   
  }
}

@keyframes fading {
  from {
      opacity: 0;
  }
  to {
       opacity: 1;   
  }
}

.cup-img {
  opacity: 0;
}
.cup-animation .cup-img {
  -webkit-animation: fading ease-in .5s;
  animation: fading ease-in .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
}

.cup-img.cup-seven {

}

.cup-img.cup-three {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s
}

.cup-img.cup-six {
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s;
}
.cup-img.cup-five {
  -webkit-animation-delay: 3.3s;
  animation-delay: 3.3s;
}
.cup-img.cup-one {
  -webkit-animation-delay: 4.3s;
  animation-delay: 4.3s;
}
.cup-img.cup-four {
  -webkit-animation-delay: 5.3s;
  animation-delay: 5.3s;
}
.cup-img.cup-two {
  -webkit-animation-delay: 6.3s;
  animation-delay: 6.3s;
}

/**********************************************************************************/

.fixed-side-box {
  position: fixed;
  font-size: 14px;
  top: 55%;
  right: 0;
  z-index: 999;
  background-color: #807148;
  color: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 25px 21px;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
}
.fixed-side-box img {
  width: 8px;
  margin-top: 15px;
}
.produce-page .produce-section-list-block .produce-section-list br {
  display: none;
}
.show-on-mobile{
  display: none;
}
/****************Navigation*******************/

#header .l-menu_list:nth-of-type(9) a {
  width: 47.9%;
  padding-bottom: 13px;
}
#header .l-gnav.is-active .l-menu_list:nth-of-type(9) {
  -webkit-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
@media (min-width: 1025px) {
  #header .l-menu_list:nth-of-type(8) {
      margin-right: 13%;
  }
}
/*********************************************/

/************************************Responsive************************************/

@media all and (max-width:2100px){}

@media all and (max-width:1920px){}

@media all and (max-width:1700px){}

@media all and (max-width:1399px){
  .produce-page .produce-section1-inner p {
      letter-spacing: -1px;
  }
  .produce-page .produce-section1-right svg {
      width: 450px;
  }  
}

@media all and (max-width:1280px){
  .work-container {
      padding: 99px 130px;
  }
  .produce-page .machines-equipment-box .meb-content-box-img1 {
      top: -40px;
      width: 140px;
  }
}

@media all and (max-width:1199px){
  .produce-container {
      padding: 58px 80px;
  }
  .work-page ul.work-tab-list li a {
      padding: 17px 10px;
  }
  .work-container {
      padding: 99px 50px;
  }
}

@media all and (max-width:1024px){
  .produce-container {
      padding: 58px;
  }
  .produce-page .produce-header .produce-header-content {
      width: 100%;
  }
}

@media all and (max-width:992px){
  .produce-page .machines-equipment-box .meb-content-box-img1, .produce-page .machines-equipment-box .meb-content-box-img2 {
      display: none;
  }
  .show-on-mobile{
    display: block;
  }
  img.meb-content-box-img3 {
      float: right;
  }
  .produce-container {
      padding: 25px;
  }
  .produce-page .produce-section1-inner {
      text-align: center;
      display: flex;
      flex-wrap: wrap;
  }
  .produce-page .produce-section1-inner .produce-section1-left{
    width: 100%;
    /* order: 2; */
    margin-top: 66px;
  }
  .produce-page .produce-section1-inner .produce-section1-right{
    width: 100%;
    /* order: 1; */
  }
  .produce-section1 .produce-container {
      padding-top: 0;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box {
      margin-top: 40px;
      padding: 45px 20px 45px;
  }
  .produce-page .produce-section-list-block-one p {
      letter-spacing: -1px;
  }
  .blog-box .inner-box .inner-box-img {
      height: 225px;
  }
  .img-style-section .img-box {
      height: 260px;
  }
  .img-style-section .img-box .inner-img-box img {
      height: 130px;
  }
  .produce-page .machines-equipment-box {
      padding: 25px;
      gap: 20px;
  }
  .produce-page .machines-equipment-box h2 {
      font-size: 20px;
      padding: 0 0 10px 0;
  }
  .produce-page .machines-equipment-box h3 {
      font-size: 18px;
      padding: 15px 0 12px;
  }
  .produce-page .produce-section2 .produce-container {
      padding: 44px 25px 44px;
  }
  .produce-page .produce-section-list-block-three .produce-container {
      padding-top: 50px;
      padding-bottom: 50px;
  }  
  .produce-page .produce-header .produce-header-content h2 {
      font-size: 62px;
  }
  .produce-page .produce-section-list-block-two h2 {
      font-size: 32px;
  }
  .produce-page .produce-section-list-block-one .produce-container, .produce-page .produce-section-list-block-two .produce-container {
      padding-top: 50px;
      padding-bottom: 50px;
  }
  .produce-page .produce-header .produce-header-slider .slick-list .slick-track  {
      /* height: 465px; */
  }
  .work-page ul.work-tab-list li a {
      min-width: 150px;
  }
  .work-page .blog-box {
      gap: 15px;
  }
  .work-page .blog-box .inner-box .inner-box-img {
      height: 150px;
  }
  .work-page .blog-box .inner-box h2 {
      margin-top: 20px;
  }
  .fixed-side-box {
      padding: 20px 14px;
  }
  
}

@media all and (max-width:767px){
  .produce-page .produce-section-list-block .produce-section-list {
      /* grid-template-columns: 1fr; */
      border-right: 0px #cccccc solid;
      gap: 15px;
      font-size: 14px;
      line-height: 20px;
  }
  .produce-page .produce-section-list-block .produce-section-list li img {
      margin-bottom: 8px;
  }
  .produce-page .produce-section-list-block .produce-section-list li {
      border: 1px #dedede solid;
      padding-top: 21px;
      padding-bottom: 21px;
      border-radius: 4px;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:after, .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:before{
      display: none;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
  }
  .produce-page .produce-section-list-block-two h2 {
      font-size: 22px;
  }
  .blog-box {
      gap: 20px;
  }
  .produce-page .produce-header .produce-header-content h2 {
      font-size: 42px;
      line-height: 55px;
      margin-bottom: 15px;
  }
  .work-page ul.work-tab-list li a {
      min-width: auto;
  }
  .work-page .blog-box {
      grid-template-columns: repeat(2, 1fr);
  }
  .work-page .blog-box .inner-box .inner-box-img {
      height: 200px;
  }

  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li {
      width: 100%;
      position: relative;
      text-align: left;
      padding-left: 53px;
      padding-bottom: 30px;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list span.number {
      position: absolute;
      left: 0;
      top: -7px;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li li {
      width: auto;
      padding-left: 0;
      padding-bottom: 0;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list ul {
      display: flex;
      align-items: normal;
      justify-content: left;
      flex-wrap: wrap;
      gap: 8px;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li h3 {
      font-size: 16px;
      color: #96907D;
      margin-bottom: 13px;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:after {
      content: '';
      left: 17px;
      display: block;
      width:1px;
      height: 100%;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:before {
      content: '';
      left: 17px;
      display: block;
      width: 1px;
      height: 100%;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list span.number{
    height: 34px;
    width:34px;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:last-child:before{
      display: none;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li li:after, .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li li:before {
    display: none;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list {
    gap: 0px; 
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .produce-section-list-block-one-btn {
    font-size: 14px;
  }

  .produce-page .produce-section-list-block-two p {
      text-align: left;
  } 
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li ul{
    display: none;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box .cafe-opening-process-box-list li:last-child{
    padding-bottom: 0px;
  }

}

@media all and (max-width:650px){
  .produce-page .machines-equipment-box {
      grid-template-columns: 1fr;
  }
  .produce-page .produce-header .produce-header-content {
      padding: 30px;
  }
  .blog-box {
      gap: 15px;
  }
  .blog-box .inner-box .inner-box-img {
      height: 140px;
  }
  .produce-page .produce-section2-inner .produce-section2-boxes {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  .produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-img {
      height: 180px;
  }  
  .work-page ul.work-tab-list {
      display: block;
      padding: 50px 0px 20px;
  }
  .work-page ul.work-tab-list li {
      margin-bottom: 20px;
  }
  .work-page .blog-box .inner-box .inner-box-img {
      height: 140px;
  }
  .produce-page .produce-section-list-block .produce-section-list br {
      display: block;
  }
  img.meb-content-box-img3 {
    margin: 15px auto;
      float: none;
  }
  .produce-page .machines-equipment-box .meb-btn {
      width: 100%;
      text-align: center;
      font-size: 13px;
      padding: 14px 0;
  }
  .produce-page .produce-section-list-block .produce-section-list li p span{
      display: block;
  }
}

@media all and (max-width:480px){
  .blog-box {
      grid-template-columns: 1fr;
  }
  .blog-box .inner-box .inner-box-img {
      height: 250px;
  }  
  .produce-page-btn {
      width: 100%;
  }
  .produce-page .produce-section-list-block-three .produce-page-btn {
      width: 100%;
  }
  .produce-page .produce-header .produce-header-content h2 {
      font-size: 40px;
  }
  .produce-page .produce-header .produce-header-content h2 span{
      font-size: 12px;
  }
  .produce-page .produce-header .produce-header-content {
    padding: 30px 55px;
    font-size: 14px;
}
  .produce-page .produce-section1-right svg {
      width: 90%;
      height: auto;
      margin: 40px 0;
  }
  .produce-page .produce-section1-inner h2 {
      font-size: 24px;
      line-height: 35px;
      margin-bottom: 18px;
  }
  .produce-page .produce-section-list-block-one h2 {
      font-size: 24px;
  }
  .produce-page .produce-section-list-block-one .produce-section-list-block-one-inner .cafe-opening-process-box h3.head {
      font-size: 20px;
  }
  
  .work-page .blog-box {
      grid-template-columns: 1fr;
  }
  .work-page .blog-box .inner-box .inner-box-img {
      height: 220px;
  }
  /*.fixed-side-box{
    display: none;
  }*/
  .fixed-side-box {
      bottom: 0;
      writing-mode: lr;
      display: block;
      width: 100%;
      text-align: center;
      top: auto;
      padding: 21px 0 21px 0;
  }
  .fixed-side-box img {
    margin-top: 0px;
    float: right;
    position: relative;
    right: 23px;
}
  .produce-page .produce-section1-inner h4 {
    font-size: 14px;
  }
  .produce-page .produce-section1-inner p {
      font-size: 14px;
      text-align: left;
      line-height: 28px;
  }
  .img-style-section {
      grid-template-columns: 1fr;
      margin-left: -25px;
      margin-right: -25px;
  }
  .img-style-section .img-box {
      height: 190px;
  }
  .img-style-section .img-box .inner-img-box img{
      height: 95px;
  }
  .img-style-section .img-box .inner-img-box img:nth-child(2) {
      order: 1;
      border-top: 1px #fff solid;
      border-right: 1px #fff solid;
  }
  .img-style-section .img-box .inner-img-box img:nth-child(3) {
      order: 2;
      border-top: 1px #fff solid;
  }  
  .img-style-section .img-box .inner-img-box img:nth-child(1) {
      order: 3;   
      border-top: 1px #fff solid;   
  }
  .produce-page .produce-section-list-block-two .produce-section-list-block-two-inner .produce-section-list-block-two-btn {
      font-size: 14px;
  }
  .produce-page .produce-section-list-block-two h2 {
      font-size: 24px;
  }
  .produce-page .produce-section-list-block-two .blog-box .inner-box h2 {
      font-size: 24px;
  }
  .produce-page .machines-equipment-box {
      padding: 14px;
  }
  .produce-page .produce-section-list-block-two .meb-img-box img {
      height: 200px;
  }
  .produce-section-list-block-three .img-style-section .img-box:nth-child(2){
      order: 1;
  }
  .produce-section-list-block-three .img-style-section .img-box:nth-child(1){
      order: 2;
  }
  .produce-page .produce-container {
      padding-left: 15px;
      padding-right: 15px;
      padding-top: 0px;
  }
  .produce-page-btn {
      padding: 20px 10px;
      font-size: 12px;
  }
  .produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content .box-btn {
      display: block;
  }
  .produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content .box-btn span {
      display: table;
      margin: 0 auto;
      position: relative;
      padding-right: 36px;
      padding-left: 25px;
  }
  .produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content .box-btn span:after {
      content: '';
      background-image: url(../images/produce/btn-right-icon.svg);
      position: absolute;
      width: 9px;
      height: 8px;
      right: 18px;
      background-repeat: no-repeat;
      top: 50%;
      transform: translate(0, -50%);
  }
  .produce-page .produce-section2-inner .produce-section2-boxes .ps-box .ps-box-content .box-btn:after {
      display: none;
  }
  .produce-page .produce-section-list-block-three h2{
    font-size: 24px;
  }
  .produce-page .produce-section-list-block-three p {
      text-align: left;
  }
  .produce-page .produce-section-list-block .produce-section-list li {
      padding: 21px 10px;
  }
  .produce-page .produce-section-list-block .produce-section-list {
      font-size: 12px;
  }  
  footer#footer {
      margin-bottom: 30px;
  }
}

/**********************************************************************************/