@charset "utf-8";

/*========================
  基本フォント・色指定
========================*/
html {
  font-size: 16px; /* 1rem = 16px */
}
body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  line-height: 1.8;
  font-size: 0.95rem;
}

/*========================
  共通セクションスタイル
========================*/
.company-profile-section {
  width: 100%;
  margin: 2rem 0;
  padding: 0;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}

/*========================
  セクション見出し
========================*/
.section-heading,
.section-title-green {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  color: #007b43;
  padding-bottom: 0.4rem;
  margin: 2.5rem 0 1rem;
	margin-left: auto;
	margin-right: auto;
}

/*========================
  段落テキスト
========================*/
.company-profile-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #444;
}

.company-profile-section p strong {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0.4rem;
  color: #111;
  font-size: 1rem;
}

.text-small {
  font-size: 0.9rem; /* 約13px */
  line-height: 1.7;
	 margin-top: 2px;
  color: #666; /* 少し淡いグレーで控えめに */
}


/*========================
  リスト
========================*/
.company-profile-section ul {
  list-style: none;
  margin: 1rem 0 1rem 1rem;
  padding-left: 0;
}
.company-profile-section ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
  color: #444;
}
.company-profile-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.25em;
  color: #007b43;
  font-size: 1em;
}

/*========================
  ハイライトボックス
========================*/
.solution-box {
  background-color: #f9f9f9;
  border-left: 4px solid #007b43;
  padding: 1rem 1.2rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
}
.solution-box .highlight-bg {
  font-weight: bold;
  background: #e6f3ec;
  padding: 0.4rem 0.6rem;
  color: #003d29;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

/*========================
  補足テキスト（緑色）
========================*/
.color-green {
  color: #007b43;
  font-size: 0.8125rem;
  display: block;
  margin-top: 0.4rem;
}

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


/*========================
  レスポンシブ（スマホ）
========================*/
@media (max-width: 768px) {
  .company-profile-section {
    padding: 0 1rem;
  }
  .section-heading,
  .section-title-green {
    font-size: 1.25rem;
  }
  .company-profile-section p,
  .company-profile-section ul li {
    font-size: 0.875rem;
  }
}


/*========================
 区切り線
========================*/

hr.content-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0rem auto;
  width: 90%;
  max-width: 800px;
  opacity: 0.6;
}
/*========================
 画像
========================*/
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
}

.img-responsive.centered {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.img-responsive.rounded {
  border-radius: 0.5rem;
}

/*========================
ページ内menu
========================*/
.page-anchor-menu {
  max-width: 680px;
  margin: 0rem auto;
  padding: 1rem 0.75rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.03);
}

.page-anchor-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media screen and (max-width: 480px) {
  .page-anchor-menu ul {
    grid-template-columns: 1fr;
  }
}

.page-anchor-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px; 
  padding: 0.5rem;
  background-color: #f9f9f9;
  border: 1px solid #4D4D4D;
  border-radius: 0.375rem;
  color: #6A6A6A;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.8rem;
  line-height: 1.3;
}

.page-anchor-menu li a:hover,
.page-anchor-menu li a:focus {
  background-color: #e6f2eb;
  box-shadow: inset 0 0 0 1px #007b43;
}

.page-anchor-menu li a.active {
  background-color: #d7f2e0;
  border: 1px solid #007b43;
}

/* ▼ ご案内（リンクなしのラベル） */
.page-anchor-menu li.menu-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0.5rem;
  background-color: #007b43;
  color: #fff;
  border-radius: 0.375rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

