@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
- main_ttl & breadcrumbs
- container
- side_nav
- main_contents
- contact_bnr
-------------------------*/
/*=======================================
　main_ttl & breadcrumbs
=======================================*/
.main_ttl {
  background: center/cover url(../img/service/main.jpg) no-repeat;
}
@media screen and (max-width: 768px) {
  .main_ttl {
    background: center/cover url(../img/service/main_sp.jpg) no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 53px;
  }
}

/*=======================================
　container
=======================================*/
.container {
  position: relative;
}
.container .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 98px;
}
@media screen and (max-width: 768px) {
  .container .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
  }
}

/*=======================================
　side_nav
=======================================*/
.side_nav {
  padding: 30px 16px;
  background: rgba(255, 255, 255, 0.83);
  border-radius: 5px;
  margin-top: -30px;
  margin-bottom: 100px;
  z-index: 1;
}
.side_nav ul {
  padding-bottom: 0;
}
.side_nav ul li {
  width: 160px;
  padding-left: 22px;
}

/*=======================================
	service_cmn_txt
=======================================*/
.service_cmn_txt {
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .service_cmn_txt {
    width: 100%;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.8461538462;
  }
}

/*=======================================
	strong-point_sec
=======================================*/
.strong-point_sec .strong-point_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .strong-point_sec .strong-point_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 70px;
  }
}
.strong-point_sec .strong-point_content .strong-point_txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.strong-point_sec .strong-point_content .strong-point_img {
  width: 54.45544554%;
}
@media screen and (max-width: 768px) {
  .strong-point_sec .strong-point_content .strong-point_img {
    width: 100%;
  }
}

/*=======================================
	technology_sec
=======================================*/
.technology_sec {
  padding-top: 120px;
  padding-bottom: 120px;
  margin-bottom: 0 !important;
  position: relative;
}
@media screen and (max-width: 768px) {
  .technology_sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.technology_sec::before {
  content: "";
  display: block;
  width: 200vw;
  height: 100%;
  background: #f9f9f9;
  position: absolute;
  top: 0;
  left: -50vw;
  z-index: -1;
}
.technology_sec .technology_lead {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .technology_sec .technology_lead {
    margin-bottom: 40px;
  }
}
.technology_sec .technology_img {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .technology_sec .technology_img {
    margin-bottom: 40px;
  }
}
.technology_sec .technology_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.technology_sec .technology_step .step_item {
  background: var(--main_white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 55px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px 50px;
}
@media screen and (max-width: 1024px) {
  .technology_sec .technology_step .step_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding: 30px;
  }
}
.technology_sec .technology_step .step_item .step_txt-wrap {
  display: grid;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  grid-template-areas: "number heading" ". txt";
  grid-template-columns: 61px 1fr;
  gap: 12px 40px;
  grid-template-rows: auto auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1024px) {
  .technology_sec .technology_step .step_item .step_txt-wrap {
    grid-template-areas: "number heading" "txt txt";
    grid-template-columns: 46px 1fr;
    gap: 14px 16px;
  }
}
.technology_sec .technology_step .step_item .step_txt-wrap .step_number {
  color: var(--main_white);
  background: var(--main_navy);
  font-family: "Figtree", sans-serif;
  font-size: 29px;
  font-weight: 500;
  width: 61px;
  aspect-ratio: 1/1;
  border-radius: 50vw;
  display: grid;
  place-items: center;
  grid-area: number;
}
@media screen and (max-width: 1024px) {
  .technology_sec .technology_step .step_item .step_txt-wrap .step_number {
    font-size: 21px;
    letter-spacing: 0.03em;
    width: 46px;
  }
}
.technology_sec .technology_step .step_item .step_txt-wrap h4 {
  color: var(--main_navy);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4444444444;
  grid-area: heading;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 61px;
}
@media screen and (max-width: 1024px) {
  .technology_sec .technology_step .step_item .step_txt-wrap h4 {
    font-size: 20px;
    line-height: 1.45;
    height: 46px;
  }
}
.technology_sec .technology_step .step_item .step_txt-wrap .step_txt {
  grid-area: txt;
}
.technology_sec .technology_step .step_item .step_img {
  width: 32.30769231%;
}
@media screen and (max-width: 1024px) {
  .technology_sec .technology_step .step_item .step_img {
    width: 100%;
  }
}

/*=======================================
	discovery_sec
=======================================*/
@media screen and (max-width: 768px) {
  .discovery_sec {
    margin-bottom: 0 !important;
  }
}
.discovery_sec .discovery_img {
  height: 25.6875vw;
  left: 50%;
  translate: -50% 0;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_img {
    height: 57.6vw;
    margin-bottom: 50px;
  }
}
.discovery_sec .discovery_img .h-wrap_outer {
  width: 100%;
  position: absolute;
  top: 12.84375vw;
  translate: 0 -50%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_img .h-wrap_outer {
    top: 28.8vw;
  }
}
.discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner {
  color: var(--main_white);
  width: 100%;
  max-width: 1010px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner hgroup {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner hgroup {
    width: 100%;
  }
}
.discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner hgroup h3 {
  font-size: clamp(24px, 2.1875vw, 35px);
  letter-spacing: 0.1em;
  line-height: 1.4571428571;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner hgroup h3 {
    font-size: 22px;
    letter-spacing: 0.05em;
    line-height: 1.5454545455;
    margin-bottom: 9px;
  }
}
.discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner hgroup .en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(10px, 0.9375vw, 15px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner hgroup .en {
    font-size: 12px;
  }
}
.discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner > p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_img .h-wrap_outer .h-wrap_inner > p {
    width: 100%;
  }
}
.discovery_sec .discovery_img .img-wrap {
  width: 100vw;
  position: absolute;
  left: calc(-290px - (100vw - 1400px) / 2);
}
@media screen and (max-width: 1556px) {
  .discovery_sec .discovery_img .img-wrap {
    left: calc(-290px - 5vw);
  }
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_img .img-wrap {
    height: 100%;
    left: -4vw;
  }
  .discovery_sec .discovery_img .img-wrap img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.discovery_sec .discovery_list dt {
  color: var(--main_navy);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
  padding-bottom: 15px;
  border-bottom: 1px solid #B8B8B8;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_list dt {
    font-size: 22px;
    padding-bottom: 8px;
  }
}
.discovery_sec .discovery_list .discovery_item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_list .discovery_item {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 9px;
  }
}
.discovery_sec .discovery_list .discovery_item:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_list .discovery_item:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.discovery_sec .discovery_list .discovery_item .list_img {
  margin-bottom: 8px;
}
.discovery_sec .discovery_list .discovery_item .list_name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4444444444;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_list .discovery_item .list_name {
    font-size: 15px;
    padding-left: 11px;
  }
}
.discovery_sec .discovery_list .discovery_item .list_name::before {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 1/1;
  border-radius: 50vw;
  background: var(--main_navy);
  position: absolute;
  top: 9.5px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .discovery_sec .discovery_list .discovery_item .list_name::before {
    top: 9px;
  }
}

/*=======================================
	contact_bnr
=======================================*/
@media screen and (max-width: 768px) {
  .contact_bnr {
    margin-top: 50px;
  }
}/*# sourceMappingURL=service.css.map */