/* CSS Document */
.service {
  padding: 60px 30px 0;
}
@media screen and (max-width: 980px) {
  .service {
    padding: 40px max(2%,15px) 0;
  }
}
.service_wrapper, .service_blog_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.service_content {
  position: relative;
}
.service_image{
  position: absolute;
  top: -200px;
  right: 0;
}
@media screen and (max-width: 480px) {
  .service_image {
    top: -40vw;
  }
}
.service_image img {
  display: block;
  margin: 0 0 0 auto;
  transform: translateX(140px);
}
@media screen and (max-width: 980px) {
  .service_image img {
    transform: none;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .service_image img {
    width: 100%;
  }
}
.service_txt {
  width: 90%;
  background: var(--color-lightgray);
  padding: 5% 9%;
  opacity: 0.9;
  transform: translateX(-7.3vw);
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .service_txt {
    transform: none;
    padding: 5%;

  }
}
@media screen and (max-width: 480px) {
  .service_txt {
    margin-left: 5%;
    margin-top: 40vw;
  }
}
.service_txt p:first-child {
  color: var(--color-blue);
  font-size: clamp(20px,3vw,25px);
  font-weight: 700;
  margin-bottom: 25px;
}
.service_txt p:not(:first-child) {
  font-size: 1.6rem;
}
.service_txt p + p {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .service_txt p + p {
  margin-bottom: 20px;
  }
}
.service_txt p:last-child {
  margin-bottom: 0;
}
.serviceIcon_01, .serviceIcon_02, .serviceIcon_03, .serviceIcon_04, .serviceIcon_05 {
  display: block;
  position: absolute;
  z-index: -1;
}
.serviceIcon_01 {
  width: 120px;
  height: 120px;
  background: var(--color-green);
  top: -80px;
  left: -180px;
}
@media screen and (max-width: 980px) {
  .serviceIcon_01 {
    width: 12vw;
    height: 12vw;
    top: -30px;
    left: 30px;
  }
}
.serviceIcon_02 {
  width: 80px;
  height: 80px;
  background: var(--color-blue);
  top: 40px;
  left: -260px;
}
@media screen and (max-width: 980px) {
  .serviceIcon_02 {
    display: none;
  }
}
.serviceIcon_03 {
  width: 120px;
  height: 120px;
  background: var(--color-lightgray);
  top: 120px;
  left: -180px;
}
@media screen and (max-width: 980px) {
  .serviceIcon_03 {
    width: 80px;
    height: 80px;
    top: -60px;
    left: 110px;
  }
}

.serviceIcon_04 {
  width: 180px;
  height: 180px;
  background: var(--color-blue);
  top: 205px;
  right: -180px;
  z-index: -2;
}
@media screen and (max-width: 980px) {
  .serviceIcon_04 {
    width: 12vw;
    height: 12vw;
    top: auto;
    bottom: -40px;
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .serviceIcon_04 {
    bottom: -6vw;
    right: 0;
  }
}

.serviceIcon_05 {
  width: 120px;
  height: 120px;
  background: var(--color-lightgray);
  top: 330px;
  right: -45px;
}
@media screen and (max-width: 980px) {
  .serviceIcon_05 {
    width: 7vw;
    height: 7vw;
    top: auto;
    bottom: -50px;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .serviceIcon_05 {
    bottom: -9.3vw;
    right: -2vw;
  }
}
.service_blog{
  padding: 80px 30px 140px;
}
@media screen and (max-width: 980px) {
  .service_blog {
    padding: 60px max(2%,15px) 0;
  }
}
.service_blog_content{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 2%;
}
@media screen and (max-width: 480px) {
  .service_blog_content {
    display: block;
  }
}
.service_blog_card{
  width: 23.5%;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  box-shadow: 0 0 8px rgba(0,0,0,.16);
}
@media screen and (max-width: 980px) {
  .service_blog_card {
    width: 49%;
  }
}
@media screen and (max-width: 480px) {
  .service_blog_card {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .service_blog_card:not(:first-child) {
    margin-top: 20px;
  }
}
.service_blog_card:hover{
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50,50,93,.1),0 3px 6px rgba(0,0,0,.08);
  transition: all .5s;
}
.card_header{
  display: flex;
  flex-wrap: wrap;
}
.card_title{
  font-size: 1.6rem;
  font-weight: 700;
  order: 1;
  margin-top: 20px;
  height: 50px;
  padding: 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.card_thumbnail img{
  width: 100%;
}
.card_body{
  margin: 10px 0 20px 0;
  padding: 0 10px;
}
.card_txt{
  font-size: 1.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.card_footer{
  margin-top: auto;
  text-align: right;
  padding-right: 10px;
  margin-bottom: 20px;
}
.btn_txt{
  font-size: 1.4rem;
  font-weight: 700;
}
.card_link{
  background: var(--color-blue);
  color: var(--color-white);
  display: inline-block;
  padding: 7px 30px 7px 20px;
  position: relative;
}
.card_link:hover{
  background: #6bb6ff;
}
.card_link::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}