.business-wrap {
  width: 90%;
  max-width: 980px;
  margin: 56px auto 110px;
}

.business-intro {
  margin-bottom: 48px;
}

.business-intro-image img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}

.business-intro-text {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.business-intro-text h3 {
  width: 43%;
  font-size: 35px;
  line-height: 1.45;
  color: #d73f3f;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .business-intro-text h3 {
    font-size: 26px;
  }
}
.business-intro-text h3 span {
  font-size: 20px;
}
.business-intro-text p {
  width: 49%;
  font-size: 15px;
  line-height: 2.33;
  color: #333;
  padding-top: 6px;
}

.business-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.business-card {
  border-radius: 14px;
  background: #fff;
  padding: 26px 15px 24px;
  text-align: center;
}
.business-card h4 {
  width: 100%;
  background: #e03636;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 10px 14px;
  margin-bottom: 18px;
}
.business-card p {
  font-size: 12px;
  line-height: 1.9;
  color: #333;
  text-align: left;
}
.business-card .sub-text {
  font-size: 15px;
  line-height: 1;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .business-card .sub-text {
    font-size: 14px;
  }
}

.business-global {
  margin-bottom: 66px;
  position: relative;
}
.business-global h3 {
  font-size: 58px;
  line-height: 1;
  color: #d63d3d;
  letter-spacing: 0.03em;
  position: absolute;
  left: 0;
  top: -27px;
  text-align: center;
  width: 100%;
}
.business-global h4 {
  margin-top: 24px;
  margin-bottom: 26px;
  text-align: center;
  font-size: 30px;
  color: #d63d3d;
  line-height: 1.4;
  font-weight: 700;
}
.business-global .sub-text {
  font-size: 15px;
  line-height: 1;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

.business-global-image img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
}

.business-global-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.business-global-cols .col {
  background: #fff;
  padding: 22px 20px;
}
.business-global-cols .col h5 {
  width: 100%;
  background: #e03636;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 10px 14px;
  margin-bottom: 16px;
  text-align: center;
}
.business-global-cols .col p {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.business-global-cols .col .sub-text {
  font-size: 15px;
  line-height: 1;
  color: #333;
  text-align: center;
  margin-bottom: 16px;
}

.company-overview h3 {
  text-align: center;
  color: #d63d3d;
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 26px;
}

.company-overview-list .row {
  display: flex;
  border-bottom: 1px dotted #E03636;
}
.company-overview-list .row dt {
  width: 24%;
  padding: 18px 0px;
  color: #d63d3d;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}
.company-overview-list .row dd {
  width: 76%;
  margin: 0;
  padding: 18px 18px;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.company-overview-officers {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.company-overview-officers th,
.company-overview-officers td {
  border: 1px solid #ccc;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  color: #333;
}
.company-overview-officers th {
  background: #999;
  color: #fff;
  font-weight: 700;
}
.company-overview-officers tbody td {
  border-style: dotted;
  border-left-style: solid;
  border-right-style: solid;
}
.company-overview-officers tbody tr:last-child td {
  border-bottom-style: solid;
}

.company-overview-officers-note {
  margin: 10px 0 0;
  text-align: right;
  font-size: 14px;
  color: #333;
}

@media screen and (max-width: 900px) {
  .business-wrap {
    width: 92%;
    margin: 8vw auto 14vw;
  }
  .business-intro {
    margin-bottom: 9vw;
  }
  .business-intro-image img {
    height: 54vw;
    border-radius: 12px;
  }
  .business-intro-text {
    margin-top: 6vw;
    display: block;
  }
  .business-intro-text h3,
  .business-intro-text p {
    width: 100%;
  }
  .business-intro-text h3 {
    font-size: 6.8vw;
    margin-bottom: 4vw;
    position: relative;
    padding-left: 9vw;
  }
  .business-intro-text h3 span {
    font-size: 2.3vw;
    position: absolute;
    left: -9vw;
    top: 60%;
    transform: translateY(-50%) rotate(90deg);
  }
  .business-intro-text p {
    font-size: 3.5vw;
    line-height: 2;
  }
  .business-cards {
    grid-template-columns: 1fr;
    gap: 3vw;
    margin-bottom: 26vw;
  }
  .business-card {
    padding: 5vw 0vw;
  }
  .business-card h4 {
    font-size: 3.2vw;
    padding: 2.4vw 3.8vw;
    margin-bottom: 3vw;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .business-card p {
    font-size: 3.4vw;
  }
  .business-card .sub-text {
    font-size: 4.5vw;
    margin-bottom: 3.6vw;
  }
  .business-global {
    margin-bottom: 11vw;
  }
  .business-global h3 {
    font-size: 12vw;
    margin-bottom: 4vw;
    text-align: center;
    top: -17vw;
  }
  .business-global h4 {
    margin-top: 5vw;
    margin-bottom: 4.5vw;
    font-size: 6.3vw;
    text-align: left;
  }
  .business-global-image img {
    height: 48vw;
    border-radius: 12px;
  }
  .business-global-cols {
    grid-template-columns: 1fr;
    gap: 3vw;
  }
  .business-global-cols .col {
    padding: 5vw 0vw;
  }
  .business-global-cols .col h5 {
    font-size: 3.2vw;
    padding: 2.4vw 3.8vw;
    margin-bottom: 3vw;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .business-global-cols .col p {
    font-size: 3.4vw;
  }
  .company-overview h3 {
    font-size: 9vw;
    margin-bottom: 5vw;
  }
  .company-overview-list .row {
    display: block;
  }
  .company-overview-list .row dt,
  .company-overview-list .row dd {
    width: 100%;
    box-sizing: border-box;
  }
  .company-overview-list .row dt {
    padding: 3vw 3.4vw 1.4vw;
    font-size: 3.2vw;
  }
  .company-overview-list .row dd {
    padding: 0 3.4vw 3vw;
    font-size: 3.3vw;
    line-height: 1.85;
  }
  .company-overview-officers {
    margin-top: 3vw;
  }
  .company-overview-officers th,
  .company-overview-officers td {
    padding: 2.6vw 2vw;
    font-size: 3.1vw;
  }
  .company-overview-officers-note {
    font-size: 3vw;
  }
}
.red-waku {
  text-align: center;
  font-size: 20px;
  line-height: 1;
  color: #d63d3d;
  font-weight: 700;
  margin-bottom: 37px;
}
.red-waku span {
  display: inline-block;
  border: 1px solid #d63d3d;
  color: #d63d3d;
  font-size: 20px;
  line-height: 1;
  padding: 10px 23px;
}

.ex-copy {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 900px) {
  .red-waku {
    text-align: center;
    font-size: 20px;
    line-height: 1;
    color: #d63d3d;
    font-weight: 700;
    margin-bottom: 1vw;
  }
  .red-waku span {
    display: inline-block;
    border: 1px solid #d63d3d;
    color: #d63d3d;
    font-size: 4.5vw;
    line-height: 1;
    padding: 3.2vw 5.1vw;
  }
  .ex-copy {
    font-size: 3.4vw;
    line-height: 2.3;
    color: #333;
    text-align: left;
    margin-bottom: 16vw;
  }
  .sp-center {
    text-align: center;
  }
}
