@charset "UTF-8";
/* ------------------------------------------------------

    製品情報 - 共通

------------------------------------------------------ */
.c-sec-title-wrap {
  display: flex;
  justify-content: center;
  padding: 50px 0 30px;
}

@media screen and (max-width: 767px) {
  .c-sec-title-wrap {
    padding: 30px 0;
  }
}

.c-sec-title {
  text-align: center;
}

.c-sec-title:not([data-status=show]) {
  opacity: 0;
}

.c-sec-title[data-status=show] {
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms;
}

.c-sec:not([data-status=show]) {
  opacity: 0;
  transform: translateY(30px);
}

.c-sec[data-status=show] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms, transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
}

.c-sec__body {
  max-width: 1110px;
  letter-spacing: 0;
}

/* ------------------------------------------------------

    製品情報 - 産業資材 - TOP

------------------------------------------------------ */
.ind-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ind-list:not([data-status=show]) {
  opacity: 0;
  transform: translateY(30px);
}

.ind-list[data-status=show] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms, transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0ms;
}

@media screen and (max-width: 767px) {
  .ind-list {
    max-width: 480px;
    margin: 0 auto;
  }
}

.ind-list__item {
  position: relative;
  width: calc((100% - 11.11111%) / 3);
  margin-bottom: 80px;
  padding-bottom: 25px;
  transition: opacity 300ms ease;
}

@media screen and (max-width: 767px) {
  .ind-list__item {
    width: 100%;
    margin-bottom: 45px;
  }
}

.ind-list__item.is-over {
  opacity: 0.7;
}

.ind-list__item .c-link-more {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
}

.ind-list__item .c-link-more.is-over {
  opacity: 1.0;
}

@media screen and (max-width: 767px) {
  .ind-list__item .c-link-more {
    width: 90px;
  }
}

.ind-list img {
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.22);
}

@media screen and (max-width: 767px) {
  .ind-list img {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.22);
  }
}

.ind-list dl {
  padding: 25px 15px 25px;
}

@media screen and (max-width: 767px) {
  .ind-list dl {
    padding: 20px 10px 20px;
  }
}

.ind-list dl dt {
  margin-bottom: .5em;
  font-feature-settings: normal;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #00a8ec;
}

@media screen and (max-width: 767px) {
  .ind-list dl dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.ind-list dl dt::before {
  display: inline-block;
  content: '';
  width: .5em;
  height: 20px;
  border-left: 2px solid #00a8ec;
  line-height: 0;
  vertical-align: -3px;
}

@media screen and (max-width: 767px) {
  .ind-list dl dt::before {
    height: 16px;
    vertical-align: -3px;
  }
}

.ind-list dl dd {
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: normal;
  line-height: 1.875;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .ind-list dl dd {
    line-height: 1.72;
  }
}

.ind-list2-title {
  margin-bottom: 40px;
  padding: 25px 0;
  border-bottom: 1px solid #00a8ec;
  font-size: 1.8rem;
  color: #00a8ec;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ind-list2-title {
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}

.ind-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .ind-list2 {
    margin-bottom: 30px;
  }
}

.ind-list2__item {
  position: relative;
  width: calc((100% - 5.55556%) / 2);
}

@media screen and (max-width: 767px) {
  .ind-list2__item {
    width: 100%;
    margin-bottom: 25px;
  }
}

.ind-list2 a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  background-color: #00a8ec;
  border-bottom: 1px solid #fff;
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.22);
  transition: opacity 300ms ease;
  font-weight: 500;
  line-height: 1.333;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ind-list2 a {
    height: 46px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.22);
  }
}

.ind-list2 a.is-over {
  opacity: 0.7;
}

.ind-list2 a::after {
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  right: 0;
  bottom: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #fff transparent;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .ind-list2 a::after {
    border-width: 0 0 10px 10px;
  }
}

.ind-list2 span {
  font-size: 112.5%;
  font-weight: 700;
}
