@charset "UTF-8";
/* 共通設定 */
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f3f8f3;
  color: #3a5734;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #3a5734;
}

/* header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
}
.site-header .logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: #3a5734;
}

.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 18px;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #66a85b;
}

/* hero */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hero .slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 5s ease-in-out;
  position: absolute;
}
.hero img.active {
  opacity: 1;
}
.hero .hero-text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .hero-text h2 {
  font-size: 40px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

/* sp-menu */
.sp-menu {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1000;
}
.sp-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3a5734;
  transition: all 0.3s ease;
}
.sp-menu span:nth-child(1) {
  top: 0;
}
.sp-menu span:nth-child(2) {
  top: 10px;
}
.sp-menu span:nth-child(3) {
  bottom: 0;
}
.sp-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10.3px;
}
.sp-menu.active span:nth-child(2) {
  opacity: 0;
}
.sp-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10.3px;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* about */
.about {
  background: #fff;
  padding: 80px 20px;
}
.about .about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}
.about .about-image {
  flex: 1;
}
.about .about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.about .about-text {
  flex: 1;
}
.about .about-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #3a5734;
}
.about .about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* menu */
.menu {
  background: #f3f8f3;
  padding: 80px 20px;
}
.menu .section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: #3a5734;
}
.menu .menu-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.menu .menu-tabs .tab {
  padding: 8px 24px;
  border: 2px solid #3a5734;
  background: none;
  color: #3a5734;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.menu .menu-tabs .tab.active, .menu .menu-tabs .tab:hover {
  background: #3a5734;
  color: #fff;
}
.menu .menu-contents {
  max-width: 1000px;
  margin: 0 auto;
}
.menu .menu-panel {
  display: none;
}
.menu .menu-panel.active {
  display: block;
}
.menu .menu-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.menu .menu-panel li {
  width: 200px;
  text-align: center;
}
.menu .menu-panel li img {
  width: 100%;
  height: auto;
}
.menu .menu-panel li p {
  margin: 12px;
  font-size: 16px;
  color: #3a5734;
}

/* access */
.access {
  background-color: #e9f3e9;
  padding: 80px 24px;
}
.access .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
}
.access .access-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
}
.access .access-inner .access-info {
  flex: 1;
  font-size: 16px;
  line-height: 2;
}
.access .access-inner .access-map {
  flex: 1;
}
.access .access-inner .access-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* footer */
.site-footer {
  background-color: #3a5734;
  color: #fff;
  text-align: center;
  padding: 40px 24px;
}
.site-footer .footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}
.site-footer .footer-sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}
.site-footer .footer-sns li {
  width: 32px;
  height: 32px;
}
.site-footer .footer-sns li img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s;
  cursor: pointer;
}
.site-footer .footer-sns li img:hover {
  opacity: 0.7;
}
.site-footer .copyright {
  font-size: 14px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  /* header */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #f3f8f3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    transition: right 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  .main-nav.open {
    right: 0;
    opacity: 1;
  }
  .main-nav.open ul {
    flex-direction: column;
    align-items: center;
  }
  .main-nav.open a {
    font-size: 18px;
  }
  .main-nav.open a:hover {
    color: #66a85b;
  }
  /* sp-menu */
  .sp-menu {
    display: block;
  }
  /* about */
  .about {
    padding: 60px 16px;
  }
  .about .about-inner {
    flex-direction: column;
  }
  .about .about-text {
    text-align: center;
  }
  /* menu */
  .menu {
    padding: 60px 16px;
  }
  .menu .menu-tabs {
    flex-direction: column;
    align-items: center;
  }
  .menu .menu-tabs .tab {
    width: 200px;
    text-align: center;
  }
  .menu .menu-contents .menu-panel ul {
    flex-direction: column;
    align-items: center;
  }
  /* access */
  .access {
    padding: 48px 16px;
  }
  .access .section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .access .access-inner {
    flex-direction: column;
  }
  .access .access-inner .access-info,
  .access .access-inner .access-map {
    width: 100%;
  }
  .access .access-inner .access-info {
    text-align: center;
  }
  .access .access-inner .access-map iframe {
    height: 250px;
  }
}/*# sourceMappingURL=style.css.map */