@charset "utf-8";
:root{
    --vis-color: #1490CC;
}
.page_visual {
  background: url(../img/mv.png) no-repeat center;
  background-size: cover;
}
.vis_head {
  right: 150px;
}
.intro{
  padding-bottom: 0;
}

.service {
  display: flex;
  justify-content: center;
  gap: 40px 20px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.ser_card{
  width: calc((100% / 3) - (40px / 3));
  max-width: 328px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 60px 5% 40px;
  background: #f4f4f4;
}
.ser_num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-24);
  background: var(--main-blue);
  width: 47px;
  height: 47px;
  border-radius: 4px;
  color: #fff;
  position: absolute;
  top: -23px;
}
.ser_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
}



.tri {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.tri_block{
  width: calc((100% / 3) - (40px / 3));
  max-width: 328px;
}
.tri_img {
  margin-bottom: 20px;
}
.tri_head {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: var(--fs-20);
  background: var(--deep-blue);
  border-radius: 6px;
  color: #fff;
  margin-bottom: 20px;
}
.csr {
  display: flex;
  gap: 30px 0;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
}
.csr_block {
  max-width: 641px;
  width: 100%;
}
@media screen and (max-width: 767px){
.vis_head {
    font-size: min(3.2rem, 4.5vw);
    top: 15%;
    right: 2.5%;
}

.ser_card{
  width: 100%;
  padding: 40px 5% 30px;
  background: #f4f4f4;
}
.ser_num {
  width: 40px;
  height: 40px;
  top: -20px;
}

.tri_block{
  width: 100%;
}

}