@charset "UTF-8";

.main_content {
  overflow-x: hidden;
}

/* ---------------------------------
  page_title
--------------------------------- */
.page_title .inner::after {
  content: "Service";
}


/* ---------------------------------
  contact_block
--------------------------------- */
.contact_block {
  background: linear-gradient(180deg, #E8ECF2 0%, #E8ECF2 50%, #fff 50%, #fff 100%);
}


/* ---------------------------------
  service_lead_block
--------------------------------- */
.service_lead_block {
  padding: 120px 0 140px;
}
.service_lead {
  display: flex;
  column-gap: clamp(40px, calc(40px + (120 - 40) * (100vw - 768px) / (1340 - 768)), 120px);
  align-items: center;
}
.service_lead h2 {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
}
.service_lead .service_lead_img {
  width: clamp(300px, calc(300px + (460 - 300) * (100vw - 768px) / (1340 - 768)), 460px);
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 460 / 254;
}
.service_lead .service_lead_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(378px, calc(378px + (580 - 378) * (100vw - 768px) / (1340 - 768)), 580px);
  max-inline-size: none;
  max-block-size: none;
}
@media screen and (max-width: 1281px) {
  .service_lead {
    display: flex;
    column-gap: clamp(40px, calc(40px + (80 - 40) * (100vw - 768px) / (1080 - 768)), 80px);
    align-items: center;
  }
  .service_lead .service_lead_img {
    width: clamp(300px, calc(300px + (368 - 300) * (100vw - 768px) / (1080 - 768)), 368px);
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 368 / 203;
  }
  .service_lead .service_lead_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(378px, calc(378px + (464 - 378) * (100vw - 768px) / (1080 - 768)), 464px);
    max-inline-size: none;
    max-block-size: none;
  }
}
@media screen and (max-width: 767px) {
  .service_lead_block {
    padding: 40px 0 24px;
  }
  .service_lead {
    flex-flow: column;
    row-gap: 8px;
  }
  .service_lead h2 {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .service_lead .service_lead_img {
    width: 100%;
  }
  .service_lead .service_lead_img img {
    width: 100%;
  }
}


/* ---------------------------------
  solution_block
--------------------------------- */
.solution_block {
  background-color: #E8ECF2;
  padding: 40px 0 120px;
  counter-reset: solution_number;
}
.solution_nav {
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #E8ECF2 50%, #E8ECF2 100%);
}
.solution_nav ul {
  background-color: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 16px;
  padding: 24px 64px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
  align-items: center;
}
.solution_nav li a {
  display: flex;
  align-items: center;
  column-gap: 8px;
  transition: opacity .3s;
}
.solution_nav li a:hover {
  opacity: .7;
}
.solution_nav li a::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: rotate(90deg);
  background-color: #000;
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
  background-image: url("../../images/common/arrow_white.svg");
  flex-shrink: 0;
}
.solution_block .solution_content {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 64px;
  counter-increment: solution_number;
}
.solution_block .solution_content + .solution_content {
  margin-top: 40px;
}
.solution_block .solution_content .title_type01_jp {
  display: flex;
  align-items: center;
}
.solution_block .solution_content .title_type01_jp::before {
  content: "0" counter(solution_number);
  margin-right: 24px;
  font-family: 'urbanist';
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: .02em;
  font-weight: 500;
}
.solution_detail {
  display: flex;
  column-gap: clamp(40px, calc(40px + (120 - 40) * (100vw - 768px) / (1340 - 768)), 120px);
  align-items: flex-start;
}
.solution_detail img {
  width: clamp(250px, calc(250px + (400 - 250) * (100vw - 768px) / (1340 - 768)), 400px);
  flex-shrink: 0;
}
.solution_text_block {
  display: flex;
  flex-flow: column;
  row-gap: 40px;
}
.solution_text_block .solution_lead span {
  font-weight: 500;
}
.solution_text_block .accent_block dt {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin-bottom: 16px;
  column-gap: 8px;
}
.solution_text_block .accent_block dt::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CDC298;
}
.solution_text_block .accent_block dd {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 20px;
}
.solution_text_block .accent_block dd li {
  text-indent: -1em;
  margin-left: 1em;
}
.solution_text_block .accent_block dd li::before {
  content: "・";
}
.anc02_detail {
  display: flex;
  column-gap: 40px;
}
.anc02_detail dl {
  width: 50%;
}
.anc02_detail dt {
  font-weight: 500;
  margin-bottom: 16px;
}
.anc02_detail dd {
  font-size: 14px;
}
@media screen and (max-width: 1281px) {
  .solution_detail {
    display: flex;
    column-gap: clamp(40px, calc(40px + (80 - 40) * (100vw - 768px) / (1080 - 768)), 80px);
    align-items: flex-start;
  }
  .solution_detail img {
    width: clamp(250px, calc(250px + (320 - 250) * (100vw - 768px) / (1080 - 768)), 320px);
    flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .solution_nav ul {
    column-gap: 24px;
    padding: 20px;
  }
  .solution_block {
    padding: 40px 0 64px;
  }
  .solution_block .solution_content {
    border-radius: 10px;
    padding: 20px 16px 16px;
  }
  .solution_block .solution_content + .solution_content {
    margin-top: 24px;
  }
  .solution_block .solution_content .title_type01 {
    font-size: 18px;
  }
  .solution_block .solution_content .title_type01_jp::before {
    margin-right: 16px;
    font-size: 20px;
  }
  .solution_detail {
    flex-flow: column;
    row-gap: 24px;
  }
  .solution_detail img {
    width: 100%;
  }
  .solution_text_block {
    row-gap: 24px;
  }
  .solution_text_block .accent_block dt {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .solution_text_block .accent_block dd {
    padding: 16px;
  }
  .anc02_detail {
    flex-flow: column;
    grid-row-gap: 24px;
  }
  .anc02_detail dl {
    width: 100%;
  }
  .anc02_detail dt {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .anc02_detail dd {
    font-size: 13px;
  }
}
