@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Poppins:wght@700;900&display=swap");
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(32px);
            transform: translateY(32px);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition-duration: 1s;
            transition-duration: 1s;
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.CONTAINER {
  background: #fff;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  color: #002F1C;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .CONTAINER {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.CONTAINER .clear::after {
  content: "";
  display: block;
  clear: both;
}
.CONTAINER a, .CONTAINER a:active, .CONTAINER a:hover, .CONTAINER a:visited {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.CONTAINER .SECTION {
  position: relative;
}
.CONTAINER .SECTION .SECTION__WRAPPER {
  width: calc(100% - 32px);
  margin: auto;
}
@media screen and (min-width: 768px) {
  .CONTAINER .SECTION .SECTION__WRAPPER {
    max-width: 1264px;
    width: calc(100% - 48px);
  }
}
.CONTAINER .GUIDE {
  border: solid 0.5px #00FFF7;
}
.CONTAINER .white {
  color: #fff;
}
.CONTAINER .small {
  font-size: max(0.72em, 12px);
  font-weight: normal;
}
.CONTAINER .large {
  font-size: 1.32em;
}
.CONTAINER .bold {
  font-weight: 600;
}
.CONTAINER .en {
  font-family: "Poppins", sans-serif;
}
.CONTAINER .inlineblock {
  display: inline-block;
}
.CONTAINER .lazyload-fadein img {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.CONTAINER .lazyload-fadein img.lazyloaded {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .CONTAINER .nonPC {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .CONTAINER .nonPC {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .CONTAINER .nonSP {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .CONTAINER .nonSP {
    display: none !important;
  }
}

#header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 999;
}
#header .header__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .header__wrapper .header__title {
  background: #fff;
  padding: 8px 32px;
  border-radius: 100vh;
  display: block;
}
#header .header__wrapper .header__title .header__logo {
  display: block;
  width: 80px;
}
#header .header__wrapper .hum__btn {
  width: 32px;
  height: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 8px;
}
#header .header__wrapper .hum__btn span, #header .header__wrapper .hum__btn::after, #header .header__wrapper .hum__btn::before {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 100vh;
  background: #014127;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
#header .header__wrapper .hum__btn::after, #header .header__wrapper .hum__btn::before {
  position: absolute;
  content: "";
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
#header .header__wrapper .hum__btn::before {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
#header .header__wrapper .hum__btn::after {
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
}
#header .header__wrapper .circle {
  position: absolute;
  background: #FFE500;
  border-radius: 100vh;
  width: 116px;
  height: 116px;
  right: -24px;
  top: -44px;
  display: block;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#header .header__wrapper .nav__list {
  pointer-events: none;
  position: fixed;
  z-index: -2;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header .header__wrapper .nav__list .nav__item {
  margin-bottom: 44px;
}
#header .header__wrapper .nav__list .nav__item .nav__link {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  font-size: 2.4rem;
}
#header .header__wrapper .nav__list::after {
  position: absolute;
  content: "";
  display: block;
  width: 226px;
  height: 93px;
  background: url(../images/header_cheair.svg) no-repeat center/contain;
  bottom: 44px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
#header .header__wrapper input#hum-btn {
  display: none;
}
#header .header__wrapper input#hum-btn:checked + .hum__btn {
  z-index: 3;
}
#header .header__wrapper input#hum-btn:checked + .hum__btn span {
  opacity: 0;
}
#header .header__wrapper input#hum-btn:checked + .hum__btn::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header .header__wrapper input#hum-btn:checked + .hum__btn::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#header .header__wrapper input#hum-btn:checked + .hum__btn + .circle {
  -webkit-transform: scale(50);
          transform: scale(50);
  -webkit-transition: all 0.7s linear;
  transition: all 0.7s linear;
}
#header .header__wrapper input#hum-btn:checked + .hum__btn ~ .nav__list {
  pointer-events: all;
  opacity: 1;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #header .header__wrapper {
    max-width: unset;
  }
  #header .header__wrapper .header__title {
    padding: 8px 46px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1310px) {
  #header .header__wrapper .header__title {
    margin-left: 22px;
  }
}
@media screen and (min-width: 768px) {
  #header .header__wrapper .header__title .header__logo {
    width: 122px;
  }
}
@media screen and (min-width: 768px) {
  #header .header__wrapper .hum__btn {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #header .header__wrapper .circle {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  #header .header__wrapper .nav__list {
    pointer-events: all;
    background: #FFE500;
    padding: 16px 68px 16px 84px;
    margin-right: -24px;
    position: static;
    z-index: 1;
    opacity: 1;
    height: auto;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 100vh 0 0 100vh;
    width: 100%;
    max-width: 706px;
  }
  #header .header__wrapper .nav__list .nav__item {
    margin-bottom: 0;
  }
  #header .header__wrapper .nav__list .nav__item:not(:last-child) {
    margin-right: 8px;
  }
  #header .header__wrapper .nav__list .nav__item .nav__link {
    text-align: left;
    font-size: 18px;
    font-size: 1.8rem;
    font-size: min(2.1vw, 18px);
  }
  #header .header__wrapper .nav__list .nav__item .nav__link:hover {
    color: #008A71;
  }
  #header .header__wrapper .nav__list::after {
    display: none;
  }
}

#mainvisual {
  height: 166.1vw;
  background: url(../images/mainvisual_sp.svg) no-repeat center/cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#mainvisual .mainvisual__wrapper {
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
#mainvisual .mainvisual__wrapper .mainvisual__maintext {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#mainvisual .mainvisual__wrapper .mainvisual__subtext {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #mainvisual {
    background-image: url(../images/mainvisual_pc.svg);
    height: 61.9vw;
  }
  #mainvisual .mainvisual__wrapper {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  #mainvisual .mainvisual__wrapper .mainvisual__maintext {
    font-size: min(3.7vw, 48px);
    line-height: 1.27;
    margin-bottom: 4px;
  }
  #mainvisual .mainvisual__wrapper .mainvisual__subtext {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6;
  }
}

#information {
  padding: 120px 0;
}
#information .information__title {
  color: #FFCA42;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 48px;
}
#information .information__title .--deco {
  position: absolute;
  width: 104px;
  height: auto;
  top: -30px;
  right: -34px;
}
#information .information__list .information__item:not(:last-child) {
  margin-bottom: 40px;
}
#information .information__list .information__item .item__date {
  margin-bottom: 8px;
  font-weight: 700;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-family: "Poppins", sans-serif;
}
#information .information__list .information__item .item__date::after {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  border-radius: 100vh;
  bottom: 1px;
  left: 0;
  background: #FFCA42;
}
#information .information__list .information__item .item__box .item__title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#information .information__list .information__item .item__box .item__text {
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  #information {
    padding: 168px 0 278px;
  }
  #information .information__title {
    font-size: 36px;
    font-size: 3.6rem;
    margin: 0 auto 40px;
  }
  #information .information__title .--deco {
    width: 157px;
    top: -48px;
    right: -53px;
  }
  #information .information__list {
    max-width: 1000px;
    margin: auto;
  }
  #information .information__list .information__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #information .information__list .information__item:not(:last-child) {
    margin-bottom: 56px;
  }
  #information .information__list .information__item .item__date {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0 24px 0 0;
  }
  #information .information__list .information__item .item__date::after {
    height: 3px;
  }
  #information .information__list .information__item .item__box .item__title {
    margin-bottom: 8px;
    font-size: 20px;
    font-size: 2rem;
  }
  #information .information__list .information__item .item__box .item__text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

#about {
  padding: 112px 0 152px;
  background: #008A71;
  color: #fff;
}
#about::before, #about::after {
  position: absolute;
  content: "";
  display: block;
}
#about::before {
  width: 100%;
  height: 10.9vw;
  background: url(../images/about_top.svg) no-repeat top/cover;
  top: 1px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#about::after {
  width: 192px;
  height: 133px;
  background: url(../images/about_trunk.svg) no-repeat center/contain;
  left: 3.7vw;
  top: -90px;
}
#about .about__container {
  position: relative;
}
#about .about__container::before {
  position: absolute;
  right: -18px;
  top: -91px;
  width: 123px;
  height: 70px;
  background: url(../images/about_mount.svg) no-repeat center/contain;
  content: "";
  display: block;
}
#about .about__title {
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: block;
  font-weight: 900;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  color: #014127;
  letter-spacing: 0.03em;
  color: #fff;
}
#about .about__title::after, #about .about__title::before {
  position: absolute;
  display: block;
  left: 50%;
}
#about .about__title::after {
  line-height: 1;
  content: "グルットについて";
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  bottom: 0;
  -webkit-transform: translateY(calc(100% - 4px)) translateX(-50%);
          transform: translateY(calc(100% - 4px)) translateX(-50%);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
}
#about .about__title::before {
  -webkit-transform: translateY(-100%) translateX(-50%);
          transform: translateY(-100%) translateX(-50%);
  content: "";
  background: no-repeat center/contain;
  top: 0;
}
@media screen and (min-width: 767px) {
  #about .about__title {
    font-size: 60px;
    font-size: 6rem;
    margin: 0 auto 60px;
  }
  #about .about__title::after {
    font-size: 20px;
    font-size: 2rem;
    -webkit-transform: translateY(calc(100% - 4px)) translateX(-50%);
            transform: translateY(calc(100% - 4px)) translateX(-50%);
  }
  #about .about__title::before {
    -webkit-transform: translateY(-100%) translateX(-50%);
            transform: translateY(-100%) translateX(-50%);
  }
}
#about .about__title::before {
  width: 34px;
  height: 32px;
  background-image: url(../images/icon_flag.svg);
}
#about .about__wrapper .about__parson {
  width: 100%;
  display: block;
  margin: 0 0 40px -16px;
  height: 69.7vw;
  width: calc(100% - 16px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 0 30px 30px 0;
}
#about .about__wrapper .about__box .about__subtitle {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.7;
}
#about .about__wrapper .about__box .about__text {
  line-height: 1.8;
  margin-bottom: 16px;
}
#about .about__wrapper .about__box .overview__anc {
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: underline;
  display: block;
}
#about .about__wrapper .about__box .overview__anc::before, #about .about__wrapper .about__box .overview__anc::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
}
#about .about__wrapper .about__box .overview__anc::before {
  width: 26px;
  height: 26px;
  background: #F5AC3D;
  border-radius: 100vh;
  left: 0;
}
#about .about__wrapper .about__box .overview__anc::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
  left: 10px;
}
@media screen and (min-width: 768px) {
  #about {
    padding: 98px 0 224px;
  }
  #about::after {
    width: 317px;
    height: 221px;
    left: 48px;
    top: -221px;
  }
  #about .about__container::before {
    right: 0;
    top: 0;
    width: 298px;
    height: 170px;
  }
  #about .about__title::before {
    width: 50px;
    height: 48px;
  }
  #about .about__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #about .about__wrapper .about__parson {
    width: calc(33% + 50vw - 50%);
    height: 43.8vw;
    margin: 0 88px 0 calc(-1 * (50vw - 50%));
  }
  #about .about__wrapper .about__box .about__subtitle {
    font-size: 34px;
    font-size: 3.4rem;
    margin-bottom: 56px;
  }
  #about .about__wrapper .about__box .about__text {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2.1;
    margin-bottom: 24px;
  }
  #about .about__wrapper .about__box .overview__anc {
    padding-left: 50px;
    font-size: 22px;
    font-size: 2.2rem;
  }
  #about .about__wrapper .about__box .overview__anc::before {
    width: 30px;
    height: 30px;
  }
  #about .about__wrapper .about__box .overview__anc::after {
    border-width: 7px 0 7px 7px;
    left: 12px;
  }
}

#service {
  background: #FFF5E7;
  padding: 120px 0 128px;
}
#service::before, #service::after {
  position: absolute;
  content: "";
  display: block;
}
#service::before {
  width: 100%;
  height: 9.3vw;
  background: url(../images/service_top.svg) no-repeat top/cover;
  top: 1px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#service::after {
  width: 224px;
  height: 107px;
  background: url(../images/service_tent.svg) no-repeat center/contain;
  left: auto;
  right: 3.7vw;
  top: -80px;
}
#service .service__title {
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: block;
  font-weight: 900;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  color: #014127;
  letter-spacing: 0.03em;
  margin-bottom: 48px;
}
#service .service__title::after, #service .service__title::before {
  position: absolute;
  display: block;
  left: 50%;
}
#service .service__title::after {
  line-height: 1;
  content: "事業内容";
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  bottom: 0;
  -webkit-transform: translateY(calc(100% - 4px)) translateX(-50%);
          transform: translateY(calc(100% - 4px)) translateX(-50%);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
}
#service .service__title::before {
  -webkit-transform: translateY(-100%) translateX(-50%);
          transform: translateY(-100%) translateX(-50%);
  content: "";
  background: no-repeat center/contain;
  top: 0;
}
@media screen and (min-width: 767px) {
  #service .service__title {
    font-size: 60px;
    font-size: 6rem;
    margin: 0 auto 60px;
  }
  #service .service__title::after {
    font-size: 20px;
    font-size: 2rem;
    -webkit-transform: translateY(calc(100% - 4px)) translateX(-50%);
            transform: translateY(calc(100% - 4px)) translateX(-50%);
  }
  #service .service__title::before {
    -webkit-transform: translateY(-100%) translateX(-50%);
            transform: translateY(-100%) translateX(-50%);
  }
}
#service .service__title::before {
  background-image: url(../images/service_tree.svg);
  width: 40px;
  height: 39px;
}
#service .service__item:not(:last-child) {
  margin-bottom: 80px;
}
#service .service__item .item__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #014127;
  width: 100%;
  text-align: center;
}
#service .service__item .item__wrapper {
  margin-bottom: 16px;
}
#service .service__item .item__wrapper .item__text {
  margin-bottom: 24px;
}
#service .service__item .item__wrapper .inner__list .inner__item {
  padding-left: 26px;
  position: relative;
}
#service .service__item .item__wrapper .inner__list .inner__item:not(:last-child) {
  margin-bottom: 8px;
}
#service .service__item .item__wrapper .inner__list .inner__item::before {
  position: absolute;
  display: block;
  content: "";
  width: 18px;
  height: 17px;
  background: url(../images/icon_flag.svg) no-repeat center/contain;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#service .service__item .ses__img {
  display: block;
  width: 69%;
  margin: 0 0 0 auto;
}
#service .service__item .develop__text {
  margin-bottom: 40px;
}
#service .service__item .achive__title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  position: relative;
}
#service .service__item .achive__title::after {
  position: absolute;
  content: "";
  display: block;
  width: 19px;
  height: 18px;
  background: url(../images/icon_flag.svg) no-repeat center/contain;
  right: -27px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#service .service__item .achive__list {
  padding: 0 24px;
}
#service .service__item .achive__list .achive__item {
  border: 6px solid #00718A;
  border-radius: 30px;
  overflow: hidden;
}
#service .service__item .achive__list .achive__item:not(:last-child) {
  margin-bottom: 20px;
}
#service .service__item .achive__list .achive__item .achive__img {
  background: #fff;
  padding: 16px;
  min-height: 144px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#service .service__item .achive__list .achive__item .achive__box {
  background: #00718A;
  padding: 24px;
  color: #fff;
  min-height: 244px;
}
#service .service__item .achive__list .achive__item .achive__box .achive__name {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
#service .service__item .achive__list .achive__item .achive__box .achive__about {
  font-weight: 700;
  margin-bottom: 16px;
}
#service .service__item .achive__list .achive__item .achive__box .achive__text {
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #service {
    padding: 120px 0 305px;
  }
  #service::after {
    width: 420px;
    height: 198px;
    right: 64px;
    top: -198px;
  }
  #service .service__title {
    margin-bottom: 120px;
  }
  #service .service__title::before {
    width: 63px;
    height: 62px;
  }
  #service .service__item:not(:last-child) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 244px;
  }
  #service .service__item .item__title {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 56px;
  }
  #service .service__item .item__wrapper {
    width: 60%;
    margin: 0 48px 0 0;
  }
  #service .service__item .item__wrapper .item__text {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  #service .service__item .item__wrapper .inner__list .inner__item {
    padding-left: 40px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  #service .service__item .item__wrapper .inner__list .inner__item:not(:last-child) {
    margin-bottom: 12px;
  }
  #service .service__item .item__wrapper .inner__list .inner__item::before {
    width: 23px;
    height: 22px;
  }
  #service .service__item .ses__img {
    display: block;
    width: calc(40% - 48px);
    margin: 0 0 0 auto;
  }
  #service .service__item .develop__text {
    line-height: 1.7;
    margin-bottom: 92px;
    font-size: 18px;
    font-size: 1.8rem;
  }
  #service .service__item .achive__title {
    font-size: 30px;
    font-size: 3rem;
    margin: 0 auto 44px;
  }
  #service .service__item .achive__title::after {
    width: 29px;
    height: 28px;
    right: -37px;
  }
  #service .service__item .achive__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  #service .service__item .achive__list .achive__item {
    max-width: 296px;
    width: 25%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #service .service__item .achive__list .achive__item:not(:last-child) {
    margin: 0 8px 0 0;
  }
  #service .service__item .achive__list .achive__item .achive__img {
    padding: 40px;
    min-height: 176px;
  }
  #service .service__item .achive__list .achive__item .achive__box {
    padding: 24px 32px;
    min-height: unset;
    height: 100%;
  }
  #service .service__item .achive__list .achive__item .achive__box .achive__name {
    margin-bottom: 2px;
  }
  #service .service__item .achive__list .achive__item .achive__box .achive__about {
    font-size: 14px;
    font-size: 1.4rem;
  }
  #service .service__item .achive__list .achive__item .achive__box .achive__text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#recruit {
  padding: 145px 0 163px;
}
#recruit::before, #recruit::after {
  position: absolute;
  content: "";
  display: block;
}
#recruit::before {
  width: 100%;
  height: 13.1vw;
  background: url(../images/recruit_top.svg) no-repeat top/cover;
  top: 1px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#recruit::after {
  width: 203px;
  height: 87px;
  background: url(../images/recruit_tree.svg) no-repeat center/contain;
  left: 3.7vw;
  top: -56px;
}
#recruit .recruit__title {
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: block;
  font-weight: 900;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  color: #014127;
  letter-spacing: 0.03em;
  margin-bottom: 96px;
}
#recruit .recruit__title::after, #recruit .recruit__title::before {
  position: absolute;
  display: block;
  left: 50%;
}
#recruit .recruit__title::after {
  line-height: 1;
  content: "採用情報";
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  bottom: 0;
  -webkit-transform: translateY(calc(100% - 4px)) translateX(-50%);
          transform: translateY(calc(100% - 4px)) translateX(-50%);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
}
#recruit .recruit__title::before {
  -webkit-transform: translateY(-100%) translateX(-50%);
          transform: translateY(-100%) translateX(-50%);
  content: "";
  background: no-repeat center/contain;
  top: 0;
}
@media screen and (min-width: 767px) {
  #recruit .recruit__title {
    font-size: 60px;
    font-size: 6rem;
    margin: 0 auto 60px;
  }
  #recruit .recruit__title::after {
    font-size: 20px;
    font-size: 2rem;
    -webkit-transform: translateY(calc(100% - 4px)) translateX(-50%);
            transform: translateY(calc(100% - 4px)) translateX(-50%);
  }
  #recruit .recruit__title::before {
    -webkit-transform: translateY(-100%) translateX(-50%);
            transform: translateY(-100%) translateX(-50%);
  }
}
#recruit .recruit__title::before {
  background-image: url(../images/recruit_hat.svg);
  width: 40px;
  height: 38px;
}
#recruit .recruit__wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 76px;
}
#recruit .recruit__wrapper .recruit__img {
  position: absolute;
  z-index: -1;
  width: 223px;
  left: 50%;
  top: -91px;
}
#recruit .recruit__wrapper .recruit__main {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 32px;
  color: #014127;
  font-weight: 700;
}
#recruit .recruit__wrapper .recruit__text {
  line-height: 1.8;
}
#recruit .recruit__grid-wrapper {
  margin-bottom: 160px;
}
#recruit .recruit__grid-wrapper .grid__title {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
}
#recruit .recruit__grid-wrapper .grid__title::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../images/recruit_runp.svg) no-repeat center/contain;
  width: 29px;
  height: 48px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
#recruit .recruit__grid-wrapper .grid__img {
  display: block;
  margin: 0 auto 16px;
  width: 50%;
}
#recruit .recruit__grid-wrapper .grid__text {
  line-height: 1.6;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#recruit .recruit__grid-wrapper .grid__article {
  line-height: 1.8;
}
#recruit .requirement__wrapper {
  background: #008A71;
  color: #fff;
  border-radius: 30px;
  padding: 48px 22px;
  position: relative;
  margin-bottom: 40px;
}
#recruit .requirement__wrapper::before, #recruit .requirement__wrapper::after {
  position: absolute;
  content: "";
  display: block;
  background: no-repeat center/contain;
}
#recruit .requirement__wrapper::before {
  background-image: url(../images/recruit_tent.svg);
  width: 172px;
  height: 89px;
  top: -89px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
#recruit .requirement__wrapper::after {
  width: 101px;
  height: 63px;
  left: 66%;
  top: -32px;
  background-image: url(../images/recruit_car.svg);
}
#recruit .requirement__wrapper .requirement__title {
  text-align: center;
  display: block;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 32px;
}
#recruit .requirement__wrapper .requirement__dl .requirement__item:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #FFD79B;
}
#recruit .requirement__wrapper .requirement__dl .requirement__item .item__title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
}
#recruit .requirement__wrapper .requirement__dl .requirement__item .item__title::before {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/recruit_squreicon.svg) no-repeat center/cover;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#recruit .requirement__wrapper .requirement__dl .requirement__item .item__text {
  font-size: 16px;
  font-size: 1.6rem;
}
#recruit .induction__wrapper {
  padding: 0 16px;
}
#recruit .induction__wrapper .induction__img {
  display: block;
  width: 43%;
  margin: 0 auto 16px;
}
#recruit .induction__wrapper .induction__text {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #recruit {
    padding: 127px 0 206px;
  }
  #recruit::after {
    width: 345px;
    height: 155px;
    left: 40px;
    top: -155px;
  }
  #recruit .recruit__title {
    margin-bottom: 138px;
  }
  #recruit .recruit__title::before {
    width: 65px;
    height: 62px;
  }
  #recruit .recruit__wrapper {
    margin-bottom: 216px;
  }
  #recruit .recruit__wrapper .recruit__img {
    width: 650px;
    left: 736px;
    top: 0;
  }
  #recruit .recruit__wrapper .recruit__main {
    font-size: 46px;
    font-size: 4.6rem;
    margin-bottom: 24px;
  }
  #recruit .recruit__wrapper .recruit__text {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.7;
    max-width: 696px;
  }
  #recruit .recruit__grid-wrapper {
    margin-bottom: 299px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr -webkit-max-content -webkit-max-content -webkit-max-content 1fr;
    grid-template-rows: 1fr max-content max-content max-content 1fr;
    gap: 0px 0px;
    grid-template-areas: "img ." "img title" "img text" "img article" "img .";
  }
  #recruit .recruit__grid-wrapper .grid__title {
    grid-area: title;
    line-height: 1.3;
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 44px;
    padding-left: 80px;
    display: block;
  }
  #recruit .recruit__grid-wrapper .grid__title::before {
    width: 56px;
    height: 92px;
  }
  #recruit .recruit__grid-wrapper .grid__img {
    grid-area: img;
    margin: 0 auto;
    width: 72%;
  }
  #recruit .recruit__grid-wrapper .grid__text {
    grid-area: text;
    line-height: 1.8;
    font-size: 20px;
    font-size: 2rem;
  }
  #recruit .recruit__grid-wrapper .grid__article {
    grid-area: article;
    font-size: 18px;
    font-size: 1.8rem;
  }
  #recruit .requirement__wrapper {
    padding: 56px 56px 72px;
    margin-bottom: 93px;
  }
  #recruit .requirement__wrapper::before {
    width: 394px;
    height: 207px;
    top: -207px;
  }
  #recruit .requirement__wrapper::after {
    width: 173px;
    height: 108px;
    left: auto;
    right: 46px;
    top: -91px;
  }
  #recruit .requirement__wrapper .requirement__title {
    font-size: 44px;
    font-size: 4.4rem;
  }
  #recruit .requirement__wrapper .requirement__dl {
    margin: auto;
    max-width: 1000px;
  }
  #recruit .requirement__wrapper .requirement__dl .requirement__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #recruit .requirement__wrapper .requirement__dl .requirement__item:not(:last-child) {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  #recruit .requirement__wrapper .requirement__dl .requirement__item .item__title {
    font-size: 22px;
    font-size: 2.2rem;
    padding-left: 52px;
    margin-bottom: 0;
    width: 288px;
  }
  #recruit .requirement__wrapper .requirement__dl .requirement__item .item__title::before {
    width: 37px;
    height: 37px;
  }
  #recruit .requirement__wrapper .requirement__dl .requirement__item .item__text {
    width: 452px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.9;
  }
  #recruit .induction__wrapper {
    padding: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #recruit .induction__wrapper .induction__img {
    width: 188px;
    margin: 0 48px 0 0;
  }
  #recruit .induction__wrapper .induction__text {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1.6;
  }
}

#contact {
  padding: 120px 0 148px;
  background: #FFF5E7;
}
#contact::before, #contact::after {
  position: absolute;
  content: "";
  display: block;
}
#contact::before {
  width: 100%;
  height: 10.1vw;
  background: url(../images/contact_top.svg) no-repeat top/cover;
  top: 1px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#contact::after {
  width: 202px;
  height: 92px;
  background: url(../images/contact_tree.svg) no-repeat center/contain;
  right: 3.7vw;
  left: auto;
  top: -88px;
}
#contact .contact__title {
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: block;
  font-weight: 900;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  color: #014127;
  letter-spacing: 0.03em;
  margin-bottom: 52px;
}
#contact .contact__title::after, #contact .contact__title::before {
  position: absolute;
  display: block;
  left: 50%;
}
#contact .contact__title::after {
  line-height: 1;
  content: "お問い合わせ";
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  bottom: 0;
  -webkit-transform: translateY(calc(100% - 4px)) translateX(-50%);
          transform: translateY(calc(100% - 4px)) translateX(-50%);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
}
#contact .contact__title::before {
  -webkit-transform: translateY(-100%) translateX(-50%);
          transform: translateY(-100%) translateX(-50%);
  content: "";
  background: no-repeat center/contain;
  top: 0;
}
@media screen and (min-width: 767px) {
  #contact .contact__title {
    font-size: 60px;
    font-size: 6rem;
    margin: 0 auto 60px;
  }
  #contact .contact__title::after {
    font-size: 20px;
    font-size: 2rem;
    -webkit-transform: translateY(calc(100% - 4px)) translateX(-50%);
            transform: translateY(calc(100% - 4px)) translateX(-50%);
  }
  #contact .contact__title::before {
    -webkit-transform: translateY(-100%) translateX(-50%);
            transform: translateY(-100%) translateX(-50%);
  }
}
#contact .contact__title::before {
  width: 55px;
  height: 39px;
  background-image: url(../images/contact_bird.svg);
}
#contact .contact__text {
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}
#contact .form__wrapper {
  border-radius: 30px;
  background: #fff;
  padding: 48px 16px;
  font-weight: 700;
}
#contact .form__wrapper .form__title {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 16px;
  text-align: center;
}
#contact .form__wrapper .form__text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #contact {
    padding: 130px 0 292px;
  }
  #contact::after {
    width: 282px;
    height: 128px;
    right: 78px;
    top: -140px;
  }
  #contact .contact__title::before {
    width: 85px;
    height: 61px;
  }
  #contact .contact__text {
    line-height: 2.1;
    font-size: 18px;
    font-size: 1.8rem;
  }
  #contact .form__wrapper {
    padding: 92px 72px;
  }
  #contact .form__wrapper .form__title {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
}

#footer {
  background: #00718A;
  color: #fff;
  padding: 56px 0 80px;
}
#footer::before, #footer::after {
  position: absolute;
  content: "";
  display: block;
}
#footer::before {
  width: 100%;
  height: 18.1vw;
  background: url(../images/footer_top_sp.svg) no-repeat top/cover;
  top: 1px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#footer::after {
  width: 159px;
  height: 100px;
  background: url(../images/footer_fishdrop.svg) no-repeat center/contain;
  left: 3.7vw;
  top: -90px;
}
#footer .footer__wrapper {
  position: relative;
}
#footer .footer__wrapper .nav__wrapper {
  margin-bottom: 56px;
}
#footer .footer__wrapper .nav__wrapper .footer__logo {
  display: block;
  margin-bottom: 32px;
}
#footer .footer__wrapper .nav__wrapper .footer__logo img {
  display: block;
  width: 136px;
}
#footer .footer__wrapper .nav__wrapper .nav__list {
  position: relative;
}
#footer .footer__wrapper .nav__wrapper .nav__list::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../images/footer_fish_sp.svg) no-repeat center/contain;
  width: 176px;
  height: 128px;
  right: 16px;
  top: 0;
}
#footer .footer__wrapper .nav__wrapper .nav__list .nav__item:not(:last-child) {
  margin-bottom: 24px;
}
#footer .footer__wrapper .nav__wrapper .nav__list .nav__item .item__link {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
#footer .footer__wrapper .nav__wrapper .nav__list .nav__item .item__link::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: 0;
}
#footer .footer__wrapper .overview__title {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 20px;
}
#footer .footer__wrapper .overview__dl .overview__item {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#footer .footer__wrapper .overview__dl .overview__item .item__title {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  min-width: 114px;
}
#footer .footer__wrapper .overview__dl .overview__item .item__title::before {
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 17px;
  background: url(../images/footer_drop.svg) no-repeat center/contain;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
#footer .footer__wrapper .copy {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  bottom: -56px;
  margin: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #footer {
    padding: 68px 0 58px;
  }
  #footer::before {
    height: 10.7vw;
    background-image: url(../images/footer_top_pc.svg);
  }
  #footer::after {
    width: 230px;
    height: 133px;
    left: 142PX;
    top: -133px;
  }
  #footer .footer__wrapper .nav__wrapper {
    margin-bottom: 88px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .footer__wrapper .nav__wrapper .footer__logo {
    margin-bottom: 0;
    margin-right: 24px;
  }
  #footer .footer__wrapper .nav__wrapper .footer__logo img {
    width: 212px;
  }
  #footer .footer__wrapper .nav__wrapper .nav__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 584px;
    width: 100%;
  }
  #footer .footer__wrapper .nav__wrapper .nav__list::after {
    width: 326px;
    height: 164px;
    right: -18px;
    top: auto;
    bottom: -242px;
    background-image: url(../images/footer_fish_pc.svg);
  }
  #footer .footer__wrapper .nav__wrapper .nav__list .nav__item:not(:last-child) {
    margin: 0 24px 0 0;
  }
  #footer .footer__wrapper .nav__wrapper .nav__list .nav__item .item__link {
    font-size: 20px;
    font-size: 2rem;
  }
  #footer .footer__wrapper .nav__wrapper .nav__list .nav__item .item__link:hover {
    color: #B2E3E0;
  }
  #footer .footer__wrapper .nav__wrapper .nav__list .nav__item .item__link:hover::after {
    background: #B2E3E0;
  }
  #footer .footer__wrapper .overview__title {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 40px;
  }
  #footer .footer__wrapper .overview__dl {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    grid-template-rows: -webkit-max-content -webkit-max-content 1fr;
    grid-template-rows: max-content max-content 1fr;
    gap: 22px 80px;
    grid-template-areas: ". ." ". ." ". .";
  }
  #footer .footer__wrapper .overview__dl .overview__item {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 440px;
    margin-bottom: 0;
  }
  #footer .footer__wrapper .overview__dl .overview__item .item__title {
    font-size: 20px;
    font-size: 2rem;
    min-width: 136px;
  }
  #footer .footer__wrapper .copy {
    bottom: 0;
    left: auto;
    right: 0;
    -webkit-transform: unset;
            transform: unset;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.fadeIn {
  opacity: 0;
}
.fadeIn.active {
  opacity: 1;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}/*# sourceMappingURL=style.css.map */