/* 全体共通 */
body {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  line-height: 1.6;
}

.wrapper {
    width: 95%;
}

/* ヒーロー部分 */
.hero {
  background: url('/images/about-pc-header.png') no-repeat center/cover;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-text {
  background: #fff;
  padding: 10px 30px;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5px;
}

/* 会社概要テーブル */
.company-profile {
  background: #f7a6c5;
  padding: 20px;
  margin: 30px auto;
  width: 90%;
  border-radius: 10px;
}
.company-profile table {
  width: 100%;
  border-collapse: collapse;
}
.company-profile th {
  text-align: left;
  width: 25%;
  color: #e6007e;
  padding: 8px;
}
.company-profile td {
  padding: 8px;
  border-bottom: 1px solid #000;
}

/* フッター */
footer {
  background: #f7a6c5;
  text-align: center;
  padding: 30px 20px;
}
footer .brand {
  background: #e6007e;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 8px;
  margin-bottom: 20px;
}
footer table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
  border-collapse: collapse;
}
footer th {
  text-align: left;
  color: #e6007e;
  padding: 6px;
  width: 30%;
}
footer td {
  text-align: left;
  padding: 6px;
}
footer .copy {
  font-size: 0.9rem;
  margin-top: 10px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .hero {
    background: url('/images/about-sp-header.png') no-repeat center/cover;
    height: 200px;
  }
  .hero-text {
    font-size: 1.4rem;
    padding: 6px 20px;
  }
  .company-profile {
    width: 95%;
    padding: 15px;
  }
  .company-profile th {
    width: 35%;
  }
}


