@charset "utf-8";
.scroll-gallery {
  width: 100%;
  overflow: hidden;
	margin-top: -50px;
	margin-bottom: 100px;
}
@media (max-width: 767px) {
.scroll-gallery {
	margin-top: 0px;
	margin-bottom: 100px;
}
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 70s linear infinite;
}

.scroll-gallery img {
  height: 200px; /* 高さは自由に調整可 */
  margin-right: 10px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ホバー時にアニメーション停止（任意） */
.scroll-gallery:hover .scroll-track {
  animation-play-state: paused;
}

/* ▼ アンカーリンク時の補正 */
.scroll-offset {
  scroll-margin-top: 150px;
	}

#top{
	max-width:1200px;
	margin: 0 auto;
}
.top-read{
	font-size: 120%;
	line-height: 45px;
	margin: 50px 10px;
	margin-bottom: 100px;
	color: #757575;
	text-align: center;
}

#theme{
	max-width: 1200px;
	margin: 0 auto;
}
#theme h2{
	margin: 0 auto;
	padding-top: 0.5em;
	padding-bottom: 1em;
	margin-bottom: 10px;
	background-color: #10514B;
	color: #fff;
	text-align: center;
}

.them-subtitle{
	font-size: 110%;
	line-height: 40px;
	text-align: center;
}
.them-title{
	font-size: 200%;
	font-weight: 700;
	text-align: center;
}

.them-read{
	font-size: 120%;
	line-height: 45px;
	margin: 50px;
	margin-bottom: 50px;
	color: #757575;
	text-align: center;
}

#products{
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 100px;
		background-color:#F0F0F0;
	text-align: center;
}
#products h2{
	color: #03564E;
	font-size: 300%;
	font-weight: 700;
	text-align: center;
}
#expo-info{
	max-width: 1072px;
	margin: 0 auto;
}
#expo-info h2{
	color: #03564E;
	font-size: 300%;
	font-weight: 700;
	margin-top: 50px;
	padding-bottom: 30px;
	text-align: center;
}

#contact{
	max-width: 1072px;
	margin: 100px auto;
	padding-bottom: 50px;
}
#contact h2{
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	margin-bottom: 1em;
	background-color: #10514B;
	color: #fff;
	font-size: 200%;
	font-weight: 700;
	text-align: center;
	line-height: 1.3;
}
.contact-read{
	color: #757575;
	text-align: center;
	font-weight: 600;
	margin-bottom: 2em;
}

@media (max-width: 767px) {
	.top-read{
	font-size: 100%;
	line-height: 30px;
	text-align: left;
	margin: 30px
}
	.them-read{
	font-size: 100%;
	line-height: 30px;
	text-align: left;
	margin: 30px;
}
	.them-title{
	font-size: 100%;
	font-weight: 700;
}
	.them-subtitle{
	font-size: 80%;
	line-height: 40px
}
}

/* --- レイアウト全体 --- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-content: center;
  justify-items: center; /* ← カード自体も中央揃え */
  gap: 24px;
  padding: 20px;
}
/* --- カードデザイン --- */
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* ホバー効果 */
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 画像 */
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* タイトル */
.product-card h3 {
  font-size: 20px;
  margin: 8px 0;
	font-weight: 700;
}

/* 説明文 */
.product-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
	text-align: left;
}

/* 新製品タグ */
.tag {
  display: inline-block;
  padding: 1px 10px;
  background: #FFFFFF;
	color: #FF0004;
  font-size: 12px;
	font-weight: 600;
  border-radius: 10px;
  margin-bottom: 8px;
	border:1px solid #FF0004;
		vertical-align: middle;
}

/* --- スマホ（レスポンシブ） --- */
@media (max-width: 920px) {
  .product-grid {
    grid-template-columns: 1fr;
	}
}

/* ボタン本体 */
.outline-button {
	background-color: #fff;
  padding: 14px 40px;
  border: 5px solid #005C47; /* 緑ライン */
  border-radius: 80px;        /* 大きめの丸み */
  color: #005C47;             /* テキスト色 */
  font-size: 200%;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  max-width: 90%;           /* ボタンの最大幅（レスポンシブ対応） */
  margin: 30px auto;          /* 中央寄せ */
	margin-top: 100px;
}

/* ホバー時 */
.outline-button:hover {
  background: #005C47;
  color: #fff;
}

/* スマホ対策：文字サイズ少し小さく */
@media (max-width: 767px) {
  .outline-button {
    font-size: 100%;
    padding: 12px 28px;
  }
}

#expo-info{
	margin-bottom: 100px;
}


/* ▼ 全体コンテナ：最大幅1072pxに固定 */
#info-table {
  max-width: 1072px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 120%;
  color: #555;
}

/* ▼ 各行レイアウト */
.info-row {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

/* ▼ 左側タイトル */
.info-title {
  width: 180px;
  font-weight: 600;
  color: #666;
}

/* ▼ 右側コンテンツ */
.info-content {
  flex: 1;
  line-height: 1.7;
}

.info-content a {
  color: #2c7a7b; /* 落ち着いた緑色 */
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

/* ▼ スマホ（縦並び） */
@media (max-width: 767px) {
  .info-row {
    flex-direction: column;
    gap: 10px;
  }

  .info-title {
    width: 100%;
  }
}

/* ▼ 送信フォーム */
input, select, textarea{
	margin-bottom: 2em;
	padding: 1.1em;
}
.bg-primary, .bg-gray-700{
	margin-right: 10px;
}
label{
	color: #757575;
}
.formbtn{
	width:50%;
}

