.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-11s {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  -webkit-animation-delay: calc(var(--animate-delay)*1.1);
  animation-delay: calc(var(--animate-delay)*1.1);
}

.animate__animated.animate__delay-15s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-delay: calc(var(--animate-delay)*1.5);
  animation-delay: calc(var(--animate-delay)*1.5);
}

.invisible {
  visibility: hidden;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(75%, -75%, 0);
    transform: translate3d(75%, -75%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(75%, -75%, 0);
    transform: translate3d(75%, -75%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-75%, -75%, 0);
    transform: translate3d(-75%, -75%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-75%, -75%, 0);
    transform: translate3d(-75%, -75%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(75%, 75%, 0);
    transform: translate3d(75%, 75%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(75%, 75%, 0);
    transform: translate3d(75%, 75%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-75%, 75%, 0);
    transform: translate3d(-75%, 75%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-75%, 75%, 0);
    transform: translate3d(-75%, 75%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes pathmove {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@-webkit-keyframes pathmove {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes pathmove {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.home {
  background-color: #f7f7f7;
}

.home .l-header {
  background: transparent;
}

.home .l-header.is-open {
  background: #ffffff;
}

.home .l-main {
  padding-top: 0;
}

.home .layer-pattern {
  padding-top: 137px;
  padding-bottom: 0;
}

.home .c-nav {
  background-color: transparent;
}

.home .p-home__title {
  line-height: 1.5;
  font-size: 2.6rem;
  margin-bottom: 5px;
}

.home .p-home__subtitle {
  color: #4db9f9;
  line-height: 1.5;
  font-size: 1.8rem;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.home .p-home__button {
  max-width: 220px;
}

.home .p-home__text {
  text-align: center;
  font-weight: 300;
}

.home .mainvisual__inner {
  position: relative;
  padding-top: 10px;
}

.home .mainvisual__photo {
  position: absolute;
  width: 442px;
  top: 100px;
  left: -26px;
  z-index: -1;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
}

.home .mainvisual__heading {
  text-align: center;
  width: 284px;
  margin: 0 auto 145px;
  padding: 94px 77px 0;
  position: relative;
  z-index: 1;
}

.home .mainvisual__heading-bg {
  display: block;
  width: 284px;
  height: 426px;
  position: absolute;
  top: 0;
  left: calc(50% - 142px);
  z-index: -1;
}

.home .mainvisual__text {
  line-height: 1.5;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  position: relative;
  animation-duration: 1.7s;
  animation-timing-function: ease-in-out;
}

.home .mainvisual__text--en {
  color: #4db9f9;
  text-align: right;
  line-height: 1.5;
  font-size: 1.8rem;
  margin-top: 15px;
  position: relative;
  letter-spacing: 0.04em;
  display: block;
}

.home .mainvisual-scroll {
  color: #4db9f9;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  margin-bottom: 260px;
}

.home .mainvisual-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 90px;
  position: absolute;
  bottom: -100px;
  left: 50%;
  background-color: #4db9f9;
  transform: translateX(-50%);
  animation-name: pathmove;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.home .mainvisual-about {
  padding: 60px 0 140px;
  position: relative;
}

.home .mainvisual-about__photo-staff {
  position: absolute;
  z-index: -1;
  width: 364px;
  top: -570px;
  right: -26px;
  animation-duration: 1.7s;
  animation-timing-function: ease-in-out;
}

.home .mainvisual-about__link {
  margin: 30px 0 0;
}

.home .mainvisual-about__photo-ship {
  position: absolute;
  z-index: -1;
  width: 382px;
  top: -230px;
  right: 194px;
  animation-duration: 1.7s;
  animation-timing-function: ease-in-out;
}

.home .resolution {
  position: relative;
}

.home .resolution__inner {
  padding-top: 90px;
  padding-bottom: 70px;
}

.home .resolution__subtitle, .home .resolution__title {
  text-align: center;
  color: #ffffff;
  text-shadow: 0 0 20px #00143c;
}

.home .resolution__subtitle {
  text-shadow: 0 0 10px #00143c;
}

.home .resolution-list {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.home .resolution-list__item {
  background-color: #004EA2;
  height: 450px;
  display: block;
  padding-top: 130px;
  padding-left: calc(100% - 220px);
  border-radius: 0 0 0 50px;
  position: relative;
  background-repeat: no-repeat;
  background-size: auto 620px;
}

.home .resolution-list__item + .resolution-list__item {
  margin-top: 80px;
}

.home .resolution-list__item:first-of-type {
  background-image: url(../../img/home/resolution_img_optimization.webp);
  background-position: left -115px center;
}

.home .resolution-list__item:nth-of-type(2) {
  background-image: url(../../img/home/resolution_img_disaster.webp);
  background-position: left -125px center;
}

.home .resolution-list__item:nth-of-type(3) {
  background-image: url(../../img/home/resolution_img_accuracy.webp);
  background-position: left -185px center;
}

.home .resolution-list__item::after {
  content: "";
  display: block;
  width: 100vw;
  height: 450px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent 0%, transparent 50%, #004EA2 50%, #004EA2 100%);
  z-index: -1;
}

.home .resolution-list__subtitle {
  color: #ffffff;
  margin-bottom: 0;
}

.home .resolution-list__title {
  line-height: 1.5;
  font-size: 5rem;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.home .resolution-list__link {
  margin-top: 20px;
}

.home .movie {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #4678CD;
}

.home .movie.fixed {
  position: fixed;
  top: 0px;
}

.home .movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .news {
  background-color: #f7f7f7;
  padding: 80px 0;
}

.home .news__inner {
  display: flex;
}

.home .news__heading {
  width: 140px;
  margin-right: 55px;
  padding-top: 18px;
}

.home .news__link {
  margin-top: 20px;
}

.home .news-list {
  width: calc(100% - 195px);
}

.home .news-list__item:not(:last-of-type) .news-list__row {
  border-bottom: 1px solid #bcb9b8;
}

.home .news-list__row {
  display: flex;
  line-height: 1.75;
  font-size: 1.4rem;
  padding: 22px 0;
}

.home .news-list__date {
  width: 80px;
  margin-right: 20px;
  font-weight: 400;
}

.home .news-list__body {
  width: calc(100% - 100px);
}

.home .news-list__body a {
  text-decoration: underline;
  transition: 0.3s ease-in;
}

.home .product {
  background-color: #ffffff;
  padding: 90px 0 120px;
}

.home .product__heading {
  margin-bottom: 60px;
}

.home .product__subtitle, .home .product__title {
  text-align: center;
}

.home .product__slider {
  width: 2006px;
  margin-bottom: 15px;
}

.home .product .swiper {
  max-width: 1200px;
  margin-right: 0;
  padding-top: 16px;
  max-width: 1000px;
  margin-left: 0;
  overflow: visible;
}

.home .product .swiper-wrapper {
  transition-timing-function: linear;
}

.home .product .swiper-slide {
  width: 300px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  display: block;
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 0 0 50px 50px;
  padding: 420px 30px 0;
  cursor: pointer;
}

.home .product .swiper-slide:nth-of-type(1) {
  background-image: url(../../img/home/product_img_trap-nets.webp);
}

.home .product .swiper-slide:nth-of-type(2) {
  background-image: url(../../img/home/product_img_purse-seine-nets.webp);
}

.home .product .swiper-slide:nth-of-type(3) {
  background-image: url(../../img/home/product_img_fish-farming-nets.webp);
}

.home .product .swiper-slide:nth-of-type(4) {
  background-image: url(../../img/home/product_img_trawl-nets.webp);
}

.home .product .swiper-slide:nth-of-type(5) {
  background-image: url(../../img/home/product_img_laver-cultivation-nets.webp);
}

.home .product .swiper-slide:nth-of-type(6) {
  background-image: url(../../img/home/product_img_onshore-business.webp);
}

.home .product .swiper-slide:hover {
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
}

.home .product .swiper-horizontal > .swiper-scrollbar {
  height: 4px;
  bottom: -50px;
}

.home .product .swiper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 50px;
}

.home .product .swiper-nav__prev,
.home .product .swiper-nav__next {
  width: 36px;
  height: 36px;
  position: relative;
}

.home .product .swiper-nav__prev::after,
.home .product .swiper-nav__next::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}

.home .product .swiper-nav__prev::after,
.home .product .swiper-nav__next::after {
  border-top: 2px solid #4db9f9;
  border-right: 2px solid #4db9f9;
  width: 12px;
  height: 12px;
}

.home .product .swiper-nav__prev::after {
  left: calc(11px - 6px);
  transform: rotate(-135deg) translateY(69%);
}

.home .product .swiper-nav__next::after {
  right: calc(11px + 6px);
  transform: rotate(45deg) translateY(-69%);
}

.home .product .swiper-scrollbar {
  background-color: #BCB9B8;
  border-radius: 2px;
  width: calc(98% - 120px);
  left: 50%;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home .product .swiper-scrollbar-drag {
  background-color: #4db9f9;
  border-radius: 2px;
}

.home .product-slide__title {
  max-width: 140px;
  margin: 0;
}

.home .product-slide__text {
  line-height: 1.5;
  font-size: 1.8rem;
  padding: 8px 25px 8px 10px;
}

.home .story {
  padding: 90px 0 120px;
  background-color: #f7f7f7;
}

.home .story__heading {
  margin-bottom: 60px;
}

.home .story .c-nav-pager {
  margin-top: 40px;
}

.home .sustainable {
  padding: 90px 0 475px;
  background-image: url(../../img/home/sustainable_bg_pattern.webp);
  background-size: 1920px 777px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #ffffff;
}

.home .sustainable__subtitle, .home .sustainable__title, .home .sustainable__text {
  text-align: left;
}

.home .sustainable__link {
  margin: 30px 0 0;
}

.home .information {
  display: flex;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.home .information.is-hover-company {
  background-image: url(../../img/home/information_img_company_hover.webp);
}

.home .information.is-hover-ir {
  background-image: url(../../img/home/information_img_ir_hover.webp);
}

.home .information.is-hover-recruit {
  background-image: url(../../img/home/information_img_recruit_hover.webp);
}

.home .information__link {
  display: block;
  width: calc((100% - 2px) / 3);
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 32px 36px 0;
  transition: 0.3s ease-in;
  position: relative;
}

.home .information__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease-in;
  z-index: -1;
}

.home .information__link.link--company::after {
  background-image: url(../../img/home/information_img_company_pc.webp);
  background-position: center top;
}

.home .information__link.link--ir::after {
  background-image: url(../../img/home/information_img_ir_pc.webp);
  background-position: center center;
}

.home .information__link.link--recruit::after {
  background-image: url(../../img/home/information_img_recruit_pc.webp);
  background-position: right top;
}

.home .information__link + .information__link {
  margin-left: 1px;
}

.home .information__subtitle {
  color: #ffffff;
  line-height: 1.5;
  font-size: 2.6rem;
  text-shadow: 0 0 10px rgba(0, 20, 60, 0.5);
}

.home .information__title {
  margin: 10px 0 0;
  max-width: 140px;
}

.home .information__text {
  line-height: 1.5;
  font-size: 1.8rem;
  padding: 8px 25px 8px 10px;
}

.home.en-US .mainvisual__heading {
  text-align: left;
  margin: 0 auto 194px;
  padding: 140px 61px 0;
}

.home.en-US .mainvisual__text {
  width: 6em;
}

.home.en-US .resolution-list__item:nth-of-type(2) {
  padding-top: 70px;
}

.home.en-US .resolution-list__item:nth-of-type(3) {
  padding-top: 110px;
}

.home.en-US .resolution-list__title {
  line-height: 1.2;
  font-size: 4.6rem;
  word-break: break-all;
  hyphens: manual;
}

.home.en-US .resolution-list__subtitle {
  margin-bottom: 10px;
}

.home.en-US .product-slide__title {
  max-width: 190px;
}

.home.en-US .product-slide__text {
  line-height: 1.25;
  font-size: 1.4rem;
  padding: 13px 25px 13px 10px;
}

.home.en-US .product-slide__text.text--two {
  line-height: 1.25;
  font-size: 1.4rem;
  padding: 4.25px 25px 4.25px 10px;
}

.home.en-US .sustainable__text {
  max-width: 412px;
}

.home.en-US .sustainable__link {
  max-width: 250px;
}

.home.en-US .information {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding-bottom: 108px;
}

.home.en-US .information.is-hover-company {
  background-image: url(../../img/home/information_img_company_hover.webp);
}

.home.en-US .information__link {
  width: 100%;
  height: 330px;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.home.en-US .information__link.link--company::after {
  background-image: url(../../img/en/home/information_img_company_pc.webp);
  background-position: center top;
}

.home.en-US .information__title {
  margin: 10px 0 0;
  max-width: 200px;
}

.home.en-US .information__text.text--two {
  line-height: 1.25;
  font-size: 1.4rem;
  padding: 4.25px 25px 4.25px 10px;
}

@media screen and (max-width: 1039px) {
  .main {
    display: block;
  }
  .home .p-home__text {
    text-align: center;
  }
  .home .mainvisual__photo {
    left: calc(50% - 530px);
  }
  .home .mainvisual-about__photo-staff {
    top: -520px;
    right: -76px;
  }
  .home .mainvisual-about__photo-ship {
    top: auto;
    bottom: 0;
    right: calc(50% - 191px);
  }
  .home .resolution-list__item {
    background-size: 100%;
  }
  .home .resolution-list__item:first-of-type {
    background-position: left -85px center;
  }
  .home .resolution-list__item:nth-of-type(2) {
    background-position: left -95px center;
  }
  .home .resolution-list__item:nth-of-type(3) {
    background-position: left -95px center;
  }
  .home .product__slider {
    width: 100%;
    margin-bottom: 60px;
  }
  .home .product .swiper-wrapper {
    padding-right: 326px;
  }
  .home .product .swiper-slide {
    height: 430px;
    padding: 360px 30px 0;
  }
  .home .product .swiper-scrollbar {
    display: none;
  }
  .home .product__link {
    margin-top: -100px;
  }
}

@media screen and (max-width: 767px) {
  .main {
    display: block;
  }
  .home .layer-pattern {
    padding-top: 63px;
  }
  .home .p-home__title {
    text-align: center;
  }
  .home .p-home__subtitle {
    text-align: center;
  }
  .home .mainvisual__photo {
    left: calc(50% - 221px);
  }
  .home .mainvisual-scroll {
    text-shadow: 0 0 15px #fff;
  }
  .home .mainvisual-scroll::after {
    box-shadow: 0 0 5px #fff;
  }
  .home .mainvisual-about {
    padding: 30px 0 620px;
  }
  .home .mainvisual-about__photo-staff {
    top: auto;
    bottom: 122px;
    right: calc(50% - 182px);
    transform: translateX(50%);
  }
  .home .mainvisual-about__photo-ship {
    display: none;
  }
  .home .mainvisual-about__link {
    margin: 30px auto 0;
  }
  .home .resolution-list {
    padding: 60px 0;
  }
  .home .resolution-list__item {
    width: 100vw;
    height: 360px;
    padding: 170px calc(50% - 25vw + 8%) 30px 45px;
    background-size: auto 250px;
  }
  .home .resolution-list__item + .resolution-list__item {
    margin-top: 50px;
  }
  .home .resolution-list__item:first-of-type, .home .resolution-list__item:nth-of-type(2), .home .resolution-list__item:nth-of-type(3) {
    background-position: top -40px left 28%;
  }
  .home .resolution-list__item::after {
    height: 360px;
  }
  .home .resolution-list__subtitle {
    text-align: left;
    max-width: 220px;
    margin: 0 auto;
  }
  .home .resolution-list__title {
    max-width: 220px;
    margin: 0 auto;
  }
  .home .resolution-list__link {
    margin-top: 10px;
  }
  .home .news {
    padding: 60px 0;
  }
  .home .news__inner {
    display: block;
  }
  .home .news__heading {
    width: 100%;
    margin-right: 0;
    padding-top: 0;
  }
  .home .news-list {
    width: 100%;
  }
  .home .news-list__row {
    display: block;
  }
  .home .news-list__date {
    width: 100%;
    margin-right: 0;
  }
  .home .news-list__body {
    width: 100%;
  }
  .home .product {
    padding: 60px 0;
  }
  .home .product__heading {
    margin-bottom: 50px;
  }
  .home .product__slider {
    margin-bottom: 0;
  }
  .home .product .swiper-slide {
    height: 340px;
    padding: 270px 30px 0;
    border-radius: 0 0 35px 35px;
  }
  .home .product .swiper {
    padding-top: 0px;
  }
  .home .product__link {
    margin-top: -45px;
    max-width: 200px;
    width: calc(100% - 40*2px - 12*2px);
  }
  .home .product .swiper-nav__prev,
  .home .product .swiper-nav__next {
    width: 40px;
    height: 40px;
  }
  .home .product .swiper-nav__prev::before {
    left: 14px;
  }
  .home .product .swiper-nav__prev::after {
    left: calc(14px - 5px);
    transform: rotate(-135deg) translateY(69%);
  }
  .home .product .swiper-nav__next::before {
    right: 14px;
  }
  .home .product .swiper-nav__next::after {
    right: calc(14px + 5px);
    transform: rotate(45deg) translateY(-69%);
  }
  .home .story {
    padding: 60px 0 60px;
  }
  .home .sustainable {
    padding: 60px 0 60px;
    background-size: 990px 420px;
    background-position: center bottom 90px;
  }
  .home .sustainable__subtitle, .home .sustainable__title, .home .sustainable__text {
    text-align: center;
  }
  .home .sustainable__text {
    margin-bottom: 314px;
  }
  .home .sustainable__link {
    margin: 30px auto 0;
  }
  .home .information {
    display: block;
  }
  .home .information.is-hover-company, .home .information.is-hover-ir, .home .information.is-hover-recruit {
    background-image: none;
  }
  .home .information__link {
    width: 100%;
    height: auto;
    background-position: center center;
    padding: 34px 8%;
  }
  .home .information__link + .information__link {
    margin-left: 0;
    margin-top: 4px;
  }
  .home .information__link:first-of-type {
    background-image: url(../../img/home/information_img_company_sp.webp);
  }
  .home .information__link:nth-of-type(2) {
    background-image: url(../../img/home/information_img_ir_sp.webp);
  }
  .home .information__link:nth-of-type(3) {
    background-image: url(../../img/home/information_img_recruit_sp.webp);
    background-position: center top;
  }
  .home .information__link::after {
    display: none;
  }
  .home .information__subtitle {
    text-align: center;
  }
  .home .information__title {
    margin: 30px auto 0;
  }
  .home.en-US .resolution-list__item {
    height: 406px;
  }
  .home.en-US .resolution-list__item:nth-of-type(2) {
    height: 510px;
    padding-top: 165px;
  }
  .home.en-US .resolution-list__item:nth-of-type(3) {
    height: 440px;
    padding-top: 185px;
  }
  .home.en-US .information {
    padding-bottom: 70px;
  }
  .home.en-US .information .l-inner {
    padding: 0;
  }
  .home.en-US .information__link {
    padding: 60.5px 8% 34px;
    height: auto;
    aspect-ratio: 20 / 9;
  }
  .home.en-US .information__title {
    margin: 30px auto 0;
    max-width: 230px;
  }
  .home.en-US .information__text.text--two {
    padding: 13px 25px 13px 10px;
  }
}

@media screen and (max-width: 499px) {
  .home .resolution-list__item:first-of-type, .home .resolution-list__item:nth-of-type(2), .home .resolution-list__item:nth-of-type(3) {
    background-position: top -40px left 80%;
  }
}

@media screen and (max-width: 360px) {
  .home .resolution-list__item {
    padding-left: 25px;
    padding-right: calc(50% - 50vw + 25%);
  }
  .home .resolution-list__item:first-of-type, .home .resolution-list__item:nth-of-type(2), .home .resolution-list__item:nth-of-type(3) {
    background-position: top -20px center;
  }
}

@media (hover: hover) {
  .home .resolution-list__item:hover .resolution-list__link .c-button__text {
    color: #4db9f9;
  }
  .home .resolution-list__item:hover .resolution-list__link .c-icon-arrow::before {
    background-color: #4db9f9;
  }
  .home .resolution-list__item:hover .resolution-list__link .c-icon-arrow::after {
    border-color: #4db9f9;
  }
  .home .resolution-list__item:hover .resolution-list__link::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
  }
  .home .news-list__body a:hover {
    opacity: 0.5;
  }
  .home .product .swiper:hover .product-slide:not(:hover) {
    opacity: 0.5;
  }
  .home .product-slide:hover .c-button__text {
    color: #4db9f9;
  }
  .home .product-slide:hover .c-icon-arrow::before {
    background-color: #4db9f9;
  }
  .home .product-slide:hover .c-icon-arrow::after {
    border-color: #4db9f9;
  }
  .home .product-slide:hover .c-button::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
  }
  .home .information__link:hover .c-button__text {
    color: #4db9f9;
  }
  .home .information__link:hover .c-icon-arrow::before {
    background-color: #4db9f9;
  }
  .home .information__link:hover .c-icon-arrow::after {
    border-color: #4db9f9;
  }
  .home .information__link:hover .c-button::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
  }
  .home .information.is-hover-company .information__link::after {
    opacity: 0;
  }
  .home .information.is-hover-company .link--recruit .information__subtitle,
  .home .information.is-hover-company .link--recruit .information__title,
  .home .information.is-hover-company .link--ir .information__subtitle,
  .home .information.is-hover-company .link--ir .information__title {
    opacity: .5;
  }
  .home .information.is-hover-ir .information__link::after {
    opacity: 0;
  }
  .home .information.is-hover-ir .link--company .information__subtitle,
  .home .information.is-hover-ir .link--company .information__title,
  .home .information.is-hover-ir .link--recruit .information__subtitle,
  .home .information.is-hover-ir .link--recruit .information__title {
    opacity: .5;
  }
  .home .information.is-hover-recruit .information__link::after {
    opacity: 0;
  }
  .home .information.is-hover-recruit .link--company .information__subtitle,
  .home .information.is-hover-recruit .link--company .information__title,
  .home .information.is-hover-recruit .link--ir .information__subtitle,
  .home .information.is-hover-recruit .link--ir .information__title {
    opacity: .5;
  }
}
