/* キッチンリフォームページのスタイル */

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

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

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

.fl_breadcrumbs .breadcrumb-item.home {
  display: flex;
  align-items: center;
}

.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: #999;
  font-size: 10px;
  margin: 0 4px;
}

.fl_breadcrumbs .breadcrumb-item.current {
  color: #0280A4;
  font-weight: 500;
}

/* 特徴セクション */
.fl_features {
  position: relative;
  background-color: #CCE6EC;
  padding: 56px 200px;
}

.fl_features .container {
  max-width: 1040px;
  margin: 0 auto;
}

.fl_features .features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.fl_features .features-title-box {
  background-color: #0280A4;
  border-radius: 90px;
  padding: 15px 80px;
}

.fl_features .features-title {
  color: white;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.fl_features .features-arrow {
  width: 40px;
  height: 20px;
  background-image: url('../images/features-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -12px;
}

.fl_features .features-content {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.fl_features .feature-item {
  background-color: white;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.fl_features .feature-title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.fl_features .feature-title span {
  font-size:24px;
}

.fl_features .feature-img {
  width: 100%;
  height: 174px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.fl_features .feature-img img {
  height: 80%;
  width: auto;
}

.fl_features .feature-text {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

/* ----------------------------------------
   MV画像
---------------------------------------- */
.fl_works_mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/service-kitchen-mv.jpg');
  background-size: cover;
  background-position: center bottom 40%;
  z-index: 0;
  filter: brightness(60%);
}
/* 施工事例セクション */
.fl_works {
  background-color: white;
  padding: 0 200px 64px;
}

.fl_works .container {
  max-width: 1040px;
  margin: 0 auto;
}

.fl_works .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  padding: 32px 0;
}

.fl_works .title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fl_works .section-title-en {
  color: #979797;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: 'DIN 2014', sans-serif;
}

.fl_works .section-line {
  width: 40px;
  height: 2px;
  background-color: #979797;
}

.fl_works .section-header .section-title {
  color: #0280A4;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.fl_works .works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.fl_works .work-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.fl_works .work-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.fl_works .work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fl_works .work-content {
  padding: 16px;
}

.fl_works .work-title {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.fl_works .work-description {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.fl_works .more-works {
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

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

.fl_works .more-icon {
  width: 20px;
  height: 20px;
  background-image: url('../images/chevron-right-blue.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* お客様の声セクション */
.fl_testimonials {
  background-color: white;
  padding: 40px 200px 80px;
}

.fl_testimonials .container {
  max-width: 1040px;
  margin: 0 auto;
}

.fl_testimonials .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.fl_testimonials .title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fl_testimonials .section-title-en {
  color: #979797;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: 'DIN 2014', sans-serif;
}

.fl_testimonials .section-line {
  width: 40px;
  height: 2px;
  background-color: #979797;
}

.fl_testimonials .section-title {
  color: #0280A4;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.fl_testimonials .reviews-slider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.fl_testimonials .slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E0E0E0;
  cursor: pointer;
}

.fl_testimonials .slider-dot.active {
  background-color: #0280A4;
}

/* 料金セクション */
.fl_pricing {
  background-color: white;
  padding: 40px 200px 160px;
}

.fl_pricing .container {
  max-width: 1040px;
  margin: 0 auto;
}

.fl_pricing .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.fl_pricing .title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fl_pricing .section-title-en {
  color: #979797;
  font-size: 16px;
  letter-spacing:1px;
  font-weight: 400;
  font-family: 'DIN 2014', sans-serif;
}

.fl_pricing .section-line {
  width: 40px;
  height: 2px;
  background-color: #979797;
}

.fl_pricing .section-title {
  color: #0280A4;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.fl_pricing .pricing-table {
  width: 868px;
  margin: 0 auto;
}

.fl_pricing .price-header {
  display: flex;
}

.fl_pricing .price-header .price-title {
  flex: 1;
  background-color: #0280A4;
  border-bottom: 1px solid #E0E0E0;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  text-align: center;
}

.fl_pricing .price-header .price-value {
  width: 434px;
  background-color: white;
  border: 1px solid #0280A4;
  color: #0280A4;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  text-align: center;
}

.fl_pricing .price-row {
  display: flex;
}

.fl_pricing .price-row .price-title {
  flex: 1;
  background-color: #0280A4;
  border-bottom: 1px solid #E0E0E0;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  text-align: left;
}

.fl_pricing .price-row .price-value {
  width: 434px;
  background-color: white;
  border: 1px solid #0280A4;
  padding: 16px 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.fl_pricing .price-number {
  color: #E70C0F;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.fl_pricing .price-unit {
  color: #E70C0F;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
}

.fl_pricing .price-note {
  padding: 8px 0;
  text-align: right;
}

.fl_pricing .price-note p {
  color: #666;
  font-size: 14px;
}

/* お問い合わせセクション */
.fl_contact-section {
  background-color: #08519B;
  padding: 0 160px;
}

.fl_contact-section .contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0;
  gap: 72px;
  max-width: 1120px;
  margin: 0 auto;
}

.fl_contact-section .section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.fl_contact-section .section-title-en,
.fl_contact-section .section-title {
  color: white;
}

.fl_contact-section .section-line.contact-line {
  background-color: white;
}

.fl_contact-section .contact-lead {
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}

.fl_contact-section .contact-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.fl_contact-section .contact-phone,
.fl_contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fl_contact-section .cta-copy p {
  color: white;
}

.fl_contact-section .contact-phone-button {
  border: 2px solid white;
  border-radius: 300px;
  padding: 8px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fl_contact-section .contact-phone-button .phone-icon-box span {
  color: white;
  font-size: 40px;
}

.fl_contact-section .contact-phone-button p {
  color: white;
  font-size: 12px;
}

.fl_contact-section .white-line {
  background-color: white;
}

.fl_contact-section .contact-form-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #F7971E;
  color: white;
  border-radius: 1000px;
  padding: 27px 40px;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.fl_contact-section .contact-form-button span {
  font-size: 28px;
  font-weight: 700;
}

/* レスポンシブ調整 */
@media (max-width: 1200px) {
  .fl_features,
  .fl_works,
  .fl_testimonials,
  .fl_pricing {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .fl_contact-section {
    padding: 0 40px;
  }
  
  .fl_pricing .pricing-table {
    width: 100%;
  }
  
  .fl_pricing .price-header .price-value,
  .fl_pricing .price-row .price-value {
    width: 40%;
  }
}

@media (max-width: 992px) {
  .fl_features .features-content {
    flex-direction: column;
  }
  
  .fl_works .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fl_contact-section .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .fl_features, .fl_works, .fl_testimonials, .fl_pricing {
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

  .fl_features .features-title-box {
    padding: 24px 32px;
  }

  .fl_features .features-title {
    font-size: 24px;
  }

  .fl_works .section-title {
    font-size:28px;
  }

  .fl_features, .fl_works, .fl_testimonials, .fl_pricing {
    padding-left: 20px;
    padding-right: 20px;
  }


  .fl_works .works-grid {
    grid-template-columns: 1fr;
  }
  
  .fl_testimonials .section-title {
    font-size:28px;
  }

  .fl_pricing .section-title{
    font-size:28px;
  }

  .fl_pricing .price-note p {
    text-align:left;
  }
}
