.business-model {
  margin-top: 100px;
  text-align: center;
  margin-bottom: 115px;
}

.business-model figure {
  max-width: 840px;
  width: 100%;
  margin: auto;
}

.business-model__title {
  margin: 0 auto 60px;
  border-bottom: 2px solid #162b5a;
  max-width: 420px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  color: #162b5a;
  line-height: 2;
}

.business-model__content {
  margin-top: 50px;
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 1.5rem;
  color: #162b5a;
  line-height: 1.5;
}

.internal-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 720px;
  width: 100%;
  margin: auto;
}

.internal-link a {
  display: block;
  max-width: calc((100% - 40px) /2);
  width: 100%;
  border: 2px solid #162b5a;
  text-align: center;
  line-height: 3;
  position: relative;
  z-index: 0;
  background-color: #fff;
  color: #162b5a;
  font-weight: bold;
  font-size: 1.5rem;
  transition: all 0.5s ease;
}

.internal-link a::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #162b5a;
  transform-origin: left center;
  transition: all 0.5s ease;
  transform: scaleX(0);
}

.internal-link a::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 30px;
  transition: all 0.5s ease;
  transform: translateY(-50%) skewX(35deg);
  width: 30px;
  height: 10px;
  border-bottom: 1px solid #162b5a;
  border-right: 1px solid #162b5a;
}

.internal-link a span {
  width: 60px;
}

.internal-link a:hover {
  color: #fff;
}

.internal-link a:hover::before {
  transform: scaleX(1);
}

.internal-link a:hover::after {
  transform: translate(10px, -50%) skewX(50deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.position h2 {
  width: 100%;
  background-color: #162b5a;
  color: #ffff81;
  text-align: center;
  font-weight: bold;
  font-size: 3.1rem;
  letter-spacing: 3px;
  line-height: 1.5;
  padding: 60px 0 65px;
}

.position h2 span {
  font-family: 'Oswald', sans-serif;
  display: block;
  font-weight: 400;
  letter-spacing: normal;
}

.position__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 100px;
  margin-bottom: 60px;
}

.position__info__detail {
  max-width: calc(50% - 110px);
  width: 100%;
}

.position__info__detail h3 {
  font-weight: bold;
  font-size: 2.1rem;
  line-height: 1.5;
  color: #162b5a;
  margin-bottom: 50px;
}

.position__info__detail p {
  font-weight: 500;
  font-size: 1.5rem;
  color: #162b5a;
  line-height: 1.5;
  letter-spacing: 1.2px;
}

.position__info figure {
  max-width: 50%;
  width: 100%;
}

.position__policy {
  background-color: #ecf0f1;
  padding: 55px 0 60px;
}

.position__policy figure {
  max-width: 670px;
  width: 100%;
  margin: 0 auto 25px;
}

.position__policy p {
  font-weight: 500;
  font-size: 1.5rem;
  color: #162b5a;
  text-align: center;
  line-height: 1.5;
}

.position__policy p.title {
  font-weight: bold;
  font-size: 2.1rem;
  text-align: left;
  margin-bottom: 25px;
}

.position__list {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.position__list__child {
  max-width: calc((100% - 120px) / 3);
  width: 100%;
}

.position__list__child__detail p {
  font-weight: bold;
  font-size: 2.1rem;
  color: #162b5a;
  line-height: 1.5;
}

.position__list__child__detail p.mini-txt {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 15px;
}

.position__link-more {
  margin: 120px auto 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 980px;
  width: 100%;
}

.position__link-more a {
  display: block;
  position: relative;
  z-index: 0;
}

.position__link-more a span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 2.1rem;
  width: 100%;
  text-align: center;
}

.position__link-more a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1023px) {
  .business-model {
    padding: 0 20px;
  }
  .position__info__detail {
    max-width: 50%;
  }
  .position__info figure {
    max-width: calc(50% - 30px);
  }
  .position__list__child {
    max-width: calc((100% - 60px) / 3);
  }
  .position__list__child__detail p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .internal-link {
    flex-flow: column wrap;
  }
  .internal-link a {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .position__info {
    flex-flow: column wrap;
  }
  .position__info__detail {
    max-width: 100%;
  }
  .position__info figure {
    max-width: 100%;
    margin-top: 30px;
  }
  .position__list {
    flex-flow: column wrap;
  }
  .position__list__child {
    max-width: 100%;
  }
  .position__list__child:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .position__link-more {
    flex-flow: column wrap;
    margin: 60px auto;
  }
  .position__link-more a {
    max-width: 100%;
    margin-bottom: 20px;
  }
}