@charset "UTF-8";
*{
  margin: 0;
  padding: 0;
  //font-family: sans-selif;
  //box-sizing: border-box;
  scroll-behavior: smooth;
}
section:target {
  scroll-margin-top: 100px; 
}
body {
  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: 90px;
  margin: 0 0 80px 0;
  z-index: 999;
}
.logo {
  margin-top: 17px;
  margin-left: 15px;
  cursor: pointer;
}
.burger {
  margin-top: 10px;
  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; 
}
.logo2 {
  margin: 0 20px 10px 20px;
  padding: 0 0 50px 0;
  text-align: right;
}
h3 {
  font-weight: 300;
}
#newsannex {
	margin: 0 auto;
}
.newstitle {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 110px;
}
.newsbox {
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 50px;
	margin: 100px auto;
}
.newssentence {
	width: 500px;
}
hr {
  margin: 0 10% 0 10%;
}
.copyright {
  text-align: center;
  padding: 25px 0;
  margin-top: 50px;
  color: #ffffff;
  background-color: #083F0E;
}
/*.return {
  width: 50px;
  height: 90px;
  position: fixed;
  bottom :80px;
  left: 5px;
  border-radius: 4px;
}
.return img {
  padding: 2px;
}*/
.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;
  font-size: 16px;
  color: #ffffff; 
}


@media (max-width:767px) {
section:target {
  scroll-margin-top: 90px; 
}
body{
  font-size:16px;
  }
header {
  height: 90px;
}
.menu {
  width: 100%;
  height: 100vh;
}
.nav {
  padding: 0;
}
.nav img {
  width: 170px;
  padding-top: 2px;
}
.newstitle {
  display: block;
  padding: 100px 20px 20px 20px;;
  margin: 0 auto;
}
.newsbox {
  flex-wrap: wrap;
  display: block;
  text-align: center;
  margin: 0 auto;
}
.newsbox img {
  width: 80%;
  height: auto;
}
.newssentence {
  width: 80%;
  display: inline-block;
  text-align:left;
  font-size: 0.9em;
  margin-bottom: 20px;
}
.footer-box {
  gap: 20px;
}
.follow {
  display: block;
}
.follow-us {
  font-size: 18px;
}
.cafe-icon {
  width: 150px;
}
.footer-nav li {
  font-size: 18px;
}

}