/* 会社情報セクション */
.company-info {
  background: #ffffff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.company-info__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.company-info__title {
  font-weight: 800;
  font-size: 32px;
  line-height: normal;

  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.company-info__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 524px;
  height: 363px;
  gap: 0;
}

.company-info__logo {
  width: 436px;
  height: 139.278px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.company-info__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-position: 100.03% 0%;
  background-repeat: no-repeat;
  background-size: 99.93% 98.55%;
}

.company-info__details {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.company-info__details p {
  font-weight: normal;
  font-size: 28px;
  line-height: 2;

  margin: 0;
  cursor: pointer;
}

.company-info__website a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-decoration-style: solid;
  text-underline-position: from-font;

  font-weight: normal;
  font-size: 28px;
  line-height: 2;
  cursor: pointer;
}

.company-info__website a:hover {
  opacity: 0.8;
}

.company-info__contact a {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;

  font-weight: normal;
  font-size: 28px;
  line-height: 2;
  cursor: pointer;
}

.company-info__contact a:hover {
  opacity: 0.8;
}

.company-info__link {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-decoration-style: solid;
  text-underline-position: from-font;
  font-weight: normal;
  font-size: 28px;
  line-height: 2;
  cursor: pointer;
  color: inherit;
}

.company-info__link:hover {
  opacity: 0.8;
}

/* CTA部分 */
.company-info__cta {
  background: #ffffff;
  padding: 40px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.company-info__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.company-info__cta-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 28px;
  width: 434px;
}

.company-info__cta-arrow {
  width: 16px;
  height: 20px;
  flex-shrink: 0;
}

.company-info__cta-text {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .company-info__container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .company-info {
    padding: 40px 0;
  }

  .company-info__container {
    padding: 0 24px;
    gap: 24px;
    max-width: 342px;
  }

  .company-info__title {
    font-size: 16px;
    white-space: normal;
  }

  .company-info__content {
    width: 262px;
    height: auto;
    align-items: flex-start;
  }

  .company-info__logo {
    width: 218px;
    height: 70px;
    margin-bottom: 0;
  }

  .company-info__details {
    width: 100%;
  }

  .company-info__details p {
    font-size: 14px;
    line-height: 2;
  }

  .company-info__website a,
  .company-info__contact a,
  .company-info__link {
    font-size: 14px;
    line-height: 2;
  }

  .company-info__cta {
    padding: 40px 0 0;
  }

  .company-info__cta-container {
    width: 342px;
  }

  .company-info__cta-message {
    width: 323px;
    height: 28px;
    gap: 8px;
  }

  .company-info__cta-arrow {
    width: 16px;
    height: 20px;
  }

  .company-info__cta-text {
    font-size: 16px;
  }

  /* CTAボタンのレスポンシブスタイルはcta-button.cssに移行しました */
}

/* コピーライト */
.copyright {
  background: #f7f5f0;
  padding: 22px 147px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  height: 139px;
}

.copyright__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright__text {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

/* コピーライトのレスポンシブ対応 */
@media (max-width: 768px) {
  .copyright {
    height: 60px;
    padding: 20px 40px;
  }
}
