@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media screen and (max-width: 1080px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

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

.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 0.5s linear;
  z-index: 100000;
}

.loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid rgb(248, 248, 248);
  border-left-color: #45C5C1;
  /* アニメーションを1秒かけて実行 */
  animation: spinner-rotation 1s linear infinite;
}

.wrapper {
  background-color: rgb(255, 255, 255);
  font-family: "Noto Sans JP", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  text-align: center;
  color: rgb(11, 11, 11);
}
.wrapper .services,
.wrapper .company-profile,
.wrapper .contact-us {
  padding: 5rem 0;
}
.wrapper .services__title,
.wrapper .company-profile__title,
.wrapper .contact-us__title {
  font-family: "Oswald", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 480px) {
  .wrapper .services__title,
  .wrapper .company-profile__title,
  .wrapper .contact-us__title {
    font-size: 3rem;
  }
}
.wrapper .services__title::before,
.wrapper .company-profile__title::before,
.wrapper .contact-us__title::before {
  content: "";
  position: absolute;
  border-bottom: 3px solid #45C5C1;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
}
@media screen and (max-width: 480px) {
  .wrapper .services__title::before,
  .wrapper .company-profile__title::before,
  .wrapper .contact-us__title::before {
    width: 60px;
  }
}
.wrapper .company-profile__title::before {
  border-bottom: 3px solid rgb(175, 238, 202);
}
.wrapper .footer {
  padding: 1.2rem;
  background-color: #45C5C1;
  color: rgb(248, 248, 248);
}
.wrapper .footer__text {
  font-size: 0.8rem;
}

.header, .contact-us-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
.header__logo, .contact-us-header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: auto;
  /* 初期状態ではアニメーションなし */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* アニメーションが発火するクラス */
}
.header__logo.fadeInFromBottom, .contact-us-header__logo.fadeInFromBottom {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1370px) {
  .header__logo, .contact-us-header__logo {
    width: 65%;
  }
}
@media screen and (max-width: 970px) {
  .header__logo, .contact-us-header__logo {
    width: 80%;
  }
}
.header .nav, .contact-us-header .nav {
  /* アニメーションが発火するクラス */
}
.header .nav--desktop, .contact-us-header .nav--desktop {
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 0 1.4rem 0;
  margin: 0 1.2rem;
  position: fixed;
  top: 1.2rem;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: rgb(248, 248, 248);
  border-radius: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 初期状態ではアニメーションなし */
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media screen and (max-width: 970px) {
  .header .nav--desktop, .contact-us-header .nav--desktop {
    display: none;
  }
}
.header .nav.fadeInFromTop, .contact-us-header .nav.fadeInFromTop {
  opacity: 1;
  transform: translateY(0);
}
.header .nav__list, .contact-us-header .nav__list {
  display: flex;
  padding: 0;
  list-style: none;
  width: 100%;
}
.header .nav__item, .contact-us-header .nav__item {
  font-family: "Oswald", "Roboto", "Arial", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 1.1rem 0 1.5rem;
}
.header .nav__item a, .contact-us-header .nav__item a {
  text-decoration: none;
  color: rgb(11, 11, 11);
  transition: color 0.3s;
}
.header .nav__item a:hover, .contact-us-header .nav__item a:hover {
  opacity: 60%;
}
.header .nav__item--left-align, .contact-us-header .nav__item--left-align {
  margin-right: auto;
}
.header .nav__item--contact-us a, .contact-us-header .nav__item--contact-us a {
  background-color: #45C5C1;
  border: 2px solid #45C5C1;
  /*           font-size: 1.5rem; */
  border-radius: 30px;
  padding: 0.2rem 2rem;
  color: rgb(248, 248, 248);
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.header .nav__item--contact-us a:hover, .contact-us-header .nav__item--contact-us a:hover {
  color: #45C5C1;
  background-color: rgb(248, 248, 248);
  opacity: 100%;
}

.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  width: 55px;
  height: 55px;
  border: none;
  background: rgb(248, 248, 248);
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  /* 初期状態ではアニメーションなし */
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  /* アニメーションが発火するクラス */
}
@media screen and (min-width: 970px) {
  .hamburger-overlay {
    display: none;
  }
}
.hamburger-overlay.fadeInFromTop {
  opacity: 1;
  transform: translateY(0);
}
.hamburger-overlay__line {
  position: absolute;
  left: 13px;
  width: 30px;
  height: 1px;
  background-color: rgb(11, 11, 11);
  transition: all 0.6s;
}
.hamburger-overlay__line:nth-of-type(1) {
  top: 19px;
}
.hamburger-overlay__line:nth-of-type(2) {
  top: 27px;
}
.hamburger-overlay__line:nth-of-type(3) {
  top: 34px;
}
.hamburger-overlay.active .hamburger-overlay__line {
  background-color: rgb(11, 11, 11);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}

.nav--mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(248, 248, 248);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
.nav--mobile.active {
  visibility: visible;
  opacity: 1;
}
.nav--mobile .nav__content--mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.nav--mobile .nav__list--mobile {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav--mobile .nav__item--mobile {
  opacity: 0;
  transform: translateY(20px);
  padding: 1.5rem;
  transition: opacity 0.6s, transform 0.6s;
}
.nav--mobile.active .nav__item--mobile {
  opacity: 1;
  transform: translateY(0);
}
.nav--mobile.active .nav__item--mobile:nth-child(1) {
  transition-delay: 0.1s;
}
.nav--mobile.active .nav__item--mobile:nth-child(2) {
  transition-delay: 0.2s;
}
.nav--mobile.active .nav__item--mobile:nth-child(3) {
  transition-delay: 0.3s;
}
.nav--mobile.active .nav__item--mobile:nth-child(4) {
  transition-delay: 0.4s;
}

.nav__link--mobile {
  display: inline-block;
  color: rgb(11, 11, 11);
  font-size: 24px;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  text-decoration: none;
  transition: color 0.3s;
  font-family: "Oswald", "Roboto", "Arial", sans-serif;
}
.nav__link--mobile:hover {
  color: #45C5C1;
}

.services__item {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 250px;
}
@media screen and (max-width: 970px) {
  .services__item {
    margin-top: 180px;
  }
}
@media screen and (max-width: 480px) {
  .services__item {
    margin-top: 120px;
  }
}
.services__item--building-maintenance {
  margin-top: 0px;
}
.services__item--biofuel::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -5rem;
  width: 55%;
  height: 79%;
  background-color: rgb(248, 248, 248);
}
@media screen and (max-width: 970px) {
  .services__item--biofuel::before {
    width: 70%;
  }
}
.services__item--biofuel.service_gray-animate::before {
  animation: moveRight 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.services__info {
  background-color: rgb(248, 248, 248);
  border-top: 3px solid #45C5C1;
  line-height: 1.5;
  text-align: left;
  padding: 6rem 7rem;
  width: 43%;
}
@media screen and (max-width: 1080px) {
  .services__info {
    padding: 4rem 5rem;
  }
}
@media screen and (max-width: 970px) {
  .services__info {
    padding: 10% 10%;
    width: 80%;
  }
}
.services__info--biofuel {
  background-color: rgb(255, 255, 255);
  border-bottom: 3px solid #45C5C1;
  border-top: none;
  line-height: 1.5;
  padding: 6rem 7rem;
  top: 200px;
  right: 5%;
  width: 43%;
  height: auto;
  z-index: 1000;
  position: absolute;
}
@media screen and (max-width: 1080px) {
  .services__info--biofuel {
    padding: 4rem 5rem;
  }
}
@media screen and (max-width: 970px) {
  .services__info--biofuel {
    padding: 10% 10%;
    width: 70%;
  }
}
.services__slide-animation {
  position: absolute;
  top: 200px;
  right: 0;
  width: 53%;
  height: auto;
  z-index: 100;
}
@media screen and (max-width: 1370px) {
  .services__slide-animation {
    top: 320px;
    width: 55%;
  }
}
@media screen and (max-width: 1080px) {
  .services__slide-animation {
    top: 310px;
    width: 60%;
  }
}
@media screen and (max-width: 970px) {
  .services__slide-animation {
    position: relative;
    width: 100%;
    top: 0;
  }
}
.services__img {
  position: relative;
}
.services__number {
  font-size: 2.25rem;
  font-family: "Oswald", "Roboto", "Arial", sans-serif;
  padding-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  /*     color: $primary-color; */
}
.services__number::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2.25rem;
  background-color: #45C5C1;
  position: absolute;
  top: 10px;
  right: -8px;
}
.services__name {
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 970px) {
  .services__name {
    font-size: 1.8rem;
  }
}
.services__description {
  font-size: 1.375rem;
  font-weight: bold;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 970px) {
  .services__description {
    font-size: 1.2rem;
  }
}
.services__detail {
  font-size: 1rem;
  padding-bottom: 1.5rem;
}
.services__detail small {
  font-size: 0.8rem;
}
.services__food-link {
  color: rgb(11, 11, 11);
  border-bottom: 1px solid rgb(11, 11, 11);
  text-decoration: none;
}
.services__food-link:hover {
  border-bottom: none;
}
.services__animation {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  padding-top: 40px;
}
@media screen and (max-width: 970px) {
  .services__animation {
    padding-top: 0px;
    margin-top: -60px;
  }
}
@media screen and (max-width: 970px) {
  .services__animation--biofuel {
    margin-top: 360px;
  }
}
.services__loop-text {
  display: inline-block;
  font-size: 14rem;
  font-family: "Oswald", "Roboto", "Arial", sans-serif;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 3rem;
  white-space: nowrap;
  text-shadow: 1px 1px 0px #45C5C1, -1px -1px 0px #45C5C1, 1px -1px 0px #45C5C1, -1px 1px 0px #45C5C1;
  animation: scrollText 16s linear infinite;
}
@media screen and (max-width: 970px) {
  .services__loop-text {
    font-size: 12rem;
  }
}

.lum-gallery-button {
  display: none !important;
}

.lum-lightbox-inner img {
  max-width: 1200px !important;
}

.lum-lightbox {
  z-index: 10000;
}

.service_img-animation {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  height: auto;
  z-index: 100;
}

.service_img-animation::before {
  animation: service_img-animation 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.wrapper .company-profile {
  background-color: #45C5C1;
  color: rgb(248, 248, 248);
}
@media screen and (max-width: 970px) {
  .wrapper .company-profile {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.wrapper .company-profile__list {
  max-width: 800px;
  text-align: left;
  padding: 0;
  margin: 0 auto;
}
.wrapper .company-profile__item {
  border-bottom: 1px solid rgb(217, 217, 217);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  display: flex;
  line-height: 1.5rem;
}
@media screen and (max-width: 480px) {
  .wrapper .company-profile__item {
    display: block;
  }
}
.wrapper .company-profile__label, .wrapper .company-profile__value {
  display: inline-block;
}
.wrapper .company-profile__label {
  width: 20%;
  font-weight: bold;
  margin: 0.5rem 1rem 0.5rem 0;
}
@media screen and (max-width: 480px) {
  .wrapper .company-profile__label {
    width: 100%;
  }
}
.wrapper .company-profile__value {
  width: 77%;
  font-size: 0.875rem;
  margin: 0.5rem 0;
}
@media screen and (max-width: 480px) {
  .wrapper .company-profile__value {
    width: 100%;
  }
}

.contact-us {
  background-color: rgb(248, 248, 248);
}
@media screen and (max-width: 970px) {
  .contact-us {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
}
.contact-us__form {
  max-width: 700px;
  margin: 0 auto;
}
.contact-us__form-group {
  margin-bottom: 1.5rem;
}
.contact-us label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-align: left;
  display: flex;
  align-items: center;
}
.contact-us__required {
  font-size: 0.7rem;
  background-color: rgb(217, 217, 217);
  border-radius: 3px;
  padding: 3px 4px 4px 4px;
  margin-left: 0.4rem;
}
.contact-us__input, .contact-us__textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  font-size: 1rem;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 5px;
  box-sizing: border-box;
  text-align: left;
  background-color: rgb(255, 255, 255);
}
.contact-us__textarea {
  resize: vertical; /* 縦方向のリサイズを可能にする */
}
.contact-us__submit-button {
  font-size: 1.3rem;
  font-family: "Oswald", "Roboto", "Arial", sans-serif;
  background: #e0e0e0;
  border-radius: 40px;
  border: 2px solid #e0e0e0;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  width: 320px;
  padding: 0.4rem 1rem;
  text-decoration: none;
  color: rgb(11, 11, 11);
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  margin-top: 3.5rem;
}
.contact-us__submit-button::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  text-decoration: none;
  border-top: solid 2px rgb(11, 11, 11);
  border-right: solid 2px rgb(11, 11, 11);
  transform: translateY(-50%) rotate(45deg);
}
.contact-us__submit-button:hover {
  background: #45C5C1;
  color: rgb(255, 255, 255);
  border: 2px solid #45C5C1;
}
.contact-us__submit-button:hover:after {
  right: 1.4rem;
  border-top: solid 2px rgb(255, 255, 255);
  border-right: solid 2px rgb(255, 255, 255);
}

.wrapper .contact-us-form {
  padding: 9rem 0 5rem 0;
}

.contact-us-header {
  height: auto;
}
.contact-us-header .nav--desktop {
  opacity: 1;
  top: 2.3rem;
}

.contact-us-header .hamburger-overlay {
  opacity: 1;
  top: 2.3rem;
}

.contact-us__text {
  font-size: 1.3rem;
  padding-bottom: 3rem;
}

.contact-us__back-button {
  font-family: "Oswald", "Roboto", "Arial", sans-serif;
  font-size: 1.1rem;
  border-bottom: 1px solid #000;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 1rem;
  background-color: transparent;
  transition: 0.3s ease-in-out;
}

.contact-us__back-button:hover {
  border-bottom: 1px solid transparent;
}

.contact-us__thanks {
  line-height: 1.5;
}

@keyframes spinner-rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes service_img-animation {
  100% {
    transform: translateX(100%);
  }
}
@keyframes moveRight {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes scrollText {
  0% {
    transform: translateX(0); /* 初期位置 */
  }
  100% {
    transform: translateX(-100%); /* 左端に終了 */
  }
}
@keyframes fadeInFromBottom-page {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 下から上に移動 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
  }
}
.fadeInFromBottom-page {
  opacity: 0; /* 初期状態で透明 */
  visibility: hidden; /* 初期状態で非表示 */
}

.fadeInFromBottom-page.show {
  animation: fadeInFromBottom-page 0.7s ease-out forwards; /* アニメーションの追加 */
  visibility: visible;
}/*# sourceMappingURL=style.css.map */