@charset "UTF-8";
/* CSS Document */
/*
 * Top Page Styles
 * ==========================================
 * This file imports styles for top/front page
 *
 * Structure:
 * 1. Config - Variables and Mixins
 * 2. Base - Global styles and utilities
 * 3. Sections - Common reset, Front page
 */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-weight: 500;
  scroll-padding-top: 120px;
}
html body.hidden {
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  html {
    scroll-padding-top: 60px;
  }
}

.fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
  transition-delay: var(--delay, 0s);
}
.fadein.is-active {
  opacity: 1;
}
.fadein.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transition-delay: var(--delay, 0s);
}
.fadein.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fadein-before {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
}
.fadein-before.is-active {
  opacity: 1;
}
.fadein-before.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transition-delay: var(--delay, 0s);
}
.fadein-before.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 45px 0;
}

.btn-area .btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 43px;
  background-color: #44ad96;
  border: solid 1px #44ad96;
  border-radius: 100px;
}
.btn-area .btn-text .btn-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-area .btn-text .btn-copy span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.47;
  letter-spacing: 0.1em;
  text-align: right;
  color: #fff;
  padding-bottom: 2px;
}
.btn-area .btn-text .btn-copy .img {
  display: inline-block;
  background: url(../images/top/right_w.png) no-repeat;
  background-size: contain;
  width: 11.5px;
  height: 11.5px;
}

.more-area {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
}
.more-area .more-btn {
  display: block;
  width: 37.5px;
  height: 37.5px;
  background-color: #44ad96;
  border: solid 1px #44ad96;
  border-radius: 50%;
  position: relative;
}
.more-area .more-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 12.5px;
  height: 12.5px;
  background: url(../images/top/right_w.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.more-area.sub .more-btn {
  background-color: #EDBC1A;
  border: solid 1px #EDBC1A;
}
.more-area.white .more-btn {
  background-color: #fff;
  border: solid 1px #44AD96;
}
.more-area.white .more-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 12.5px;
  height: 12.5px;
  background: url(../images/top/right_g.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.sec-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec-title__en {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #44ad96;
}
.sec-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  color: #121212;
}
.sec-title__ja .small {
  font-size: 12px;
}
.sec-title.matrix .bg-wrap {
  display: block;
  overflow: hidden;
  opacity: 0;
}
.sec-title.matrix .bg-wrap + .bg-wrap {
  margin-top: 5px;
}
.sec-title.matrix .bg-wrap .inn {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-title.matrix .bg-wrap .inn.large {
  font-size: 25px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: 2.5px;
  text-align: center;
  color: #66ad47;
}
.sec-title.matrix .bg-wrap .inn.small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 1.56px;
  text-align: center;
  color: #1e3c0d;
}
.sec-title.matrix.is-animated .bg-wrap {
  opacity: 1;
}
.sec-title.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

@media only screen and (min-width: 1025px) {
  section {
    padding: 90px 0;
  }
  .btn-area .btn-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 56px;
    transition: all 0.4s ease;
  }
  .btn-area .btn-text .btn-copy {
    gap: 20px;
    transition: all 0.4s ease;
  }
  .btn-area .btn-text .btn-copy span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 0.8px;
    text-align: right;
    color: #fff;
    padding-bottom: 2px;
    padding-left: 20px;
    transition: all 0.4s ease;
  }
  .btn-area .btn-text .btn-copy .img {
    width: 15px;
    height: 15px;
    transition: all 0.4s ease;
  }
  .btn-area .btn-text:hover {
    cursor: pointer;
    background-color: #fff;
  }
  .btn-area .btn-text:hover .btn-copy span {
    color: #44AD96;
  }
  .btn-area .btn-text:hover .btn-copy .img {
    width: 15px;
    height: 15px;
    background: url(../images/top/right_g.png) no-repeat;
    background-size: contain;
  }
  .more-area {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .more-area .more-btn {
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
  }
  .more-area .more-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 12.5px;
    height: 12.5px;
    background: url(../images/top/right_w.png) no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
  }
  .more-area.sub .more-btn {
    background-color: #EDBC1A;
    border: solid 1px #EDBC1A;
    transition: all 0.4s ease;
  }
  .sec-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .sec-title__en {
    font-family: "Poppins", sans-serif;
    font-size: 47px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 65px;
    letter-spacing: 2.35px;
    text-align: center;
    color: #44ad96;
    margin-bottom: 10px;
  }
  .sec-title__ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 1.6px;
    text-align: center;
    color: #121212;
  }
  .sec-title .small {
    font-size: 16px;
  }
  .sp {
    display: none !important;
  }
}
/*PC*/
#header *,
#header ::before,
#header ::after,
#footer *,
#footer ::before,
#footer ::after,
#top *,
#top ::before,
#top ::after,
#page-work *,
#page-work ::before,
#page-work ::after,
#page-staff *,
#page-staff ::before,
#page-staff ::after {
  box-sizing: border-box;
}
#header h1,
#header h2,
#header h3,
#header h4,
#header h5,
#header h6,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6,
#top h1,
#top h2,
#top h3,
#top h4,
#top h5,
#top h6,
#page-work h1,
#page-work h2,
#page-work h3,
#page-work h4,
#page-work h5,
#page-work h6,
#page-staff h1,
#page-staff h2,
#page-staff h3,
#page-staff h4,
#page-staff h5,
#page-staff h6 {
  font-size: inherit;
  font-weight: inherit;
}
#header ul,
#header ol,
#footer ul,
#footer ol,
#top ul,
#top ol,
#page-work ul,
#page-work ol,
#page-staff ul,
#page-staff ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header li,
#footer li,
#top li,
#page-work li,
#page-staff li {
  list-style: none;
}
#header .sp,
#footer .sp,
#top .sp,
#page-work .sp,
#page-staff .sp {
  display: none;
}
#header img,
#footer img,
#top img,
#page-work img,
#page-staff img {
  vertical-align: bottom;
}
#header button,
#footer button,
#top button,
#page-work button,
#page-staff button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
#header button,
#header [type=button],
#header [type=reset],
#header [type=submit],
#footer button,
#footer [type=button],
#footer [type=reset],
#footer [type=submit],
#top button,
#top [type=button],
#top [type=reset],
#top [type=submit],
#page-work button,
#page-work [type=button],
#page-work [type=reset],
#page-work [type=submit],
#page-staff button,
#page-staff [type=button],
#page-staff [type=reset],
#page-staff [type=submit] {
  cursor: pointer;
}
#header button:disabled,
#header [type=button]:disabled,
#header [type=reset]:disabled,
#header [type=submit]:disabled,
#footer button:disabled,
#footer [type=button]:disabled,
#footer [type=reset]:disabled,
#footer [type=submit]:disabled,
#top button:disabled,
#top [type=button]:disabled,
#top [type=reset]:disabled,
#top [type=submit]:disabled,
#page-work button:disabled,
#page-work [type=button]:disabled,
#page-work [type=reset]:disabled,
#page-work [type=submit]:disabled,
#page-staff button:disabled,
#page-staff [type=button]:disabled,
#page-staff [type=reset]:disabled,
#page-staff [type=submit]:disabled {
  cursor: default;
}
@media screen and (max-width: 1024px) {
  #header .sp,
  #footer .sp,
  #top .sp,
  #page-work .sp,
  #page-staff .sp {
    display: block;
  }
}

/*トップページ*/
/*SMP*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#top .top__wrapper {
  position: relative;
}
#top .top__wrapper .mv-copy {
  width: 340px;
  margin: 0 auto;
  position: fixed;
  top: 422px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}
#top .top__wrapper .mv-copy__text .inn {
  text-shadow: 0 0 20px rgba(0, 93, 73, 0.55);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  letter-spacing: 0.1em;
  z-index: 1;
}
#top .top__wrapper .mv-copy.scrolled .mv-copy__text .inn {
  color: #44ad96;
  text-shadow: none;
}
#top .top__wrapper .mv {
  margin-bottom: 0;
  padding: 0 0 0;
  height: calc(100vh - 120px);
  max-height: 533px;
  position: relative;
}
#top .top__wrapper .mv__wrapper {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
#top .top__wrapper .mv__wrapper .mv-animate {
  width: 100%;
  height: 100%;
  z-index: -10;
}
#top .top__wrapper .mv__wrapper .mv-animate .mv-img.slideBox img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
#top .top__wrapper .mv .banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 191px;
  height: 77px;
  padding: 11px 22px 11px 23px;
  border-radius: 10px 0 0 10px;
  background-image: linear-gradient(112deg, #ede155 3%, #6bccdb 100%);
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 10;
}
#top .top__wrapper .mv .banner span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 17px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}
#top .top__wrapper .mv .banner h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 31px;
  padding: 0px;
  border-radius: 15px;
  background-color: #fff;
}
#top .top__wrapper .mv .banner h2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: 0.08em;
  text-align: center;
  color: #44ad96;
}
#top .top__wrapper .mv:before {
  display: none;
}
#top .top__wrapper .topic {
  width: 100%;
  margin-top: 20px;
  padding: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
}
#top .top__wrapper .topic.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#top .top__wrapper .topic__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  min-width: 315px;
  margin: 0 auto;
}
#top .top__wrapper .topic__wrapper .sec-title {
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #66ad47;
  margin-bottom: 10px;
}
#top .top__wrapper .topic__wrapper .topic-area {
  width: 100%;
}
#top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .cat {
  display: inline-block;
  height: 19px;
  line-height: 15px;
  padding: 0 10px;
  border-radius: 100px;
  background-color: #44ad96;
  margin-bottom: 5px;
}
#top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .cat span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}
#top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a time {
  height: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.05em;
  text-align: left;
  color: #5c5c5c;
  margin-left: 15px;
}
#top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .topic-title {
  line-height: 15px;
}
#top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .topic-title span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  color: #121212;
  transition: all 0.3s ease;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
#top .top__wrapper .about {
  overflow: hidden;
  position: relative;
  padding-bottom: 170px;
  max-width: 400px;
  margin: 0 auto;
}
#top .top__wrapper .about__wrapper {
  width: 340px;
  margin: 0 auto;
  position: relative;
}
#top .top__wrapper .about__wrapper .sec-title {
  align-items: flex-start;
  margin-bottom: 20px;
  height: 59px;
}
#top .top__wrapper .about__wrapper .sec-title span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 2px;
  text-align: left;
  color: #44ad96;
}
#top .top__wrapper .about__wrapper .inner {
  position: relative;
}
#top .top__wrapper .about__wrapper .inner .sec-copy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: left;
  color: #343434;
  margin-bottom: 10px;
}
#top .top__wrapper .about__wrapper .inner .sec-copy__text:last-child {
  margin-bottom: 0;
}
#top .top__wrapper .about__wrapper .inner::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/top/top_6.jpg) no-repeat;
  background-size: cover;
  width: 98.5px;
  height: 66px;
  bottom: -258px;
  right: 61px;
  z-index: 3;
}
#top .top__wrapper .about::before, #top .top__wrapper .about::after {
  content: "";
  display: block;
  position: absolute;
}
#top .top__wrapper .about::before {
  background: url(../images/top/top_3.jpg) no-repeat;
  background-size: cover;
  width: 178px;
  height: 127.45px;
  bottom: 0px;
  left: 0px;
}
#top .top__wrapper .about::after {
  background: url(../images/top/top_2.jpg) no-repeat;
  background-size: cover;
  width: 125px;
  height: 88.5px;
  bottom: 60px;
  right: 25px;
  z-index: -1;
}
#top .scroll-text {
  margin-bottom: 40px;
}
#top .scroll-text.scroll-infinity .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
#top .scroll-text.scroll-infinity .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding-top: 5px;
}
#top .scroll-text.scroll-infinity .scroll-infinity__list--left {
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
}
#top .scroll-text.scroll-infinity .scroll-infinity__item {
  width: 100%;
  margin-right: 20px;
}
#top .scroll-text.scroll-infinity .scroll-infinity__item span {
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  animation: scrollRight 60s linear infinite;
  background: linear-gradient(to top, rgba(237, 225, 85, 0.1), rgba(107, 204, 219, 0.3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
#top .scroll-text.scroll-infinity .scroll-infinity__item > img {
  width: 100%;
  height: 117px;
  object-fit: cover;
}
#top .scroll-text p {
  height: 40px;
}
#top .scroll-text p {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 40px;
}
#top .business {
  background-color: #f7f7f7;
}
#top .business .inner .sec-title {
  margin-bottom: 30px;
}
#top .business .inner .exp {
  margin-bottom: 30px;
}
#top .business .inner .exp p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: center;
  color: #343434;
}
#top .business__wrapper {
  width: 340px;
  margin: 0 auto;
}
#top .business__wrapper .list {
  width: 245px;
  margin: 0 auto;
}
#top .business__wrapper .list .item {
  margin-bottom: 30px;
}
#top .business__wrapper .list .item:nth-child(1) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 0s;
}
#top .business__wrapper .list .item:nth-child(2) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 0.2s;
}
#top .business__wrapper .list .item:nth-child(3) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 0.4s;
}
#top .business__wrapper .list .item:nth-child(4) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 0.6s;
}
#top .business__wrapper .list .item:nth-child(5) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 0.8s;
}
#top .business__wrapper .list .item:nth-child(6) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 1s;
}
#top .business__wrapper .list .item:nth-child(7) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 1.2s;
}
#top .business__wrapper .list .item:nth-child(8) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 1.4s;
}
#top .business__wrapper .list .item:nth-child(9) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 1.6s;
}
#top .business__wrapper .list .item:nth-child(10) {
  /* (要素番号 - 1) × 0.2秒 の計算 */
  /* 1番目: 0s, 2番目: 0.2s, 3番目: 0.4s ... となります */
  --delay: 1.8s;
}
#top .business__wrapper .list .item__detail .img {
  width: 100%;
  height: 183.75px;
}
#top .business__wrapper .list .item__detail .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
#top .business__wrapper .list .item__detail .contents {
  position: relative;
}
#top .business__wrapper .list .item__detail .contents .copy {
  width: 190px;
  height: 35px;
  padding: 17px 10px 0px 0px;
  background-color: #f7f7f7;
  position: absolute;
  top: -35px;
  z-index: 10;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 1.4px;
  text-align: left;
  color: #121212;
}
#top .business__wrapper .list .item__detail .contents .text {
  padding: 15px 0 0 0;
}
#top .business__wrapper .list .item__detail .contents .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#top .business__wrapper .list .item:last-child {
  margin-bottom: 0;
}
#top .staff {
  padding: 45px 0;
  position: relative;
  background: linear-gradient(to bottom, #eee 0%, #eee 38%, #fff 38%, #fff 100%);
}
#top .staff__wrapper {
  width: 305px;
  margin: 0 auto;
}
#top .staff__wrapper .inner .sec-title {
  text-align: center;
  margin-bottom: 20px;
}
#top .staff__wrapper .inner .title-exp {
  margin-bottom: 30px;
}
#top .staff__wrapper .inner .title-exp p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: center;
  color: #343434;
}
#top .staff__wrapper .interview {
  width: 193px;
  margin-left: 40px;
}
#top .staff__wrapper .interview__list {
  display: flex;
}
#top .staff__wrapper .interview__item {
  width: 193px;
  flex-shrink: 0;
  transform: translateY(0);
}
#top .staff__wrapper .interview__item:nth-child(1) {
  --delay: 0s;
}
#top .staff__wrapper .interview__item:nth-child(2) {
  --delay: 0.2s;
}
#top .staff__wrapper .interview__item:nth-child(3) {
  --delay: 0.4s;
}
#top .staff__wrapper .interview__item:nth-child(4) {
  --delay: 0.6s;
}
#top .staff__wrapper .interview__item:nth-child(5) {
  --delay: 0.8s;
}
#top .staff__wrapper .interview__item:nth-child(6) {
  --delay: 1s;
}
#top .staff__wrapper .interview__item:nth-child(7) {
  --delay: 1.2s;
}
#top .staff__wrapper .interview__item:nth-child(8) {
  --delay: 1.4s;
}
#top .staff__wrapper .interview__item:nth-child(9) {
  --delay: 1.6s;
}
#top .staff__wrapper .interview__item:nth-child(10) {
  --delay: 1.8s;
}
#top .staff__wrapper .interview__item a {
  display: block;
  width: 193px;
}
#top .staff__wrapper .interview__item a .inner {
  position: relative;
}
#top .staff__wrapper .interview__item a .inner .top {
  position: relative;
  margin-bottom: 12.5px;
}
#top .staff__wrapper .interview__item a .inner .top .num {
  position: absolute;
  top: 10px;
  right: 50px;
  transform: translateX(-50%);
}
#top .staff__wrapper .interview__item a .inner .top .num__text {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: 0.6px;
  text-align: left;
  color: #44ad96;
  writing-mode: vertical-lr;
}
#top .staff__wrapper .interview__item a .inner .top .img {
  width: 184px;
  height: 184px;
}
#top .staff__wrapper .interview__item a .inner .bottom .message {
  position: relative;
  z-index: 5;
  margin-bottom: 10px;
}
#top .staff__wrapper .interview__item a .inner .bottom .message span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: 0.84px;
  text-align: left;
  color: #fff;
}
#top .staff__wrapper .interview__item a .inner .bottom .affi p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.6px;
  text-align: left;
  color: #fff;
}
#top .staff__wrapper .interview__item a .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 37.5px;
  height: 37.5px;
  background: url(../images/top/btn_white.png) no-repeat;
  background-size: contain;
  bottom: 7px;
  right: 15px;
}
#top .staff__wrapper .interview__item:first-child a .inner .top .img {
  background: url(../images/top/top_7_wh.png) no-repeat;
  background-size: contain;
}
#top .staff__wrapper .interview__item:nth-child(2) a .inner .top .img {
  background: url(../images/top/top_9_wh.png) no-repeat;
  background-size: contain;
}
#top .staff__wrapper .interview__item:nth-child(3) a .inner .top .img {
  background: url(../images/top/top_8_wh.png) no-repeat;
  background-size: contain;
}
#top .staff__wrapper .interview .swiper-wrapper {
  transition-property: transform !important;
}
#top .staff__wrapper .swiper-scrollbar {
  position: relative !important;
  width: 245px;
  height: 6px;
  margin: 30px 0 30px 40px;
  background-color: #d6d6d6;
  border-radius: 100px;
}
#top .staff__wrapper .swiper-scrollbar .swiper-scrollbar-drag {
  height: 6px;
  background-color: #44AD96;
  border-radius: 100px;
}
#top .staff .talk {
  position: relative;
  z-index: 20;
  width: 283.5px;
  margin: 0 auto;
}
#top .staff .talk ul {
  width: 100%;
  display: grid;
  gap: 20px;
}
#top .staff .talk ul li {
  width: 100%;
}
#top .staff .talk ul li:nth-child(1) {
  --delay: 0s;
}
#top .staff .talk ul li:nth-child(2) {
  --delay: 0.2s;
}
#top .staff .talk ul li:nth-child(3) {
  --delay: 0.4s;
}
#top .staff .talk ul li:nth-child(4) {
  --delay: 0.6s;
}
#top .staff .talk ul li:nth-child(5) {
  --delay: 0.8s;
}
#top .staff .talk ul li:nth-child(6) {
  --delay: 1s;
}
#top .staff .talk ul li:nth-child(7) {
  --delay: 1.2s;
}
#top .staff .talk ul li:nth-child(8) {
  --delay: 1.4s;
}
#top .staff .talk ul li:nth-child(9) {
  --delay: 1.6s;
}
#top .staff .talk ul li:nth-child(10) {
  --delay: 1.8s;
}
#top .staff .talk ul li a {
  display: block;
  position: relative;
}
#top .staff .talk ul li a img {
  width: 100%;
  height: 182.75px;
  position: absolute;
  top: -10px;
}
#top .staff .talk ul li a .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 262.5px;
  height: 161.8px;
  margin: 10px auto 0;
  border: solid 1px #fff;
  position: relative;
  z-index: 30;
  text-align: center;
}
#top .staff .talk ul li a .inner img {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 47.5px;
  height: 47.5px;
}
#top .staff .talk ul li a .inner h3 {
  display: block;
  width: 183px;
  height: 45px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.32;
  letter-spacing: 0.7px;
  text-align: center;
  color: #121212;
  padding-top: 4px;
}
#top .staff .talk ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 182.75px;
  background-color: rgba(0, 90, 70, 0.16);
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 15;
}
#top .staff::before {
  content: "";
  display: block;
  width: 94%;
  height: 60%;
  border-radius: 30px 0 0 30px;
  background-color: #63baa7;
  position: absolute;
  top: 278px;
  right: 0;
}
#top .staff .more-area {
  margin-top: 30px;
}
#top .growth {
  position: relative;
  background-image: linear-gradient(to bottom, rgba(246, 247, 242, 0), #f6f7f2);
}
#top .growth__wrapper {
  width: 335px;
  margin: 0 auto;
  position: relative;
}
#top .growth__wrapper .sec-title {
  margin-bottom: 245px;
}
#top .growth__wrapper .sec-title.matrix .bg-wrap .inn.large {
  color: #278F49;
}
#top .growth__wrapper .content {
  width: 265px;
  margin: 0 auto 131px;
}
#top .growth__wrapper .content .text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: center;
  color: #343434;
  margin-bottom: 20px;
}
#top .growth__wrapper .content .btn-area {
  width: 192.5px;
  margin: 0 auto;
}
#top .growth .img-area {
  width: 100%;
  max-width: 400px;
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
}
#top .growth .img-area img {
  width: 100%;
  height: 195px;
  object-fit: cover;
}
#top .growth .list {
  width: 275px;
  margin: 0 auto;
  position: relative;
}
#top .growth .list .item {
  margin-bottom: 30px;
}
#top .growth .list .item__detail .img {
  width: 100%;
  height: 170px;
  margin-bottom: 15px;
}
#top .growth .list .item__detail .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
#top .growth .list .item__detail .contents {
  position: relative;
}
#top .growth .list .item__detail .contents .copy {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: -190px;
  right: 27px;
  height: auto;
}
#top .growth .list .item__detail .contents .copy span {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: 4px;
  text-align: left;
  color: #121212;
  writing-mode: vertical-lr;
  padding: 10px 0;
  position: relative;
  z-index: 15;
}
#top .growth .list .item__detail .contents .copy span:before {
  content: "";
  display: block;
  width: 36px;
  height: 140px;
  background-color: #fff;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-48%);
}
#top .growth .list .item__detail .contents .text {
  width: 217px;
}
#top .growth .list .item__detail .contents .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#top .growth .list .item__detail .contents .more-area {
  top: 50%;
  transform: translateY(-50%);
}
#top .growth .list .item:last-child {
  margin-bottom: 0;
}
#top .growth .list .item:last-child .contents .copy span:last-child {
  margin-top: 25px;
  margin-right: 20px;
}
#top .growth .list .item:last-child .contents .copy span:before {
  height: 120px;
}
#top .growth .list:before {
  content: "";
  display: block;
  width: 310px;
  height: 210px;
  background: url(../images/top/map.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -175px;
  right: -110px;
  z-index: -1;
}
#top .news {
  position: relative;
}
#top .news__wrapper {
  width: 348.5px;
  margin: 0 auto;
}
#top .news__wrapper .inner .sec-title {
  margin-bottom: 25px;
  text-align: center;
}
#top .news__wrapper .inner .sec-title__en {
  margin: 0 auto;
}
#top .news__wrapper .inner .sec-title__en span {
  color: #99c267;
  letter-spacing: 0.1em;
}
#top .news__wrapper .inner .sec-title__ja {
  margin: 0 auto;
}
#top .news__wrapper .inner .exp {
  margin-bottom: 30px;
}
#top .news__wrapper .inner .exp p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: center;
  color: #343434;
}
#top .news__wrapper .inner .btn-area.pc {
  display: none;
}
#top .news__wrapper .inner .btn-area {
  display: none;
}
#top .news__wrapper .contents {
  width: 100%;
}
#top .news__wrapper .contents .news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 25px;
}
#top .news__wrapper .contents .news-list .news-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #C3C3C3;
}
#top .news__wrapper .contents .news-list .news-item a {
  display: flex;
}
#top .news__wrapper .contents .news-list .news-item a .thumbnail {
  width: 94px;
  height: 65px;
  overflow: hidden;
  margin-right: 15px;
}
#top .news__wrapper .contents .news-list .news-item a .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
#top .news__wrapper .contents .news-list .news-item a .detail {
  width: 240px;
  display: flex;
  flex-direction: column;
  padding: 2px 0 2.5px;
  position: relative;
}
#top .news__wrapper .contents .news-list .news-item a .detail .top .news-title {
  width: 215px;
}
#top .news__wrapper .contents .news-list .news-item a .detail .top .news-title span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.58;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
  position: relative;
  overflow: hidden;
  border-bottom: solid 1px transparent;
  transition: border-bottom 0.3s ease;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}
#top .news__wrapper .contents .news-list .news-item a .detail .bottom {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
#top .news__wrapper .contents .news-list .news-item a .detail .bottom time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.18;
  letter-spacing: 1.32px;
  text-align: left;
  color: #8e8e8e;
  margin-right: 20px;
}
#top .news__wrapper .contents .news-list .news-item a .detail .bottom .cat {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  height: 19px;
  border-radius: 100px;
  background-color: #44ad96;
  padding: 0 5px;
  line-height: 18px;
}
#top .news__wrapper .contents .news-list .news-item a .detail::before {
  content: "";
  display: block;
  width: 12.5px;
  height: 12.5px;
  background: url(../images/top/right_g.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}
#top .news__wrapper .contents .news-list .news-item:last-child {
  margin-bottom: 0;
}
#top .news__wrapper .contents .btn-area.sp {
  display: block;
}
#top .news__wrapper .contents .btn-area .btn-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
#top .news__wrapper .contents .btn-area .btn-icon .icon {
  width: 37.5px;
  height: 37.5px;
}
#top .news__wrapper .contents .btn-area .btn-icon .text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.67;
  letter-spacing: 1.35px;
  text-align: left;
  color: #121212;
}
#top .company {
  padding-top: 0;
}
#top .company .sec-title {
  margin-bottom: 20px;
}
#top .company__wrapper {
  width: 340px;
  margin: 0 auto;
}
#top .company__wrapper .exp {
  margin-bottom: 30px;
}
#top .company__wrapper .exp p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: center;
  color: #343434;
}
#top .company__wrapper .list {
  width: 315px;
  margin: 0 auto;
  position: relative;
}
#top .company__wrapper .list .item {
  margin-bottom: 30px;
}
#top .company__wrapper .list .item:nth-child(1) {
  --delay: 0s;
}
#top .company__wrapper .list .item:nth-child(2) {
  --delay: 0.2s;
}
#top .company__wrapper .list .item:nth-child(3) {
  --delay: 0.4s;
}
#top .company__wrapper .list .item:nth-child(4) {
  --delay: 0.6s;
}
#top .company__wrapper .list .item:nth-child(5) {
  --delay: 0.8s;
}
#top .company__wrapper .list .item:nth-child(6) {
  --delay: 1s;
}
#top .company__wrapper .list .item:nth-child(7) {
  --delay: 1.2s;
}
#top .company__wrapper .list .item:nth-child(8) {
  --delay: 1.4s;
}
#top .company__wrapper .list .item:nth-child(9) {
  --delay: 1.6s;
}
#top .company__wrapper .list .item:nth-child(10) {
  --delay: 1.8s;
}
#top .company__wrapper .list .item__detail .img {
  width: 100%;
  height: 203.5px;
  position: relative;
}
#top .company__wrapper .list .item__detail .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
#top .company__wrapper .list .item__detail .img .inner {
  position: absolute;
  bottom: 10px;
  right: 9px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
#top .company__wrapper .list .item__detail .img .inner .copy {
  text-shadow: 0 0 15px #00392d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.94;
  letter-spacing: 0.8px;
  text-align: right;
  color: #fff;
  padding: 0 47.5px 10px 0;
}
#top .company__wrapper .list .item__detail .contents {
  position: relative;
}
#top .company__wrapper .list .item__detail .contents .text {
  padding: 15px 0 0 10px;
}
#top .company__wrapper .list .item__detail .contents .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #fff;
}
#top .company__wrapper .list .item:last-child {
  margin-bottom: 0;
}
#top .company__wrapper .list:before {
  content: "";
  display: block;
  width: 1000%;
  height: 90%;
  position: absolute;
  top: 100px;
  right: -1000px;
  background-color: #44ad96;
}
#top .recruit {
  position: relative;
}
#top .recruit__wrapper .contents .sec-title {
  width: 280px;
  margin: 0 auto 30px;
  position: relative;
  text-align: left;
}
#top .recruit__wrapper .contents .sec-title__en2 {
  font-family: "Poppins", sans-serif;
  font-size: 75px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: linear-gradient(to top, rgba(237, 225, 85, 0.1), rgba(107, 204, 219, 0.3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
#top .recruit__wrapper .contents .sec-title__ja {
  position: absolute;
  bottom: 20px;
  left: 0;
}
#top .recruit__wrapper .contents .copy {
  width: 330px;
  margin: 0 auto 30px;
  padding-left: 50px;
}
#top .recruit__wrapper .contents .copy .text-item > span > span {
  display: inline-block;
  font-size: 30px;
  color: #44AD96;
  font-family: "vdl-penletter", sans-serif;
  letter-spacing: -0.08em;
  line-height: 1.25;
}
#top .recruit__wrapper .contents .copy .text-item:last-child {
  padding: 4px 0 0 0px;
  margin-left: 50px;
}
#top .recruit__wrapper .contents.textcontents .text {
  width: 330px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#top .recruit__wrapper .contents.textcontents .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: left;
  color: #343434;
}
#top .recruit__wrapper .contents.textcontents .btn-area {
  width: 253.5px;
  margin: 0 auto 30px;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list--left {
  animation: infinity-scroll-left 10s infinite linear 0.5s both;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item {
  width: 200px;
  margin-right: 3.5px;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item:nth-child(even) {
  padding-top: 20px;
}
#top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item > img {
  width: 100%;
  height: 117px;
  object-fit: cover;
}

/*PC*/
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  #top {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  #top .top__wrapper .mv-copy {
    width: 85%;
    max-width: 1040px;
    margin: 0 auto;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    pointer-events: none;
  }
  #top .top__wrapper .mv-copy__text {
    font-size: 36px;
    margin-bottom: 32px;
  }
  #top .top__wrapper .mv-copy__text .inn {
    text-shadow: 0 0 20px rgba(0, 93, 73, 0.55);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 50px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 5px;
    text-align: left;
    color: #fff;
  }
  #top .top__wrapper .mv {
    margin-bottom: 0;
    padding-bottom: 0;
    height: calc(100vh - 120px);
    max-height: unset;
    position: relative;
    z-index: 1;
  }
  #top .top__wrapper .mv__wrapper {
    width: 96%;
    display: flex;
    justify-content: flex-end;
    position: relative;
  }
  #top .top__wrapper .mv__wrapper .mv-animate {
    width: 90%;
    height: 100%;
    max-height: 1080px;
    margin: 0 auto;
  }
  #top .top__wrapper .mv__wrapper .mv-animate .mv-img.slideBox {
    width: 100%;
    height: 100%;
  }
  #top .top__wrapper .mv__wrapper .mv-animate .mv-img.slideBox video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #top .top__wrapper .mv .banner {
    width: 290px;
    height: 140px;
    padding: 25px 30px 27px 35px;
    border-radius: 20px 0 0 20px;
    bottom: 76px;
    right: 4%;
  }
  #top .top__wrapper .mv .banner span {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.53;
    letter-spacing: 0.95px;
    text-align: left;
  }
  #top .top__wrapper .mv .banner h2 {
    height: 49px;
    border-radius: 100px;
    transition: all 0.4s ease;
  }
  #top .top__wrapper .mv .banner h2 span {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: 1.44px;
    text-align: center;
    color: #44ad96;
    transition: all 0.4s ease;
  }
  #top .top__wrapper .mv .banner:hover {
    cursor: pointer;
  }
  #top .top__wrapper .mv .banner:hover h2 {
    background-color: #44ad96;
  }
  #top .top__wrapper .mv .banner:hover h2 span {
    color: #fff;
  }
  #top .top__wrapper .topic {
    width: 687px;
    height: 55px;
    padding: 17px 50px 0 40px;
    background-color: #fff;
    margin-top: -54px;
    margin-bottom: 0px;
    position: relative;
    z-index: 10;
  }
  #top .top__wrapper .topic__wrapper {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #top .top__wrapper .topic__wrapper .topic-area {
    display: flex;
    align-items: center;
  }
  #top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
  }
  #top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .cat {
    height: 25px;
    padding: 0 10px;
    margin: 0;
    white-space: nowrap;
  }
  #top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .cat span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
  }
  #top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a time {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.7px;
    text-align: left;
    margin: 0;
  }
  #top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .topic-title {
    margin: 0;
  }
  #top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .topic-title span {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.28px;
    text-align: left;
    color: #121212;
    border-bottom: solid 1px transparent;
  }
  #top .top__wrapper .topic__wrapper .topic-area .topic-list .topic-item a .topic-title:hover span {
    border-bottom: solid 1px #4E4E4E;
  }
  #top .top__wrapper .about {
    padding: 120px 0 60px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
  }
  #top .top__wrapper .about__wrapper {
    width: 85%;
    max-width: 1165px;
    margin: 0 auto;
    position: relative;
    margin-left: 170px;
  }
  #top .top__wrapper .about__wrapper .sec-title {
    padding-top: 40px;
    height: 152px;
  }
  #top .top__wrapper .about__wrapper .sec-title span {
    font-size: 50px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 5px;
    text-align: left;
    color: #44ad96;
  }
  #top .top__wrapper .about__wrapper .inner {
    width: 571px;
    justify-self: flex-end;
  }
  #top .top__wrapper .about__wrapper .inner .sec-copy__text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #top .top__wrapper .about__wrapper:before {
    content: "";
    display: block;
    position: absolute;
    width: 187px;
    height: 174.7px;
    background: url(../images/top/top_1.jpg) no-repeat;
    background-size: contain;
    top: 0;
    right: 0;
  }
  #top .top__wrapper .about:before {
    width: 276px;
    height: 197.6px;
    left: 8%;
    bottom: 80px;
  }
  #top .top__wrapper .about:after {
    width: 170px;
    height: 120.4px;
    right: inherit;
    left: 32%;
    bottom: 250px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1100px) {
  #top .top__wrapper .about:before {
    left: 2%;
  }
  #top .top__wrapper .about:after {
    left: 28%;
  }
}
@media only screen and (min-width: 1025px) {
  #top .scroll-text {
    margin-bottom: 90px;
  }
  #top .scroll-text.scroll-infinity .scroll-infinity__item span {
    font-size: 110px;
  }
  #top .business .inner {
    width: 748px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
  }
  #top .business .inner .sec-title {
    margin-bottom: 0px;
  }
  #top .business .inner .exp {
    margin: 40px 0 0;
  }
  #top .business .inner .exp p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #top .business__wrapper {
    width: 100%;
    max-width: 1280px;
  }
  #top .business__wrapper .list {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #top .business__wrapper .list .item {
    width: 390px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  #top .business__wrapper .list .item {
    transform: scale(0.95);
  }
}
@media only screen and (min-width: 1025px) {
  #top .business__wrapper .list .item__detail .img {
    width: 100%;
    height: 292.5px;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  #top .business__wrapper .list .item__detail .contents {
    position: relative;
  }
  #top .business__wrapper .list .item__detail .contents .copy {
    width: 277px;
    height: 62px;
    padding: 25px 10px 0px;
    top: -61px;
    left: -1px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 1.6px;
    text-align: left;
    color: #121212;
  }
  #top .business__wrapper .list .item__detail .contents .text {
    padding: 30px 0 0 10px;
  }
  #top .business__wrapper .list .item__detail .contents .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #top .business__wrapper .list .item:last-child .item__detail .contents .more-area {
    margin-top: -60px;
  }
  #top .business__wrapper .list .item:hover .item__detail {
    cursor: pointer;
  }
  #top .business__wrapper .list .item:hover .item__detail .img img {
    scale: 1.2;
  }
  #top .business__wrapper .list .item:hover .item__detail .contents .more-area .more-btn {
    background-color: #fff;
  }
  #top .business__wrapper .list .item:hover .item__detail .contents .more-area .more-btn::before {
    background: url(../images/top/right_g.png) no-repeat;
    background-size: contain;
  }
  #top .staff {
    padding: 90px 0 140px;
    background: linear-gradient(to bottom, #f7f7f7 0%, #f7f7f7 32%, #fff 32%, #fff 100%);
  }
  #top .staff__wrapper {
    width: 100%;
    max-width: 1260px;
    display: flex;
    margin-bottom: 70px;
  }
  #top .staff__wrapper > .inner {
    display: flex;
    flex-direction: row-reverse;
    width: 196px;
    position: relative;
    z-index: 10;
  }
  #top .staff__wrapper > .inner .sec-title {
    margin: 0 0 0px 15px;
    writing-mode: vertical-lr;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #top .staff__wrapper > .inner .sec-title__en {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 0.9px;
    text-align: left;
    color: #30a289;
    margin-left: 5px;
  }
  #top .staff__wrapper > .inner .sec-title__ja {
    font-size: 38px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.18;
    letter-spacing: 7px;
    text-align: center;
    color: #121212;
  }
  #top .staff__wrapper > .inner .title-exp {
    margin: 0 0 40px 100px;
  }
  #top .staff__wrapper > .inner .title-exp p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    writing-mode: vertical-rl;
  }
  #top .staff__wrapper > .inner .title-exp p .col01 {
    writing-mode: initial;
    line-height: 1.2;
    padding-right: 10px;
    padding-top: 5px;
  }
  #top .staff__wrapper > .inner .title-exp p .col02 {
    writing-mode: initial;
    line-height: 1;
    padding-left: 10px;
    padding-top: 7px;
  }
  #top .staff__wrapper .interview {
    width: 100%;
    max-width: 432px;
    margin-left: 66px;
  }
  #top .staff__wrapper .interview__list {
    display: flex;
  }
  #top .staff__wrapper .interview__item {
    width: 290px;
    margin-right: 40px;
  }
  #top .staff__wrapper .interview__item a {
    display: block;
    width: 290px;
    margin-right: 40px;
  }
  #top .staff__wrapper .interview__item a > .inner .top {
    margin-bottom: 25px;
  }
  #top .staff__wrapper .interview__item a > .inner .top .num {
    height: 120px;
    top: 21px;
    right: 23px;
  }
  #top .staff__wrapper .interview__item a > .inner .top .num__text {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 0.9px;
    text-align: left;
    color: #44ad96;
  }
  #top .staff__wrapper .interview__item a > .inner .top .img {
    width: 290px;
    height: 290px;
    transition: all 0.4s ease;
  }
  #top .staff__wrapper .interview__item a > .inner .bottom .message span {
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1px;
    text-align: left;
    color: #fff;
  }
  #top .staff__wrapper .interview__item a > .inner .bottom .affi {
    margin-bottom: 15px;
  }
  #top .staff__wrapper .interview__item a > .inner .bottom .affi p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #fff;
  }
  #top .staff__wrapper .interview__item a > .inner:before {
    width: 60px;
    height: 60px;
    background: url(../images/top/right2.png) no-repeat;
    background-size: contain;
    transition: all 0.4s ease;
  }
  #top .staff__wrapper .interview__item:hover a > .inner .top .img {
    background: url(../images/top/staff01_active.png) no-repeat;
    background-size: contain;
  }
  #top .staff__wrapper .interview__item:hover a > .inner:before {
    background: url(../images/top/btn_white_active.png) no-repeat;
    background-size: contain;
  }
  #top .staff__wrapper .interview__item:first-child:hover a > .inner .top .img {
    background: url(../images/top/top_7_green.png) no-repeat;
    background-size: contain;
  }
  #top .staff__wrapper .interview__item:nth-child(2):hover a > .inner .top .img {
    background: url(../images/top/top_9_green.png) no-repeat;
    background-size: contain;
  }
  #top .staff__wrapper .interview__item:nth-child(3):hover a > .inner .top .img {
    background: url(../images/top/top_8_green.png) no-repeat;
    background-size: contain;
  }
  #top .staff__wrapper .swiper-scrollbar {
    display: none;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  #top .staff__wrapper .swiper-scrollbar {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  #top .staff .talk {
    width: 994px;
  }
  #top .staff .talk ul {
    width: 100%;
    display: flex;
  }
  #top .staff .talk ul li {
    width: 467px;
    height: 301.7px;
    overflow: hidden;
  }
  #top .staff .talk ul li a {
    width: 467px;
    height: 301.7px;
    overflow: hidden;
    margin: 0;
  }
  #top .staff .talk ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
  }
  #top .staff .talk ul li a .inner {
    width: 425px;
    height: 262px;
    margin: 20px 21px 0;
    position: relative;
  }
  #top .staff .talk ul li a .inner img {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 70px;
    height: 70px;
  }
  #top .staff .talk ul li a .inner h3 {
    width: 267px;
    height: 68px;
    font-size: 20px;
    padding-top: 3px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 1px;
    text-align: center;
    color: #121212;
    padding-top: 8px;
  }
  #top .staff .talk ul li a::before {
    width: 467px;
    height: 301.7px;
    top: 0px;
  }
  #top .staff .talk ul li:hover a > img {
    transform: scale(1.2);
  }
  #top .staff:before {
    border-radius: 0 60px 60px 0;
    top: 184px;
    right: inherit;
    left: 0;
    height: 61.5%;
    min-width: 1260px;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1260px) {
  #top .staff .staff__wrapper {
    transform: scale(0.83);
    transform-origin: top left;
  }
}
@media only screen and (min-width: 1025px) {
  #top .growth {
    padding: 47px 0 80px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(246, 247, 242, 0), #f6f7f2);
  }
  #top .growth__wrapper {
    width: 100%;
    position: relative;
    left: calc(57% + 90px);
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1210px) {
  #top .growth__wrapper {
    left: calc(57% + 5px);
  }
}
@media only screen and (min-width: 1025px) {
  #top .growth__wrapper .sec-title {
    margin-bottom: 40px;
  }
  #top .growth__wrapper .content {
    width: 100%;
    margin: 0 auto 170px;
  }
  #top .growth__wrapper .content .text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    margin-bottom: 40px;
  }
  #top .growth__wrapper .content .btn-area {
    width: 238px;
    margin: 0 auto 0 0;
  }
  #top .growth .img-area {
    width: 57%;
    max-width: unset;
    height: 414px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0%);
  }
  #top .growth .img-area img {
    width: 100%;
    height: 414px;
  }
  #top .growth .list {
    width: 100%;
    max-width: 1160px;
    display: flex;
    gap: 60px;
  }
  #top .growth .list .item {
    margin-bottom: 30px;
  }
  #top .growth .list .item__detail .img {
    width: 550px;
    height: 340px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  #top .growth .list .item__detail .contents {
    position: relative;
  }
  #top .growth .list .item__detail .contents .copy {
    display: flex;
    flex-direction: row-reverse;
    position: absolute;
    top: -375px;
    right: 27px;
    height: auto;
  }
  #top .growth .list .item__detail .contents .copy span {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.22;
    letter-spacing: 7px;
    text-align: left;
    color: #121212;
    padding: 25px 0;
  }
  #top .growth .list .item__detail .contents .copy span:before {
    width: 71.8px;
    height: 280.8px;
    top: 0;
    left: 50%;
    transform: translateX(-48%);
  }
  #top .growth .list .item__detail .contents .text {
    width: 424px;
  }
  #top .growth .list .item__detail .contents .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #top .growth .list .item__detail .contents .more-area {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  #top .growth .list .item__detail .contents .more-area .more-btn {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #EDBC1A;
    border: solid 1px #EDBC1A;
    border-radius: 50%;
    position: relative;
  }
  #top .growth .list .item__detail .contents .more-area .more-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 12.5px;
    height: 12.5px;
    background: url(../images/top/right_w.png) no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #top .growth .list .item:last-child {
    margin-bottom: 0;
    padding-top: 140px;
  }
  #top .growth .list .item:last-child .contents .copy span:last-child {
    margin-top: 50px;
    margin-right: 37px;
  }
  #top .growth .list .item:last-child .contents .copy span:before {
    height: 240.8px;
  }
  #top .growth .list .item:hover .item__detail .img img {
    transform: scale(1.2);
  }
  #top .growth .list .item:hover .item__detail .contents .more-area.sub .more-btn {
    background-color: #fff;
  }
  #top .growth .list .item:hover .item__detail .contents .more-area.sub .more-btn:before {
    background: url(../images/top/arrow_yellow.png) no-repeat;
    background-size: contain;
  }
  #top .growth .list:before {
    width: 560px;
    height: 423.6px;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1260px) {
  #top .growth .list {
    transform: scale(0.8);
    transform-origin: center;
  }
}
@media only screen and (min-width: 1025px) {
  #top .news {
    position: relative;
  }
  #top .news__wrapper {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  #top .news__wrapper .inner {
    width: 250px;
  }
  #top .news__wrapper .inner .sec-title {
    margin-bottom: 40px;
    text-align: left;
    align-items: flex-start;
  }
  #top .news__wrapper .inner .sec-title__en {
    margin: 0 0 10px 0;
  }
  #top .news__wrapper .inner .sec-title__ja {
    margin: 0;
  }
  #top .news__wrapper .inner .exp {
    margin-bottom: 40px;
  }
  #top .news__wrapper .inner .exp p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #top .news__wrapper .inner .btn-area.pc {
    display: block;
  }
  #top .news__wrapper .inner .btn-area .btn-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
  }
  #top .news__wrapper .inner .btn-area .btn-icon .icon {
    width: 40px;
    height: 40px;
    background: url(../images/top/news_btn.png) no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
  }
  #top .news__wrapper .inner .btn-area .btn-icon .text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 1.44px;
    text-align: left;
    color: #121212;
    transition: all 0.3s ease;
  }
  #top .news__wrapper .inner .btn-area:hover {
    cursor: pointer;
  }
  #top .news__wrapper .inner .btn-area:hover .icon {
    background: url(../images/top/news_btn_white.png) no-repeat;
    background-size: contain;
  }
  #top .news__wrapper .inner .btn-area:hover .text {
    color: #44AD96;
  }
  #top .news__wrapper .contents {
    width: 773px;
  }
  #top .news__wrapper .contents .news-list {
    margin-bottom: 0;
  }
  #top .news__wrapper .contents .news-list .news-item {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  #top .news__wrapper .contents .news-list .news-item a {
    display: flex;
  }
  #top .news__wrapper .contents .news-list .news-item a .thumbnail {
    width: 120px;
    height: 80px;
    margin-right: 30px;
  }
  #top .news__wrapper .contents .news-list .news-item a .detail {
    width: 538px;
    padding: 0;
  }
  #top .news__wrapper .contents .news-list .news-item a .detail .top {
    padding-bottom: 8px;
  }
  #top .news__wrapper .contents .news-list .news-item a .detail .top .news-title {
    width: 538px;
    height: 24px;
    overflow: hidden;
  }
  #top .news__wrapper .contents .news-list .news-item a .detail .top .news-title span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    border-bottom: solid 1px transparent;
    transition: all 0.2s ease;
    display: inline;
  }
  #top .news__wrapper .contents .news-list .news-item a .detail .bottom {
    display: flex;
    padding-top: 10px;
  }
  #top .news__wrapper .contents .news-list .news-item a .detail .bottom time {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: 0.7px;
    text-align: left;
    color: #5c5c5c;
  }
  #top .news__wrapper .contents .news-list .news-item a .detail .bottom .cat {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    height: 25px;
    padding: 0 10px;
  }
  #top .news__wrapper .contents .news-list .news-item a .detail:before {
    right: -40px;
    width: 17px;
    height: 17px;
  }
  #top .news__wrapper .contents .news-list .news-item a:hover .detail .top .news-title span {
    border-bottom: solid 1px #4e4e4e;
  }
  #top .news__wrapper .contents .news-list .news-item a:hover .thumbnail img {
    scale: 1.3;
  }
  #top .news__wrapper .contents .news-list .news-item:last-child {
    margin-bottom: 0;
  }
  #top .news__wrapper .contents .btn-area.sp {
    display: none;
  }
  #top .company {
    padding: 0 0 70px;
  }
  #top .company .sec-title {
    width: 260px;
    margin: 0 auto 40px;
    align-items: center;
  }
  #top .company .sec-title__en {
    margin-bottom: 0;
  }
  #top .company__wrapper {
    width: 100%;
    max-width: 1060px;
  }
  #top .company__wrapper .exp {
    margin-bottom: 40px;
  }
  #top .company__wrapper .exp p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: center;
    color: #343434;
  }
  #top .company__wrapper .list {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  #top .company__wrapper .list .item {
    margin-bottom: 30px;
    width: 500px;
  }
  #top .company__wrapper .list .item__detail .img {
    width: 100%;
    height: 323px;
    position: relative;
    overflow: hidden;
  }
  #top .company__wrapper .list .item__detail .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
  }
  #top .company__wrapper .list .item__detail .img .inner {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }
  #top .company__wrapper .list .item__detail .img .inner .copy {
    text-shadow: 0 0 10px #00392d;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 1.2px;
    text-align: right;
    color: #fff;
    padding: 0 80px 15px 0;
  }
  #top .company__wrapper .list .item__detail .contents {
    position: relative;
  }
  #top .company__wrapper .list .item__detail .contents .text {
    padding: 30px 29px 0 30px;
  }
  #top .company__wrapper .list .item__detail .contents .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #fff;
  }
  #top .company__wrapper .list .item:last-child {
    margin-bottom: 0;
  }
  #top .company__wrapper .list .item:hover .item__detail {
    cursor: pointer;
  }
  #top .company__wrapper .list .item:hover .item__detail .img img {
    scale: 1.2;
  }
  #top .company__wrapper .list .item:hover .item__detail .img .inner .more-area.white .more-btn {
    background-color: #44AD96;
  }
  #top .company__wrapper .list .item:hover .item__detail .img .inner .more-area.white .more-btn::before {
    background: url(../images/top/right_w.png) no-repeat;
    background-size: contain;
  }
  #top .company__wrapper .list .item:hover .item__detail .contents {
    position: relative;
  }
  #top .company__wrapper .list .item:hover .item__detail .contents .text {
    padding: 30px 29px 0 30px;
  }
  #top .company__wrapper .list .item:hover .item__detail .contents .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #fff;
  }
  #top .company__wrapper .list:before {
    content: "";
    display: block;
    width: 1000%;
    height: 92%;
    border-radius: 60px 0 0 60px;
    position: absolute;
    top: 100px;
    left: -11%;
    background-color: #44ad96;
  }
  #top .recruit {
    position: relative;
  }
  #top .recruit__wrapper {
    width: 100%;
    max-width: 1144px;
    margin: 0 auto 190px;
    display: flex;
    position: relative;
  }
  #top .recruit__wrapper .contents .sec-title {
    width: 100%;
    margin: 0;
    position: relative;
    text-align: left;
    align-items: flex-start;
    margin-bottom: 78px;
  }
  #top .recruit__wrapper .contents .sec-title__en2 {
    font-family: "Poppins", sans-serif;
    font-size: 150px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    background: linear-gradient(to top, rgba(237, 225, 85, 0.1), rgba(107, 204, 219, 0.3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
  }
  #top .recruit__wrapper .contents .sec-title__ja {
    position: absolute;
    bottom: 44px;
    left: 73px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: 2.4px;
    text-align: left;
    color: #121212;
  }
  #top .recruit__wrapper .contents .copy {
    width: 100%;
    margin: 0;
    padding-left: 110px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  #top .recruit__wrapper .contents .copy {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  #top .recruit__wrapper .contents .copy .text-item > span > span {
    font-size: 52px;
  }
  #top .recruit__wrapper .contents .copy .text-item:last-child {
    padding: 8px 0 0 100px;
  }
  #top .recruit__wrapper .contents.textcontents {
    position: absolute;
    right: 5px;
    top: 165px;
  }
  #top .recruit__wrapper .contents.textcontents .text {
    width: 555px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #top .recruit__wrapper .contents.textcontents .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #top .recruit__wrapper .contents.textcontents .btn-area {
    width: 305px;
    margin: 0 0 40px auto;
  }
  @keyframes infinity-scroll-right {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  @keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__list--left {
    animation: infinity-scroll-left 35s infinite linear 0.5s both;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item {
    width: 360px;
    margin-right: 7px;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item:nth-child(even) {
    padding-top: 40px;
  }
  #top .recruit .scroll-bg .scroll-infinity .scroll-infinity__item > img {
    width: 100%;
    height: 253px;
    object-fit: cover;
  }
}

/*# sourceMappingURL=top.css.map */
