@charset "utf-8";

.pageVisual {
  margin: 30px 0 40px;
  display: flex;
  flex-flow: column;
  gap: 30px 0;
}

.pageVisual__company {
  color: #444;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.pageVisual__title {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--site-color-main);
}
.pageVisual__info {
  display: flex;
  gap: 0 8px;
}
.pageVisual__industry {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 9999px;
  border: 1px solid var(--site-color-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--site-color-main);
}
.pageVisual__dept {
  display: inline-flex;
  background-color: #EDEDED;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 1.2rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .pageVisual {
    gap: 16px 0;
  }
  .pageVisual__company {
    color: #444;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .pageVisual__title {
    font-size: 2.0rem;
    margin-bottom: 16px;
  }
  .pageVisual__info {
    flex-flow: row wrap;
    gap: 8px;
  }
}


.backgroundBox {
  padding: 20px;
  background: rgba(67, 120, 226, 0.1);
  margin-bottom: 40px;
}
.backgroundBox__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.backgroundBox__text {
  font-size: 1.6rem;
}

.issueBox {
  position: relative;
  margin-bottom: 78px;
}
.issueBox::after {
  content: '';
  display: block;
  background: var(--site-color-main);
  height: calc(60px / 2.5);
  width: 46px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translate(-50%, 0);
}
.issueBox__box {
  border: 2px solid var(--site-color-main);
  padding: 20px;
}
.issueBox__title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--site-color-main);
  padding-left: 34px;
  margin-bottom: 16px;
}
.issueBox__title::before {
  content: '';
  display: block;
  width: 26px;
  height: 24px;
  background: url(/assets/images/icon_attention.svg) no-repeat center center;
  background-size: 26px 24px;
  position: absolute;
  left: 0;
  top: 2px;
}
.issueBox__text {
  font-size: 1.6rem;
  color: var(--site-color-main);
}
.issueBox .pointBox {
  margin-top: 24px;
}

.solutionBox {
  position: relative;
  margin-bottom: 78px;
}
.solutionBox::after {
  content: '';
  display: block;
  background: #0E9B79;
  height: calc(60px / 2.5);
  width: 46px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translate(-50%, 0);
}
.solutionBox__box {
  border: 1px solid #ccc;
  padding: 20px;
}
.solutionBox__title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 34px;
  margin-bottom: 16px;
}
.solutionBox__title::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icon_check01.svg) no-repeat center center;
  background-size: 24px 24px;
  position: absolute;
  left: 0;
  top: 2px;
}
.solutionBox__text {
  font-size: 1.6rem;
}
.solutionBox .pointBox {
  margin-top: 24px;
}

.imageCaption {
  text-align: center;
  margin: 16px 0;
}
.imageCaption__image img {
  height: auto;
}
.imageCaption__caption {
  font-size: 1.2rem;
  margin-top: 4px;
}

.pointBox__title {
  background: #ededed;
  padding: 12px 20px;
  font-size: 1.8rem;
  font-weight: 700;
}
.pointBox__body {
  background: #F8F8F8;
  padding: 12px 20px;
}
.discList {
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 4px 0;
}
.discList__item {
  position: relative;
  padding-left: 16px;
  font-size: 1.6rem;
}
.discList__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--site-color-main);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}
.checkList {
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 10px 0;
}
.checkList__item {
  position: relative;
  padding-left: 24px;
  font-size: 1.6rem;
}
.checkList__item::before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background: url(/assets/images/icon_check02.svg) no-repeat center center;
  background-size: 16px 17px;
  position: absolute;
  left: 0;
  top: 4px;
}

.normText {
  font-size: 1.6rem;
}

.solutionProduct {
  padding: 20px;
  border: 1px solid #ccc;
  margin-top: 30px;
}
.solutionProduct__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.solutionProduct__caption {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.solutionProduct__2col {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .solutionProduct {
    padding: 16px;
  }
}

.pagination {
  margin-top: 40px;
}
.pagination__text {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.pagination__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
}
.pagination__btn {
  display: inline-block;
  min-width: 32px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #000;
}
.pagination__btn.pagination__btn--disabled {
  background: #EDEDED;
  border: 1px solid #EDEDED;
}
.pagination__btn.pagination__btn--current {
  background: #333;
  border: 1px solid #333;
  color: #fff;
  font-size: 500;
}
.backToList {
  margin-top: 40px;
  text-align: center;
}

.heading01 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.imageTable {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 16px;
}
.imageTable__image img {
  height: auto;
}

.table01 {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-spacing: 0;
  border-collapse: separate;
}
.table01 th,
.table01 td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.table01 th {
  background: #444;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.table01 td {
  font-size: 1.3rem;
}
