@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*=======================================
　ページ内共通
=======================================*/
header {
  border-bottom: 1px solid rgba(22, 32, 44, 0.12);
}

.bg_area {
  position: relative;
  background: #F2F9FC;
  display: block;
  border-radius: 18px 18px 0 0;
  background-image: url(../img/service/bg_mask.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  -webkit-transform: translateY(-6.5vw);
      -ms-transform: translateY(-6.5vw);
          transform: translateY(-6.5vw);
}
@media screen and (max-width: 768px) {
  .bg_area {
    margin-bottom: 30px;
    border-radius: 9px 9px 0 0;
    -webkit-transform: translateY(-2vw);
        -ms-transform: translateY(-2vw);
            transform: translateY(-2vw);
  }
}
@media screen and (min-width: 1601px) {
  .bg_area {
    background-size: 100% auto;
  }
}
.bg_area .switch_tab {
  max-width: 900px;
  width: 90%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -98.5%);
      -ms-transform: translate(-50%, -98.5%);
          transform: translate(-50%, -98.5%);
}
@media screen and (max-width: 768px) {
  .bg_area .switch_tab {
    width: 77%;
    gap: 11px;
  }
}
.bg_area .switch_tab .tab {
  position: relative;
  width: calc((100% - 20px) / 2);
  height: 100%;
  aspect-ratio: 4.4/1;
  padding-top: 10px;
  padding-bottom: 5px;
  border-radius: 15px 15px 0 0;
  color: rgba(42, 101, 169, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  letter-spacing: 0.08em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .bg_area .switch_tab .tab:hover {
    color: #2A65A9;
  }
  .bg_area .switch_tab .tab:hover .tab_txt::before {
    opacity: 1;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .bg_area .switch_tab .tab:hover {
    color: #2A65A9;
  }
  .bg_area .switch_tab .tab:hover .tab_txt::before {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .bg_area .switch_tab .tab {
    width: calc((100% - 11px) / 2);
    aspect-ratio: 3.78378/1;
    font-size: 24px;
    border-radius: 7px 7px 0 0;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 500px) {
  .bg_area .switch_tab .tab {
    font-size: 14px;
  }
}
.bg_area .switch_tab .tab .tab_txt {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.bg_area .switch_tab .tab .tab_txt::before {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.bg_area .switch_tab .tab_a {
  background: #F2F9FC;
}
.bg_area .switch_tab .tab_a .tab_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .bg_area .switch_tab .tab_a .tab_txt {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 500px) {
  .bg_area .switch_tab .tab_a .tab_txt {
    -webkit-transform: translateX(-5.5px);
        -ms-transform: translateX(-5.5px);
            transform: translateX(-5.5px);
  }
}
.bg_area .switch_tab .tab_a .tab_txt::before {
  content: "";
  display: block;
  position: relative;
  opacity: 0.5;
  width: 36.76px;
  height: 30.6px;
  top: 0;
  left: -13%;
  background-image: url(../img/features/service_icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}
@media screen and (max-width: 768px) {
  .bg_area .switch_tab .tab_a .tab_txt::before {
    left: -1vw;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }
}
@media screen and (max-width: 500px) {
  .bg_area .switch_tab .tab_a .tab_txt::before {
    left: 1vw;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
  }
}
.bg_area .switch_tab .tab_b {
  background: #D0EAFF;
}
.bg_area .switch_tab .tab_b .tab_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
@media screen and (max-width: 768px) {
  .bg_area .switch_tab .tab_b .tab_txt {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 500px) {
  .bg_area .switch_tab .tab_b .tab_txt {
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}
.bg_area .switch_tab .tab_b .tab_txt::before {
  content: "";
  display: block;
  position: relative;
  opacity: 0.5;
  width: 24px;
  height: 29.3px;
  top: 4%;
  left: -13%;
  background-image: url(../img/features/features_icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}
@media screen and (max-width: 768px) {
  .bg_area .switch_tab .tab_b .tab_txt::before {
    left: -1vw;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }
}
@media screen and (max-width: 500px) {
  .bg_area .switch_tab .tab_b .tab_txt::before {
    left: 0.5vw;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
  }
}
.bg_area .switch_tab .active {
  color: #2A65A9;
  pointer-events: none;
}
.bg_area .switch_tab .active .tab_txt::before {
  opacity: 1;
}

h2 {
  color: #2A65A9;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sp_active {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_active {
    display: block;
  }
}

/*=======================================
	features
=======================================*/
.breadcrumbs {
  margin: 0 auto;
  padding-top: 28px;
  margin-bottom: 124px;
  max-width: 81.25%;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs .inner {
  margin: 0;
}
.breadcrumbs .inner ol li a {
  color: #2A65A9;
}

.service_ttl {
  margin: 0px auto 120px;
}
@media screen and (max-width: 768px) {
  .service_ttl {
    margin-bottom: 36px;
    padding-top: 55px;
  }
}
.service_ttl h1 {
  margin-bottom: 16px;
  color: #2A65A9;
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.26666;
}
@media screen and (max-width: 768px) {
  .service_ttl h1 {
    font-size: 28px;
    line-height: 34.8px;
    margin-bottom: 3px;
  }
}
.service_ttl p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #707070;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .service_ttl p {
    font-size: 12px;
    line-height: 21px;
  }
}

.catch_copy {
  text-align: center;
  margin-bottom: 44px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.59375;
}
.catch_copy .color {
  color: #2A65A9;
}
@media screen and (max-width: 768px) {
  .catch_copy {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 33px;
  }
}

.site_des {
  width: 90.5%;
  max-width: 982.5px;
  margin: 0 auto;
  margin-bottom: 83px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .site_des {
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
}

.service_intro {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .service_intro {
    width: 80%;
    padding-bottom: 30px;
  }
}
.service_intro .ser_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5102%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .service_intro .ser_01 {
    display: block;
    margin-bottom: 40px;
  }
}
.service_intro .ser_01 .ser_image {
  width: 46.5306%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .service_intro .ser_01 .ser_image {
    width: 100%;
    margin-bottom: 26px;
  }
}
.service_intro .ser_01 .txt_area .sttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13px !important;
}
@media screen and (max-width: 768px) {
  .service_intro .ser_01 .txt_area .sttl {
    margin-bottom: 4px !important;
  }
}
@media screen and (max-width: 768px) {
  .service_intro .ser_01 .txt_area .sttl .ja {
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
.service_intro .ser_01 .txt_area .sttl .en {
  color: #8F8F8F;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .service_intro .ser_01 .txt_area .sttl .en {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}
.service_intro .ser_01 .txt_area .description {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
}
@media screen and (max-width: 768px) {
  .service_intro .ser_01 .txt_area .description {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
.service_intro .flex_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.77551%;
}
@media screen and (max-width: 768px) {
  .service_intro .flex_container {
    display: block;
  }
}
.service_intro .flex_container .ser_div {
  width: 48.2653%;
}
@media screen and (max-width: 768px) {
  .service_intro .flex_container .ser_div {
    width: 100%;
  }
}
.service_intro .flex_container .ser_div .txt_img_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.36267%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .service_intro .flex_container .ser_div .txt_img_flex {
    gap: 7.77267%;
    margin-bottom: 18px;
  }
}
.service_intro .flex_container .ser_div .txt_img_flex .ser_image {
  width: 34.3569%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .service_intro .flex_container .ser_div .txt_img_flex .ser_image {
    width: 100%;
    width: 113px;
  }
}
@media screen and (max-width: 768px) {
  .service_intro .flex_container .ser_div .txt_img_flex .sttl_area {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.service_intro .flex_container .ser_div .txt_img_flex .sttl_area .sttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3px !important;
}
@media screen and (max-width: 1100px) {
  .service_intro .flex_container .ser_div .txt_img_flex .sttl_area .sttl {
    display: block;
    margin-bottom: 15px !important;
  }
}
.service_intro .flex_container .ser_div .txt_img_flex .sttl_area .sttl .ja {
  font-size: 23px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .service_intro .flex_container .ser_div .txt_img_flex .sttl_area .sttl .ja {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
.service_intro .flex_container .ser_div .txt_img_flex .sttl_area .sttl .en {
  color: #8F8F8F;
  font-size: 11px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .service_intro .flex_container .ser_div .txt_img_flex .sttl_area .sttl .en {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}
.service_intro .flex_container .ser_div .txt_img_flex .sttl_des {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.service_intro .flex_container .ser_div .description {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.1;
}
@media screen and (max-width: 768px) {
  .service_intro .flex_container .ser_div .description {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}

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

.sttl_des.sp_active {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.our_service {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}
.our_service .ser_detail {
  background: #F2F9FC;
  border-radius: 5px;
  padding: 5.38461% 7.6923% 6.53846%;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail {
    padding: 4.38461% 6.3923% 10.53846%;
  }
}
.our_service .ser_detail .des_ttl_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #2A65A9;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .des_ttl_group {
    padding-bottom: 3px;
    margin-top: 14px;
    margin-bottom: 25px;
  }
}
.our_service .ser_detail .des_ttl_group .ser_num {
  position: relative;
  width: 82px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .des_ttl_group .ser_num {
    width: 28px;
    margin-right: 5px;
  }
}
.our_service .ser_detail .des_ttl_group .ser_num .txt {
  position: relative;
  margin-bottom: -2px;
  color: #2A65A9;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-style: italic;
  font-family: "jost", sans-serif;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .des_ttl_group .ser_num .txt {
    font-size: 10px;
  }
}
.our_service .ser_detail .des_ttl_group .ser_num .num {
  position: relative;
  display: block;
  color: #2A65A9;
  font-size: 54px;
  font-weight: 500;
  font-style: italic;
  font-family: "jost", sans-serif;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .des_ttl_group .ser_num .num {
    font-size: 25px;
  }
}
.our_service .ser_detail .des_ttl_group .des_ttl {
  margin-top: 20px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .des_ttl_group .des_ttl {
    margin-top: 5px;
    font-size: 20px;
  }
}
.our_service .ser_detail .flex_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.2%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .flex_container {
    display: block;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .flex_container .txt_illust_column {
    margin-bottom: 25px;
  }
}
.our_service .ser_detail .flex_container .txt_illust_column .des_txt {
  margin-top: -4px;
  margin-bottom: 33px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .flex_container .txt_illust_column .des_txt {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
}
.our_service .ser_detail .flex_container .txt_illust_column .illust_img {
  display: block;
  width: 100%;
  margin: 0 auto;
}
.our_service .ser_detail .flex_container .ser_img {
  display: block;
  width: 182.7272%;
  min-width: 240px;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
}
.our_service .ser_detail .ser_case {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case {
    border-radius: 5px;
  }
}
.our_service .ser_detail .ser_case h3 {
  position: relative;
  width: 100%;
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  max-width: 1100px;
  border-radius: 10px 10px 0 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#2A65A9), to(#69A9F0));
  background-image: linear-gradient(to right, #2A65A9, #69A9F0);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.875;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case h3 {
    height: 52px;
    border-radius: 5px 5px 0 0;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
.our_service .ser_detail .ser_case .border_wrapper {
  padding-top: 30px;
  border-right: 1px solid #2A65A9;
  border-bottom: 1px solid #2A65A9;
  border-left: 1px solid #2A65A9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper {
    margin-bottom: 0 0 20px 20px;
    border-radius: 0 0 5px 5px;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .area_des {
  width: 90%;
  max-width: 979px;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .area_des {
    width: 85%;
    max-width: none;
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.75;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 {
  width: 89%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0429%;
  margin: 0 auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 {
    display: block;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 .case {
  padding: 2.55678%;
  padding-bottom: 2.15678%;
  width: 49.0296%;
  border: 1px dashed #2A65A9;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 .case {
    width: 100%;
    padding: 8%;
    padding-top: 8%;
    padding-bottom: 4.5%;
    margin-bottom: 17px;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 .case img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 .case img {
    aspect-ratio: 1.53571/1;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 .case h4 {
  color: #2A65A9;
  padding: 19px 0 13px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 .case h4 {
    font-size: 16px;
    padding: 12px 0 8px;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 .case .case_des {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_01 .case .case_des {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 {
  width: 89%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0429%;
  margin: 0 auto;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 {
    display: block;
    margin-bottom: 25px;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case {
  width: 32.1756%;
  padding: 2.5378%;
  padding-top: 3.3378%;
  border: 1px dashed #2A65A9;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case {
    width: 100%;
    padding: 8%;
    padding-bottom: 4.5%;
    margin-bottom: 17px;
  }
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case:last-of-type {
    margin-bottom: 0;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case img {
    aspect-ratio: 1.53571/1;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case h4 {
  color: #2A65A9;
  padding: 18px 0 13px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case h4 {
    font-size: 16px;
    padding: 12px 0 8px;
  }
}
.our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case .case_des {
  width: 101%;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.625;
}
@media screen and (max-width: 768px) {
  .our_service .ser_detail .ser_case .border_wrapper .case_detail .case_group_02 .case .case_des {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
}
.our_service .detail_01 {
  margin-bottom: 6.15384%;
}
@media screen and (max-width: 900px) {
  .our_service .detail_01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 900px) {
  .our_service .detail_01 .flex_container {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .our_service .detail_01 .flex_container .txt_illust_column {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 900px) {
  .our_service .detail_01 .flex_container .ser_img {
    width: 100%;
  }
}
.our_service .detail_02 {
  padding-top: 5.73846%;
  padding-bottom: 7%;
  margin-bottom: 6.15384%;
}
@media screen and (max-width: 900px) {
  .our_service .detail_02 {
    width: 100%;
    padding: 5.58461% 6.3923% 10.53846%;
    margin-bottom: 30px;
  }
}
.our_service .detail_02 .ttl_02 {
  margin-bottom: 63px;
}
@media screen and (max-width: 900px) {
  .our_service .detail_02 .ttl_02 {
    margin-bottom: 20px;
  }
}
.our_service .detail_02 .flex_container {
  margin-bottom: 0;
  gap: 7.27273%;
}
.our_service .detail_02 .flex_container .left_item {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .our_service .detail_02 .flex_container .left_item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.our_service .detail_02 .flex_container .left_item .des_txt {
  margin-top: -5px;
  margin-bottom: 13.6364%;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .our_service .detail_02 .flex_container .left_item .des_txt {
    margin-bottom: 17px;
    margin-top: 0px;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
}
.our_service .detail_02 .flex_container .right_item {
  width: 32.7273%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.74444%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .our_service .detail_02 .flex_container .right_item {
    width: 100%;
    gap: 20px;
  }
}
.our_service .detail_02 .flex_container .right_item .ser_img {
  min-width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.our_service .detail_03 {
  padding-top: 5.76923%;
  padding-bottom: 6.92307%;
}
@media screen and (max-width: 768px) {
  .our_service .detail_03 {
    padding-top: 5.56923%;
    padding-bottom: 11.53846%;
  }
}
@media screen and (max-width: 768px) {
  .our_service .detail_03 .ttl_03 {
    margin-bottom: 22px;
  }
}
.our_service .detail_03 .flex_container {
  gap: 7.27272%;
  margin-bottom: 63px;
}
@media screen and (max-width: 900px) {
  .our_service .detail_03 .flex_container {
    margin-bottom: 39px;
  }
}
.our_service .detail_03 .flex_container .txt_illust_column .des_txt {
  width: 100%;
  max-width: 516px;
  margin-bottom: 16.0852%;
}
@media screen and (max-width: 900px) {
  .our_service .detail_03 .flex_container .txt_illust_column .des_txt {
    margin-bottom: 11.5082%;
    max-width: none;
  }
}
.our_service .detail_03 .flex_container .txt_illust_column .ser_img {
  width: 100%;
  max-width: 516px;
}
@media screen and (max-width: 900px) {
  .our_service .detail_03 .flex_container .txt_illust_column .ser_img {
    margin: 0 auto;
  }
}
.our_service .detail_03 .flex_container .txt_img_pc {
  width: 45.8181%;
  margin-top: 49px;
}
.our_service .detail_03 .flex_container .txt_img_sp {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 25px;
}
.our_service .detail_03 .ser_area h3 {
  font-size: 28px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .our_service .detail_03 .ser_area h3 {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 0;
  }
}
.our_service .detail_03 .ser_area .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.63636%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 60px 45px;
}
@media screen and (max-width: 768px) {
  .our_service .detail_03 .ser_area .content {
    display: block;
    padding: 18px 22px 20px;
  }
}
.our_service .detail_03 .ser_area .content .area_des {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .our_service .detail_03 .ser_area .content .area_des {
    width: 100%;
    max-width: none;
    margin-bottom: 29px;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
}
.our_service .detail_03 .ser_area .content .area_map {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .our_service .detail_03 .ser_area .content .area_map {
    width: 100%;
  }
}

.txt_block {
  display: inline-block;
}/*# sourceMappingURL=service.css.map */