@charset "UTF-8";
.pankuzu {
  display: none;
}

.title h2 {
  font-size: 44px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .title h2 {
    font-size: 28px;
  }
}

.animation-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.sec-mv {
  position: relative;
  background-image: linear-gradient(#c3dcd2, #58bcc6);
  height: 66vw;
  max-height: 844px;
  overflow: hidden;
  padding: 0 !important;
}
.sec-mv .catch-copy {
  position: absolute;
  top: 40vw;
  left: 4vw;
  color: #fff;
  text-shadow: 3px 3px 24px #01525A;
  z-index: 6;
}
.sec-mv .catch-copy h2 {
  font-size: 3vw;
  font-weight: 500;
  margin-bottom: 1vw;
}
.sec-mv .catch-copy p {
  font-size: 1.5vw;
  line-height: 200%;
}
@media screen and (max-width: 480px) {
  .sec-mv .catch-copy {
    top: 82vw;
    left: 0;
    margin-left: 24px;
  }
  .sec-mv .catch-copy h2 {
    font-size: 5vw;
  }
  .sec-mv .catch-copy p {
    font-size: 2.5vw;
  }
}

.sec-news {
  background: #58bcc6;
  padding: 0 32px 80px;
  margin-top: 0;
  position: relative;
}
.sec-news .content-wrapper {
  background: #fff;
  border-radius: 100px;
  padding: 8px 24px;
  gap: 24px;
  justify-content: flex-start;
}
.sec-news .flex-container {
  align-items: center;
}
.sec-news .news-list {
  width: 100%;
}
.sec-news h2 {
  font-size: 20px;
  color: #296972;
  margin: 0;
}
.sec-news .date {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sec-news .content-wrapper {
    flex-direction: column;
    border-radius: 24px;
    gap: 0;
  }
  .sec-news h2 {
    margin-left: 0;
    margin-right: auto;
  }
  .sec-news .button-link {
    position: absolute;
    right: 0;
    top: 0;
    margin: 8px 48px;
  }
  .sec-news .news-item {
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .sec-news {
    padding: 0 24px 80px;
  }
  .sec-news .news-item {
    display: block;
  }
  .sec-news .date {
    display: inline-block;
    margin-right: 8px;
  }
  .sec-news .tag {
    display: inline-block;
  }
}

.sec-service .point-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}
.sec-service .point-item .whitecard {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #ddd;
}
.sec-service .service-list {
  background-color: #58BDC7;
  padding: 24px;
  border-radius: 32px;
  margin-top: 32px;
}
.sec-service .service-list .title {
  font-size: 20px;
  font-weight: 600;
}
.sec-service .service-list img {
  position: relative;
  top: -5px;
}
@media screen and (max-width: 768px) {
  .sec-service .grid-container {
    grid-template-columns: 1fr;
  }
}

.sec-achieve .achieve-swiper .title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}
.sec-achieve .achieve-swiper .description {
  font-size: 14px;
  margin-top: 8px;
}
.sec-achieve .achieve-swiper .swiper-slide {
  width: 50%;
}
.sec-achieve .achieve-swiper .swiper-slide:nth-child(2n) {
  width: 30%;
  position: relative;
  top: 10%;
  margin-top: 16%;
}
.sec-achieve .achieve-swiper .swiper-slide:nth-child(3n) {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .sec-achieve .achieve-swiper .swiper-slide {
    width: 75%;
  }
  .sec-achieve .achieve-swiper .swiper-slide:nth-child(2n) {
    width: 45%;
  }
  .sec-achieve .achieve-swiper .swiper-slide:nth-child(3n) {
    width: 45%;
  }
}

.sec-links .recruit-container {
  border-radius: 32px;
  padding: 32px;
  color: #fff;
  background-image: linear-gradient(90deg, #1558a0 0%, rgba(21, 88, 160, 0.8) 50%, transparent), url("/asset/home/img/banner_recruit.jpg"), url("/asset/home/img/banner_recruit.jpg");
  background-repeat: no-repeat;
  background-color: rgb(21, 88, 160);
  background-position: right;
}
@media screen and (max-width: 768px) {
  .sec-links .recruit-container {
    background-image: linear-gradient(90deg, #1558a0 0%, rgba(21, 88, 160, 0.5019607843)), url("/asset/home/img/banner_recruit.jpg"), url("/asset/home/img/banner_recruit.jpg");
  }
}
@media screen and (max-width: 848px) {
  .sec-links .recruit-container {
    background-position: center;
  }
}
.sec-links .recruit-container .deco {
  color: #fff;
}
.sec-links .recruit-container .flex-container {
  justify-content: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.hover-content {
  position: fixed;
  width: 240px;
  height: 240px;
  display: none;
  pointer-events: none;
  z-index: 1000;
  background: url("/asset/home/img/hukidashi.svg") no-repeat center center;
  background-size: 100% 100%;
  opacity: 0;
  transform: scale(0.5) translateY(-10px);
  transition: opacity 0.3s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hover-content.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.hover-content:not(.show) {
  opacity: 0;
  transform: scale(0.8) translateY(5px);
  transition: opacity 0.2s ease-in, transform 0.3s ease-in;
}
.hover-content p {
  font-size: 18px;
  margin-top: 40px;
  text-align: center;
  animation: fadeInUp 0.5s ease-out 0.2s both;
}
.hover-content .changeimage {
  width: 70%;
  height: calc(70% - 30px);
  margin: 0 auto;
  animation: fadeInScale 0.5s ease-out 0.3s both;
}
.hover-content .changeimage img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.noujou {
  width: 34vw;
  max-width: 435px;
  height: 29vw;
  max-height: 371px;
  position: absolute;
  top: 9vw;
  left: 17%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0s;
  z-index: 1;
}

.factory {
  width: 32vw;
  max-width: 409px;
  height: 28vw;
  max-height: 358px;
  position: absolute;
  top: 31vw;
  left: 39%;
  z-index: 10;
  animation: float 5s ease-in-out infinite;
  animation-delay: -0.5s;
  z-index: 2;
}

.food {
  width: 23vw;
  max-width: 294px;
  height: 27vw;
  max-height: 345px;
  position: absolute;
  top: 10vw;
  left: 51%;
  animation: float 4.5s ease-in-out infinite;
  animation-delay: 0.5s;
  z-index: 1;
}

.cafe {
  width: 23vw;
  max-width: 294px;
  height: 17.5vw;
  max-height: 224px;
  position: absolute;
  top: 13vw;
  left: 73%;
  animation: float 5.5s ease-in-out infinite;
  animation-delay: -0.25s;
  z-index: 1;
}

.office {
  width: 25vw;
  max-width: 320px;
  height: 29vw;
  max-height: 371px;
  position: absolute;
  top: 28vw;
  left: 72%;
  animation: float 5.5s ease-in-out infinite;
  animation-delay: 2s;
  z-index: 1;
}
.office img {
  width: 100%;
}

@media screen and (min-width: 1281px) {
  .sec-mv .catch-copy {
    top: 512px;
    left: 51px;
  }
  .sec-mv .catch-copy h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .sec-mv .catch-copy p {
    font-size: 19px;
  }
  .noujou {
    top: 115px;
  }
  .factory {
    top: 396px;
  }
  .food {
    top: 128px;
  }
  .cafe {
    top: 166px;
  }
  .office {
    top: 357px;
  }
}
/* フワフワ上下アニメーション */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5vw);
  }
}
@media screen and (max-width: 480px) {
  .sec-mv {
    height: 120vw;
  }
  .noujou {
    width: 48vw;
    max-width: 435px;
    height: 38vw;
    max-height: 371px;
    position: absolute;
    top: 13vw;
    left: 13%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
  }
  .factory {
    width: 42vw;
    max-width: 409px;
    height: 36vw;
    max-height: 358px;
    position: absolute;
    top: 44vw;
    left: 5%;
    z-index: 10;
    animation: float 5s ease-in-out infinite;
    animation-delay: -0.5s;
  }
  .food {
    width: 36vw;
    max-width: 294px;
    height: 38vw;
    max-height: 345px;
    position: absolute;
    top: 15vw;
    left: 62%;
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
  }
  .cafe {
    width: 39vw;
    max-width: 294px;
    height: 30.5vw;
    max-height: 224px;
    position: absolute;
    top: 50vw;
    left: 48%;
    animation: float 5.5s ease-in-out infinite;
    animation-delay: -0.25s;
  }
  .office {
    width: 38vw;
    max-width: 320px;
    height: 44vw;
    max-height: 371px;
    position: absolute;
    top: 68vw;
    left: 65%;
    animation: float 5.5s ease-in-out infinite;
    animation-delay: 2s;
  }
}/*# sourceMappingURL=home.css.map */