@charset "UTF-8";




@media screen and (max-width: 960px) {
}


.section--contact {
    margin-top: 50px;
}

.section__txt {
    margin-bottom: 50px;
}

/* 施工事例 */
.work__title {
    font-size: 2rem;
    text-decoration: underline 6px !important;
    text-decoration-color: rgba(255, 0, 0, 0.5) !important;
}



/* 写真の横並び */
.work__photos {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
  margin-top: 20px;
}

.work__photo img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
}


/* 表のスタイル */
.work__table {
  width: 90%;
  max-width: 550px;
  margin-left: 0;
  border-collapse: collapse;
  font-size: 16px;
  margin-top: 35px;
}

.work__table th,
.work__table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.work__table th {
  background-color: #f0f0f0;
  width: 34%;
}

.work__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.works__item {
    width: calc(50% - 10px);/* gap調整 */
    box-sizing: border-box;
}






/* gallry */
.works__contents {
  background-color: #153653;
  margin-top: 40px;
  width: 100%;
  padding: 3em 2.2em 3em 3.8em;
  overflow: hidden;
}

.works__slider {
  display: flex;
}

.works__slider-item {
  margin-right: 25px;
}

.works__slider:last-child.works__slider-item {
  margin-right: 0;
}

.works__slider-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.works__slider-txt {
  color: #ffffff;
}

@media screen and (max-width: 750px) {
  .works__slider-item {
    margin-right: 15px;
  }
}