.module--service_cys {
  margin-top: 60px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1050px) {
  .module--service_cys {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

.service_cys {
  width: 100%;
}

.service_cys_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--theme_color_border);
  background-color: var(--theme_color_base);
}

.service_cys_item {
  min-width: 0;
  min-height: 313px;
}

.service_cys_item + .service_cys_item {
  border-left: 1px solid var(--theme_color_border);
}

.service_cys_link {
  width: 100%;
  height: 100%;
  min-height: 313px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  gap: 17px;
  padding: 45px 40px;
  transition: background-color .7s;
  text-decoration: none;
  color: inherit;
  background-color: var(--theme_color_base);
}

@media screen and (min-width: 1051px) {
  .service_cys_link:hover {
    opacity: 1;
    background-color: var(--theme_color_main-pastel) !important;
  }

  .service_cys_link:hover img {
    opacity: 1;
  }
}

.service_cys_figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.service_cys_figure img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.service_cys_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--theme_color_font01);
}

.service_cys_deco_contents {
  width: 46px;
  height: 46px;
  position: relative;
  transition: 0.7s;
}

.service_cys_deco_contents::before,
.service_cys_deco_contents::after {
  content: "";
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.7s;
  border-radius: 9999px;
  background-position: 50%;
  background-size: cover;
}

.service_cys_deco_contents::before {
  background-image: url(https://147975698.fs1.hubspotusercontent-eu1.net/hubfs/147975698/raw_assets/public/liquid-theme/assets/img/modules/icon_arrow_custom.svg);
}

.service_cys_deco_contents::after {
  opacity: 0;
  background-image: url(https://147975698.fs1.hubspotusercontent-eu1.net/hubfs/147975698/raw_assets/public/liquid-theme/assets/img/modules/icon_arrow_custom_h.svg);
}

@media screen and (min-width: 1051px) {
  a:hover .service_cys_deco_contents
  a:hover .service_cys_deco_contents:before,
  a:hover .service_cys_deco_contents:after {
    width: 58px;
    height: 58px;
  }
  
  a:hover .service_cys_deco_contents:before {
    opacity: 0;
  }
  
  a:hover .service_cys_deco_contents:after {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .service_cys_list {
  }

  .service_cys_item {
    min-height: 0;
  }

  .service_cys_link {
    min-height: 0;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 20px;
  }

  .service_cys_item + .service_cys_item {
    border-top: 1px solid var(--theme_color_border);
    border-left: 0;
  }

  .service_cys_title {
    justify-content: space-between;
    flex-flow: column-reverse;
    gap: 20px;
    font-size: 19px;
}