@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Roboto:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.about-list {
  padding: 0 40px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .about-list {
    padding: 0;
    gap: 40px;
    flex-direction: column;
    margin: 0 -25px;
  }
}
.about-list__item {
  width: calc(50% - 40px);
  border-bottom: 1px dashed #223562;
}
@media (max-width: 767px) {
  .about-list__item {
    width: 100%;
  }
}
.about-list__link {
  display: block;
  position: relative;
  padding-bottom: 40px;
  height: 100%;
}
@media (max-width: 767px) {
  .about-list__link {
    padding: 0 25px 65px;
  }
}
@media (min-width: 1024px) {
  .about-list__link:hover .about-list__img img {
    transform: scale(1.05);
  }
}
.about-list__img {
  overflow: hidden;
  position: relative;
}
.about-list__img img {
  transition: transform 0.4s ease;
  transform: scale(1);
}
.about-list__img::before {
  content: "";
  width: 5px;
  height: 100%;
  display: block;
  background: #3749c2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.about-list__title {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .about-list__title {
    margin-top: 25px;
  }
}
.about-list__title-main {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .about-list__title-main {
    font-size: 1.9rem;
  }
}
.about-list__title-sub {
  margin-top: 12px;
  font-weight: 400;
  font-family: "Caveat", cursive;
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .about-list__title-sub {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
.about-list__description {
  width: calc(100% - 126px);
  margin-top: 20px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .about-list__description {
    width: 100%;
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.about-list .oval {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media (max-width: 767px) {
  .about-list .oval {
    bottom: 25px;
    right: 25px;
  }
}
.about-list .oval-icon {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.about-list .oval-icon::before, .about-list .oval-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  background-image: url(../../images/common/icon_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.about-list .oval-icon::before {
  transform: translate(0, 0);
}
.about-list .oval-icon::after {
  transform: translate(-12px, 12px);
}
@media (max-width: 767px) {
  .about-list .oval-icon {
    width: 7px;
    height: 7px;
  }
  .about-list .oval-icon::before, .about-list .oval-icon::after {
    width: 7px;
    height: 7px;
  }
}
@media (min-width: 1024px) {
  .about-list__link:hover .oval-icon::before {
    transform: translate(12px, -12px);
  }
  .about-list__link:hover .oval-icon::after {
    transform: translate(0, 0);
  }
}

.feature-block {
  padding: 80px 0;
  border-top: 1px dashed #223562;
  display: flex;
  gap: 0 80px;
}
@media (max-width: 767px) {
  .feature-block {
    padding: 40px 0;
  }
}
.feature-block:first-of-type {
  padding-top: 0;
  border-top: none;
}
.feature-block--last {
  border-bottom: 1px dashed #223562;
}
.feature-block__media {
  flex-shrink: 0;
  width: 33.333%;
  max-width: 480px;
}
@media (max-width: 767px) {
  .feature-block__media {
    width: 100%;
    flex: 0 0 auto;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .feature-block__media--01 {
    padding: 0 20px;
  }
}
.feature-block__content {
  min-width: 640px;
}
@media (max-width: 767px) {
  .feature-block__content {
    text-align: center;
    min-width: 100%;
  }
}
.feature-block__label {
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background: #3749c2;
  display: inline-block;
}
@media (max-width: 767px) {
  .feature-block__label {
    font-size: 1.3rem;
  }
}
.feature-block__lead {
  margin-top: 40px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .feature-block__lead {
    font-size: 2.1rem;
    margin-top: 20px;
  }
}
.feature-block__text {
  margin-top: 20px;
  text-align: left;
}
@media (max-width: 767px) {
  .feature-block__text {
    font-size: 1.4rem;
    margin-top: 30px;
  }
}

.history-images {
  padding-bottom: 80px;
  display: flex;
}
@media (max-width: 767px) {
  .history-images {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
  }
}
.history-images__group {
  display: flex;
}

.challenge-list {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  text-align: left;
}
@media (max-width: 767px) {
  .challenge-list {
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
  }
}
.challenge-list__item {
  width: calc(50% - 10px);
  padding: 50px 30px 40px;
  background: #ebf1fa;
  position: relative;
}
@media (max-width: 767px) {
  .challenge-list__item {
    width: 100%;
    padding: 40px 30px;
  }
}
.challenge-list__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
}
.challenge-list__item:nth-child(1)::before {
  width: 78px;
  height: 50px;
  background: url(../../images/about/features/icon_plane.png) no-repeat center center/contain;
}
.challenge-list__item:nth-child(2)::before {
  width: 60px;
  height: 50px;
  background: url(../../images/about/features/icon_suitcase.png) no-repeat center center/contain;
}
.challenge-list__item:nth-child(3)::before {
  width: 50px;
  height: 50px;
  background: url(../../images/about/features/icon_light.png) no-repeat center center/contain;
}
.challenge-list__item:nth-child(4)::before {
  width: 60px;
  height: 50px;
  background: url(../../images/about/features/icon_hands.png) no-repeat center center/contain;
}
.challenge-list__num {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}
.challenge-list__title {
  margin-top: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
.challenge-list__text {
  margin-top: 30px;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .challenge-list__text {
    font-size: 1.3rem;
    margin-top: 20px;
  }
}

.sub-info {
  padding: 20px 30px;
  margin-top: 10px;
  background: #f3efe3;
  text-align: left;
}
.sub-info__block + .sub-info__block {
  margin-top: 25px;
}
.sub-info__title {
  font-size: 1.7rem;
  line-height: 1;
  color: #3749c2;
  font-weight: 500;
}
.sub-info__list {
  margin-top: 12px;
}
.sub-info__item {
  display: flex;
  justify-content: space-between;
}
.sub-info__item + .sub-info__item {
  margin-top: 9px;
}
.sub-info__label, .sub-info__value {
  font-size: 1.3rem;
  line-height: 1;
}
.sub-info__label span, .sub-info__value span {
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
}
.sub-info__text {
  margin-top: 12px;
  font-size: 1.3rem;
  line-height: 1;
}

.strength-block + .strength-block {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .strength-block + .strength-block {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .strength-kv {
    margin: 0 -25px;
  }
}
.strength-kv__inner {
  position: relative;
}
.strength-kv__title {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 17px;
}
@media (max-width: 767px) {
  .strength-kv__title {
    padding-bottom: 0;
  }
}
.strength-kv__title-main {
  margin-top: -30px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  background: #3749c2;
  padding: 10px 20px;
  position: relative;
}
@media (max-width: 767px) {
  .strength-kv__title-main {
    font-size: 1.3rem;
    margin-top: -20px;
  }
}
.strength-kv__num {
  font-size: 14rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}
@media (max-width: 767px) {
  .strength-kv__num {
    font-size: 10rem;
  }
}
.strength-kv__caption {
  margin-top: 10px;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .strength-kv__caption {
    padding: 0 25px;
    margin-top: 15px;
  }
}
.strength-kv__caption span {
  display: inline-block;
}
.strength-contents {
  padding: 80px 40px 0;
}
@media (max-width: 767px) {
  .strength-contents {
    padding: 40px 0 0;
  }
}
.strength-item {
  display: flex;
  gap: 20px 80px;
}
@media (max-width: 767px) {
  .strength-item {
    flex-direction: column;
  }
}
.strength-item + .strength-item {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .strength-item + .strength-item {
    margin-top: 60px;
  }
}
.strength-item--1col {
  flex-direction: column;
}
.strength-item--1col .strength-item__title {
  width: 100%;
}
.strength-item__title {
  width: 280px;
  padding-top: 20px;
  flex-shrink: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
  border-top: 4px solid #3749c2;
}
@media (max-width: 767px) {
  .strength-item__title {
    width: 100%;
    font-size: 2.2rem;
  }
}
.strength-item__images {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .strength-item__images {
    flex-direction: column;
    gap: 15px 0;
    margin-bottom: 25px;
  }
}
.strength-item__image {
  flex: 1;
}
@media (max-width: 767px) {
  .strength-item__text {
    font-size: 1.4rem;
  }
}
.strength-item__notes {
  padding-left: 17px;
  margin-top: 40px;
  font-size: 1.2rem;
  line-height: 2;
  position: relative;
}
@media (max-width: 767px) {
  .strength-item__notes {
    margin-top: 25px;
  }
}
.strength-item__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.strength-item__link {
  padding-right: 22px;
  text-decoration: underline;
  font-weight: 500;
  line-height: 1;
  margin-top: 20px;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .strength-item__link {
    margin-top: 25px;
  }
}
.strength-item__link .oval-icon {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  left: auto;
  right: 0;
  transform: translateY(-50%);
}
.strength-item__link .oval-icon::before, .strength-item__link .oval-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  background-image: url(../../images/common/icon_arrow_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.strength-item__link .oval-icon::before {
  transform: translate(0, 0);
}
.strength-item__link .oval-icon::after {
  transform: translate(-12px, 12px);
}
@media (max-width: 767px) {
  .strength-item__link .oval-icon {
    width: 7px;
    height: 7px;
  }
  .strength-item__link .oval-icon::before, .strength-item__link .oval-icon::after {
    width: 7px;
    height: 7px;
  }
}
@media (min-width: 1024px) {
  .strength-item__link:hover .oval-icon::before {
    transform: translate(12px, -12px);
  }
  .strength-item__link:hover .oval-icon::after {
    transform: translate(0, 0);
  }
}
@media (max-width: 767px) {
  .strength-item__link .oval-icon {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .strength-item__link .oval-icon::before, .strength-item__link .oval-icon::after {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 1024px) {
  .strength-item__link:hover {
    text-decoration: none;
  }
}

.country-block {
  display: flex;
  gap: 40px;
  padding: 40px;
  border: 1px dashed #3749c2;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .country-block {
    flex-direction: column;
    padding: 30px 0 0;
    border-width: 1px 0 0 0;
    margin-top: 60px;
  }
}
.country-block + .country-block {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .country-block + .country-block {
    margin-top: 60px;
  }
}
.country-block__aside {
  width: 360px;
  padding-right: 40px;
  flex-shrink: 0;
  border-right: 1px dashed #3749c2;
}
@media (max-width: 767px) {
  .country-block__aside {
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }
}
.country-block__name {
  padding-left: 40px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.7;
  background: url(../../images/about/strength/icon_map.png) no-repeat left center;
  background-size: 30px 40px;
}
@media (max-width: 767px) {
  .country-block__name {
    background-size: 18px 24px;
    padding-left: 28px;
    font-size: 2rem;
  }
}
.country-block__main-image {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .country-block__main-image {
    margin-top: 20px;
  }
}
.country-block__caption {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.country-block__contents {
  flex: 1;
  padding: 20px;
}
@media (max-width: 767px) {
  .country-block__contents {
    padding: 0;
  }
}
.country-section + .country-section {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .country-section + .country-section {
    margin-top: 30px;
  }
}
.country-section__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .country-section__title {
    font-size: 1.8rem;
  }
}
.country-section__text {
  margin-top: 12px;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .country-section__text {
    font-size: 1.4rem;
    margin-top: 10px;
  }
}
.country-section__images {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .country-section__images {
    margin-top: 20px;
    flex-direction: column;
  }
}
.country-section__image {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .country-section__image {
    width: 100%;
  }
}
.country-section__image img {
  height: auto;
  display: block;
}
.country-section__image-caption {
  font-size: 1.2rem;
  margin-top: 10px;
}

.factory-block {
  display: flex;
  gap: 40px;
  padding: 40px;
  border: 1px dashed #3749c2;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .factory-block {
    flex-direction: column;
    padding: 30px 0 0;
    border-width: 1px 0 0 0;
    margin-top: 60px;
    gap: 25px;
  }
}
.factory-block__aside {
  width: 360px;
  flex-shrink: 0;
  padding-right: 40px;
  border-right: 1px dashed #3749c2;
}
@media (max-width: 767px) {
  .factory-block__aside {
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }
}
.factory-block__name {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.7;
  padding-left: 53px;
  background: url(../../images/about/strength/icon_factory.png) no-repeat left center;
  background-size: 43px 40px;
}
@media (max-width: 767px) {
  .factory-block__name {
    background-size: 26px 24px;
    padding-left: 36px;
    font-size: 2rem;
  }
}
.factory-block__map {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .factory-block__map {
    margin-top: 20px;
    padding: 0 43px;
  }
}
.factory-block__header-image {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .factory-block__header-image {
    margin-top: 10px;
  }
}
.factory-block__contents {
  flex: 1;
  padding: 20px 0 20px;
}
@media (max-width: 767px) {
  .factory-block__contents {
    padding: 0;
  }
}
.factory-block__info {
  margin-top: 24px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .factory-block__info {
    margin-top: 20px;
  }
}
.factory-block__info-row {
  display: flex;
  margin: 10px 0 12px;
}
@media (max-width: 767px) {
  .factory-block__info-row {
    margin: 5px 0;
  }
}
.factory-block__info-label {
  font-weight: 500;
  width: 80px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .factory-block__description {
    font-size: 1.4rem;
  }
}
.factory-feature {
  padding: 25px 50px 30px 63px;
  margin-top: 32px;
  background: #ebf1fa;
}
@media (max-width: 767px) {
  .factory-feature {
    padding: 30px;
  }
}
.factory-feature + .factory-feature {
  margin-top: 10px;
}
.factory-feature__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}
@media (max-width: 767px) {
  .factory-feature__title {
    font-size: 1.8rem;
    padding-top: 21px;
  }
}
.factory-feature__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: -38px;
  width: 18px;
  height: 18px;
  background: url(../../images/about/strength/icon_check.png) no-repeat left top;
  background-size: 18px;
}
@media (max-width: 767px) {
  .factory-feature__title::before {
    top: 0;
    left: 0;
  }
}
.factory-feature__text {
  margin-top: 12px;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .factory-feature__text {
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
.factory-feature__image {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .factory-feature__image {
    margin-top: 20px;
  }
}

.product-block {
  display: flex;
}
@media (max-width: 767px) {
  .product-block {
    flex-direction: column;
  }
}
.product-block--last .product-block__content {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .product-block--last .product-block__content {
    padding-bottom: 0;
  }
}
.product-block__header {
  width: 280px;
  padding-right: 80px;
  flex-shrink: 0;
  border-right: 1px dashed #3749c2;
}
@media (max-width: 767px) {
  .product-block__header {
    width: 100%;
    border-right: none;
    border-bottom: 1px dashed #3749c2;
    padding-right: 0;
  }
}
.product-block__heading {
  padding: 70px 0 30px;
  background: #3242a9 url(../../images/common/bg_blue.png) repeat center center;
  background-size: 100px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .product-block__heading {
    margin: 0 -25px;
    padding: 30px;
  }
}
.product-block__num {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 12px;
  left: 15px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .product-block__num {
    top: 16px;
    left: 25px;
  }
}
.product-block__title {
  font-size: 2.2rem;
  line-height: 1.5;
  color: #3749c2;
  text-align: center;
  font-weight: 500;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .product-block__title {
    font-size: 1.6rem;
    padding-bottom: 20px;
  }
}
.product-block__icon {
  width: 80px;
  margin: 0 auto;
}
.product-block__content {
  padding-left: 80px;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .product-block__content {
    padding-left: 0;
    padding-bottom: 80px;
    margin-top: 40px;
  }
}
.product-block__lead {
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product-block__lead {
    font-size: 2.2rem;
  }
}
.product-block__caption {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: right;
  margin-bottom: 40px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .product-block__caption {
    text-align: left;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .product-block__text {
    font-size: 1.4rem;
  }
}

.main-product {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .main-product {
    flex-direction: column;
    gap: 10px;
  }
}
.main-product__item {
  padding: 40px;
  width: calc(50% - 10px);
  background: #ebf1fa url(../../images/common/bg_light-blue.png) repeat center center;
  background-size: 100px;
}
@media (max-width: 767px) {
  .main-product__item {
    width: 100%;
    padding: 40px 30px;
  }
}
.main-product__title {
  height: 30px;
  text-align: center;
}
.main-product__title img {
  height: 100%;
  width: auto;
}
.main-product__image {
  width: 160px;
  margin: 20px auto 0;
}
.main-product__text {
  line-height: 1.8;
  font-size: 1.5rem;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .main-product__text {
    font-size: 1.3rem;
  }
}

.sub-product {
  margin-top: 40px;
}
.sub-product__item {
  display: flex;
  gap: 0 40px;
}
@media (max-width: 767px) {
  .sub-product__item {
    flex-direction: column;
  }
}
.sub-product__item + .sub-product__item {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .sub-product__item + .sub-product__item {
    margin-top: 40px;
  }
}
.sub-product__item:nth-child(1) .sub-product__title {
  background: url(../../images/about/products/img_02_number_01.png) no-repeat left top;
  background-size: 60px 50px;
}
@media (max-width: 767px) {
  .sub-product__item:nth-child(1) .sub-product__title {
    background-position: center top;
  }
}
.sub-product__item:nth-child(2) .sub-product__title {
  background: url(../../images/about/products/img_02_number_02.png) no-repeat left top;
  background-size: 60px 50px;
}
@media (max-width: 767px) {
  .sub-product__item:nth-child(2) .sub-product__title {
    background-position: center top;
  }
}
.sub-product__item:nth-child(3) .sub-product__title {
  background: url(../../images/about/products/img_02_number_03.png) no-repeat left top;
  background-size: 60px 50px;
}
@media (max-width: 767px) {
  .sub-product__item:nth-child(3) .sub-product__title {
    background-position: center top;
  }
}
.sub-product__image {
  width: 33.33%;
  margin-top: 10px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .sub-product__image {
    width: 100%;
    margin-top: 0;
  }
}
.sub-product__title {
  padding: 5px 0 5px 70px;
  line-height: 1.7;
  font-weight: 500;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .sub-product__title {
    font-size: 1.8rem;
    text-align: center;
    padding: 60px 0 0;
    margin-top: -25px;
  }
}
.sub-product__text {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .sub-product__text {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.other-product {
  margin-bottom: 40px;
  display: flex;
  gap: 0 30px;
}
@media (max-width: 767px) {
  .other-product {
    margin-bottom: 30px;
    gap: 0;
  }
}
.other-product__item {
  width: calc(33.333% - 20px);
}
@media (max-width: 767px) {
  .other-product__item {
    width: 33.333%;
  }
}
.other-product__caption {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.numbers-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .numbers-list {
    gap: 10px;
    flex-direction: column;
  }
}
.numbers-list__item {
  padding: 40px 60px 80px;
  width: calc(50% - 10px);
  background: #ebf1fa url(../../images/common/bg_light-blue.png) repeat center center;
  background-size: 100px;
}
@media (max-width: 767px) {
  .numbers-list__item {
    width: 100% !important;
    padding: 25px 30px 40px;
  }
}
.numbers-list__item--recycling, .numbers-list__item--base {
  width: 100%;
}
.numbers-list__item--recycling .numbers-list__title, .numbers-list__item--base .numbers-list__title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .numbers-list__item--recycling .numbers-list__title, .numbers-list__item--base .numbers-list__title {
    margin-bottom: 20px;
  }
}
.numbers-list__item--recycling .numbers-list__body {
  display: flex;
  align-items: center;
  gap: 20px 40px;
}
@media (max-width: 767px) {
  .numbers-list__item--recycling .numbers-list__body {
    flex-direction: column;
  }
}
.numbers-list__item--recycling .numbers-list__image {
  flex-shrink: 0;
}
.numbers-list__item--base .numbers-list__image {
  width: 720px;
}
.numbers-list__title {
  padding: 10px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  background: #ffffff;
  color: #3749c2;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .numbers-list__title {
    font-size: 1.5rem;
  }
}
.numbers-list__image {
  width: 360px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .numbers-list__image {
    width: 100% !important;
  }
}
.numbers-list__text {
  margin-top: 20px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .numbers-list__text {
    font-size: 1.4rem;
  }
}