@charset "UTF-8";

/* ==========================================================================
   サービスページ
   ========================================================================== */

   /* ----------------------------------------
   パンくずリスト（共通スタイル流用）
---------------------------------------- */
.fl_breadcrumbs {
    padding: 24px 64px;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.fl_breadcrumbs .breadcrumbs-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fl_breadcrumbs .breadcrumbs-home {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.fl_breadcrumbs .home-icon {
    width: 16px;
    height: 16px;
    background-image: url('../images/home-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.fl_breadcrumbs .breadcrumbs-separator {
    color: #999;
    font-size: 10px;
    font-weight: 500;
}

.fl_breadcrumbs .breadcrumbs-link {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.fl_breadcrumbs .breadcrumbs-current {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}


/* メインビジュアルセクション
   ========================================================================== */

.fl_works_mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/service-mv.jpg');
  background-size: cover;
  background-position: left 10% bottom 67%;
  filter: brightness(60%);
  z-index: 0;
}

/* サービス紹介セクション
   ========================================================================== */
.fl_service {
  padding: 40px 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.fl_service__header {
  width: 100%;
  padding: 32px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fl_service .section_title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl_service .title_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fl_service .en_title {
  font-size: 16px;
  color: #979797;
  text-align: center;
  letter-spacing: 1px;
}

.fl_service .title_line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #979797;
}

.fl_service .ja_title {
  font-size: 32px;
  font-weight: 700;
  color: #0280A4;
  text-align: center;
}

.fl_service .description {
  font-size: 16px;
  font-weight: 500;
  color: #0280A4;
  text-align: center;
}

.fl_service__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1072px;
}

.fl_service .service_card {
  width: 336px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.03), 0px 12px 16px -4px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.fl_service .card_image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.fl_service .card_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    border-radius: 16px;
}

.fl_service .card_content {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fl_service .content_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl_service .card_title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  text-align: center;
}

.fl_service .card_description {
  margin-top: 4px;
}

.fl_service .card_description p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
}

.fl_service .card_link {
  display: flex;
  justify-content: center;
}

.fl_service .detail_button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px 8px 30px;
  border: 1px solid #0280A4;
  border-radius: 20px;
  text-decoration: none;
}

.fl_service .detail_button span {
  font-size: 14px;
  font-weight: 500;
  color: #0280A4;
}

.fl_service .detail_button .icon-chevron-right {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%230280A4' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

/* レスポンシブ対応
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .fl_service {
    padding: 40px 100px 120px;
  }

  .fl_service__header {
    padding: 32px 100px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fl_service {
    padding: 40px 20px 120px;
  }

}

@media screen and (max-width: 768px) {
  .fl_breadcrumbs {
        padding: 16px;
    }
  
  .fl_service_mv .area_text {
    font-size: 28px;
  }

  .fl_service_mv .main_title {
    font-size: 36px;
  }

  .fl_service_mv .phone_button,
  .fl_service_mv .contact_button {
    width: 300px;
  }

  .fl_service {
    padding: 40px 20px 80px;
  }

  .fl_service__header {
    padding: 32px 20px;
  }

  .fl_service .ja_title {
    font-size:28px;
  }

  .fl_service .service_card {
    width: 100%;
    max-width: 336px;
  }
}

@media screen and (max-width: 480px) {
  .fl_service_mv__inner {
    padding: 40px 20px;
  }

  .fl_service_mv .area_text {
    font-size: 24px;
  }

  .fl_service_mv .main_title {
    font-size: 30px;
  }

  .fl_service_mv .phone_button,
  .fl_service_mv .contact_button {
    width: 280px;
    height: 60px;
  }

  .fl_service_mv .phone_number p {
    font-size: 24px;
  }

  .fl_service_mv .button_text p {
    font-size: 20px;
  }
}
