/* レイアウト全体の調整 */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.6;
  background-color: #000000;
  color: #ffffff;
}

/* main が残りスペースを埋める */
main {
  flex: 1;
  padding: 0 2rem;
}



/* フッター */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #6c6c6c;
  font-size: 0.9rem;
  color: white;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

nav ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
}

table {
  border-collapse: collapse; /* 枠線をくっつける */
  width: 100%; /* 必要に応じて */
}

th, td {
  padding: 0.3rem 0.5rem; /* パディングを小さめに */
  border-bottom: 1px solid #ccc;
  text-align: left;
}


/* ヘッダーの画像 */
.text-background {
  background-image: url("images/smoke.jpg"); /* 画像パスは自分のに合わせて変更 */
  background-size: cover;
  background-position: 60% center; /* 少し右寄り */
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6); /* 文字が背景に埋もれないように影をつける */
}
/* ヘッダーの文字 */
.text-background h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.text-background p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* 水平線 */
hr {
  border: none;          /* デフォルトの立体感を消す */
  border-top: 2px solid #fac8ff91;  /* 上線だけ表示（色と太さを指定） */
  margin: 1rem 0;         /* 上下の余白をつける */
}

.custom-line {
  width: 30%;               /* 幅（長さ）を指定 */
  margin-left: 0;           /* 左寄せにする場合 */
  border: none;
  border-top: 2px solid #f3f3f3;  /* 線の太さと色 */


  /* さわるないじるな */
}
.short-line-table {
  border-collapse: collapse;
  margin-left: 1rem; /* 左寄せしつつ少し余白 */
}

.short-line-table td, 
.short-line-table th {
  padding: 0.5rem 0;
  border-bottom: 1px solid #666;
}

.short-line-table td {
  width: 2px;
}

.short-line-table th {
  width: 1px;
}

/* index.html */
.company-description {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.company-description h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f0c0ff;
  text-align: center;
}

.company-description p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}