@charset "utf-8";
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
section:target {
  scroll-margin-top: 100px;
}
body {
  color: rgba(62,53,53,1.00);
  width: 100%;
  background-image: url("../images/backhoney10.svg");
  background-repeat: repeat;
  padding: 0;
  margin: 0;
  font-family: "Klee One", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}
header {
  top: 0;
  background-color: #ffffff;
  position: fixed;
  display:  flex;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  z-index: 999;
}
.logo {
  margin-top: 20px;
  margin-left: 20px;
  cursor: pointer;
}
.logo-green {
  width: 80%;
}
.burger {
  margin-top: 9px;
  margin-right: 15px;
  width: 50px;
  height: 90px;
  background-image: url("../images/open.svg");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.burger.is-active {
  background-image: url("../images/close.svg")
}
.menu {
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  position:fixed;
  background-color: rgba(36,113,25,0.90);
  z-index: 1;
  display: none;
}
.menu.is-active {
  display: flex;
}
.nav {
  list-style: none;
  line-height: 2.5em;
  padding-right: 50px;
}
.nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2em; 
}
.logo-white {
  width: 200px;
  padding-top: 5px;
}

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

.logo img {
  width: 300px;
}
.cafe-top {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin: 100px auto;
  animation-name: textanime;
  animation-duration:5s;
}
.cafe-group-message {
  width: 910px;
  height: 395px;
  padding: 100px 50px;
  margin-bottom: 5px;
  line-height: 1.8;
}
.bee {
  width: 40px;
  display: block;
  margin: 80px auto 80px;
}
h1 {
  font-size: 30px;
  font-weight: 200;
}
.cafe-group-message img {
  padding-bottom: 20px;
}
.cafe-ex {
  padding-top: 20px;
  font-size: 24px;
}
#top {
  margin-bottom: 300px;
}
#oshinagaki {
  margin: 100px 0 0 0;
}
.slider {
  width: 70%;
  margin: 0 auto; 
}
h2 {
  text-align: center;
  padding-bottom: 70px;
  color:rgba(36,113,25,0.90);
}
.ex {
	color: #ffffff;
}
.drink-sweets {
  margin: 50px auto 0;
}
.drink-box {
  display: block;
  text-align: center;
  margin: 20px auto 10px;
  font-size: 22px;
}
.drink {
  display: inline-block;
  text-align: left;
}
.drink-box td {
  width: 300px;
}
.drink-box th {
  width: 200px;
  text-align: right;
}
.sweets {
  font-size: 18px;
}
.products-box {
  margin: 0px auto 100px;
}
.products-box img {
  border-radius: 10px;
}
.honeys-box, .coffee-box, .balm-box {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 0 auto 50px;
}
.ex-box {
  width: 600px;
  height: 500px;
  font-size: 18px;
  padding-top: 100px;
}
.pro-title {
  font-size: 22px;
}
.exex {
  margin-top: 20px;
}
.price {
  margin-top: 5px;
}
#shop {
  text-align: center;
}
.shop-info {
  margin: 10px;
}
.shop-info {
  border-collapse: collapse;
  display: flex;
  justify-content: center;
  margin: 0 20px;
  padding-bottom: 50px;
}
.shop-info th, .shop-info td {
  border-bottom: 1px solid rgba(36,113,25,0.90);
  padding: 20px 0;
  text-align: left;
}
.shop-info th {
  width: 130px;
  text-align: left;
  vertical-align: top;
}
.ex3box {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.ex3 {
  display: inline-block;
  text-align: left;
}
.ex3box a {
  color: rgba(36,113,25,0.90);
  text-decoration: none;
}
.footer {
  padding: 50px 0 0;
  background-color: #083F0E;
}
.footer-box {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 50px;
}
.follow {
  display: flex;
  gap: 30px;
}
.follow-us {
  font-size: 24px;
  color: #ffffff;
}
.footer-nav-box {
  border-left: 1px solid #ffffff;
  padding-left: 50px;
}
.footer-nav li {
  list-style: none;
  text-align: left;
  font-size: 24px;
}
.footer-nav li a {
  text-decoration: none;
  color: #ffffff;
}
.instagram-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.cafe-icon {
  width: 200px;
}
.copyright {
  text-align: center;
  margin: 0 auto;
  padding: 25px 0;
  font-size: 16px;
  color: #ffffff; 
}


@media (min-width:768px) {
.cafe-top-sp {
  display: none;
}
.br-sp {
  display: none;
}
}


@media (max-width:767px)  {
header {
  height: 90px;
}
section:target {
  scroll-margin-top: 90px; 
}
body {
  font-size: 16px;
}
.br-sp {
  display: inline;
}
.menu {
  width: 100%;
  height: 100vh;
}
.nav {
  padding: 0;
}
.logo-white {
  width: 170px;
  padding-top: 3px;
}
.logo img {
  width: 200px;
}
#top {
  margin-bottom: 90px; 
}
.cafe-top {
  display: none;
}
.cafe-top-sp {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 90px auto 0;
}
.cafe-top-sp img {
  width: 90%;
  height: auto;
  text-align: center;
  margin: 10px auto 0px;
  padding: 0;
  border-radius: 10px;
}
.logo-sp {
  width: 90%;
}
.cafe-exbox {
  text-align: center;
  margin: 0 auto;
}
.cafe-ex {
  display: inline-block;
  text-align: left;
  font-size: 18px;        
}
h1 {
  font-size: 28px;
}
.slider {
  //padding: 50px;  		
	}	
.logo {
  width: 80%;
} 
.drink-box {
  font-size: 18px;
}
.drink td {
  width: 250px;
}
.drink th {
  width: 50px;
}
.products-box {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.products-box img {
  width: 90%;
  height: auto;
}
.pro-title {
  text-align: center;
}
.pro-subtitle {
  text-align: center;
}
.ex-box {
  width: 90%;
  height: auto;
  display: inline-block;
  text-align: left;
  margin-top: 0px;
  padding: 20px 0 0;
}
.honeys-box, .coffee-box, .balm-box {
  display: block;
  margin: 0 auto 60px;
}
.shop-info {
  font-size: 1em;
}
form {
  width: 90%;
  height: auto;
}
.ex2box,.ex3box {
  width: 90%;
}
.footer-box {
  gap: 20px;
}
.follow {
  display: block;
}
.follow-us {
  font-size: 18px;
}
.cafe-icon {
  width: 150px;
}
.footer-nav li {
  font-size: 18px;
}

}

