@charset "utf-8";




/* ======================================

よく使う

========================================= */

/* テキスト中央 */
.center-text {
  text-align: center;
}

.section-subtitle,
.lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* フォント */

.section-subtitle {
  font-weight: bold;
  color: #007b43; /* アクセントグリーン */
  font-size: 1.2rem;
}


/*-------- ▼▼▼▼▼▼▼▼▼▼ webtop　　------------------------------------*/

/* ▼ Web制作ページ専用スタイル（web.css） */

/* セクションブロック */
.web-section {
  margin-bottom: 1.0em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid #ddd;
}

.web-section:last-of-type {
  border-bottom: none;
}

/* 見出し（既存トンマナに準拠） */
.web-section h3.section-heading {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  border-bottom: 2px solid #007b43;
  display: inline-block;
  padding-bottom: 0.2em;
  margin-top: 2em;
  margin-bottom: 1em;
}

/* 本文テキスト */
.web-section p {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1em;
}

/* ハイライト背景（しずる感やキャッチコピー用） */
.web-highlight {
  background-color: #e6f3ec;
  padding: 0.6em 1em;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
  color: #003d29;
  margin-bottom: 1em;
}

/* ✔ リスト（ジャンル・対応サービス） */
.web-list {
  list-style: none;
  padding-left: 1em;
  margin-bottom: 1.5em;
}

.web-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.6em;
  font-size: 14px;
}

.web-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007b43;
  font-size: 0.9em;
}

/* 補足テキスト */
.web-note {
  font-size: 13px;
  color: #555;
  margin-top: 0.5em;
}

/* 納品フロー画像のレスポンシブ対応 */
.web-flow-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 8px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .web-section h3.section-heading {
    font-size: 16px;
  }

  .web-section p,
  .web-list li {
    font-size: 13px;
  }
}


/* ========================
   ▼ ボタンスタイル 
   ======================== */
.button-green {
  display: inline-block;
  margin-top: 0.8em;
  padding: 0.6em 1.4em;
  background-color: #007b43; /* アクセントグリーン */
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-green:hover {
  background-color: #005c30;
  
  transform: translateY(-2px);
}



/* ▼ セクション案内ボタン----------------↓*/
/* ▼ ジャンプリンク（グリッドボタン形式） */
.anchor-links-grid {
  background-color: #f7fdfb;
  padding: 1.5em 1em;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5em;
  max-width: 640px;
  margin: 0 auto 2em;
  border-bottom: 1px dashed #ccc;
}

/* ▼ 各ボタン */
.anchor-links-grid .btn-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #007b43;
  border: 1px solid #007b43;
  padding: 0.5em 0.6em;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
  min-height: 32px;
  transition: all 0.2s ease-in-out;
}

.anchor-links-grid .btn-anchor:hover {
  background-color: #f0f8f5;
  transform: translateY(-1px);
}

/* ▼ 長文ボタン用（中央寄せで幅広） */
.anchor-links-grid .btn-anchor.full {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 100%;
}

/* ボタンスタイル再利用調整（中央寄せ） */
.visit-button-wrap {
  text-align: center;
  margin: 2em 0;
}


/* ▼ 個別対策：機械製造一覧にもしCSS効かない時の保険 */
.anchor-links-grid a[href="#factory"] {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #007b43;
  border-radius: 12px;
  padding: 0.5em 0.6em;
  font-size: 0.7rem;
  white-space: normal;
  line-height: 1.4;
}

.anchor-links-grid .btn-anchor.dummy {
  background-color: #007b43;
  color: #fff;
  font-weight: bold;
  border: none;
  pointer-events: none;
  cursor: default;
}



/* ▼ セクション案内ボタン----------------↑*/

/* 緑枠==================== */
.furusato-list-box {
  background-color: #f4fbf8;
  border: 1.5px solid #a3d8b2;
  border-radius: 10px;
  padding: 1.5em;
  margin: 1.0em auto;
  max-width: 360px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.furusato-list-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007b43;
  text-align: center;
  margin-bottom: 1em;
}

.furusato-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.furusato-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.7em;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
}

.furusato-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #007b43;
  font-size: 0.9em;
}

/* フォント調節 */

.furusato-list-note {
  font-size: 0.95rem;
  font-weight: 400;
  color: #007b43;
  text-align: center;
  line-height: 1.8;
  margin: 1.5em 5% auto 0;
  display: block;
  max-width: 90%;
  padding: 0;
}


.section-heading-green-center {
  font-size: 1.1rem;         /* 中くらいの大きさ */
  color: #007b43;            /* 常盤色のグリーン */
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin: 1em 0 1em;
}

/* フォント調節 */


/* レビュー風∸－－－－－－－－－－－－－－－－－－－－－－－－－ */

/* 全体ボックス（枠なし） */
.review-box {
  padding: 0.5em 1em 1.5em; /* 上だけ0.5emに詰める */
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

/* タイトル部分 */
.review-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

/* レビュー一覧 */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

/* 各レビューカード */
.review-item {
  background-color: #f0f9f5; /* 淡いグリーン塗りつぶし */
  padding: 1em 1.2em;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  text-align: left;
}


/* テキスト＋マーク */
.review-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
  position: relative;
  padding-left: 1.4em;
}



/* ご注意tp最後--------------------------- */

.notice-box {
  color: #555555;               /* 濃いグレー文字 */
  padding: 1.2em 1.5em;
  margin-top: 0.5em;
  font-size: 0.70rem;
  line-height: 1.8;
  text-align: left;
  border-radius: 6px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.web-list-note {
  font-size: 0.95rem;
  text-align: center;
  color: #007b43;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.section-title-green.text-center {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 1.2em;
}

.note-caution {
  font-size: 0.85rem;
  color: #666;
  background-color: #fdfdfd;
  border-left: 4px solid #a3d8b2;
  padding: 1em;
  margin-top: 1.5em;
  line-height: 1.6;
}

/* ご注意tp最後--------------------------- */









/* 商品一覧 ★★★----------------------------------------------------- */
.c-category-wrapper {
  color: #222;
  margin: 0;
}

.c-category-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.c-category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: 100%;
  padding: 0 1rem;
}

.c-category-card {
  width: calc(50% - 0.5rem);
  box-sizing: border-box;
  text-align: center;
  color: inherit;
  text-decoration: none;
  margin-bottom: 1rem;
}

.c-category-inner {
  display: block;
  width: 100%; 
  margin: 0 auto;
}

.c-category-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.c-category-name {
  margin-top: 0;
  font-size: 0.9rem;
  color: #444; 
  text-decoration: none;
}

/* ▼ ホバー効果（画像拡大） ----------------------------- */
.c-category-card {
  overflow: hidden; /* 拡大時のはみ出し防止 */
}

.c-category-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease; /* アニメーション設定 */
}

.c-category-card:hover .c-category-image {
  transform: scale(1.05); /* ホバー時に拡大 */
}

.c-category-link:hover {
  opacity: 0.9;
  text-decoration: none;
}


/* ▼ カテゴリー名 ----------------------------- */
.c-category-name {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #007b43; /* グリーン系に変更（任意） */
  font-weight: bold;
  text-align: center;
  border: 1px solid #007b43;
  border-radius: 999px;
  padding: 0.4em 1em;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.c-category-link:hover .c-category-name {
  background-color: #007b43;
  color: #fff;
}








/* 商品一覧【下層ページ】----------------------------------------------------- */
.hm-item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 1rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hm-item-card {
  background: #fff;
  border-radius: 12px;
border: 2px solid #007b43;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hm-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.hm-item-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hm-item-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.hm-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: #007b43;
  margin: 0.2em 0 0.5em;
  line-height: 1.4;
  min-height: unset;
  overflow: visible;
  display: block;
}

.hm-item-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  min-height: unset;
  overflow: visible;
  display: block;
}

/*カテゴリーへのリンク*/

.ecommerce-select-wrap {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.ecommerce-select {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.6em 1em;
  font-size: 0.95rem;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8em center;
  background-size: 1em;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
}

.ecommerce-select:hover {
  background-color: #eaeaea;
}

.ecommerce-select:focus {
  outline: none;
  border-color: #999;
}


.hm-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hm-item-tag {
  font-size: 0.75rem;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}

.hm-item-tag.category {
  background-color: #e6f3ec;
  color: #007b43;
  border: 1px solid #a3d8b2;
}

.hm-item-tag.maker {
  background-color: #f0f0f0;
  color: #555;
  border: 1px solid #ccc;
}











/* ▼ セクション案内ボタン----------------↑*/

/* 緑枠==================== */
.web-list-box {
  background-color: #f4fbf8;
  border: 1.5px solid #a3d8b2;
  border-radius: 10px;
  padding: 1.5em;
  margin: 2em auto;
  max-width: 360px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.web-list-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007b43;
  text-align: center;
  margin-bottom: 1em;
}

.web-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.web-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.7em;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
}

.web-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #007b43;
  font-size: 0.9em;
}

/* フォント調節 */

.web-list-note {
  font-size: 0.95rem;
  font-weight: 400; /* 細くする */
  color: #007b43;
  text-align: center;
  line-height: 1.8;
  margin-top: 1.5em;
}


.section-heading-green-center {
  font-size: 1.1rem;         /* 中くらいの大きさ */
  color: #007b43;            /* 常盤色のグリーン */
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin: 2em 0 1em;
}
/* ▼ セクション案内ボタン----------------↑*/

.img-wrap {
  text-align: center;
  margin: 2em 0;
}

.img-wrap img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
/* オプション設定 */

.option-price-list {
  list-style-type: disc;
  padding-left: 1.2em;
  margin: 1em 0;
}

.option-price-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.4em;
}

/* 小さめの黒丸を調整 */
.option-price-list li::marker {
  font-size: 0.6em;
  color: #666;
}

.text-green-sub {
  color: #007b43;
  text-align: left;
}
