/* 2025.09.11追加
--------------------------------*/
/* 実績 */
.work__wrap {
  border: 1px solid #ccc;
  border-radius: 5px;
}
.work__img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work__txt {
  padding: 20px;
}
.work__txt p,
.work__txt h3 {
  color: #306dd4;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 700;
  text-align: center;
}

/* 2026.03.28追加
--------------------------------*/
/* インスタバナー */
.instaBanner {
  margin: 40px auto;
  text-align: center;
  width: min(90%, 800px);
}
.instaBanner a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.instaBanner a:hover {
  opacity: 0.6;
}
/* 組織改革支援サービス */
.supportBox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  max-width: 500px;
}
.supportBox__item {
  width: 100%;
  padding: 20px 20px;
  background: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.supportBox__title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 2px solid #dfe8f1;
}
.supportBox__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.supportBox__list li {
  position: relative;
  padding-left: 1.2em;
  margin-top: 8px;
}
.supportBox__list li:first-child {
  margin-top: 0;
}
.supportBox__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f5f8f;
}
@media screen and (min-width: 768px) {
  .supportBox {
    max-width: none;
    flex-wrap: nowrap;
  }
  .supportBox__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (min-width: 780px) {
  .message-box {
    flex-direction: row-reverse;
  }
}
/* トップページ サービス */
.service-item {
  display: flex;
  flex-wrap: wrap;
}
.service-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 400px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-text {
  width: 100%;
  padding: 30px 24px;
  background: #306ed4;
  box-sizing: border-box;
}
.service-text h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #fff;
}
.service-text p {
  margin: 0;
  color: #fff;
}
.service-text .btn-w {
  margin-top: 20px;
}
/* PC */
@media screen and (min-width: 768px) {
  .service-item {
    flex-wrap: nowrap;
  }
  .service-img {
    width: 50%;
  }
  .service-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .service-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
