@charset "UTF-8";
:root {
  --viewport-width: min(100vw, 1600px);
  --b: calc(var(--viewport-width) / 160);
}

/*
Theme Name: Twenty Twenty-one Child
Version: 1.6
Template: twentytwentyone
*/
.circlelight {
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
}
.circlelight .green {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: radial-gradient(#24ff44, transparent 60%);
  opacity: 0.2;
}
@keyframes glow1 {
  0% {
    opacity: 0.15;
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(20px, -50px);
  }
  50% {
    opacity: 0.2;
    transform: translate(-30px, 0px);
  }
  75% {
    transform: translate(50px, -20px);
  }
  100% {
    opacity: 0.15;
    transform: translate(0px, 0px);
  }
}
.circlelight .yellow {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: radial-gradient(#f7ff24, transparent 60%);
  opacity: 0.2;
}
@keyframes glow2 {
  0% {
    opacity: 0.2;
    transform: translate(-30px, 0px);
  }
  25% {
    transform: translate(50px, -20px);
  }
  50% {
    opacity: 0.12;
    transform: translate(0px, 0px);
  }
  75% {
    transform: translate(-50px, 20px);
  }
  100% {
    opacity: 0.2;
    transform: translate(-30px, 0px);
  }
}

.rhombuslight {
  position: absolute;
  width: 105%;
  aspect-ratio: 11/6;
}
.rhombuslight svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#front {
  overflow: hidden;
  /* モーダル本体 */
  /* videoサイズ */
}
#front .fv {
  height: 100vh;
  position: relative;
}
#front .fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  z-index: -2;
  background: linear-gradient(100deg, #3ca74a 0%, #99ef34 55%, #30B8D8 100%);
}
#front .fv::before {
  content: "";
  position: absolute;
  bottom: -10vh;
  left: 0;
  width: 100%;
  height: 55vh;
  z-index: -2.5;
  background: linear-gradient(transparent, #fff);
}
#front .fv__text {
  position: absolute;
  bottom: 12%;
  left: 5%;
}
@media screen and (max-width: 768px) {
  #front .fv__text {
    bottom: calc(84px + 5%);
  }
}
#front .fv__text p {
  color: #ffffff;
}
#front .fv__text p:nth-of-type(1) {
  font-family: "Cormorant Garamond", serif;
  font-size: max(15rem, 67px);
  line-height: 1.2;
  mix-blend-mode: overlay;
  letter-spacing: 0.5rem;
}
#front .fv__text p:nth-of-type(2) {
  font-size: max(3.4rem, 16px);
  mix-blend-mode: overlay;
}
#front .fv__video {
  aspect-ratio: 11/6;
  width: 105%;
  max-height: 101vh;
  position: absolute;
  top: -1%;
  right: -17%;
  z-index: -1;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
@media screen and (max-width: 768px) {
  #front .fv__video {
    top: 45%;
    right: auto;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 200%;
  }
}
#front .fv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#front .fv__rhombuslight1 {
  top: 20%;
  left: -45%;
}
@media screen and (max-width: 768px) {
  #front .fv__rhombuslight1 {
    top: 35%;
    left: -150%;
    width: 200%;
  }
}
#front .fv__rhombuslight2 {
  bottom: 50%;
  right: -45%;
}
@media screen and (max-width: 768px) {
  #front .fv__rhombuslight2 {
    bottom: 62%;
    right: -95%;
    width: 200%;
  }
}
#front .fv__scroll {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #front .fv__scroll {
    transform: translateX(50%);
    right: 50%;
    bottom: 2rem;
  }
}
#front .fv__scroll .scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #3A9447;
  font-family: sans-serif;
}
#front .fv__scroll .scroll-text {
  font-family: "Questrial", sans-serif;
  font-size: 13px;
  margin-bottom: 2px;
  color: #3A9447;
}
#front .fv__scroll .mouse {
  width: 28px;
  height: 56px;
  border: 1px solid #3A9447;
  border-radius: 25px;
  position: relative;
  box-sizing: border-box;
}
#front .fv__scroll .scroller {
  width: 16px;
  height: 16px;
  background-color: #3A9447;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim {
  0% {
    top: 7px;
    opacity: 0.8;
  }
  50% {
    top: 30px;
    opacity: 0.3;
  }
  100% {
    top: 7px;
    opacity: 0.8;
  }
}
#front .about {
  color: #fff;
  padding: 60px 5%;
  position: relative;
}
#front .about__circlelight {
  width: 80%;
  transform: translate(-50%, 50%);
  bottom: -33%;
  left: 100%;
  z-index: -1;
}
#front .about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: max(6rem, 5px);
}
@media screen and (max-width: 768px) {
  #front .about__container {
    flex-direction: column;
  }
}
#front .about__text-wrapper {
  position: relative;
  max-height: 650px;
  /* 表示範囲の高さ */
  overflow: hidden;
  flex: 1;
  /* 下にフェードアウトマスクを追加 */
}
@media screen and (max-width: 768px) {
  #front .about__text-wrapper {
    max-height: calc(100vh - 250px);
    /* 表示範囲の高さ */
  }
}
#front .about__text-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #fff);
  /* 背景色に合わせて調整 */
}
#front .about__text {
  /* 内部をスクロール可能に */
}
#front .about__text p:nth-of-type(1) {
  font-size: max(3.3rem, 22px);
  margin-bottom: 5%;
  color: #3A9447;
}
@media screen and (max-width: 360px) {
  #front .about__text p:nth-of-type(1) br {
    display: none !important;
  }
}
#front .about__text p:nth-of-type(2) {
  color: #363636;
  font-size: max(2rem, 16px);
  line-height: 4;
}
@media screen and (max-width: 768px) {
  #front .about__text p:nth-of-type(2) {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 550px) {
  #front .about__text p:nth-of-type(2) {
    line-height: 3;
  }
}
@media screen and (max-width: 1000px) {
  #front .about__text p br {
    display: none;
  }
  #front .about__text p br:nth-of-type(1), #front .about__text p br:nth-of-type(3), #front .about__text p br:nth-of-type(6), #front .about__text p br:nth-of-type(7), #front .about__text p br:nth-of-type(12), #front .about__text p br:last-of-type {
    display: block;
  }
}
#front .about__text.scrollable {
  height: 650px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: scroll;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #front .about__text.scrollable {
    max-height: calc(100vh - 325px);
    /* 表示範囲の高さ */
  }
}
#front .about__text.scrollable::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}
#front .about__video {
  max-width: 50%;
  perspective: 550px;
  transform: scale(1.2);
}
@media screen and (max-width: 1000px) {
  #front .about__video {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #front .about__video {
    width: 100%;
    max-width: 100%;
    transform: translateX(-16px) scale(1.05);
  }
}
#front .about__video .video__box {
  transform: rotateX(0deg) rotateY(-21deg);
  position: relative;
}
#front .about__video .video__box::after {
  content: "";
  position: absolute;
  bottom: 0%;
  right: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #d8ebda, transparent 70%);
  transform: skewX(300deg) translate(49.5%, 37.5%) scale(0.97, 0.25);
  pointer-events: none;
  z-index: -1;
}
#front .about__video .video__box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  position: relative;
}
#front .about__video .video__box video.reflection {
  transform: scaleY(-1);
  opacity: 0.6;
  filter: blur(2px);
  margin-top: 5px;
  position: absolute;
  top: 100%;
  /* 本体のすぐ下に配置 */
  left: 0;
  /* グラデーションマスク（Safari, Chrome用） */
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 30%);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  /* Firefox用 */
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 30%);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
#front .about__video .play-button {
  position: absolute;
  bottom: -50px;
  right: 2%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #front .about__video .play-button {
    right: -5px;
  }
}
#front .about__video .play-button .circle-text {
  width: 100px;
  height: 100px;
  fill: linear-gradient(125deg, #3a9447, #f7ff24);
  font-size: 10px;
  animation: rotateText 10s linear infinite;
}
#front .about__video .play-button .circle-text textPath {
  font-family: "Questrial", sans-serif;
}
@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#front .about__video .play-button .triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid #6eb23d;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  z-index: 2;
  transform: translate(-35%, -50%) scale(1.2);
  top: 50%;
  left: 50%;
  transition: 0.5s;
}
#front .about__video .play-button:hover {
  transform: scale(1.15);
}
#front .about__video .play-button:hover .triangle {
  transform: translate(-35%, -50%) scale(0.9);
}
#front .video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
  height: 100vh;
}
#front .video-modal.active {
  opacity: 1;
  visibility: visible;
}
#front .video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
#front .video-modal__content {
  position: relative;
  padding: 0;
  z-index: 2;
  width: min(90vw, 960px);
}
#front .video-modal__iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#front .video-modal__iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#front .video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  color: #fff;
  border: none;
  font-size: max(3rem, 30px);
  cursor: pointer;
  z-index: 10;
}
#front #videoPlayer {
  width: 80vw;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #front #videoPlayer {
    width: 95vw;
  }
}
#front .diamond-bg {
  margin-top: 5%;
  width: 100%;
}
#front .diamond-bg2 {
  margin-bottom: -6%;
}
#front .news {
  width: min(90%, 1600px);
  background-color: #fff;
  border-radius: max(1.2rem, 12px);
  margin-top: -6%;
  margin-bottom: -65px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  #front .news {
    width: 95%;
    margin-bottom: -60px;
  }
}
#front .news__circlelight {
  width: 80%;
  transform: translate(-50%, 50%);
  bottom: 20%;
  left: 10%;
  z-index: -1;
}
#front .news__wrapper {
  padding: max(10rem, 36px);
  box-shadow: 0px 3px 6px #00000029;
}
@media screen and (max-width: 1000px) {
  #front .news__wrapper {
    padding: max(3.6rem, 36px) max(2.5rem, 25px);
  }
}
#front .news__titleflex {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: max(4rem, 25px);
}
#front .news__titleflex a:nth-of-type(1):hover {
  opacity: 0.6;
  transition: opacity 0.6s ease;
}
#front .news__title {
  display: flex;
  flex-wrap: wrap;
  align-items: last baseline;
  gap: max(0.5rem, 5px);
}
#front .news__title h2 {
  font-size: max(4rem, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #3A9447;
}
#front .news__title p {
  color: #3a9447;
  font-family: "Questrial", sans-serif;
  font-size: max(3rem, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front .news__mainbox {
  display: flex;
  gap: max(3.9rem, 20px);
}
@media screen and (max-width: 1000px) {
  #front .news__mainbox {
    flex-wrap: wrap;
  }
}
#front .news__main {
  margin-bottom: max(1rem, 10px);
  transition: 0.2s;
  width: 100%;
}
#front .news__main:nth-child(n+4) {
  display: none;
}
@media screen and (max-width: 1000px) {
  #front .news__main:nth-child(n+4) {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #front .news__main:nth-child(n+4) {
    display: none;
  }
}
#front .news__main:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1000px) {
  #front .news__main {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #front .news__main {
    width: 100%;
  }
}
#front .news__main .title {
  color: #363636;
  display: block;
}
@media screen and (max-width: 550px) {
  #front .news__main .title {
    display: none;
  }
}
#front .news__main .title.sp {
  display: none;
}
@media screen and (max-width: 550px) {
  #front .news__main .title.sp {
    display: block;
  }
}
#front .news__flex {
  align-items: center;
  gap: max(2.6rem, 22px);
}
#front .news__flex:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #front .news__flex {
    align-items: start;
  }
}
#front .news__flex--img {
  width: 100%;
  aspect-ratio: 403/226;
}
#front .news__flex--img img {
  border-radius: max(1rem, 10px);
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
#front .news__flex--text {
  flex: 1;
  margin-top: max(2.4rem, 10px);
}
#front .news__flex--text .texttop {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  #front .news__flex--text .texttop {
    justify-content: flex-start;
    gap: max(2rem, 20px);
  }
}
#front .news__flex--text .texttop .date {
  color: #36363666;
  font-family: "Questrial", sans-serif;
}
#front .news__flex--text .texttop .category {
  text-align: end;
  flex: 1;
}
#front .news__flex--text .texttop .category .category-item {
  background-color: #3A9447;
  padding: max(0.1rem, 1px) max(1rem, 10px);
  border-radius: max(0.3rem, 3px);
  font-size: max(1.2rem, 12px);
  color: #fff;
  margin-left: 2%;
  display: inline-block;
}
#front .news .morebtm {
  justify-content: end;
}
#front .news .morebtm span {
  color: #3A9447;
}
#front .news .morebtm .rhombus {
  background-color: #3A9447;
}
#front .news .morebtm.pc {
  display: flex;
}
#front .news .morebtm.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #front .news .morebtm {
    margin-top: max(4.4rem, 33px);
  }
  #front .news .morebtm.pc {
    display: none;
  }
  #front .news .morebtm.sp {
    display: flex;
  }
}
#front .aboutbox {
  display: flex;
  gap: max(7.8rem, 70px);
  padding: max(17.9rem, 106px) 0 max(11.4rem, 49px);
}
@media screen and (max-width: 768px) {
  #front .aboutbox {
    flex-direction: column;
  }
}
#front .aboutbox__outer {
  background: linear-gradient(70deg, #3ca74a, #30B8D8);
}
#front .aboutbox__imgbox {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #front .aboutbox__imgbox {
    display: none;
  }
}
#front .aboutbox__imgbox--sp {
  width: 100%;
  margin-bottom: max(4.5rem, 43px);
  display: none;
}
@media screen and (max-width: 768px) {
  #front .aboutbox__imgbox--sp {
    display: block;
  }
}
#front .aboutbox__textbox {
  width: 100%;
}
#front .aboutbox__textbox p {
  color: #fff;
}
#front .aboutbox__title {
  margin-bottom: max(4.5rem, 43px);
}
#front .aboutbox__title h2 {
  font-size: max(4rem, 30px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: max(1.9rem, 19px);
  color: #fff;
}
#front .aboutbox__title p {
  font-family: "Questrial", sans-serif;
  font-size: max(3rem, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
#front .aboutbox .morebtm {
  margin-top: max(4.8rem, 40px);
  justify-content: end;
}
#front .morebtm {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 51%;
  max-width: 135px;
  margin: 0 0 0 auto;
  transition: 0.4s;
}
#front .morebtm span {
  font-family: "Questrial", sans-serif;
  font-size: max(1.6rem, 16px);
  color: #fff;
}
#front .morebtm .rhombus {
  background-color: #ffffff;
  aspect-ratio: 11/6;
  width: max(3.3rem, 33px);
  height: 100%;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  -webkit-transition: all 0.1s ease;
  transition: clip-path 1s cubic-bezier(0.2, 0.9, 0.2, 1), -webkit-clip-path 1s cubic-bezier(0.2, 0.9, 0.2, 1), border-radius 1s ease, background 0.6s ease, transform 0.6s ease;
}
#front .morebtm:hover {
  transform: scale(1.2);
}
#front .morebtm:hover .rhombus {
  -webkit-clip-path: polygon(15% 5%, 85% 50%, 15% 95%, 15% 50%);
  clip-path: polygon(15% 5%, 85% 50%, 15% 95%, 15% 50%);
  border-radius: 5%;
}
#front .environmentalpolicy {
  background: #ffffff;
  padding: max(10rem, 54px) 0;
}
#front .environmentalpolicy .container {
  display: flex;
  gap: max(7.8rem, 15px);
}
@media screen and (max-width: 768px) {
  #front .environmentalpolicy .container {
    flex-direction: column-reverse;
  }
}
#front .environmentalpolicy__imgbox {
  width: 100%;
  border-radius: 6rem;
}
@media screen and (max-width: 768px) {
  #front .environmentalpolicy__imgbox {
    display: none;
  }
}
#front .environmentalpolicy__imgbox.sp {
  margin-top: max(3.5rem, 35px);
  display: none;
}
@media screen and (max-width: 768px) {
  #front .environmentalpolicy__imgbox.sp {
    display: block;
  }
}
#front .environmentalpolicy__imgbox img {
  height: 100%;
  border-radius: max(0.6rem, 6px);
}
#front .environmentalpolicy__textbox {
  width: 100%;
}
#front .environmentalpolicy__textbox h2 {
  font-size: max(4rem, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: max(1.9rem, 19px);
  color: #363636;
}
#front .environmentalpolicy__title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: max(6.2rem, 32px);
}
#front .environmentalpolicy__title h2 {
  margin-bottom: 0;
  color: #3A9447;
}
#front .environmentalpolicy__title p {
  font-family: "Questrial", sans-serif;
  color: #3A9447;
}
#front .environmentalpolicy .morebtm {
  margin-top: max(7.6rem, 27px);
  justify-content: end;
}
#front .environmentalpolicy .morebtm span {
  color: #3A9447;
}
#front .environmentalpolicy .morebtm .rhombus {
  background-color: #3A9447;
}
#front .environmentalpolicy a > p {
  font-family: "Questrial", sans-serif;
  font-size: max(3rem, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #363636;
}
#front .environmentalpolicy a > p:nth-of-type(1) {
  font-weight: 500;
  font-size: max(2.4rem, 20px);
  line-height: 2;
  margin-bottom: max(4.3rem, 23px);
}
#front .environmentalpolicy a > p:nth-of-type(2) {
  font-size: max(1.6rem, 14px);
  line-height: 2;
}
#front .environmentalpolicy a:hover .morebtm {
  transform: scale(1.2);
}
#front .environmentalpolicy a:hover .morebtm .rhombus {
  -webkit-clip-path: polygon(15% 5%, 85% 50%, 15% 95%, 15% 50%);
  clip-path: polygon(15% 5%, 85% 50%, 15% 95%, 15% 50%);
  border-radius: 5%;
}
#front .company {
  position: relative;
  background: rgba(181, 198, 155, 0.1);
}
#front .company__circlelight {
  right: -50%;
  top: 0%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #front .company__circlelight {
    width: 150%;
    top: 35%;
    left: -75%;
  }
}
#front .company .container {
  padding: max(14.4rem, 63px) 0 max(11.2rem, 65px);
}
#front .company__title {
  display: flex;
  align-items: baseline;
  gap: max(0.9rem, 9px);
  margin-bottom: max(7.2rem, 49px);
}
#front .company__title h2 {
  font-size: max(4rem, 30px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: max(1.9rem, 19px);
  color: #3A9447;
}
@media screen and (max-width: 768px) {
  #front .company__title h2 {
    margin: 0;
  }
}
#front .company__title p {
  font-family: "Questrial", sans-serif;
  font-size: max(3rem, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #3A9447;
}
#front .company__flexbox {
  display: flex;
  gap: max(9rem, 46px);
}
@media screen and (max-width: 768px) {
  #front .company__flexbox {
    flex-direction: column;
  }
}
#front .company__flexbox--content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#front .company__flexbox--content h3 {
  font-size: max(2.4rem, 20px);
  font-weight: 500;
  margin-bottom: max(2.1rem, 20px);
  color: #3A9447;
}
#front .company__flexbox--content .morebtm {
  justify-content: flex-end;
}
#front .company__flexbox--content .morebtm span {
  color: #3A9447;
}
#front .company__flexbox--content .morebtm .rhombus {
  background-color: #3A9447;
}
#front .company__flexbox--content:hover .morebtm {
  transform: scale(1.2);
}
#front .company__flexbox--content:hover .morebtm .rhombus {
  background-color: #3A9447 !important;
  -webkit-clip-path: polygon(15% 5%, 85% 50%, 15% 95%, 15% 50%);
  clip-path: polygon(15% 5%, 85% 50%, 15% 95%, 15% 50%);
}
#front .company__flexbox--textbox {
  margin-bottom: max(4.4rem, 28px);
}
#front .recruit {
  padding: max(7.6rem, 38px) max(7rem, 25px);
  display: flex;
  gap: max(7.8rem, 15px);
  border-radius: max(1.2rem, 12px);
  position: relative;
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
#front .recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  z-index: -1;
  /* 2色に分けて配置 */
  background: linear-gradient(to right, #3A9447 0%, #f7ff24 35%, #fff 50%);
  background-size: 200% 100%;
  background-position: right;
  transition: background-position 1s ease;
}
#front .recruit * {
  transition: 0.4s ease;
}
#front .recruit:hover::before {
  background-position: left;
}
#front .recruit:hover * {
  color: #fff !important;
}
#front .recruit:hover * .morebtm .rhombus {
  background-color: #fff !important;
  -webkit-clip-path: polygon(15% 5%, 85% 50%, 15% 95%, 15% 50%);
  clip-path: polygon(15% 5%, 85% 50%, 15% 95%, 15% 50%);
}
@media screen and (max-width: 768px) {
  #front .recruit {
    flex-direction: column-reverse;
  }
}
#front .recruit__outer {
  overflow: hidden;
  position: relative;
}
#front .recruit__outer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - max(10.5rem, -105px));
  background: rgba(181, 198, 155, 0.1);
}
#front .recruit__circlelight {
  left: -50%;
  top: -50%;
  z-index: -1;
}
#front .recruit__imgbox {
  width: 100%;
  border-radius: 6rem;
}
@media screen and (max-width: 768px) {
  #front .recruit__imgbox {
    display: none;
  }
}
#front .recruit__imgbox.sp {
  margin-top: max(3rem, 30px);
  margin-bottom: max(2.3rem, 23px);
  display: none;
}
@media screen and (max-width: 768px) {
  #front .recruit__imgbox.sp {
    display: block;
  }
}
#front .recruit__imgbox img {
  height: 100%;
  border-radius: max(0.6rem, 6px);
  object-fit: contain;
}
#front .recruit__textbox {
  width: 100%;
}
#front .recruit__textbox h2 {
  font-size: max(4rem, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: max(1.9rem, 19px);
  color: #3A9447;
}
#front .recruit__textbox > p {
  font-family: "Questrial", sans-serif;
  font-size: max(3rem, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #363636;
}
#front .recruit__textbox > p:nth-of-type(1) {
  font-weight: 500;
  font-size: max(2.4rem, 20px);
  line-height: 2;
  margin-bottom: max(3rem, 19px);
}
#front .recruit__textbox > p:nth-of-type(2) {
  font-size: max(1.6rem, 14px);
  line-height: 2;
}
#front .recruit__title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: max(6.2rem, 32px);
}
#front .recruit__title h2 {
  margin-bottom: 0;
}
#front .recruit__title p {
  font-family: "Questrial", sans-serif;
  color: #3A9447;
  line-height: 1;
}
#front .recruit .morebtm {
  margin-top: max(6.4rem, 38px);
  justify-content: end;
}
#front .recruit .morebtm span {
  color: #3A9447;
}
#front .recruit .morebtm .rhombus {
  background-color: #3A9447;
}

#service {
  background-color: #3A9447;
  position: relative;
  z-index: 0;
  background: linear-gradient(0deg, #99ef34, #3ca74a 80%);
}
#service::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(transparent, #fff);
}
#service .service__wrapper {
  padding-top: max(14.4rem, 48px);
  padding-bottom: max(17.4rem, 51px);
}
#service .service__wrapper hgroup.service__title {
  display: flex;
  flex-wrap: wrap;
  align-items: last baseline;
  gap: max(0.5rem, 5px);
  margin-bottom: max(4rem, 25px);
}
#service .service__wrapper hgroup.service__title h2 {
  font-size: max(4rem, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
#service .service__wrapper hgroup.service__title p {
  color: #fff;
  font-family: "Questrial", sans-serif;
  font-size: max(3rem, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#service .service__wrapper .service__content .service__item {
  display: flex;
  align-items: center;
  gap: max(5rem, 25px);
  padding: max(2rem, 20px);
  padding-left: max(5rem, 30px);
  background: #fff;
  border-radius: max(0.6rem, 6px);
  opacity: 0.1;
}
@media screen and (max-width: 1000px) {
  #service .service__wrapper .service__content .service__item {
    gap: 0;
    flex-direction: column;
    align-items: start;
    padding: max(10rem, 35px) 5%;
  }
}
#service .service__wrapper .service__content .service__item:not(:first-of-type) {
  margin-top: max(1rem, 10px);
}
#service .service__wrapper .service__content .service__item .textBox {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  #service .service__wrapper .service__content .service__item .textBox {
    width: 100%;
  }
}
#service .service__wrapper .service__content .service__item .textBox hgroup {
  display: flex;
  flex-wrap: wrap;
  align-items: last baseline;
  gap: max(1rem, 10px);
  margin-top: max(2rem, 20px);
  margin-bottom: max(2rem, 20px);
}
@media screen and (max-width: 1000px) {
  #service .service__wrapper .service__content .service__item .textBox hgroup {
    flex-direction: column;
    align-items: start;
    margin-top: 0;
    margin-bottom: 0;
  }
}
#service .service__wrapper .service__content .service__item .textBox hgroup h3 {
  color: #363636;
  font-size: max(2.4rem, 20px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
#service .service__wrapper .service__content .service__item .textBox hgroup p {
  color: #363636;
  font-family: "Questrial", sans-serif;
  font-size: max(1.8rem, 12px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#service .service__wrapper .service__content .service__item .textBox__inner > p {
  color: #363636;
  font-size: max(1.4rem, 14px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#service .service__wrapper .service__content .service__item .imageBox {
  width: max(59rem, 300px);
  height: 100%;
  overflow: hidden;
  border-radius: max(0.6rem, 6px);
}
@media screen and (max-width: 1000px) {
  #service .service__wrapper .service__content .service__item .imageBox {
    width: 100%;
  }
}
#service .service__wrapper .service__content .service__item .imageBox img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
#service .service__wrapper .service__content .service__item .btnBox {
  text-align: right;
  margin-top: max(3.5rem, 20px);
}
#service .service__wrapper .service__content .service__item .btnBox .btn {
  display: inline-flex;
  align-items: center;
  gap: max(1rem, 10px);
}
#service .service__wrapper .service__content .service__item .btnBox .btn__text {
  color: #3A9447;
  font-family: "Questrial", sans-serif;
  font-size: max(1.6rem, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#service .service__wrapper .service__content .service__item .btnBox .btn__icon {
  height: 0.75lh;
  width: auto;
}
@media screen and (max-width: 1000px) {
  #service .service__wrapper .service__content .service__item .btnBox.pc {
    display: none;
  }
}
#service .service__wrapper .service__content .service__item .btnBox.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  #service .service__wrapper .service__content .service__item .btnBox.sp {
    display: block;
    width: 100%;
    margin-top: 0;
  }
}
#service .service__wrapper .service__content .service__item:hover .imageBox img {
  transform: scale(1.1);
}