@charset "UTF-8";
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: rgba(102, 51, 51, 0.9);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li img {
  width: 20%;
}

#g-nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 40px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #663333;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  z-index: 99999;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  z-index: 99999;
}

header {
  right: 0;
  z-index: 100;
  width: 80%;
  height: 190px;
  margin-left: 10%;
  display: flex;
  position: relative;
}
header .logo {
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  left: 3rem;
  margin: auto;
  width: 60%;
  height: 4rem;
}
header .logo .flour {
  width: 20%;
  margin-right: 50px;
}
header .logo img {
  width: 15%;
  margin-right: 30px;
}
header .list1 {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 0 70px;
  width: 70%;
  height: 3.2rem;
  justify-content: space-around;
  padding-top: 40px;
  /*現在地とhoverの設定*/
}
header .list1 li a {
  vertical-align: middle;
  color: #fff;
  position: relative;
}
header .list1 li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  margin-bottom: -10px;
  bottom: 0;
  left: 0%;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background: #663333;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: center top;
  /*上部中央基点*/
}
header .list1 .current a::after,
header .list1 a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}
header .list1 .current a,
header .list1 .list1 li a:hover {
  color: #663333;
}

.h-icon {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 90px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 10px;
}
.h-icon .cart {
  margin: 0 0 15px 0;
}

#main .main-img {
  text-align: right;
  position: relative;
  top: 10px;
}
#main .main-img img {
  width: 90%;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .text {
  position: absolute;
  top: 55%;
  right: 0%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  color: #fff;
}
#main .text h1 {
  font-size: 27px;
}
#main .text h2 {
  font-size: 21px;
  letter-spacing: 1px;
}

footer {
  margin: 2% 15%;
  height: 120px;
  display: flex;
  color: #fff;
  justify-content: space-around;
  align-items: flex-end;
}
footer img {
  width: auto;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
footer h5 {
  font-size: 20px;
  margin-bottom: 5px;
}
footer p {
  line-height: 25px;
  letter-spacing: 1px;
  font-size: 14px;
}

.copyright {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

html {
  overflow: scroll;
}

body {
  font-family: "Zen Old Mincho", serif;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #9C868E;
  margin: 0;
}

#main {
  width: 100%;
}
#main .text {
  position: absolute;
  top: 55%;
  right: 0%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  color: #fff;
}
#main .text h1 {
  font-size: 27px;
}
#main .text h2 {
  font-size: 21px;
  letter-spacing: 1px;
}
#main .main-img {
  position: relative;
  width: 90%;
  height: 650px;
  overflow: hidden;
  margin: 0 auto;
  right: -5%;
  margin-top: 20px;
}
#main .main-img .img-01,
#main .main-img .img-02,
#main .main-img .img-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
#main .main-img .img-01 {
  background-image: url("../images/image1.jpeg");
  animation: slide-animation-01 30s infinite;
}
#main .main-img .img-02 {
  background-image: url("../images/206171584_516963246164263_6849531845519640396_n.jpg");
  animation: slide-animation-02 30s infinite;
  background-position: 80%;
}
#main .main-img .img-03 {
  background-image: url("../images/k-image3.jpeg");
  animation: slide-animation-03 30s infinite;
  background-position: 50%;
}
@keyframes slide-animation-01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slide-animation-02 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-animation-03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

#category {
  height: 620px;
  color: #fff;
}
#category .headline {
  display: flex;
  justify-content: space-between;
}
#category .headline .img {
  text-align: center;
  margin-top: 80px;
}
#category .headline .border1 {
  width: 530px;
}
#category .headline .border1 div {
  margin-top: 120px;
  border-top: 1px solid #fff;
  left: -10%;
  display: inline-block;
  position: relative;
  padding: 5px;
  transform: translateX(10%);
  animation: border_anim 5s linear forwards;
}
#category .headline .border1 div::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0px;
  border-top: 1px solid #fff;
  transform: translateX(10%);
  animation: border_anim 5s linear forwards;
}
@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
#category .headline .border1 div::after {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  border-top: 1px solid #fff;
  transform: translateX(20%);
  animation: border_anim 5s linear forwards;
}
#category .headline .border2 {
  width: 530px;
}
#category .headline .border2 div {
  text-align: right;
  margin-top: 220px;
  border-top: 1px solid #fff;
  display: inline-block;
  position: relative;
  padding: 5px;
  right: -100%;
  transform: translateX(-100%);
  animation: border_anim 5s linear forwards;
}
#category .headline .border2 div::before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 95%;
  width: 0;
  right: 0px;
  border-top: 1px solid #fff;
  transform: translateX(-120%);
  animation: border_anim 5s linear forwards;
}
#category .headline .border2 div::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 90%;
  width: 0;
  right: 0px;
  border-top: 1px solid #fff;
  transform: translateX(-105%);
  animation: border_anim 5s linear forwards;
}
#category ul {
  width: 950px;
  display: flex;
  margin: 0 auto;
  margin-top: 70px;
}
#category ul li {
  margin-left: 30px;
}
#category ul li img {
  width: 210px;
  height: 210px;
}
#category ul li a .b-img {
  width: 210px;
  height: 210px;
  position: relative;
  overflow: hidden;
}
#category ul li a .b-img img {
  width: 210px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: 1s all;
}
#category ul li a .b-img img:hover {
  transform: scale(1.2, 1.2);
  transition: 0.5s;
}
#category ul li a .b-img .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}
#category ul li a .b-img .text h3 {
  font-size: 30px;
}

#Instagram-block {
  height: 620px;
  background-color: #663333;
}
#Instagram-block .box {
  display: flex;
  width: 950px;
  padding-top: 80px;
  justify-content: space-between;
  margin: 0 auto;
}
#Instagram-block .box .i-img img {
  width: 470px;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}
#Instagram-block .box .right {
  width: 40%;
  text-align: center;
  justify-content: center;
}
#Instagram-block .box .right img {
  margin-top: 90px;
}
#Instagram-block .box .right p {
  width: 285px;
  color: #fff;
  border: 1px solid;
  padding: 15px;
  text-align: center;
  margin: 50px auto 0;
  position: relative;
}
#Instagram-block .box .right p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: background-color 0.5s;
}
#Instagram-block .box .right p:hover::before {
  background-color: rgba(255, 255, 255, 0.4);
}

#cafe-block {
  height: 620px;
}
#cafe-block .box {
  display: flex;
  flex-flow: row-reverse;
  width: 950px;
  padding-top: 80px;
  justify-content: space-between;
  margin: 0 auto;
}
#cafe-block .box .c-img img {
  width: 470px;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}
#cafe-block .box .right {
  width: 40%;
  text-align: center;
  justify-content: center;
}
#cafe-block .box .right img {
  width: 250px;
  margin-top: 40px;
}
#cafe-block .box .right h4 {
  color: #fff;
  margin-right: 0;
  text-align: center;
  margin-top: 50px;
  margin-left: 0px;
  margin-bottom: 50px;
}
#cafe-block .box .right p {
  width: 285px;
  color: #fff;
  border: 1px solid;
  padding: 15px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
#cafe-block .box .right p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: background-color 0.5s;
}
#cafe-block .box .right p:hover::before {
  background-color: rgba(255, 255, 255, 0.4);
}

#onlineShop-block {
  height: 620px;
  background-color: #663333;
}
#onlineShop-block .box {
  display: flex;
  width: 950px;
  padding-top: 80px;
  justify-content: space-between;
  margin: 0 auto;
}
#onlineShop-block .box .o-img img {
  width: 470px;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
}
#onlineShop-block .box .right {
  width: 40%;
  text-align: center;
  justify-content: center;
}
#onlineShop-block .box .right img {
  margin-top: 30px;
}
#onlineShop-block .box .right h4 {
  color: #fff;
  margin-right: 0;
  text-align: center;
  margin-top: 50px;
  margin-left: 0px;
  margin-bottom: 50px;
  line-height: 18px;
  width: 350px;
  margin: 50px auto;
}
#onlineShop-block .box .right p {
  width: 285px;
  color: #fff;
  border: 1px solid;
  padding: 15px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
#onlineShop-block .box .right p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: background-color 0.5s;
}
#onlineShop-block .box .right p:hover::before {
  background-color: rgba(255, 255, 255, 0.4);
}

/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION TITLE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header {
    width: 100%;
    margin-left: -1%;
    text-align: center;
  }
  header .logo {
    width: 70%;
    height: 3.2rem;
    margin-top: 50px;
    margin-left: 8%;
    justify-content: center;
  }
  header .logo .flour {
    width: 30%;
    margin-right: 20px;
  }
  header .logo .cafe {
    width: 22%;
  }
  header .logo img {
    width: 25%;
    margin-right: 20px;
  }
  header .list1 {
    display: none;
  }
  header .list1 li {
    display: none;
  }
  footer {
    margin: 2% 3%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
  }
  footer img {
    width: auto;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 10px;
  }
  footer h5 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  footer p {
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 13px;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  header {
    right: 0;
    z-index: 100;
    width: 100%;
    height: 150px;
    margin-left: 0%;
    display: flex;
    position: relative;
  }
  header .logo {
    width: 90%;
    height: 3.2rem;
    margin-top: 40px;
    margin-left: -10px;
  }
  header .logo .flour {
    width: 120px;
    margin-right: 20px;
  }
  header .logo .cafe {
    width: 100px;
  }
  header .list1 {
    display: none;
  }
  header .openbtn {
    top: 20px;
    right: 20px;
  }
  header .h-icon {
    top: 70px;
    right: 20px;
  }
  footer {
    margin: 0 auto;
    height: auto;
    width: 100%;
    display: block;
    color: #fff;
    justify-content: center;
    align-items: center;
  }
  footer img {
    width: auto;
    height: 75px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 40px 10px 20px 20px;
    justify-content: center;
  }
  footer h5 {
    font-size: 20px;
    margin-left: 20px;
  }
  footer p {
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 0 20px;
  }
  .copyright {
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION TITLE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1480px) {
  #main .main-img {
    margin-top: 0px;
  }
  #main .text {
    top: 60%;
  }
  #category .headline .img {
    text-align: center;
    margin: 80px 150px 0 150px;
  }
}
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #main .main-img {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin: 0 auto;
    right: 0%;
    margin-top: 0px;
  }
  #main .img-01 {
    background-position: 70%;
  }
  #main .text {
    top: 45%;
    right: 0%;
    transform: translate(0%, 0%);
    padding-right: 20px;
    margin: 0;
    color: #fff;
  }
  #main .text h1 {
    font-size: 24px;
  }
  #main .text h2 {
    font-size: 19px;
    letter-spacing: 1px;
  }
  #category {
    width: 100%;
  }
  #category .headline .img {
    text-align: center;
    margin: 80px 80px 0 40px;
  }
  #category ul {
    display: flex;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
  #category ul li {
    margin-left: 0px;
    margin-top: 20px;
    width: 100%;
  }
  #category ul li img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  #category ul li a .b-img {
    width: 170px;
    height: 170px;
    margin: 0 auto;
  }
  #Instagram-block {
    height: 620px;
    width: 100%;
  }
  #Instagram-block .box {
    display: flex;
    width: 90%;
    padding-top: 80px;
    justify-content: space-between;
    margin: 0 auto;
  }
  #Instagram-block .box .i-img img {
    width: 380px;
    height: 380px;
    margin-top: 50px;
  }
  #cafe-block {
    height: 600px;
    width: 100%;
  }
  #cafe-block .box {
    display: flex;
    flex-flow: row-reverse;
    width: 90%;
    padding-top: 80px;
    justify-content: space-between;
    margin: 0 auto;
  }
  #cafe-block .box .c-img img {
    width: 380px;
    height: 380px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #cafe-block .box .right {
    width: 40%;
    text-align: center;
    justify-content: center;
  }
  #cafe-block .box .right img {
    width: 220px;
    margin-top: 40px;
  }
  #onlineShop-block {
    height: 620px;
    width: 100%;
  }
  #onlineShop-block .box {
    display: flex;
    width: 90%;
    padding-top: 80px;
    justify-content: space-between;
    margin: 0 auto;
  }
  #onlineShop-block .box .o-img img {
    width: 380px;
    height: 380px;
    margin-top: 30px;
  }
  #onlineShop-block .box .right h4 {
    width: 95%;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #main .main-img {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin: 0 auto;
    right: 0%;
  }
  #main .img-01 {
    background-position: 70%;
  }
  #main .text {
    top: 55%;
    right: 0%;
    transform: translate(0%, 0%);
    padding-right: 20px;
    margin: 0;
    color: #fff;
  }
  #main .text h1 {
    font-size: 24px;
  }
  #main .text h2 {
    font-size: 19px;
    letter-spacing: 1px;
  }
  #category {
    height: auto;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    padding-bottom: 50px;
  }
  #category .headline {
    display: block;
  }
  #category .headline .img {
    text-align: center;
    margin-top: 50px;
  }
  #category .headline .border1 {
    display: none;
  }
  #category .headline .border2 {
    display: none;
  }
  #category ul {
    display: block;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
  #category ul li {
    margin-left: 0px;
    margin-top: 20px;
    width: 100%;
  }
  #category ul li img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  #category ul li a .b-img {
    width: 310px;
    height: 210px;
    margin: 0 auto;
  }
  #category ul li a .b-img img {
    width: 310px;
    height: 210px;
  }
  #Instagram-block {
    height: 850px;
  }
  #Instagram-block .box {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 80px;
    justify-content: center;
    margin: 0 auto;
    position: relative;
  }
  #Instagram-block .box .i-img {
    position: absolute;
    top: 500px;
    width: 100%;
  }
  #Instagram-block .box .i-img img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #Instagram-block .box .right {
    position: absolute;
    width: 80%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    top: 20px;
    left: 0;
    right: 0;
  }
  #Instagram-block .box .right img {
    margin-top: 80px;
  }
  #cafe-block {
    height: 900px;
  }
  #cafe-block .box {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 90px;
    justify-content: center;
    margin: 0 auto;
    position: relative;
  }
  #cafe-block .box .c-img {
    position: absolute;
    top: 530px;
    width: 100%;
  }
  #cafe-block .box .c-img img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #cafe-block .box .right {
    position: absolute;
    width: 80%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    top: 20px;
    left: 0;
    right: 0;
  }
  #cafe-block .box .right img {
    margin-top: 30px;
  }
  #onlineShop-block {
    height: 900px;
  }
  #onlineShop-block .box {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 90px;
    justify-content: center;
    margin: 0 auto;
    position: relative;
  }
  #onlineShop-block .box .o-img {
    position: absolute;
    top: 530px;
    width: 100%;
  }
  #onlineShop-block .box .o-img img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #onlineShop-block .box .right {
    position: absolute;
    width: 80%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    top: 20px;
    left: 0;
    right: 0;
  }
  #onlineShop-block .box .right img {
    margin-top: 30px;
  }
  #onlineShop-block .box .right h4 {
    margin: 50px auto;
    width: 95%;
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=style.css.map */