@charset "utf-8";

.caseContents {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 0 0;
}
.caseContents__main {
  flex: 1;
}
.caseContents__sub {
  width: 240px;
}
@media screen and (max-width: 1023px) {
  .caseContents {
    flex-flow: column;
  }
  .caseContents__sub {
    width: auto;
  }
}
.subnavi-toListTop a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 4px 36px 4px 16px;
  background: var(--site-color-main);
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.2;
  transition: var(--hover-transition);
}
.subnavi-toListTop a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4px;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
}
.subnavi-toListTop a:hover {
  opacity: var(--hover-opacity);
}
.subnavi-caseList {
  border-left: 1px solid var(--site-color-main);
  border-right: 1px solid var(--site-color-main);
}
.subnavi-caseList__item {
  border-bottom: 1px solid var(--site-color-main);
}
.subnavi-caseList__item a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 10px 36px 10px 16px;
  background: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  line-height: 1.2;
  transition: var(--hover-transition);
}
.subnavi-caseList__item a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4px;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--site-color-main);
  border-left: 2px solid var(--site-color-main);
  transform: rotate(135deg);
}
.subnavi-caseList__item a:hover {
  opacity: var(--hover-opacity);
  text-decoration: underline;
}

.pageVisual {
  margin: 0 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;
  word-break: auto-phrase;
}
.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;
  align-items: center;
  flex-flow: row wrap;
  gap: 16px;
}
.imageTable.items-end {
  align-items: flex-end;
}
.imageTable__image img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .imageTable__table {
    overflow: auto;
  }
}

.table01 {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-spacing: 0;
  border-collapse: separate;
}
.table01 th,
.table01 td {
  padding: 9px 10px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.table01 th {
  background: #444;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 70px;
}
.table01 th.th2 {
  background: #ededed;
  color: #000;
  min-width: initial;
}
.table01 th.th2 a {
  padding-right: 12px;
  position: relative;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
.table01 th.th2 a::after {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -2px;
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(135deg);
}
.table01 td {
  font-size: 1.3rem;
}
.table01 td.no-border {
  border-top: none;
  border-left: none;
}

.multiImage {
  display: flex;
  gap: 0 16px;
  margin: 32px 0;
}
.multiImage__item {
  flex: 1;
}
.multiImage__caption {
  margin-top: 8px;
  font-size: 1.4rem;
  text-align: center;
}

.normImage {
  margin: 32px 0;
  text-align: center;
}

.title01 {
  font-size: 1.8rem;
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  margin-top: 40px;
}
.title01:first-child {
  margin-top: 0;
}
.title01::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--site-color-main);
  position: absolute;
  left: 0;
  top: 7px;
}

.title01--nonDeco {
  padding-left: 0;
}
.title01--nonDeco::before {
  display: none;
}

.prodLink {
  width: 410px;
}
.prodLink__link {
  display: flex;
  border: 1px solid var(--site-color-main);
  text-decoration: none;
  color: #000;
}
.prodLink__image {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d3dde9;
}
.prodLink__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding: 16px 20px;
}
.prodLink__title {
  flex: 1;
}
.prodLink__title-sub {
  font-size: 1.3rem;
  font-weight: 700;
}
.prodLink__title-prod {
  font-size: 1.6rem;
  font-weight: 700;
}
.prodLink__icon {
  flex-shrink: 0;
  width: 16px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .prodLink {
    width: 100%;
  }
}
