@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 {
  display: flex;
  width: 70%;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  padding-top: 30px;
}
#main .pc-none1,
#main .pc-none2 {
  display: none;
}
#main .box {
  opacity: 0;
}
#main .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#main .delay-time02 {
  animation-delay: 0.7s;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#main-ph {
  text-align: center;
  margin-top: 80px;
}
#main-ph img {
  width: 50%;
  height: 625px;
  -o-object-fit: cover;
     object-fit: cover;
}

.move {
  margin: 10px;
  -moz-animation: swing linear 5s infinite;
  -moz-transform-origin: center -30px 0;
  -webkit-animation: swing linear 5s infinite;
  -webkit-transform-origin: center -30px 0;
  -ms-animation: swing linear 5s infinite;
  -ms-transform-origin: center -30px 0;
  -o-animation: swing linear 5s infinite;
  -o-transform-origin: center -30px 0;
  animation: swing linear 5s infinite;
  transform-origin: center -30px 0;
  display: block;
  float: left;
}
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#explanation {
  width: 70%;
  margin: 0 auto;
  padding-top: 150px;
}
#explanation .about {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
#explanation .about .about-i img {
  width: 430px;
  height: 505px;
  -o-object-fit: cover;
     object-fit: cover;
}
#explanation .about .about-t {
  color: #fff;
  margin: 85px 0 0 85px;
  position: relative;
}
#explanation .about .about-t .pc-none {
  display: none;
}
#explanation .about .about-t h1 {
  font-size: 29px;
  font-weight: 100;
  margin-bottom: 45px;
  align-items: center;
  /* 横線を上下中央 */
  display: flex;
  /* 文字と横線を横並び */
}
#explanation .about .about-t h1::after {
  background-color: #ffffff;
  /* 横線の色 */
  content: "";
  height: 1px;
  /* 横線の高さ */
  width: 35%;
  /* 横線の長さ */
  margin-left: 10px;
}
#explanation .about .about-t p {
  font-size: 15px;
  font-weight: 100;
  width: 420px;
  line-height: 40px;
  text-align: justify;
}
#explanation .tulip {
  position: absolute;
  z-index: 1;
}
#explanation .tulip img {
  margin-top: -40px;
  padding-left: 150px;
}
#explanation .wheat {
  position: absolute;
  right: 20%;
  margin-top: -100px;
}

#shop {
  width: 70%;
  margin: 0 auto;
  color: #fff;
  padding-top: 200px;
}
#shop h2 {
  text-align: center;
  font-size: 29px;
  margin-bottom: 45px;
}
#shop table {
  width: 500px;
  margin: 0 auto;
  font-size: 18px;
}
#shop table td {
  padding: 0.7em;
}
#shop img {
  padding-top: -100px;
  padding-left: 800px;
}

#menu {
  width: 70%;
  margin: 0 auto;
  color: #fff;
  padding-bottom: 200px;
  position: relative;
}
#menu .speech {
  margin-left: 200px;
}
#menu .speech img {
  position: relative;
}
#menu .speech p {
  position: absolute;
  text-align: center;
  margin-top: -280px;
  margin-left: 80px;
  transform: rotate(-20deg);
  line-height: 25px;
}
#menu .bird {
  position: absolute;
  width: 70%;
  margin: 0 auto;
  bottom: 100px;
  right: 0;
  padding-left: 200px;
}
#menu .bird p {
  margin-bottom: 15px;
}

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

〇 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: 1280px) {
  #main-ph {
    text-align: center;
    margin-top: 80px;
  }
  #main-ph img {
    width: 80%;
    height: 625px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* 1024px～1280px responsive-close



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

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

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #main {
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    padding-top: 30px;
  }
  #main img {
    width: 100%;
  }
  #main .pc-none1,
  #main .pc-none2 {
    display: none;
  }
  #main .box {
    opacity: 0;
  }
  #main-ph {
    width: 90%;
    text-align: center;
    margin-top: 80px;
    margin: 0 auto;
  }
  #main-ph img {
    width: 100%;
    height: 550px;
    margin-top: 50px;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

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

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    padding-top: 0px;
    padding-bottom: 20px;
    margin-top: 20px;
  }
  #main .heading {
    width: 200px;
    height: 200px;
    position: relative;
  }
  #main .heading > img {
    width: 190px;
    position: absolute;
    left: 10px;
    top: 10px;
  }
  #main .media-none {
    display: none;
  }
  #main .pc-none1 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    top: -20%;
    left: -20%;
  }
  #main .pc-none1 img {
    width: 200px;
    height: 200px;
  }
  #main .pc-none2 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -30%;
    right: -20%;
  }
  #main .pc-none2 img {
    width: 200px;
    height: 200px;
  }
  #main .box {
    opacity: 0;
  }
  #main .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  #main .delay-time02 {
    animation-delay: 0.7s;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  #main-ph {
    text-align: center;
    margin-top: 0px;
  }
  #main-ph img {
    width: 100%;
    height: 300px;
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION TITLE 〇

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

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

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #explanation {
    width: 90%;
  }
  #menu {
    width: 90%;
  }
}
/* 1024px～1280px responsive-close



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

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

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #explanation {
    width: 80%;
    margin: 0 auto;
    padding-top: 150px;
  }
  #explanation .about {
    display: block;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-left: 60px;
  }
  #explanation .about .about-i img {
    width: 80%;
    height: 505px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #explanation .about .about-t {
    margin: 0 auto;
    color: #fff;
    margin: 85px 0 0 0px;
    position: relative;
  }
  #explanation .about .about-t .pc-none {
    display: none;
  }
  #explanation .about .about-t h1 {
    font-size: 29px;
    font-weight: 100;
    margin-bottom: 45px;
    align-items: center;
    /* 横線を上下中央 */
    display: flex;
    /* 文字と横線を横並び */
  }
  #explanation .about .about-t h1::after {
    background-color: #ffffff;
    /* 横線の色 */
    content: "";
    height: 1px;
    /* 横線の高さ */
    width: 35%;
    /* 横線の長さ */
    margin-left: 10px;
  }
  #explanation .about .about-t p {
    font-size: 15px;
    font-weight: 100;
    width: 420px;
    line-height: 40px;
    text-align: justify;
  }
  #explanation .tulip {
    position: absolute;
    z-index: 1;
  }
  #explanation .tulip img {
    margin-top: -40px;
    padding-left: 150px;
  }
  #explanation .wheat {
    position: absolute;
    right: 20%;
    margin-top: -100px;
  }
  #shop {
    width: 70%;
    margin: 0 auto;
    color: #fff;
    padding-top: 200px;
  }
  #shop h2 {
    text-align: center;
    font-size: 29px;
    margin-bottom: 45px;
  }
  #shop table {
    width: 500px;
    margin: 0 auto;
    font-size: 18px;
  }
  #shop table td {
    padding: 0.7em;
  }
  #shop img {
    padding-top: 0px;
    padding-left: 400px;
  }
  #menu {
    width: 70%;
    margin: 0 auto;
    color: #fff;
    padding-bottom: 200px;
    position: relative;
  }
  #menu .speech {
    margin-left: 0px;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

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

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #explanation {
    width: 80%;
    margin: 0 auto;
    padding-top: 50px;
  }
  #explanation .about {
    display: block;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }
  #explanation .about .about-i img {
    width: 100%;
    height: 300px;
  }
  #explanation .about .about-t {
    color: #fff;
    margin: 30px 0 0 0px;
    position: relative;
  }
  #explanation .about .about-t .pc-none {
    display: block;
  }
  #explanation .about .about-t h1 {
    font-size: 29px;
    font-weight: 100;
    margin-bottom: 20px;
    align-items: center;
    /* 横線を上下中央 */
    display: flex;
    /* 文字と横線を横並び */
  }
  #explanation .about .about-t h1::after {
    background-color: #ffffff;
    /* 横線の色 */
    content: "";
    height: 1px;
    /* 横線の高さ */
    width: 35%;
    /* 横線の長さ */
    margin-left: 10px;
  }
  #explanation .about .about-t p {
    font-size: 15px;
    font-weight: 100;
    width: 100%;
    line-height: 40px;
    text-align: justify;
  }
  #explanation .tulip {
    position: absolute;
    z-index: 1;
  }
  #explanation .tulip img {
    margin-top: -40px;
    padding-left: 0px;
  }
  #explanation .wheat {
    position: absolute;
    right: 5%;
    margin-top: 0px;
  }
  #explanation .wheat img {
    width: 80%;
  }
  #shop {
    width: 80%;
    margin: 0 auto;
    color: #fff;
    padding-top: 200px;
  }
  #shop h2 {
    text-align: center;
    font-size: 29px;
    margin-bottom: 45px;
  }
  #shop table {
    width: 100%;
  }
  #shop table .left {
    width: 35%;
  }
  #shop img {
    padding-top: -50px;
    padding-left: 250px;
  }
  #menu {
    width: 90%;
    margin: 0 auto;
    color: #fff;
    padding-bottom: 200px;
    position: relative;
  }
  #menu .speech {
    margin-left: 0px;
  }
  #menu .speech img {
    position: relative;
    width: 80%;
  }
  #menu .speech p {
    position: absolute;
    text-align: center;
    margin-top: -220px;
    margin-left: 40px;
    transform: rotate(-20deg);
    line-height: 20px;
    font-size: 15px;
  }
  #menu .bird {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    bottom: 50px;
    right: 0;
    padding-left: 200px;
  }
  #menu .bird p {
    margin-bottom: 0px;
    margin-top: 20px;
    font-size: 13px;
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
@media screen and (max-width: 480px) {
  #explanation .about .about-t p {
    font-size: 14px;
    font-weight: 100;
    width: 100%;
    line-height: 40px;
    text-align: justify;
  }
  #explanation .about .about-t p .none {
    display: none;
  }
}/*# sourceMappingURL=about.css.map */