/* --------------------------------------------------
   会社案内：セクション全体
-------------------------------------------------- */
.company-profile-section {
  background-color: #fff;
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* セクションタイトル */
.company-profile-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.company-profile-section .section-en {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: block;
}
.company-profile-section .section-jp {
  font-size: 1.2rem;
  color: #555;
  margin-top: 0.5rem;
  display: block;
}

/* --------------------------------------------------
   社長挨拶ブロック
-------------------------------------------------- */
.president-message-container {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.president-image {
  flex: 1 1 40%;
  max-width: 400px;
}
.president-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.president-text {
  flex: 1 1 55%;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.president-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #007acc;
}
/* 挨拶文：段落間の余白を調整 */
.president-text p.spaced {
  margin-top: 2em;
}

/* 署名部分を右寄せに */
.president-text p.right-align {
  text-align: right;
  margin-top: 2em;
}
.president-signature {
  text-align: right;
  margin-top: 2rem;
  line-height: 1.5;
}
/* --------------------------------------------------
   安全への取り組み（SAFETY INITIATIVES）
-------------------------------------------------- */

/* セクション全体の余白を広めに */
.safety-title {
  margin-top:200px;       /* 社長挨拶との距離をしっかり確保 */
  margin-bottom:150px;
}

/* 箇条書きコンテナ */
.safety-initiatives-box {
  max-width: 900px;
  margin: 0 auto 60px;     /* 下にも余白を確保して会社概要と分離 */
  padding: 0 1rem;
}

/* 箇条書きリスト */
.safety-list {
  list-style: disc;
  padding-left: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
}

/* スマホ対応（文字間・行間調整） */
@media (max-width: 768px) {
  .safety-title {
    margin-top: 60px;
  }

  .safety-list {
    font-size: 1rem;
    padding-left: 1.4rem;
  }
}
/* --------------------------------------------------
   安全への取り組み（2段表示スタイル）
-------------------------------------------------- */

.safety-list2 {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.safety-list2 li {
  margin-bottom: 22px;
  padding-left: 1.4em;
  position: relative;
}

/* 行頭マーク（オリジナルの●） */
.safety-list2 li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #005bac; /* 会社の青系に合わせた落ち着いた色 */
  font-size: 0.9rem;
}

/* タイトル行 */
.safety-list2 .main-line {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #222;
}

/* 補足行 */
.safety-list2 .sub-line {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-left: 0.2em;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .safety-list2 .main-line {
    font-size: 1rem;
  }
  .safety-list2 .sub-line {
    font-size: 0.88rem;
  }
}

/* --------------------------------------------------
   会社概要・お問い合わせセクション
-------------------------------------------------- */
.section ul {
  list-style: none;
  padding-left: 0;
  line-height: 2;
  font-size: 1rem;
}

.contact-box {
  text-align: center;
  background-color: #f8fbff;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.contact-box .button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #007acc;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.contact-box .button:hover {
  background-color: #005b99;
}
/* --------------------------------------------------
   会社概要セクション
-------------------------------------------------- */
.company-overview-section {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.company-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.company-info-item {
  background: #fff;
  padding: 1rem 1.5rem;
  border-left: 4px solid #0074cc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.company-info-item span {
  font-weight: bold;
  color: #333;
  display: inline-block;
  margin-right: 0.5rem;
}
/* セクションタイトルの上マージンを追加 */
/* 会社概要セクション内だけ広げる */
/* COMPANY OVERVIEWだけマージン調整 */
.overview-title {
  margin-top: 10rem; /* 必要なだけ広げてください */
}

/* --------------------------------------------------
   レスポンシブ
-------------------------------------------------- */
@media screen and (max-width: 900px) {
.company-info-grid {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

}

@media screen and (max-width: 768px) {
  .president-message-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .president-image,
  .president-text {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .company-profile-section {
    padding: 5rem 1.5rem;
  }
}
