/* ==================================================
  carousel
================================================== */

.carousel .swiper {
  padding: 60px 0 67px;
}
.carousel .swiper-slide {
  height: auto;
}
.carousel_card {
  position: relative;
  max-width: 1920px;
  height: 100%;
  margin: 0 auto;
}
.carousel_card.dark {
  color: #fff;
  background: #000;
}
.carousel_media img {
  width: 100%;
}
.carousel_content {
  display: block;
  position: relative;
}
.carousel_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0 16px;
}

@media (max-width: 767px) {
  .carousel_card {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    min-height: 600px;
  }
  .carousel_content {
    padding: 40px 20px;
  }
}

@media (min-width: 768px) {
  .carousel_media {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
  }
  .carousel_media img {
    display: none;
  }
  .carousel_content > .section {
    display: flex;
    align-items: center;
    min-height: 500px;
  }
  .carousel_content_inner {
    padding: 60px 0 15px;
  }
}



/* ----------------------------------------
  controller
---------------------------------------- */

.carousel [class^="swiper-button-"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 7px;
}
.carousel .swiper-button-prev {
  left: 0;
}
.carousel .swiper-button-next {
  right: 0;
}
.carousel [class^="swiper-button-"]::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMin'%3E%3Cdefs%3E%3Cg id='chevron-bg-2-left'%3E%3Crect width='100%25' height='100%25' fill='rgba(0,0,0,0.4)' rx='15'%3E%3C/rect%3E%3Cpath fill='%23fff' d='M-371 2074.89a1 1 0 0 0 .514-.143 1 1 0 0 0 .342-1.372l-2.691-4.485 2.691-4.486a1 1 0 0 0-.342-1.372 1 1 0 0 0-1.372.343l-3 5a1 1 0 0 0 0 1.029l3 5a1 1 0 0 0 .858.486z' transform='translate(387 -2053.887)'%3E%3C/path%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23chevron-bg-2-left'%3E%3C/use%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.carousel [class^="swiper-button-"]:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='xMinYMin'%3E%3Cdefs%3E%3Cg id='chevron-bg-2-left'%3E%3Crect width='100%25' height='100%25' fill='rgba(0,0,0,0.6)' rx='15'%3E%3C/rect%3E%3Cpath fill='%23fff' d='M-371 2074.89a1 1 0 0 0 .514-.143 1 1 0 0 0 .342-1.372l-2.691-4.485 2.691-4.486a1 1 0 0 0-.342-1.372 1 1 0 0 0-1.372.343l-3 5a1 1 0 0 0 0 1.029l3 5a1 1 0 0 0 .858.486z' transform='translate(387 -2053.887)'%3E%3C/path%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23chevron-bg-2-left'%3E%3C/use%3E%3C/svg%3E");
}
.carousel .swiper-button-next::after {
  transform: rotate(180deg);
}



/* ----------------------------------------
  pagination
---------------------------------------- */

.carousel .swiper-pagination {
  display: flex;
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 16px 20%;
  text-align: center;
  line-height: 1;
}
.carousel .swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  height: 5px;
  background-color: #eee;
  background-clip: padding-box;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.carousel .swiper-pagination-bullet-active {
  background-color: #000;
}





/* ==================================================
  explore
================================================== */

@media (max-width: 767px) {
  .explore {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
    padding: 40px 0;
  }
  .explore_media img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .explore {
    position: relative;
    background: linear-gradient(to bottom, #568393 -310%, #fff 90%);
  }
  .explore_media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(/content/dam/jp-ext-hp-com/jp/ja/ec/prod/workstations/images/explore.png) no-repeat center center / 100% auto;
  }
  .explore_content {
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 680px;
    padding: 60px 30px;
  }
}

@media (min-width: 1280px) {
  .explore_content {
    align-items: center;
    min-height: 830px;
  }
  .explore_content_inner {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 30px;
  }
  .explore_title {
    padding-left: 130px;
  }
}



/* ----------------------------------------
  explore_list
---------------------------------------- */

.explore_list a {
  display: inline-block;
  position: relative;
  transition: background-color .3s;
  width: 100%;
  height: 100%;
  padding: 20px;
  font-weight: bold;
  text-decoration: none !important;
  background: #fff;
}
.explore_list a:link,
.explore_list a:visited {
  color: #000;
}
.explore_list a:hover {
  color: #fff;
  background: #000;
}
.explore_list a::before {
  content: "〉";
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-family: -webkit-pictograph;
  font-size: 24px;
  font-weight: 100;
}

@media (max-width: 767px) {
  .explore_list {
    margin-top: 40px;
  }
  .explore_list a {
    min-height: 80px;
    padding-right: 50px;
    margin-bottom: 2px;
    background: #eee;
  }
}

@media (min-width: 768px) {
  .explore_list {
    display: grid;
    gap: 10px;
    margin-top: 60px;
  }
  .explore_list > li {
    position: relative;
  }
  .explore_list a {
    height: 180px;
  }
  .explore_list a:hover {
    color: #fff;
    height: 210px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: height .3s, background-color .3s;
    transition-timing-function: cubic-bezier(.17,.67,.83,.67);
    z-index: 1;
  }
}

@media (min-width: 1280px) {
  .explore_list {
    margin-top: 0;
  }
}





/* ==================================================
  what_is
================================================== */

.what_is {
  padding: 80px 0 40px;
}
.what_is_inner {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .what_is_inner {
    grid-template-columns: 1fr 50%;
  }
}



/* ----------------------------------------
  how_we_make_workstations
---------------------------------------- */

.how_we_make_workstations {
  margin-top: 40px;
}
.how_we_make_workstations a {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  color: #000 !important;
  text-decoration: none !important;
}
.how_we_make_workstations_media {
  overflow: hidden;
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  border: 3px solid #000;
  border-radius: 50%;
}
.how_we_make_workstations_media img {
  object-fit: cover;
  transition: transform .4s;
  width: 100%;
  height: 100%;
}
.how_we_make_workstations a:hover .how_we_make_workstations_media img {
  transform: scale(1.1);
  opacity: 1;
}
.how_we_make_workstations_text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}



/* ----------------------------------------
  isv
---------------------------------------- */

.isv {
  display: inline-block;
  padding: 20px;
  margin-top: 40px;
  border: 1px solid #000;
}
.isv_header {
  display: flex;
  justify-content: space-between;
}
.isv_header img {
  filter: invert(1);
}

@media (max-width: 479px) {
  .isv {
    width: 100%;
    max-width: 380px;
  }
  .isv_header {
    margin-bottom: 10px;
  }
}

@media (min-width: 480px) {
  .isv {
    min-width: 380px;
  }
}





/* ==================================================
  features
================================================== */

.features {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .features {
    padding: 60px 0;
  }
}



/* ----------------------------------------
  features_list
---------------------------------------- */

.features_list {
  display: grid;
  row-gap: 60px;
}
.features_list > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 0;
}
.features_list_title {
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .features_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
  .features_list_title {
    padding-bottom: 60px;
  }
}

@media (min-width: 1280px) {
  .features_list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 90px;
  }
}





/* ==================================================
  solutions
================================================== */

.solutions {
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(to bottom, #568393 -310%, #fff 90%);
}

@media (min-width: 768px) {
  .solutions {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}



/* ----------------------------------------
  solutions_list
---------------------------------------- */

.solutions_list {
  display: grid;
  gap: 45px 30px;
  margin-top: 40px;
}
.solutions_list > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 20px;
}
.solutions_list_media a {
  display: block;
  overflow: hidden;
  width: 100%;
}
.solutions_list_media a img {
  display: block;
  transition: .4s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.solutions_list_media a:hover img {
  transform: scale(1.1);
  opacity: 1;
}

@media (min-width: 480px) {
  .solutions_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .solutions_list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 75px;
  }
}

@media (min-width: 1024px) {
  .solutions_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
