@charset "utf-8";


.page-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: #007b43; /* 緑 */
  text-align: center;
  position: relative;
  margin-bottom: 1.5em;
}

.page-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #007b43;
  margin: 0.5em auto 0;
  border-radius: 2px;
}



/*-------- ▼ サービス EC ★★★------*/


/* リード文サイズ調整用 */
.text-small-lead {
  font-size: 0.9rem;    /* 通常より少し小さめ */
  line-height: 1.7;
  color: #333;
}


/* ▼ 全体背景・テキスト */
body {
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* ▼ コンテナ背景リセット */
.privacy-page-content,
.inner-page,
.inner-content {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

/* ▼ セクションタイトル */
.section-title-green {
  font-size: 1.6rem;
  font-weight: bold;
  color: #007b43;
  text-align: center;
  margin: 1.5em 0 1em;
  position: relative;
}
.section-title-green::after {
  content: "";
  display: block;
  width: 130px;
  height: 2px;
  background-color: #007b43;
  margin: 0.5em auto 0;
  border-radius: 1px;
}

/* ▼ 強調背景 */
.highlight-bg {
  background-color: #E4EFD1;
  padding: 0.8em 1.5em;
  display: block;              /* ← 幅を取るようにする */
  border-radius: 0.5em;
  font-weight: bold;
  text-align: center;          /* ← テキストを中央寄せ */
  margin: 0 auto 1.5em;        /* ← 要素自体を中央に */
  max-width: 100%;             /* ← スマホ崩れ防止 */
  box-sizing: border-box;      /* ← padding含めて幅制御 */
  font-size: 0.9rem;
}

/* ▼ メンバー画像横並び（中央揃え） */
.member-photo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  flex-wrap: nowrap;
  margin: 2em 0;
}
.member-photo-row img {
  width: 140px;
  border-radius: 10%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ▼ レスポンシブ：モバイルでは縦並び */
@media screen and (max-width: 600px) {
  .member-photo-row {
    flex-wrap: wrap;
  }
}

/* ▼ CTAボタン周り */
.button-wrapper {
  margin: 2em 0;
  text-align: center;
}
.button-lead {
  font-size: 1.1rem;
  font-weight: bold;
}
.button-sub {
  font-size: 0.8rem;
  margin-bottom: 1em;
}
.button-center {
  text-align: center;
	 margin-top: 10px;
}
.button-green {
  background-color: #007b43;
  color: #fff;
  padding: 0.8em 1.5em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.button-green:hover {
  background-color: #005c31;
}

/* ▼ コンテンツカード（フラット化） */
.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5em;
  margin: 2em 0;
}
.feature-card {
  background: none;
  border-radius: 0;
  padding: 1.2em;
  box-shadow: none;
}
.feature-title {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.feature-link a {
  color: #007b43;
  text-decoration: none;
  font-weight: bold;
}
.feature-link a:hover {
  text-decoration: underline;
}

/* ▼ 見出し */
.section-heading {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007b43;
  margin: 2em 0 1em;
}

/* ▼ 成果図とテキスト */
.method-diagram {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1.5em;
}
.method-box {
  text-align: center;
  font-size: 1rem;
}

/* ▼ 施策画像並び */
.method-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin: 1.5em 0;
}
.method-images img {
  width: 260px;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: none;
}

/* ▼ アンカーリンクボタン群 */
.anchor-links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin: 2em 0;
}
.btn-anchor {
  background-color: #f1f1f1;
  padding: 0.6em 1.2em;
  border-radius: 5px;
  text-decoration: none;
  color: #007b43;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.btn-anchor:hover {
  background-color: #dfeeea;
}
.btn-anchor.dummy {
  background-color: transparent;
  color: #aaa;
  cursor: default;
}



/* 全体ラップ */
.content-card-section {
  padding: 2em 1em;
  background-color: #fff;
}

/* カードグリッド */
.content-card-grid {
  display: grid;
  gap: 2em;
  max-width: 960px;
  margin: 0 auto;
}

/* 各カード */
.content-card {
  background: #ffffff;
  border: 1px solid #50904C;
  border-radius: 12px;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 6px 20px rgba(0, 123, 67, 0.1);
}

/* タイトル */
.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.1em;
}

/* テキスト */
.card-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: auto; /* ← 自動で下に余白詰め */
}

/* CTAリンク */
.card-link {
  margin-top: 1.2em;
  font-size: 0.85rem;
  color: #007b43;
  font-weight: bold;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}




.sales-method-section {
  text-align: center;
  max-width: 960px;
margin-top:  1.2em;
}

.sales-method-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5em;
}

.sales-method-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.sales-method-heading-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: #007b43;
  text-align: center;
  margin-bottom: 0.5em;
  letter-spacing: 0.03em;
  position: relative;
}






/*-------- ▼ サービス EC-成功事例 ★★★------*/


/* ▼ 全体背景・テキスト */
body {
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* ▼ 白背景でフラットに見せるためのリセット */
.privacy-page-content,
.inner-page,
.inner-content,
.company-profile-section {
  background: #ffffff;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

/* ▼ セクションタイトル（緑ライン付き） */
.section-title-green {
  font-size: 1.6rem;
  font-weight: bold;
  color: #007b43;
  text-align: center;
  margin: 1.5em 0 1em;
  position: relative;
}

.section-title-green::after {
  content: "";
  display: block;
  width: 130px;
  height: 2px;
  background-color: #007b43;
  margin: 0.5em auto 0;
  border-radius: 1px;
}

/* ▼ サブ見出し */
.section-heading {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin: 1.2em 0 0.5em;
}

.section-heading-center {
  font-size: 1.6rem;
  font-weight: bold;
  color: #007b43;
  text-align: center;
  line-height: 1.6;
  margin: 2em 0 1em;
}

/* ▼ セクション案内ボタン */
.anchor-links-grid {
  margin-top: 2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  padding: 0 1em;
}

.btn-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f0f0f0;
  color: #007b43;
  font-weight: bold;
  font-size: 1rem;
  padding: 1em;
  border-radius: 8px;
  text-decoration: none;
  min-height: 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-anchor:hover {
  background-color: #e6f5ec;
  box-shadow: 0 4px 12px rgba(0, 123, 67, 0.2);
}

.btn-anchor.dummy {
  pointer-events: none;
  background-color: transparent;
  box-shadow: none;
  color: #999;
}

/* ▼ CTAエリア */
.solution-box {
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  padding: 2em 1.5em;
  margin: 2em 0;
}

.solution-box h3.section-heading {
  font-size: 18px;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 1em;
  border-bottom: 2px solid #007b43;
  display: inline-block;
  padding-bottom: 0.2em;
}

.solution-box ul {
  list-style: none;
  padding-left: 1em;
  margin-bottom: 1.2em;
}

.solution-box li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.6em;
  font-size: 14px;
  color: #333;
}

.solution-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007b43;
}

/* ▼ 成功事例カード（画像中央揃え・拡大対応） */
.address-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 2em;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5em;
  flex-wrap: wrap;
  text-align: left;
}

.address-box img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.address-box .address-text {
  max-width: 480px;
  width: 100%;
}

.address-box h3 {
  margin: 0 0 0.5em;
  font-size: 1.1rem;
  color: #007b43;
}

.address-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* ▼ グラデーションCTAボタン */
.cta-button {
  display: inline-block;
  padding: 1.2em 2.5em;
  background: linear-gradient(45deg, #007b43, #00a261);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  white-space: normal;
  word-break: keep-all;
  box-shadow: 0 4px 12px rgba(0, 123, 67, 0.2);
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(45deg, #00a261, #007b43);
}

/* ▼ 背景の影（box-shadow）を完全に除去（追加対応） */
body,
html,
.privacy-page-content,
.inner-page,
.inner-content,
.company-profile-section,
section,
article,
main,
.container,
.wrapper {
  background: #ffffff !important;
  box-shadow: none !important;
}

/* ▼ レスポンシブ対応 */
@media screen and (max-width: 640px) {
  .anchor-links-grid {
    grid-template-columns: 1fr;
  }

  .address-box {
    flex-direction: column;
    text-align: center;
  }

  .address-box .address-text {
    max-width: 100%;
  }
}



.hr-green {
  border: none;
  height: 2px;
  width: 90%;
  background-color: #007b43;
	margin-bottom: 20px;
	margin-top: 20px;
  border-radius: 1px;
}







































/* === 店舗代行の流れページ 専用スタイル ============================== */

.ec-flow-page .ec-lead-section {
  padding: 1rem;
  background-color: #f6fdf9;
  border-radius: 12px;
  margin: 1rem 0;
}

.ec-flow-page .ec-lead-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
}

.ec-flow-page .ec-lead-text p {
  margin-bottom: 1.2em;
  font-size: 0.9rem;
  line-height: 1.6;
}

.highlight-bg-ec {
  background-color: #e8f5e9;
  color: #007b43;
  padding: 0.6em 1.2em;
  text-align: center;
  display: block;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 1.2em 0;
}

.ec-lead-text-small {
  font-size: 1.0rem;
  line-height: 1.6;
  color: #333;
}

.ec-flow-page .ec-flow-section {
  padding-bottom: 0;
  background-color: #f9fefc;
}

.ec-flow-page .solution-box {
  background-color: #f0fbf5;
  border: 2px solid #d0e9db;
  padding: 1.5rem;
  border-radius: 14px;
  margin-bottom: 2rem;
  box-shadow: none;
}

.ec-flow-page .solution-box:hover {
  transform: translateY(-4px);
}

.ec-flow-page .solution-box h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #005c30;
  margin-bottom: 1em;
  position: relative;
  padding-left: 1.4em;
}

.ec-flow-page .solution-box h3::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1rem;
  color: #007b43;
}

.ec-flow-page .solution-box p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1em;
}

.ec-flow-page .solution-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ec-flow-page .solution-box li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  font-size: 0.9rem;
  color: #333;
}

.ec-flow-page .solution-box li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.3em;
  font-size: 0.6rem;
  color: #007b43;
}

.ec-flow-page .ec-closing-message {
  background: none; 
  padding: 1rem 1rem 1.5rem;
  text-align: center;
  border-radius: 0; 
  margin-top: 1.5rem;
}

.ec-flow-page .ec-closing-message h2 {
  font-size: 1.0rem;
  color: #007b43;
  margin-bottom: 1rem;
}

.ec-flow-page .ec-closing-message p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
  max-width: 720px;
  margin: 0 auto;
}

.section-title-green.no-underline::after {
  content: none !important;
}

.section-title-green.no-underline {
  margin-top: 0.5em !important;
}

.section-heading-center {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  display: block;     
  margin: 0 auto 1em;
}

.color-green {
  font-size: 0.85rem;
  line-height: 1.4;
}

.site-list {
  list-style: decimal;
  padding-left: 1.5em;  /* ← インデント追加 */
  margin: 1em 0;
}

.site-list li {
  list-style: decimal;
  padding-left: 0;
  margin-left: 0;         /* ← 数字の外側の余白は不要 */
  position: static;
}

.site-list li::before {
  content: none !important;
}


/* === Amazon ============================== */

/* キャッチコピー用 */
.catch-copy {
  font-size: 1.0rem;
  font-weight: bold;
  color: #003d29;
  margin: 1.5em 0 1em;
  line-height: 1.6;
  text-align: center;
}

/* 見出し下の装飾ボックス */
.solution-box {
  background: #f3fbf7;
  border-left: 4px solid #007b43;
  padding: 1em 1.2em;
  margin-bottom: 2em;
  border-radius: 6px;
}

.solution-box h3 {
  font-size: 16px;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.8em;
}

.solution-box ul {
  padding-left: 1.2em;
}

.solution-box li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.6em;
}

.solution-box li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007b43;
  font-weight: bold;
}

/* CTAボタン */
.btn-green {
  display: inline-block;
  background-color: #007b43;
  color: #fff;
  padding: 0.8em 1.6em;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-green:hover {
  background-color: #005c30;
}


.text-small {
  font-size: 0.9rem;  /* または 13px でもOK */
  line-height: 1.6;
  color: #333;
}


.executive-profile img.executive-photo {
  display: block;
  width: 40%;
  max-width: 240px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 1.5em;
}

.executive-profile h3 {
  font-size: 1.1rem;
  color: #007b43;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.8em;
}
.section-title-green {
  text-align: center;
  font-size: 1.1rem;
  color: #007b43;
  font-weight: bold;
  margin: 0 auto 1.2em;
}

.section-title-green.no-icon::before {
  content: none !important;
}



/* === 担当役員コメント ============================== */
.ec-comment-page .catch-copy {
  font-size: 1.8rem;
  font-weight: bold;
  color: #007b43; /* 常盤グリーン */
  text-align: center;
  margin: 2rem auto 1.5rem;
  line-height: 1.6;
  max-width: 800px;
}

.ec-comment-page .lead-copy {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.9;
  margin-bottom: 3rem;
  text-align: left;
}

.highlight-green {
  color: #007b43;
  font-weight: bold;
}

.catchphrase-center {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 1.5em;
}


/* === 役員紹介ブロック ============================== */
.executive-profile {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
  flex-wrap: wrap;
}

.executive-photo img {
  width: 160px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.executive-info {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.executive-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.3em;
}

.executive-role {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1em;
}

.executive-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1em;
}


/* === レスポンシブ対応 ============================== */
@media screen and (max-width: 768px) {
  .executive-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .executive-info {
    text-align: left;
    margin-top: 1rem;
  }

  .executive-photo img {
    width: 60%;
  }
}

.ec-comment-page .executive-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
  align-items: flex-start;
}

.ec-comment-page .executive-photo {
  flex: 0 0 140px; /* 固定幅 */
  max-width: 140px;
}

.ec-comment-page .executive-photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ec-comment-page .executive-info {
  flex: 1 1 calc(100% - 160px); /* 残りスペースを占有 */
  min-width: 240px;
}
.executive-card.stacked {
  text-align: center;
  margin-bottom: 2.5rem;
}

.executive-card.stacked .executive-image img {
  max-width: 180px;
  margin: 0 auto 1rem;
  border-radius: 8px;
}

.executive-card.stacked .executive-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.executive-card.stacked {
  text-align: center;
  margin-bottom: 2.5rem;
}

.executive-card.stacked .executive-image img {
  max-width: 180px;
  margin: 0 auto 1rem;
  border-radius: 8px;
}

.executive-card.stacked .executive-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.executive-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.3em;
}

.executive-role {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1em;
}

.executive-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}













/* === 店舗代行事業内サブリンク（プルダウン下のリンク群） ============================== */
.subpage-links {
  background: #f6fdf9;
  padding: 1em;
  margin: 2em 0 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 123, 67, 0.06);
  text-align: center;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.link-list li a {
  color: #007b43;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-size: 14px;
}

.link-list li a:hover {
  border-color: #007b43;
}

/* ▼ スマホ対応 */
@media screen and (max-width: 600px) {
  .ec-flow-page .solution-box {
    padding: 1em;
  }

  .ec-flow-page .solution-box h3 {
    font-size: 15px;
  }

  .ec-flow-page .solution-box li {
    font-size: 12.5px;
  }

  .link-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
  }
}



/* ▼ セクション案内ボタン----------------↓*/
/* ▼ ジャンプリンク（グリッドボタン形式） */
.anchor-links-grid {
  background-color: #f7fdfb;
  padding: 1em 1em 1.5em; /* ← 上を1emにして、下に余裕を持たせる */
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5em;
  max-width: 640px;
  margin: 1em auto 2em; /* ← 上に1emの余白追加で自然な余白に */
  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%;
}

/* ▼ 個別対策：機械製造一覧にもし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;
  margin-bottom: 0.5em; /* ← 下にスペースを足して、窮屈感を解消 */
}
/* ▼ セクション案内ボタン----------------↑*/


