@charset "UTF-8";


/* パンくずリスト */
.fl_breadcrumbs {
  background-color: #ffffff;
  padding: 24px 64px;
}

.fl_breadcrumbs .container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fl_breadcrumbs .home_link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #999999;
  font-size: 14px;
  font-weight: 500;
}

.fl_breadcrumbs .home_icon {
  width: 16px;
  height: 16px;
  background-image: url('../images/home-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
}

.fl_breadcrumbs .separator {
  color: #999999;
  font-size: 10px;
}

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

/* ----------------------------------------
   MV画像
---------------------------------------- */

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

/* コンテンツセクション */
.fl_helpful_content {
  padding: 32px 0 64px;
  background-color: #ffffff;
}

.fl_helpful_content .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* コンテンツヘッダー */
.fl_helpful_content .content_header {
  margin-bottom: 24px;
  text-align: center;
  padding: 32px 0;
}

.fl_helpful_content .section_tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.fl_helpful_content .section_tag span {
  color: #979797;
  font-family: 'DIN 2014', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.fl_helpful_content .section_tag .line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #979797;
}

.fl_helpful_content .section_title {
  font-size: 32px;
  font-weight: 700;
  color: #0280A4;
  margin-bottom: 16px;
}

.fl_helpful_content .section_desc {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
}

/* タブメニュー */
.fl_helpful_content .tab_menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 32px;
}

.fl_helpful_content .tab {
  position: relative;
  width: 20%;
  height: 64px;
  cursor: pointer;
}

.fl_helpful_content .tab_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px 8px;
  background-color: #ffffff;
  border: 1px solid #0280A4;
  border-radius: 6px 6px 0 0;
}

.fl_helpful_content .tab.active .tab_inner {
  background-color: #0280A4;
  color: #ffffff;
  border: none;
}

.fl_helpful_content .tab:not(.active) .tab_inner span {
  color: #0280A4;
  font-weight: 700;
  font-size: 16px;
}

.fl_helpful_content .tab span {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.fl_helpful_content .tab_arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background-color: #0280A4;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: none;
}

.fl_helpful_content .tab.active .tab_arrow {
  display: block;
}

/* タブコンテンツ */
.fl_helpful_content .tab_content {
  padding-top: 8px;
}

.fl_helpful_content .content_title {
  font-size: 24px;
  font-weight: 700;
  color: #0280A4;
  margin-bottom: 24px;
  padding: 0 8px;
  text-align: left;
}

/* 記事リスト */
.fl_helpful_content .article_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

/* 記事カード */
.fl_helpful_content .article_card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06), 0px 4px 8px -2px rgba(0, 0, 0, 0.1);
  border: 0.7px solid #C4C4C4;
}

.fl_helpful_content .card_image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.fl_helpful_content .card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fl_helpful_content .card_content {
  padding: 16px;
}

.fl_helpful_content .card_meta {
  margin-bottom: 16px;
}

.fl_helpful_content .card_date {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.fl_helpful_content .card_date span {
  color: #666666;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.fl_helpful_content .card_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.fl_helpful_content .card_line {
  height: 1px;
  background-color: #ECF0F6;
  margin-top: 8px;
}

.fl_helpful_content .card_tags {
  display: flex;
  gap: 12px;
}

.fl_helpful_content .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 16px;
  background-color: #0280A4;
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* もっと見るボタン */
.fl_helpful_content .more_button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.fl_helpful_content .more_button-btn {
  display: flex;
  align-items: center;
  gap: 32px;
  border: 2px solid #0280A4;
  border-radius: 60px;
  padding: 24px 0 24px 118px;
  text-decoration: none;
  color: #0280A4;
  font-size: 16px;
  font-weight: 700;
  width: 340px;
}

.fl_helpful_content .arrow_icon {
  width: 16px;
  height: 16px;
  background-image: url('../images/chevron-right-blue.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
  .fl_helpful_content .container {
    padding: 0 20px;
  }
}


@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fl_helpful_content .article_list {
    grid-template-columns: repeat(2, 1fr);
  }

}



@media screen and (max-width: 960px) {
  .fl_helpful_content .tab span {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .fl_breadcrumbs {
    padding: 16px 20px;
  }

  .fl_helpful_content .section_title {
    font-size: 28px;
  }

  .fl_helpful_content .tab_menu {
    flex-wrap: wrap;
  }

  .fl_helpful_content .tab {
    width: calc(50% - 5px);
  }

  .fl_helpful_content .article_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .fl_helpful_content .more_button {
    width: 100%;
    padding: 20px 0;
  }
}

@media screen and (max-width: 480px) {
.fl_helpful_content .tab {
    width: 100%;
  }

  .fl_helpful_content .article_list {
    grid-template-columns: 1fr;
  }
}
