html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  color: #252826;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.bg-beige {
  background: url(../img/bg.jpg);
}

.inner {
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.fz14 {
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {
  .fz14 {
    font-size: 1.2rem;
  }
}

.t-center {
  text-align: center;
}

@media screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

.l-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 50px 64px 0 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .l-header {
    padding: 10px 20px 0;
  }
}
.l-header__logo {
  max-width: 193px;
}
@media screen and (max-width: 800px) {
  .l-header__logo {
    max-width: 100px;
  }
}
.l-header__nav {
  padding-top: 20px;
}
@media screen and (max-width: 800px) {
  .l-header__nav {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    padding: 20px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow-y: scroll;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  .l-header__nav__logo {
    max-width: 100px;
    margin-bottom: 15px;
  }
}
.l-header__nav .nav-list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  .l-header__nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.l-header__nav a {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  transition: color 0.3s;
}
@media screen and (max-width: 800px) {
  .l-header__nav a {
    color: #252826;
  }
}
.l-header__nav a:hover {
  color: #31aa65;
}
@media screen and (min-width: 801px) {
  .l-header__nav__logo,
  .l-header__nav .btn-tel,
  .l-header__nav .sns-list {
    display: none;
  }
}
.l-header__nav .sns-list {
  margin-bottom: 0;
}
.l-header__nav .btn-tel {
  position: static;
  margin: 20px 0;
}
.l-header__ham {
  display: none;
}
@media screen and (max-width: 800px) {
  .l-header__ham {
    display: block;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 999;
    background: #fff;
    border-radius: 50%;
  }
}
.l-header__ham__line {
  display: block;
  width: 20px;
  height: 2px;
  background: #252826;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.3s, margin-top 0.3s 0.3s;
}
.l-header__ham__line:nth-child(1) {
  margin-top: -5px;
}
.l-header__ham__line:nth-child(3) {
  margin-top: 5px;
}
.l-header.is-active .l-header__nav {
  transform: translateX(0);
}
.l-header.is-active .l-header__ham__line {
  transition: opacity 0.3s, transform 0.3s 0.3s, margin-top 0.3s;
}
.l-header.is-active .l-header__ham__line:nth-child(1) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header.is-active .l-header__ham__line:nth-child(2) {
  opacity: 0;
}
.l-header.is-active .l-header__ham__line:nth-child(3) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-footer__inner {
  padding: 0 30px 50px;
}
@media screen and (max-width: 800px) {
  .l-footer__inner {
    padding: 0 5px 20px;
  }
}
.l-footer .img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .l-footer .img {
    border-radius: 10px;
    margin-bottom: 40px;
  }
}
.l-footer__logo {
  max-width: 193px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 800px) {
  .l-footer__logo {
    max-width: 100px;
    margin-bottom: 40px;
  }
}
.l-footer__copyright {
  text-align: center;
}
.l-footer__copyright small {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .l-footer__copyright small {
    font-size: 1rem;
  }
}

.not-found {
  padding: 100px 20px;
  text-align: center;
}
.not-found h1 {
  width: 50%;
  max-width: 200px;
  margin: 0 auto 20px;
}
.not-found h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.title1 {
  color: #31aa65;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.1;
}
.title1::before {
  content: attr(data-en);
  display: block;
  color: #252826;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .title1 {
    text-align: center;
    font-size: 2.4rem;
  }
  .title1::before {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

.title2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
}
@media screen and (max-width: 800px) {
  .title2 {
    font-size: 1.6rem;
  }
}

.btn-tel {
  display: block;
  text-align: center;
  width: 258px;
  padding: 40px 0 45px;
  position: absolute;
  right: 70px;
  bottom: 60px;
  z-index: 2;
  background: url(../img/tel_top.svg) no-repeat center top/contain, url(../img/tel_bottom.svg) no-repeat center bottom/contain;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .btn-tel {
    width: 200px;
    padding: 25px 0;
    right: 20px;
    bottom: 20px;
    color: #fff;
  }
}
.btn-tel span {
  display: block;
}
.btn-tel__label {
  color: #31aa65;
  background: #fff;
  font-size: 1.8rem;
  width: fit-content;
  padding: 5px 20px 6px;
  border-radius: 20px;
  margin: 0 auto 15px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .btn-tel__label {
    font-size: 1.4rem;
    padding: 4px 15px;
  }
}
.btn-tel__label::before {
  content: "";
  display: block;
  width: 15px;
  height: 10px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}
.btn-tel__txt {
  font-size: 2rem;
}
@media screen and (max-width: 800px) {
  .btn-tel__txt {
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(37, 40, 38, 0.5);
  }
}
.btn-tel__num {
  font-size: 3rem;
  margin: 15px 0;
}
@media screen and (max-width: 800px) {
  .btn-tel__num {
    font-size: 2rem;
    margin: 5px 0;
    text-shadow: 0 0 10px rgba(37, 40, 38, 0.5);
  }
}
@media screen and (max-width: 800px) {
  .btn-tel__time {
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(37, 40, 38, 0.5);
  }
}
.btn-tel--black {
  color: #252826 !important;
  background: url(../img/tel_top_black.svg) no-repeat center top/contain, url(../img/tel_bottom_black.svg) no-repeat center bottom/contain;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .btn-tel--black {
    text-shadow: unset !important;
  }
  .btn-tel--black .btn-tel__label {
    background-color: #31aa65;
    color: #fff;
  }
  .btn-tel--black .btn-tel__label::before {
    background-color: #31aa65;
  }
  .btn-tel--black .btn-tel__txt,
  .btn-tel--black .btn-tel__num,
  .btn-tel--black .btn-tel__time {
    text-shadow: unset !important;
  }
}

.btn-insta {
  display: block;
  text-align: center;
  max-width: 350px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #31aa65;
  color: #fff;
  border-radius: 30px;
  margin: 40px auto 0;
  transition: background-color 0.3s;
}
@media screen and (max-width: 800px) {
  .btn-insta {
    max-width: 280px;
  }
}
.btn-insta:hover {
  background-color: #252826;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list__item {
  line-height: 1;
  padding: 4px 10px 5px;
  border-radius: 15px;
  background: #f9f6e5;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .tag-list__item {
    font-size: 1.2rem;
  }
}

.sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .sns-list {
    margin-bottom: 40px;
  }
}
.sns-list__item a {
  display: block;
  transition: opacity 0.3s;
}
.sns-list__item a:hover {
  opacity: 0.7;
}

.fv {
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .fv {
    padding: 10px;
  }
}
.fv__img {
  border-radius: 20px;
  height: calc(100vh - 60px);
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .fv__img {
    border-radius: 10px;
    height: calc(100svh - 20px);
  }
}
.fv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about {
  padding: 60px 0;
}
@media screen and (max-width: 800px) {
  .about {
    padding-bottom: 0;
  }
}
.about__box {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 800px) {
  .about__box {
    flex-direction: column;
    gap: 40px;
  }
}
.about__txt {
  max-width: 500px;
}
.about__txt .title1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .about__txt .title1 {
    margin-bottom: 30px;
  }
}
.about__txt p {
  line-height: 2.2;
}
@media screen and (max-width: 800px) {
  .about__txt p {
    line-height: 1.8;
  }
}
.about__txt .fz14 {
  line-height: 1.8;
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .about__txt .fz14 {
    margin-top: 20px;
  }
}
.about__img {
  border-radius: 10px;
  overflow: hidden;
}

.secret {
  padding: 60px 0 100px;
}
@media screen and (max-width: 800px) {
  .secret {
    padding-bottom: 80px;
  }
}
.secret .title1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .secret .title1 {
    margin-bottom: 30px;
  }
}
.secret__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media screen and (max-width: 800px) {
  .secret__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.secret__list .title2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .secret__list .title2 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 800px) {
  .secret__list__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: flex-start;
    gap: 10px;
  }
}
.secret__list__item .img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.menu {
  padding: 80px 0;
}
@media screen and (max-width: 800px) {
  .menu {
    padding: 60px 0;
  }
}
.menu .title1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .menu .title1 {
    margin-bottom: 30px;
  }
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .menu__list {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.menu__list__item .img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .menu__list__item .img {
    margin-bottom: 10px;
  }
}
.menu__list__item .title2 {
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .menu__list__item .title2 {
    margin-bottom: 10px;
  }
}
.menu__list__item .titlearea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .menu__list__item .titlearea {
    margin-bottom: 10px;
    gap: 5px;
  }
}
.menu__list--large {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 800px) {
  .menu__list--large {
    grid-template-columns: 1fr;
  }
}
.menu__list--large .title2 {
  margin-bottom: 0;
}
.menu .notes {
  font-size: 1.2rem;
  text-align: right;
}

.farmers {
  padding: 80px 0 60px;
  overflow-x: hidden;
}
@media screen and (max-width: 800px) {
  .farmers {
    padding: 60px 0 20px;
  }
}
.farmers__box {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 800px) {
  .farmers__box {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 80px;
    position: relative;
  }
}
.farmers__box > .txt {
  max-width: 350px;
  flex-shrink: 0;
}
.farmers__box > .txt .title1 {
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .farmers__box > .txt .title1 {
    margin-bottom: 40px;
  }
}
.farmers__box > .txt p {
  margin-bottom: 90px;
}
@media screen and (max-width: 800px) {
  .farmers__box > .txt p {
    margin-bottom: 0;
  }
}
.farmers .slide-controller {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .farmers .slide-controller {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    gap: 10px;
  }
}
.farmers .slide-controller__btn {
  display: block;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  transition: opacity 0.3s;
}
.farmers .slide-controller__btn:hover {
  opacity: 0.7;
}
.farmers .slide-controller__btn::before {
  content: "";
  width: 8px;
  height: 10px;
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.farmers .slide-controller .btn-prev::before {
  left: calc(50% - 1px);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.farmers .slide-controller .btn-next::before {
  left: calc(50% + 1px);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.farmers .slide-controller .slide-controller__num {
  width: fit-content;
  font-size: 1.2rem;
}
@media screen and (min-width: 801px) {
  .farmers .farmers-swiper {
    flex-shrink: 0;
    width: 2887px;
  }
}
@media screen and (max-width: 800px) {
  .farmers .farmers-swiper {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
}
.farmers .farmers-item .img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.farmers .farmers-item .title2 {
  margin-bottom: 20px;
}
.farmers .farmers-item p {
  margin-bottom: 20px;
}
.farmers .farmers-item .tag-list__item {
  background-color: #fff;
}

.greeting {
  padding: 60px 0;
}
@media screen and (max-width: 800px) {
  .greeting {
    padding-bottom: 20px;
  }
}
.greeting__box {
  display: flex;
  gap: 50px;
}
.greeting__box .img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .greeting__box .img {
    margin-bottom: 20px;
  }
}
.greeting__box .txt {
  max-width: 350px;
}
@media screen and (max-width: 800px) {
  .greeting__box .txt {
    max-width: 100%;
  }
}
.greeting__box .txt .title1 {
  margin-bottom: 40px;
}
.greeting__box .txt p {
  line-height: 2.2;
}
@media screen and (max-width: 800px) {
  .greeting__box .txt p {
    line-height: 1.8;
  }
}

.access {
  padding: 60px 0 100px;
}
@media screen and (max-width: 800px) {
  .access {
    padding-bottom: 80px;
  }
}
.access__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 800px) {
  .access__box {
    flex-direction: column;
    gap: 40px;
  }
}
.access__box .img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .access__box .img {
    margin-bottom: 20px;
  }
}
.access__box .txt dl {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: flex-start;
  gap: 15px 14px;
}
@media screen and (max-width: 800px) {
  .access__box .txt dl {
    grid-template-columns: 75px 1fr;
    gap: 15px 10px;
  }
}
.access__box .txt dl dt {
  text-align: center;
  background-color: #fff;
  padding: 4px 5px 5px;
  line-height: 1;
  border-radius: 20px;
}
.access__box .txt dl dd {
  line-height: 1.6;
}
.access__box .txt dl dd a {
  text-decoration: underline;
  transition: color 0.3s;
}
.access__box .txt dl dd a:hover {
  color: #31aa65;
}
.access__box .txt dl dd span {
  display: block;
}
.access__box .txt dl dd .notes {
  margin-top: 10px;
}
.access__box .img-box {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .access__box .img-box {
    max-width: 100%;
    gap: 10px;
  }
}
.access__box:first-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .access__box:first-of-type {
    margin-bottom: 40px;
  }
}
.access__box:first-of-type .img {
  max-width: 600px;
}
.access .title1 {
  margin-bottom: 40px;
}
.access .title2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .access .title2 {
    margin-bottom: 20px;
    text-align: center;
  }
}

.instagram {
  padding: 60px 0 120px;
}
@media screen and (max-width: 800px) {
  .instagram {
    padding-bottom: 80px;
  }
}
.instagram .title1 {
  margin-bottom: 40px;
}/*# sourceMappingURL=style.css.map */