*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.fv-slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  max-height: 800px;
  aspect-ratio: 5/2;
}

.fv-slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.fv-slide {
  min-width: 100%;
  height: 100%;
}

.fv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* 矢印 */
.fv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2c68c9;
  border: none;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  padding: none;
}
.fv-arrow span{
    color: #fff;
    margin: auto;
    font-size: 30px;

}
.fv-arrow.prev {
  left: 20px;
}

.fv-arrow.next {
  right: 20px;
}

.fv-arrow:hover {
  opacity: 0.8;
}



/* 全体 */
.service-area {
  padding: 40px 20px;
  position: relative;
}


.service-list {
  display: flex;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  position: absolute;
  z-index: 99;
  top: -80%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;

}

/* ボックス */
.service-box {
    flex: 1;
    background: #2d6cc4;
    color: #fff;
    border-radius: 4px;
    display: flex;
    gap: 20px;
    align-items: self-start;
    padding: 42px 24px 30px;
    height: fit-content;
    min-height: 210px;
}

/* アイコン共通 */
.service-icon {
    width: auto;
    aspect-ratio: 1/1;
    height: 80%;
    background: #fff;
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
}
.service-icon img{
    margin: 10px;
}

/* テキスト */
.service-box h3 {
  margin: 0 0 8px;
  font-size: 27px;
  color: #fff;
  font-weight: normal;
  position: relative;
  height: fit-content;
  padding-bottom: 25px;
  min-width: 0;
}
.service-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 2px;
  background: #fff;
}
.service-text {
  margin: 0;
  font-size: var(--font-size-normal);
  line-height: 1.6;
  margin-top: 20px;
}


/* ===== セクション全体 ===== */
.feature-section {
  padding: 80px 0;
  position: relative;
  margin-top: 180px;
  margin-bottom: 80px;
}
.feature-back{
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  background: #F3FEFF;
  height: 100%;
  content: "";
  z-index: -999;
}
.feature-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== 見出し ===== */

.feature-title{
  margin: 0;
}

/* ===== コンテンツ2カラム ===== */
.feature-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    width: 100%;
    padding: 80px 0;
    border-bottom: 1px solid #868686;
}

/* ===== 左テキスト ===== */
.feature-text {
    flex: 1;
    min-width: 0;
    max-width: 700px;
}

.feature-heading {
  font-size: var(--font-size-big);
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-top: 0;
  color: #111;
}

.feature-subtitle {
  font-size: var(--font-size-normal);
  color: #f28c28;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.feature-description {
  font-size: var(--font-size-normal);
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

/* ===== ボタン ===== */

/* ===== 右ビジュアル ===== */
.feature-visual {
    flex: 0 0 317px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    z-index: -10;
    max-width: 350px;
}

.feature-oval {
  width: 100%;
  height: auto;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .feature-content {
    flex-direction: column;
    gap: 40px;
  }

  .feature-visual {
    flex: none;
    width: 100%;
  }

  .feature-heading {
    font-size: 26px;
  }
}





/* マップ */
.maps{
  margin-bottom: 180px;
}
.map{
  width: 100%;
  max-width: 1440px;
  display: flex;
  padding: 80px 0;
}
.map-container{
  margin: auto;
  max-width: 1100px;
}
.map-img-box {
    display: flex;
}
.map-img-box img{
  margin: auto;
  max-width: 700px;
  width: 80%;
}

.area {
  width: 100%;
  margin: 40px auto;
  padding: 0;
}

.area-title {
  padding: 20px 30px;
  border-left: #245a9c 10px solid;
  border-bottom: 2px solid #245a9c;
}
.area-title h2 {
  font-size: 28px;
  font-weight: normal;
  margin: 0;
}
.area-text {
  font-size: var(--font-size-normal);
  line-height: 2;
}




/* レスポンシブ タブレット */
@media(max-width:1024px){
  .service-box{
    flex-direction: column;
    min-height: 350px;
    padding: 20px;
  }
  .service-icon{
    width: 100%;
    display: flex;
    justify-content: center;
    aspect-ratio: auto;
  }
  .feature-section{
    width: 90%;
    margin: 180px auto 0; 
  }
  .feature-back{
    background: transparent;
  }
  .map-container{
    width: 90%;
  }
}
@media(max-width:768px){
  .service-box h3 {
    font-size: 20px;
  }
  .service-list {
    flex-direction: row;
  }
  .feature-text {
        margin-right: auto;
        background: #ffffff70;
        width: 100%;
    }
  .flow-text h3{
    max-width: 230px;
  }
  .maps{
    margin-bottom: 100px;
  }
}
@media(max-width:500px){
.header-top-left{
  column-gap: 0;
}
.fv-arrow.next {
    right: 10px;
}
.fv-arrow.prev {
    left: 10px;
}
  .fv-slider{
    max-height: auto;
    aspect-ratio: 1/1;
  }
  .service-list {
        position: relative;
        display: flex;
        flex-direction: row;
    }
  .service-box {
      flex-direction: column;
      min-height: auto;
      padding: 20px;
  }
  .service-box:nth-child(3){
    border-right: 1px solid #2d6cc4;
  }
  .service-icon{
    max-width: 60px;
    margin: auto;
  }
  .feature-section{
    margin: 50px 20px;
  }
  .fv-arrow{
    width: 50px;
    height: 50px;
  }
  .fv-arrow span{
    font-size: 20px;
  }
.service-area{
  display: flex;
  padding: 0;
}
.service-list{
  margin: auto;
  width: 100%;
  gap: 0;
}
.service-box{
  border-radius: 0;
  background: #fff;
  border-left: 1px solid #2d6cc4;
  border-bottom: 1px solid #2d6cc4;
  border-top: 1px solid #2d6cc4;
}
.service-box h3{
  padding-bottom: 15px;
  margin: 0;
  color: #2c68c9;
  font-weight: normal;
  line-height: 1.3;
  text-align: center;
}
.service-icon img{
  margin: 0;
}
.service-box h3::before{
  display: none;
}
.service-text{
  margin-top: 15px;
  color: #2c68c9;
  display: none;
}

.feature-visual {
        width: 40%;
        top: 35px;
    }
.feature-text{
  background: transparent;
}
.feature-content{
  padding: 70px 0;
}

.feature-subtitle{
  margin-bottom: 30px;
}
.map-img-box img{
  width: 100%;
}
.area-title h2{
  font-size: 25px;
}
.area-title {
padding: 15px 15px;
}
.area{
  margin: 30px 0;
}
.fv-slide img{
  object-position: bottom;
}
}





  @media(max-width:400px){
      .service-list {
        flex-direction: column;
        gap: 10px;
        padding: 30px 20px;
    }
    .service-box {
        border-radius: 0;
        background: #fff;
        border: 1px solid #2d6cc4;
        flex-direction: row;
        align-items: center;
    }
    .service-icon{
      margin: 0;
    }
    .service-box h3{
      padding: 0;
    }
  }