.main {
  background-color: #c9caca;
}
/* セクション全体 */
.about-section {
  position: relative;
  width: 100%;
  height: 400px; /* 好きな高さに調整 */
  overflow: hidden;
}

/* 画像 */
.about-section .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の縦横比を維持して全体表示 */
  display: block;
}

/* 文字を画像上に重ねる */
.about-section .about-text {
  position: absolute;
  top: 50%; /* セクションの真ん中 */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; /* 文字色 */
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* 文字を見やすく */
}

/* 見出しと段落 */
.about-section .about-text h2 {
  font-size: 60px;
  margin-bottom: 10px;
}

.about-section .about-text p {
  font-size: 30px;
}

/* ----------------------------------------- Company view ---------------------------------------------------------------- */

iframe {
  text-align: center;
}

#about-view {
  color: #001728;
  margin: 0 auto;
  margin-top: 5%;
  margin-bottom: 5%;
  text-align: center;
}

#about-view tr {
  border-bottom: 1px solid #001728;
  text-align: center;
  font-size: 20px;
  margin-top: 15%;
}

#about-view td {
  font-size: 20px;
}

#about-view th,
#about-view td {
  padding: 24px 0;
  border: none;
  text-align: left;
}

#about-view th {
  width: 30%;
}
iframe {
  width: 60%;
  text-align: center;
}

/* sp */
@media only screen and (max-width: 767px) {
  /* .company h2 {
    margin-top: 5%;
    color: #c9caca;
    font-size: 24px;
    text-align: center;
    position: relative;
    display: inline-block;
    height: 70px;
    line-height: 0.8em;
    padding-top: 120px;
  }
  .company span {
    font-size: 12px;
  }
  .company-sub-title {
    width: 90%;
    font-size: 18px;
    margin-top: 8%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  #about-view th,
  #about-view td {
    padding: 20px 0;
    width: 100%;
    display: block;
  }

  #about-view th {
    font-size: 18px;
  }
  #about-view td {
    font-size: 14px;
  }

  #about-view th {
    width: 100%;
  }

  #about-view td {
    padding-top: 0;
  }
  iframe {
    width: 60%;
    height: auto;
  } */
}

/* ----------------------------------------- 事業 ---------------------------------------------------------------- */

.business-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.business-card {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.business-image {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}

.business-text {
  flex: 1;
  padding: 20px 30px;
}

.business-text h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #333;
}

.business-text p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.business-text h4 {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #222;
}

.property-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #555;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .business-card {
    flex-direction: column;
  }

  .business-image {
    max-width: 100%;
    height: auto;
  }

  .business-text {
    padding: 20px;
  }
}
