
@charset "utf-8";



/* ▼ コンサル事業 >　財務コンサルタント ★★★ */


/* ▼ 中央見出し */
.section-heading-center {
  font-size: 18px;
  font-weight: bold;
  color: #007b43;
  padding-bottom: 0.3em;
  margin: 0 auto 1.5em;
  width: fit-content;
  text-align: center;
  display: block;
}

/* ▼ 強調文字用（緑色） */
.color-green {
  color: #007b43;
  font-weight: bold;
}

/* ▼ タイトル下画像ラッパー */
.page-title-image {
  width: 100%;
  max-width: 960px;
  margin: 1.5em auto 0em;
  text-align: center;
  padding: 0 1em;
  box-sizing: border-box;
}

/* ▼ タイトル下画像本体 */
.page-title-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* ▼ チェック付きリストの外枠ボックス（シャドウ＋動きあり） */
.company-list-box {
  background-color: #e6f3ec;
  border-radius: 10px;
  padding: 1.2em 1.5em;
  margin: 1.5em auto;
  max-width: 700px;
}

.company-list-box:hover {
  background-color: #d4e9dd;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ▼ チェック付きリスト */
.company-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.company-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.6;
  text-align: left;
}

.company-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007b43;
  font-weight: bold;
  font-size: 0.95em;
  line-height: 1;
}

/* ▼ お問い合わせボタン ラッパー（中央揃え） */
.contact-button-wrapper {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 3em;
}

/* ▼ 丸型 お問い合わせボタン（緑＋中央） */
.contact-button {
  display: inline-block;
  background-color: #007b43;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 0.6em 2em;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
  background-color: #006636;
  transform: translateY(-2px);
}

/* ▼ レスポンシブ調整 */
@media screen and (max-width: 600px) {
  .company-profile-section {
    padding: 0.5em 1em;
  }

  .section-heading-center {
    font-size: 16px;
    border-bottom-width: 1.5px;
  }

  .company-list li {
    font-size: 13px;
  }

  .contact-button {
    font-size: 13px;
    padding: 0.5em 1.5em;
  }

  .company-list-box {
    padding: 1em;
  }
}







/* ▼ コンサル事業 > PB＆OEM事業 ★★★ */


/* ▼ 基本スタイル（背景・フォント） */
.privacy-page-content {
  background-color: #fff;
  color: #333;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .privacy-page-content {
    margin: 1rem;
    padding: 1.2rem;
  }
}

/* ▼ ページタイトル */
.page-title {
  font-size: 19px;
  font-weight: bold;
  color: #007b43;
  text-align: center;
  margin: 0 auto 1.5em;
  border-bottom: 2px solid #007b43;
  display: block;
  width: fit-content;
  position: relative;
}


/* ▼ セクション全体 */
.company-profile-section {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-top: 1.5em;
  margin-bottom: 2.5em;
}

.company-profile-section .section-heading {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-top: 0.5em;        /* ← 修正：上の余白を縮める */
  margin-bottom: 1em;
  border-bottom: 2px solid #007b43;
  display: inline-block;
  padding-bottom: 0.2em;
}

/* ▼ カード形式レイアウト */
.product-cards {
  display: grid;
  gap: 1.5em;
  margin: 2em auto;
  max-width: 840px;
  width: 100%;
  padding: 0;
}

.product-card {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #007b43;
  border-radius: 12px;
  padding: 1.6em 1.2em;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ▼ カード画像ラッパー */
.card-icon-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1em;
}

.card-icon-wrapper img.card-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ▼ カードタイトル・本文 */
.card-title {
  font-size: 16px;
  font-weight: bold;
  color: #007b43;
  margin-bottom: 0.6em;
}

.card-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 90%;
}

/* ▼ セクションナビゲーション（アンカーリンク） */
.anchor-links-grid {
  background-color: #f7fdfb;
  padding: 1em 1em 1.5em;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5em;
  max-width: 640px;
  margin: 2em auto 3em;
  border-bottom: 1px dashed #ccc;
}

.btn-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #007b43;
  border: 1px solid #007b43;
  padding: 0.6em 0.8em;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.btn-anchor:hover {
  background-color: #007b43;
  color: #fff;
  text-decoration: none;
}

/* ▼ 画像共通スタイル（下余白調整済） */
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0.5em;  /* ← 修正：下余白を縮める */
}

/* ▼ 強調テキスト（色） */
.highlight {
  color: #007b43;
  font-weight: bold;
}

/* ▼ 強調テキスト（サイズアップ） */
.emphasis-text {
  font-size: 1.1em;
  font-weight: bold;
  color: #007b43;
  display: inline;
}

/* ▼ スムーススクロール */
html {
  scroll-behavior: smooth;
}

/* ▼ 段落の余白調整 */
p {
  margin-top: 0;
  margin-bottom: 1em;
  line-height: 1.7;
}

/* ▼ レスポンシブ調整 */
@media screen and (max-width: 480px) {
  .product-card {
    padding: 1.2em 1em;
  }

  .card-title {
    font-size: 15px;
  }

  .card-text {
    font-size: 13px;
  }

  .btn-anchor {
    font-size: 12px;
    padding: 0.5em 0.6em;
  }

  .company-profile-section .section-heading {
    font-size: 16px;
    margin-top: 0.4em;  /* スマホ時さらに詰める */
    margin-bottom: 0.8em;
  }

  .product-cards {
    padding: 0 0.5em;
  }

  p {
    margin-bottom: 0.8em;
  }

  .img-responsive {
    margin-bottom: 0.4em;
  }
}








/* ▼ コンサル事業 > 出荷代行事業 ★★★ */


/* ▼ 全体スタイル ----------------------------- */
.company-profile-section {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  padding: 0.5em 1em;
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
}

.section-heading-center {
  font-size: 1.3rem;
  font-weight: bold;
  color: #007b43;
  margin-top: 1.5em;
  margin-bottom: 1em;
  padding-bottom: 0.3em;
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
}


/* ▼ 問題リスト：分割＋アニメーション ----------------------------- */
.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 1.5em auto;
  max-width: 700px;
}

.problem-item {
  background: linear-gradient(145deg, #f6fdf9, #ffffff);
  padding: 1.2em 1.5em;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
border: #007b43 solid 2px;
}

.problem-item:hover {
  transform: translateY(-4px);
}

.problem-item:nth-child(1) {
  animation-delay: 0.1s;
}
.problem-item:nth-child(2) {
  animation-delay: 0.3s;
}
.problem-item:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.problem-item::before {
  content: "✔";
  color: #00aa66;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.6;
}


/* ▼ モバイル調整 ----------------------------- */
@media screen and (max-width: 600px) {
  .company-profile-section {
    padding: 1em 0.8em;
  }
  .section-heading-center {
    font-size: 1.4rem;
  }
  .problem-item {
    font-size: 14px;
    padding: 1em 1.2em;
  }
}


/* ▼ お問い合わせボタン ----------------------------- */
.contact-button-area {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 3em;
}

.contact-button {
  display: inline-block;
  background-color: #007b43;
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: #005d32;
  transform: scale(1.05);
}


/* ▼ レスポンシブ画像表示 ----------------------------- */
.responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}





/* ▼ コンサル事業 > DX コンサルタント ★★★ */




/* ▼ 共通セクション設定 */
.company-profile-section {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  padding: 2em 1em;
  margin: 1em auto;
  max-width: 960px;
  border-radius: 12px;
}




/* ▼ 中央見出し（キャッチコピー） */
.section-heading-center {
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 0.3em;
  margin: 2em auto 1.5em;
  width: fit-content;
  display: block;
  text-align: center;
}

/* ▼ セクション見出し（各章タイトル） */
.section-heading {
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  border-bottom: 2px solid #007b43;
  display: inline-block;
  padding-bottom: 0.2em;
  margin-bottom: 1em;
}

/* ▼ チェック付きリスト */
.site-list {
  list-style: none;
  padding-left: 0;
  margin: 1em 0;
}
.site-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.6em;
}
.site-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #007b43;
  font-size: 0.9em;
}

/* ▼ 強調ボックス（色付き＋シャドウ＋丸付きSVGアイコン） */
.emphasis-box {
  background-color: #e6f3ec;
  border-left: 6px solid #007b43;
  padding: 1.5em 1.2em;
  margin: 2em 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.emphasis-box:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.emphasis-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.emphasis-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 1.6;
}

/* 丸アイコン（常盤色＋チェック） */
.circle-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #007b43;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  flex-shrink: 0;
  margin-top: 0.2em;
}

.circle-check svg {
  width: 1em;
  height: 1em;
}

/* ▼ ボタンリンク（お問い合わせ・メニュー） */
.btn-anchor {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  background-color: #007b43;
  color: #fff;
  padding: 0.8em 2em;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-anchor:hover {
  background-color: #005e2e;
  color: #fff;
}

/* ▼ セクション案内ボタン（上部ナビ） */
.anchor-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
  margin: 1em 0 2em;
}
.anchor-links-grid .btn-anchor {
  background-color: #e6f3ec;
  color: #007b43;
  border: 1px solid #007b43;
}
.anchor-links-grid .btn-anchor:hover {
  background-color: #cfe8dc;
}

/* ▼ レスポンシブ調整 */
@media screen and (max-width: 768px) {
  .company-profile-section {
    padding: 1.5em 1em;
    margin: 1em;
  }

  .section-heading-center {
    font-size: 1.2rem;
    margin-bottom: 1em;
  }

  .section-heading {
    font-size: 1.1rem;
  }

  .btn-anchor {
    font-size: 13px;
    padding: 0.6em 1.5em;
  }

  .anchor-links-grid {
    flex-direction: column;
    align-items: center;
  }

  .emphasis-box {
    padding: 1.2em 1em;
    border-left-width: 4px;
  }

  .emphasis-box li {
    font-size: 13px;
  }

  .circle-check {
    width: 1.6em;
    height: 1.6em;
  }

  .circle-check svg {
    width: 0.9em;
    height: 0.9em;
  }
}

/* ▼ 画像レスポンシブ対応（スマホでの見切れ防止） */
.responsive-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
















































/* ▼ セクション案内ボタン----------------↓*/
/* ▼ ジャンプリンク（グリッドボタン形式） */
.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; /* ← 下にスペースを足して、窮屈感を解消 */
}
/* ▼ セクション案内ボタン----------------↑*/