@charset "UTF-8";
/***********************************
 * 会社情報セクション（モバイルファースト）
 ***********************************/
.company-info-section {
  background: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}

.company-info-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.company-info-image {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.company-info-image img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.company-info-text {
  width: 100%;
  padding-left: 0;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

/* ::beforeで背景テキスト */
.company-info-text::before {
  content: "ABOUT US";
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-size: 4rem;
  color: #313439;
  opacity: 0.06;
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.company-info-text .label {
  position: relative;
  z-index: 3;
  display: inline-block;
  color: #cba450;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
}

.company-info-text .title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  color: #111;
  margin-bottom: 30px;
  margin-top: 5px;
}

.company-info-text .description {
  font-size: 15px;
  color: #333;
  line-height: 2;
  margin-bottom: 40px;
}

.company-info-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 32px;
  border: 1px solid #111;
  font-size: 14px;
  font-weight: bold;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.company-info-btn:hover {
  background: #111;
  color: #fff;
}

/***********************************
 * PCサイズ以上（1070px～）
 ***********************************/
@media screen and (min-width: 1070px) {
  .company-info-section {
    padding: 0;
  }

  .company-info-container {
    flex-direction: row;
    width: 100%;
  }

  .company-info-image {
    flex: 0 0 50%;
    margin-bottom: 0;
  }

  .company-info-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
  }

  .company-info-text {
    flex: 1 1 50%;
    padding: 80px 60px;
    box-sizing: border-box;
  }

  .company-info-text::before {
    top: 38px;
    left: 43px;
    font-size: 6rem;
  }

  .company-info-text .title {
    font-size: 28px;
  }

  .company-info-btn {
    width: auto;
    text-align: left;
  }
}
