/* ================================
   ◆ ヒーローセクション（テキストのみ）
================================ */
.hero-section {
  background-color: #f7f5f2; /* 明るく柔らかいベージュ系 */
  padding: 60px 20px;
  text-align: center;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text .en-title {
  font-size: 18px;
  color: #999;
  margin-bottom: 20px;
}

.hero-line {
  width: 60px;
  height: 2px;
  background-color: #333;
  margin: 0 auto 20px auto;
}

.hero-sub {
  font-size: 16px;
  color: #555;
}

/* ===================================
   ◆ 会社概要セクション全体
=================================== */
body {
  background-color: #f7f5f2; /* サイト全体の背景色 */
}

.company-section {
padding: 60px 20px;
}

.company-inner {
max-width: 1000px;
margin: 0 auto;
}

/* ===== セクションタイトル ===== */
.section-title {
font-size: 28px;
font-weight: bold;
border-left: 5px solid #000000;
padding-left: 15px;
margin-bottom: 30px;
color: #333;
}

/* ===== ごあいさつエリア ===== */
.greeting-box {
background-color: #ffffff;
padding: 30px;
border-radius: 10px;
margin-bottom: 60px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.greeting-box p {
line-height: 1.8;
font-size: 16px;
color: #444;
}

.greeting-box .signature {
text-align: right;
font-weight: bold;
margin-top: 20px;
font-size: 16px;
}

/* ===== 会社概要表エリア ===== */
.info-box {
background-color: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.company-table {
width: 100%;
border-collapse: collapse;
}

.company-table th,
.company-table td {
padding: 15px 10px;
border-bottom: 1px solid #ddd;
text-align: left;
font-size: 16px;
}

.company-table th {
width: 30%;
background-color: #f0f0f0;
font-weight: bold;
color: #333;
}

/* ===== レスポンシブ対応（768px以下） ===== */
@media screen and (max-width: 768px) {
.section-title {
font-size: 24px;
}

.greeting-box,
.info-box {
padding: 20px;
}

.company-table th,
.company-table td {
font-size: 15px;
padding: 10px 5px;
}

.greeting-box .signature {
font-size: 15px;
}
  .card img {
  width: 100%;
  height: 200px; /* 統一したい高さ */
  object-fit: cover; /* 切り抜いて自然に見せる */
  border-radius: 8px;
}
.card p {
  word-break: keep-all;   /* 単語の途中で改行しない */
  line-break: strict;     /* 日本語でも自然に改行するように */
}
.card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

}