/* ============================
   Tokyo GreenTech ページ共通
   ============================ */

.tgc-body {
  margin: 0;
  font-family: "Noto Sans JP", "YuGothic", "游ゴシック体",
               "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.8;
  background: #ffffff;
    padding-top: 80px;
}

/* セクション全体（罫線ボックス） */
.tgc-section {
  padding: 40px 0;
}

.tgc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px 60px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}

/* レイアウトバリエーション */
.tgc-inner--two-col { }
.tgc-inner--one-col { }

/* 見出し + ライン */
.tgc-section-header {
  margin-bottom: 24px;
}

.tgc-section-number {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #999;
  margin: 0 0 6px;
}

.tgc-section-title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin: 0;
  padding-bottom: 8px;
  position: relative;
}

.tgc-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    #000000 0%,
    #9eb6d6 50%,
    #e6b077 100%
  );
}

/* 基本２カラム */
.tgc-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 24px;
}

.tgc-col {
  flex: 1 1 0;
}

.tgc-col-text {
  font-size: 14px;
}

.tgc-col-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* セクション 2 ギャラリー */

.tgc-gallery {
  margin-top: 40px;
}

.tgc-gallery-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.tgc-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}

.tgc-gallery-item {
  text-align: center;
  width: 140px;
}

.tgc-gallery-thumb {
  width: 140px;
  height: 140px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  margin-bottom: 8px;
}

.tgc-gallery-thumb img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.tgc-gallery-name {
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* セクション 1 / 2 補助 */

.tgc-note-title {
  margin-top: 20px;
  font-size: 13px;
}

.tgc-note-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
  font-size: 13px;
}

/* セクション 3専用 */

.tgc-main-visual {
  margin-top: 18px;
}

.tgc-main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.tgc-text-block {
  margin-top: 26px;
  font-size: 14px;
}

.tgc-link-like {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

/* 下段レイアウト */
.tgc-row--bottom {
  margin-top: 40px;
}

.tgc-col-image--tall img {
  /* 縦長感を出すために高さをやや確保（画像比によって調整） */
  max-height: 460px;
  object-fit: cover;
}

/* レスポンシブ（スマホ） */

@media (max-width: 960px) {
  .tgc-inner {
    padding: 32px 20px 40px;
  }

  .tgc-section-title {
    font-size: 24px;
  }

  .tgc-row {
    flex-direction: column;
  }

  .tgc-gallery-grid {
    gap: 24px;
    justify-content: center;
  }

  .tgc-gallery-item {
    width: 120px;
  }

  .tgc-gallery-thumb {
    width: 120px;
    height: 120px;
  }
}
