@charset "UTF-8";
/*=================================================*/
/*header
/*=================================================*/
.l__header {
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  background: #fff;
}

.header__inner {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.header__btn-icon_sp {
    position: fixed;
    right: 65px;
    top: 8px;
    cursor: pointer;
    z-index: 21;
  }

@media (min-width: 1131px) {
  .header__inner {
    padding: 0 90px;
  }
}

.header__link {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 65px;
  height: 65px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1131px) {
  .header__logo {
    width: 75px;
    height: 75px;
  }
}

.header__company-name {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #018137;
  margin-left: 20px;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .header__company-name {
    font-size: 16px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
}
@media (min-width: 1131px) {
  .header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__btn-icon_sp {
    display: none;
  }
}
.header__nav-item {
  display: flex;
  align-items: center;
  text-align: center;
}
.header__nav-link {
  display: inline-block;
  margin: 15px;
  position: relative;
}
.header__nav-link.flex {
  display: flex;
  align-items: center;
}
.header__nav-link:hover .header__nav-text {
  color: #018137;
}
.header__nav-link:hover .header__nav-icon {
  filter: none;
}
.header__nav-link::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #018137;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.header__nav-link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.header__nav-icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 5px;
  filter: brightness(0.3) invert(0);
}
.header__nav-text {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
}

.header__btn {
  display: flex;
  align-items: center;
  display: none;
}
@media (min-width: 1131px) {
  .header__btn {
    display: flex;
    margin: 5px 0 0 15px;
  }
}
.header__btn-link {
  width: 82px;
  display: flex;
  align-items: center;
  padding-bottom: 6px;
  position: relative;
}
.header__btn-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #018137;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header__btn-link:hover::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.header__btn-icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 5px;
}
.header__btn-text {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #018137;
}

/*=================================================*/
/*ハンバーガーメニュー
/*=================================================*/
.toggle {
  position: fixed;
  right: 22px;
  top: 8px;
  display: block;
  width: 38px;
  height: 45px;
  cursor: pointer;
  z-index: 21;
  display: block;
}
@media (min-width: 1131px) {
  .toggle {
    display: none;
  }
}
.toggle .span {
  display: block;
  position: absolute;
  width: 60%;
  border-bottom: solid 2px #333;
  transition: 0.3s ease-in-out;
  padding-top: 5px;
  right: 7px;
  margin: 0;
}
.toggle .span:nth-child(1) {
  top: 12px;
}
.toggle .span:nth-child(2) {
  top: 20px;
}
.toggle .span:nth-child(3) {
  top: 28px;
}
.toggle.active .span:nth-child(1) {
  top: 16px;
  left: 6px;
  transform: rotate(-45deg);
  border-bottom: solid 2px #018137;
}
.toggle.active .span:nth-child(2) {
  opacity: 0;
}
.toggle.active .span:nth-child(3) {
  top: 16px;
  left: 9px;
  transform: rotate(45deg);
  border-bottom: solid 2px #018137;
}

/*=================================================*/
/*ハンバーガーリスト
/*=================================================*/
.sp__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 70px;
  transform: translateX(100%);
  text-align: center;
  transition: all 0.5s;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: #fff;
}
.sp__nav-item {
  width: 100%;
  background: rgba(181, 249, 188, 0.2);
  border-bottom: 1px solid #e0e0e0;
}
.sp__nav-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.sp__nav-item.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 0 15px;
}
.sp__nav-link {
  display: block;
  padding: 20px 0;
}
.sp__nav-link:hover {
  background: rgba(21, 142, 33, 0.2);
}
.sp__nav-link.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp__nav.active {
  opacity: 1;
  z-index: 20;
  transform: none;
  overflow-y: scroll;
  height: 100%;
  transform: none;
}
.sp__nav-icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 5px;
}
.sp__nav-text {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-align: center;
}
.sp__nav-text.green {
  color: #018137;
}
.sp__nav-text.light {
  font-size: 12px;
  font-weight: bold;
}
.sp__nav-text.tel {
  color: #fff;
}
.sp__nav-text.con {
  color: #fff;
}
@media (max-width: 372px) {
  #irafj {
    width: 24px !important;
    height: 24px !important;
  }
  .header__company-name{
    margin-left: 10px;
  }
  .header__btn-icon_sp {
    top: 11px;
    right: 52px;
  }
  .toggle {
    right: 12px;
  }
  .header__btn-text {
    font-size: 11px !important;
  }
}
/*# sourceMappingURL=header.css.map */