/* topimg */
.fv {
  background-color: #eff7eb;
}
.fv-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.fv-content {
  flex: 1;
  padding: 0 60px;
}
.fv-title {
  font-size: 3.5vw;
  line-height: 1.3;
  margin: 0 0 20px 0;
}
.fv-title span {
  color: #c00;
}
.fv-text {
  font-size: 16px;
  margin-bottom: 20px;
}
.fv-image {
  flex: 1;
}
.fv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.fv-bar {
  background-color: #6da04b;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: bold;
}
.fv-bar span {
  color: #e5731b;
    text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

.fv3 {
  background-color: #6da04b;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-weight: bold;
  display: flex;
}
.fv3 li {
  width: calc( 100% / 3 );
  padding: 35px 25px;
  font-weight: normal;
  font-size: 15px;
}
.fv3 li:nth-child(2) {
  border-left: solid 1px #dbecd2;
  border-right: solid 1px #dbecd2;
}
.fv3 li span {
  display:block;
  font-size: 2.8vw;
  margin-bottom: 14px;
  font-weight: 500;
}

.btn-green-large:hover {
  color: #fff !important;
  background: rgb(74, 124, 41, 0.85);
}
.btn-green:hover {
  color: #fff !important;
  background: rgb(74, 124, 41, 0.85);
}
.btn-outline:hover {
  color: #4a7c29 !important;
  background: rgba(223, 223, 223, 0.1);
}

/* サービス内容 */
.services {
  background-color: #dbecd2;
  padding: 60px 0;
}
.section-title {
  text-align: center;
  color: #4a7c29;
  font-size: 28px;
  margin-bottom: 40px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 11fr);
  gap: 1px;
  margin-bottom: 40px;
}
.service-card {
  background-color: #fff;
  padding: 30px 20px;
  text-align: center;
  margin: 1px;
}
.service-card a {
  display: block;
}
.service-card h3 {
  color: #7da63d;
  font-size: 18px;
  margin-bottom: 15px;
}
.service-card p {
  text-align: left;
  height: 6em;
}
.service-card .btn-outline-small {
  width: 10em;
  margin-left: auto;
  margin-right: auto;
}

/* 特徴・強み */
.features {
  padding: 80px 0;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.features-content {
  flex: 1;
  padding: 0 20px;
}
.features-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.features-content .highlight {
  color: #e5731b;
}
.features-content p {
  margin-bottom: 20px;
}
.features-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.features-image {
  flex: 1;
}
.features-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ニュース & コラム */
.info-sections {
  padding: 60px 0;
  border-top: 1px solid #eee;
}
.info-flex {
  display: flex;
  gap: 60px;
}
.info-box {
  flex: 1;
}
.info-title {
  font-size: 22px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.news-list li {
  padding: 15px 0;
  border-bottom: 1px dashed #eee;
  font-size: 14px;
}
.news-list li span {
  color: #4a7c29;
  margin-right: 15px;
}
.column-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.column-item {
  display: flex;
  gap: 15px;
}
.column-item .thumb {
  width: 100px;
  height: 80px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.column-item .thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
.column-text span {
  font-size: 12px;
  color: #4a7c29;
}
.column-text p {
  font-size: 14px;
}
.info-sections .btn-outline-small {
  margin: 20px auto 0 auto;
}

@media screen and (max-width: 970px) {
  .fv-image img {
    object-fit: cover;
    height: 400px;
    object-position: bottom center;
  }
}
@media screen and (max-width: 910px) {
  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, 11fr);
  }
  .service-card p {
    height: 6em;
  }
}
@media screen and (max-width: 769px) {
  .fv-container {
    flex-direction: column;
    text-align: center;
  }
  .fv-content {
    padding: 40px 20px;
    order: 2;
  }
  .fv-image {
    width: 100%;
    order: 1;
  }
  .fv-image img {
    height: 500px;
  }
  .fv-title {
    font-size: 28px;
  }
  .fv3 {
    display: block;
  }
  .fv3 li {
    width: 100%;
    padding: 35px;
  }
  .fv3 li:nth-child(2) {
    border-top: solid 1px #dbecd2;
    border-bottom: solid 1px #dbecd2;
    border-left: none;
    border-right: none;
  }
  .fv3 li span {
  font-size: 4vw;
}
  .btn-green-large {
    width: 100%;
    padding: 15px 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    background-color: transparent;
    border: none;
  }
  .service-card {
    border: 1px solid #b0d3a1;
    border-radius: 8px;
  }
  .service-card p {
    height: auto;
  }
  .features {
    padding: 40px 0;
  }
  .features-container {
    flex-direction: row;
    gap: 0;
    padding: 20px 0;
    display: block;
  }
  .features-content {
    text-align: center;
  }
  .features-content h2 {
    font-size: 24px;
  }
  .features-buttons {
    flex-direction: column;
    width: 15em;
    margin: 25px auto 0 auto;
  }
  .features-buttons a {
    width: 100%;
    text-align: center;
  }
  .features-image img {
    display: none;
  }
  .info-flex {
    flex-direction: column;
    gap: 40px;
  }
  .info-box {
    width: 100%;
  }
  .column-item {
    align-items: flex-start;
  }
  .column-item .thumb {
    width: 150px;
    height: 100px;
  }
}
@media screen and (max-width: 560px) {
  .fv-image img {
    height: 400px;
  }
}
