/*ナビゲーションの設定*/
.g_nav1 a,
.g_nav1 a:hover {
	border-bottom: #008741 5px solid;
}
.sb-menu .f_nav02 a,
.sb-menu .f_nav02 a:hover {
	background-color: rgba(0,135,65,.1);
}



/*メイン*/
body{
}


/*thought*/
.thought{
  padding-bottom: 80px;
}
.thought h2{
  font-size: 1.8rem;
  font-weight: 700;
  color: #008943;
  letter-spacing: 0.2em;
}

.thought p {
  letter-spacing: 0.1em;  
}
.thought p span{
  color: #008943;
}

.genex-values {
  padding: 50px 20px;
  background: #f8f9f7;
}

.genex-values__inner{
  max-width: 100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  align-items:stretch;
  padding-bottom: 50px;
}
.genex-card{
  background:#fff;
  padding:30px;
  border:1px solid #e5e5e5;
  position:relative;
  display:flex;
  flex-direction:column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 345px;
}

/* 左上アクセント */
.genex-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #00853f;
}

.genex-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* 英字 */
.genex-card__en {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #00853f;
  margin: 0 0 5px;
}

/* 日本語タイトル */
.genex-card__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* 説明 */
.genex-card__text {
  font-size: 1rem;
  line-height: 2;
  color: #555;
}


/*thought*/
.thought {
  max-width: 1200px;
  margin: 0 auto;
  display:flex;
  align-items:flex-start;
  gap:60px;
}

.thought__text {
  flex:0 0 65%;
}

.thought__text h2 {
  line-height: 1.5;
  margin-bottom: 20px;
}

.thought__text p {
  line-height: 2;
  margin-bottom: 30px;
}

.thought__text span {
  font-weight: 600;
  color: #00853f;
}

.thought__image {
  flex: 0 30%;
}

.thought__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  flex:0 0 30%;
}

/*thought1*/
.thought1{
  margin-bottom: 30px;
}

  .thought1 dl{
  }
  .thought1 dl dt{
    text-align: center;
    margin-bottom: 5px;
  }
  .thought1 dl dd{
    display: block;
    text-align: center;
    font-size: 180%;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .thought1 dl dd span{
    font-size: 120%;
      color: #008943;
    }

/*thought2*/
.thought2{
}
  .thought2 div{
    display: flex;
    width: 100%;
    align-items: flex-start;
    margin-bottom: 60px;
  }

    .thought2 div h4{
      flex-basis: 18%;
      word-break: break-all; /* 文字が溢れる場合に改行させる */
    }

      .thought2 div h4 img{
        max-width: 100%;
      }

    .thought2 div dl{
      flex-basis: 82%;
      gap: 10px;
    }

    .thought2 div dl dt{
      flex-shrink: 0;  
      text-align: left;
      font-size: 130%;
      font-weight: 700;
      color: #008943;
    letter-spacing: 0.1em;
    }

    .thought2 div dl dd{
      text-align: left;
    }

    .thought2 p.thought_img{
      text-align: center;
    }

.valueslist{
  padding-top: 150px;
  margin-top: -150px;
}



@media screen and (max-width: 480px) {
    .thought h3{
    font-size: 15pt;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .thought h4{
    font-size: 13pt;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .thought h4 span.sp{
    display: none;
  }
}


@media screen and (max-width: 680px) {
  .thought2 div{
    display: block;
  }

    .thought2 div h4{
      text-align: center;
      width: 100%;
      margin-bottom: 10px;
    }

    .thought2 div dl{
      width: 100%;
    }

}
@media (max-width: 768px) {
  .thought {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .thought__text {
    width: 100%;
  }

  .thought__text h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .thought__text p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 25px;
  }

  .thought__image {
    width: 100%;
  }

  .thought__image img {
    height: auto;
    aspect-ratio: 4 / 2;
    object-fit: cover;
  }
  .genex-values {
    padding: 80px 20px;
  }

  .genex-values__inner {
    grid-template-columns: 1fr;
  }

  .genex-card {
    padding: 40px 30px;
    min-height: auto;
  }

  .genex-card__en {
    font-size: 32px;
  }
}