@charset "utf-8";
:root {
  --vh: 1vh;
}


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

よく使う

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

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



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

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

/* セクションブロック */
.web-section {
  margin-bottom: 3em;
  padding-bottom: 2em;
  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;
}



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

/* 緑枠==================== */
.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;
}

/* フォント調節 */


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

/* 全体ボックス（枠なし） */
.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最後--------------------------- */

/* EC制作============================== */

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

/* フォント */

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

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

.img-wrap img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}


.strong-green {
  font-size: 1.3em;        /* 少し大きめの文字サイズ */
  font-weight: bold;       /* 太字 */
  color: #007b43;          /* 本気モードでよく使われている常盤色（緑） */
  white-space: nowrap;     /* 改行させない */
  display: inline;
}

/* オプション設定 */

.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;
}

/* 必要な3つ */
.strategy-review-section {
  padding: 0.5em 1em 1.5em; /* 上だけ0.5emに詰める */
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}


.strategy-review-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}


.strategy-review-item {
  background-color: #f0f9f5; /* 淡いグリーン塗りつぶし */
   border: 1.5px solid #a3d8b2;
  padding: 1em 1.2em;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.strategy-review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}


/* オプション設定 */

/* Q＆A */

.faq-section {
  margin: 2em auto;
  max-width: 800px;
  padding: 0 1em;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
}

.faq-question {
  background: none;
  border: none;
  padding: 1em 0;
  width: 100%;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #007b43;
  cursor: pointer;
}

.faq-question:hover {
  text-decoration: underline;
}

.faq-answer {
  padding: 0.8em 0 1.2em 1.8em;
  font-size: 0.95rem;
  color: #444;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.icon-q, .icon-a {
  display: inline-block;
  width: 1.4em;
  font-weight: bold;
  color: #007b43;
  margin-right: 0.5em;
}

/* Q＆A */

/* -----------------------
多様なweb
------------------------- */


/* ▼ web-site-box セクション（制作カテゴリ用ボックス） */
.web-site-box {
  background-color: #f9fdfb;
  border-left: 4px solid #007b43; /* アクセントの常盤色 */
  border-radius: 8px;
  padding: 1.5em 1.2em;
  margin-bottom: 2em;
  box-shadow: 0 2px 6px rgba(0, 123, 67, 0.05);
}

.web-site-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.8em;
}

.web-site-center-text {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1em;
}


.web-site-list {
  padding-left: 1em;
  margin: 0;
}

.web-site-list p {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.6em;
  font-size: 0.95rem;
  color: #444;
}

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

/* sapo-yo */

.lead-small {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align:　left;
  color: #333;
}



.lead-small-sab {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  color: #333;
}
