@charset "UTF-8";
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}
.l-header .inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  padding: 20px 30px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.l-header .logo {
  width: 115px;
}
.l-header .menu {
  width: calc(100% - 115px);
}
.l-header .menu__list {
  display: flex;
  justify-content: flex-end;
  gap: 54px;
}
.l-header .menu__item {
  position: relative;
}
.l-header .menu__item ~ .menu__item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #bebebe;
  position: absolute;
  left: -27px;
}
.l-header .menu__item01 {
  padding-right: 16px;
  cursor: pointer;
}
.l-header .menu__item01::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 6px;
  right: -6px;
  border-bottom: 3px solid #69b800;
  border-left: 3px solid #69b800;
  transform: rotate(-45deg);
}
.l-header .menu__item02 a {
  padding-left: 30px;
  background-image: url(../images/common/ico-mail02.png);
  background-repeat: no-repeat;
  background-position: 0 5px;
  background-size: 22px auto;
}
.l-header .menu .font01 {
  font-weight: 700;
}
.l-header .menu .font01.current,
.l-header .menu .font01.current a {
  color: #69b800;
}
.l-header .menu .font01.current {
  position: relative;
}
.l-header .menu .font01.current::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #69b800;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
.menu-child {
  display: none;
}
.l-header .cb {
  display: none;
}
.l-header label {
  cursor: pointer;
}
.menu__item03 {
  display: none;
}
.megamenu {
  display: none;
  width: 100%;
  max-width: 1160px;
  margin: 10px auto 0;
  border-radius: 30px;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.15);
}
.megamenu.open {
  display: block;
}
.megamenu .row {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 30px 30px 0 0;
}
.megamenu .row .txt .en {
  font-size: 60px;
  color: #69b800;
}
.megamenu .row .txt .ja {
  font-size: 20px;
}
.megamenu .list {
  height: 280px;
  overflow-y: scroll;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  background-color: #d5f69f;
  padding: 30px;
  border-radius: 0 0 30px 30px;
}
.megamenu .item {
  width: calc(100% / 3 - 16px);
}
.megamenu .item .txt {
  background-color: #fff;
  border-radius: 0 0 15px 15px;
  padding: 10px 20px 15px;
  background-image: url(../images/common/ico-arrow-right02.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) calc(100% - 18px);
  background-size: 12px auto;
}
.megamenu .item .ja {
  font-size: 20px;
  font-weight: 700;
}
.megamenu .item .en {
  font-size: 14px;
  color: #69b800;
}
.megamenu .item03 .en {
  letter-spacing: -1.1px;
}
.l-header .toggle {
  display: none;
}
.openbtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 70px;
  }
  .l-header a {
    display: inline-block;
  }
  .l-header .inner {
    height: 100%;
    padding: 12px;
    border-radius: 0;
  }
  .l-header .logo {
    width: 72px;
  }
  .l-header .menu {
    display: none;
    width: 100%;
    position: fixed;
    top: 70px;
    left: 0;
    background-color: #fff;
  }
  .open .menu {
    display: block;
  }
  .l-header .tel {
    display: none;
  }
  .l-header .menu__list {
    display: block;
    padding: 0 12px;
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
    overflow-y: scroll;
    padding-bottom: 70px;
  }
  .l-header .menu__item01 {
    cursor: default;
  }
  .l-header .menu__item01::after {
    content: none;
  }
  .l-header .menu__item ~ .menu__item::before {
    width: 100%;
    height: 1px;
    left: 0;
  }
  .l-header .menu__item02 {
    display: none;
  }
  .l-header .menu__item03 {
    display: block;
  }
  .l-header .menu .font01 {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
  }
  .l-header .menu .font01.current,
  .l-header .menu .font01.current a {
    color: inherit;
  }
  .l-header .menu .font01.current::after {
    content: none;
  }
  .l-header .toggle {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .l-header .toggle span {
    display: inline-block;
    position: absolute;
    transition: all 0.3s;
    background-color: #69b800;
  }
  .l-header .toggle span:nth-of-type(1) {
    width: 15px;
    height: 2px;
    top: 20px;
    left: 12.5px;
  }
  .l-header .toggle span:nth-of-type(2) {
    width: 2px;
    height: 15px;
    top: 13.5px;
    left: 19.5px;
  }
  .l-header .cb:checked + label .toggle {
    transform: rotate(90deg);
  }
  .l-header .cb:checked + label .toggle span:nth-of-type(1) {
    opacity: 0;
    transform: rotate(90deg);
  }
  .l-header .menu-child {
    padding: 0 10px 10px;
    font-size: 12px;
    line-height: 1.8;
  }
  .l-header .menu-child a {
    color: #848484;
  }
  .l-header .cb:checked + label + .menu-child {
    display: block;
  }
  .openbtn {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10000;
  }
  .openbtn span {
    display: block;
    width: 30px;
    height: 2px;
    position: absolute;
    left: 10px;
    background-color: #69b800;
    transition: all 0.3s;
  }
  .openbtn span:nth-child(1) {
    top: 16px;
  }
  .openbtn span:nth-child(2) {
    top: 24px;
  }
  .openbtn span:nth-child(3) {
    top: 32px;
  }
  .open .openbtn span {
    top: 25px;
  }
  .open .openbtn span:nth-child(1) {
    transform: rotate(45deg);
  }
  .open .openbtn span:nth-child(2) {
    opacity: 0;
  }
  .open .openbtn span:nth-child(3) {
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 560px) {
}
