@charset "UTF-8";

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #403557;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  background: #FAF9E8;
}

/*break point*/

@media screen and (min-width:768px) {
  .sp {
      display: none !important;
  }
  .pc {
      display: block !important;
  }
}
@media screen and (max-width:767.98px) {
  .sp {
      display: block !important;
  }
  .pc {
      display: none !important;
  }
}

/* header
----------------------------------------------------------------*/

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 0;
  width: 100%;
  height: auto;
  z-index: 998;
}

#header-wrap {
  flex-wrap: nowrap;
  align-items: center;
  margin: auto;
  width: 97%;
  height: auto;
  z-index: 998;
}

/*ヘッダーロゴ*/

.headerBtn a {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}

@media screen and (min-width: 901px) {
  .headerBtn a {
      min-width: 400px;
  }
}
@media screen and (max-width: 320px) {
  .headerBtn a {
      flex-wrap: wrap;
  }
}

.headerLogo {
  padding: 6px 0;
  width: 35%;
  min-width: 60px;
  max-width: 115px;
}

.headerBtn p {
  padding-left: 1%;
  width: 100%;
  color: #116636;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.1rem;
}

/*ハンバーガーボタン部分*/

.menu-btn {
  display: flex;
  position: relative;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  z-index: 999;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  content: '';
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 9999px;
  background-color: #116636;
  position: absolute;
  z-index: 999;
}

.menu-btn span::before {
  bottom: 11px;
}

.menu-btn span::after {
  top: 11px;
}

@media screen and (min-width: 901px) {
  .menu-btn {
      width: 65px;
      height: 65px;
  }

  .menu-btn span,
  .menu-btn span::before,
  .menu-btn span::after {
      height: 5px;
      width: 50px;
      transition: .5s;
  }

  .menu-btn span::before {
      bottom: 18px;
  }

  .menu-btn span::after {
      top: 18px;
  }
}

#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before,
#menu-btn-check:checked~.menu-btn span::after {
  background-color: #fff;
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: .5s;
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: .5s;
}

#menu-btn-check {
  display: none;
}

/* メニューオープン時のオーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 79;
  animation: fadeIn .5s;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


/*ハンバーガー　メニューリスト部分*/

.menu-content {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  background: #3D7B1C;
  z-index: 80;
  transition: transform .5s ease-in-out;
}
@media screen and (min-width: 500px) {
  .menu-content {
      max-width: 420px;
  }
}
@media screen and (min-width: 901px) {
  .menu-content {
      padding: 12vh 0;
  }
}

#menu-btn-check:checked~.menu-content {
  transform: translateX(0);
}

.menu-content ul {
  margin: 0 auto;
  width: 75%;
}

.menu-content ul li {
  color: #fff;
  margin-bottom: 40px;
  font-size: 2.4rem;
  line-height: 1.4;
}
@media screen and (min-width: 901px) {
  .menu-content ul li {
      margin-bottom: 50px;
  }
}

.homepage-link {
  margin: 60px auto 0;
  padding: 25px;
  width: 75%;
  background: #fff;
  border-radius: clamp(15px, 4vw, 25px);
}
@media screen and (min-width: 901px) {
  .homepage-link {
      margin: 70px auto 0;
  }
}

.homepage-link p {
  text-align: center;
  color: #3D7B1C;
  font-size: 2rem;
  line-height: 1.4;
}

.homepage-link .truck-illust {
  margin: 15px auto 0;
  width: 60%;
  max-width: 120px;
}

/* heading
----------------------------------------------------------------*/

.heading {
  height: 30vh;
  max-height: 155px;
  min-height: calc(var(--header-height, 50px) * 2.5);
  background: #BDD65B;
}
@media screen and (min-width: 768px) {
  .heading {
      max-height: 275px;
  }
}

.pageTitle {
  display: flex;
  margin: 0 auto;
  height: 100%;
  width: 90%;
  transform: translateY(20px);
}
@media screen and (min-width: 768px) {
  .pageTitle {
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  .pageTitle {
    transform: translateY(10px);
  }
}

.sectionTitle {
  position: relative;
  margin: 0 auto 30px;
  padding-bottom: .5em;
  width: fit-content;
  color: #3D7B1C;
  font-size: clamp(2.6rem, 3.8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.2;
}

.sectionTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-image: radial-gradient(circle at 50% 50%, #3D7B1C 45%, transparent 46%);
  background-size: 16px 100%;
  background-repeat: repeat-x;
  background-position: center center;
}

/* parts
----------------------------------------------------------------*/

iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: clamp(12px, 4.5vw, 20px);
}

/* ==============================
  Button
============================== */

.btn {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  border-radius: 9999px;
  border: #3D7B1C 3px solid;
  padding: 1.2em 1em;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: .05em;
  cursor: pointer;
}
@media screen and (min-width: 901px) {
  .btn {
      padding: 1em;
  }
}

.btn.white {
  background: #fff;
  color: #3D7B1C;
  font-weight: 700;
}

.btn.green {
  background: #3D7B1C;
  color: #fff;
}

/*hover*/
.btn.white:hover {
  background: #3D7B1C;
  color: #fff;
}
.btn.green:hover {
  background: #fff;
  color: #3D7B1C;
}
.btn:hover {
  opacity: 1;
}

/* news
----------------------------------------------------------------*/

/* ==============================
  News Label
============================== */

.newsLabel {
  display: inline-block;
  padding: .3em .5em;
  background: #FD9719;
  color: #fff;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  letter-spacing: .05em;
  line-height: 1.1;
  border-radius: 8px;
}

.newsList {
  display: flex;
}

.newsItem {
  width: 100%;
  max-width: 360px;
}

.newsThumbnail {
  margin-bottom: 15px;
  border: solid 2px #BDD65B;
}
@media screen and (min-width: 1080px) {
  .newsThumbnail {
    margin-bottom: 25px;
  }
}

.newsTitle {
  margin: .5em 0;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  line-height: 1.4;
}

.newsDate {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}

/* footer
----------------------------------------------------------------*/

footer {
  padding: 40px 0 10px;
  background: #BDD65B;
}

.footerLogo {
  margin: 0 auto 30px;
  width: 50%;
  max-width: 160px;
}
@media screen and (min-width: 901px) {
  .footerLogo {
      max-width: 190px;
  }
}

.copyright {
  background: unset;
  text-align: center;
  color: #3D7B1C;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.1;
}