@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;
}

/* ------------------------------------------------------

    製品情報 - TOP

------------------------------------------------------ */
.prod-top:not([data-status=show]) {
  opacity: 0;
  transform: translateY(30px);
}

.prod-top[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;
}

.prod-top .c-sec__body {
  max-width: 1070px;
  letter-spacing: 0;
}

.prod-top .bnr-slider {
  margin: 0 auto 0;
  border: none;
}

.prod-links {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  justify-content: center;
  width: 100%;
  margin-bottom: 55px;
}

.prod-links__item {
  width: calc((100% - 7.69231%) / 2);
}

@media screen and (max-width: 767px) {
  .prod-links__item {
    width: 100%;
  }
  .prod-links__item:not(:last-child) {
    margin-bottom: 50px;
  }
}

.prod-links__link {
  position: relative;
  display: block;
  margin-bottom: 35px;
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.22);
  transition: opacity 300ms ease;
}

@media screen and (max-width: 767px) {
  .prod-links__link {
    margin-bottom: 20px;
  }
}

.prod-links__link.is-over {
  opacity: 0.75;
}

.prod-links__link-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .prod-links__link-title {
    font-size: 1.4rem;
  }
}

.prod-links__link-more {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 20px 20px 0;
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .prod-links__link-more {
    padding: 0 15px 15px 0;
    font-size: 1.0rem;
  }
}

.prod-links__link-more::after {
  position: absolute;
  display: block;
  content: '';
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #fff transparent;
}

@media screen and (max-width: 767px) {
  .prod-links__link-more::after {
    border-width: 0 0 15px 15px;
  }
}

.prod-links__lead {
  margin-bottom: 0.11111em;
  font-feature-settings: normal;
  font-size: 1.8rem;
  text-align: center;
}

.prod-links__desc {
  font-feature-settings: normal;
  text-align: center;
  color: #00a8ec;
  line-height: 1.875;
}

/* ------------------------------------------------------

    ファイバーテクノロジー - TOP

------------------------------------------------------ */
.fiber-tbl-scrollable {
  margin-bottom: 40px;
}

.fiber-tbl-scrollable:not([data-status=show]) {
  opacity: 0;
  transform: translateY(30px);
}

.fiber-tbl-scrollable[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;
}

.fiber-tbl {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  min-width: 767px;
  background-color: #fff;
  line-height: 1.5;
}

.fiber-tbl__fig {
  position: relative;
  width: 280px;
  width: calc(280 / 1120 * 100%);
}

.fiber-tbl__fig img {
  position: absolute;
  max-width: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.fiber-tbl__text {
  position: relative;
  color: #fff;
  z-index: 1;
  font-size: 112.5%;
}

tr:nth-child(2) .fiber-tbl__text,
tr:nth-child(4) .fiber-tbl__text {
  top: -1.5em;
}

.fiber-tbl tr {
  border-bottom: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}

.fiber-tbl th {
  background-color: #00a8ec;
  font-weight: 500;
  vertical-align: middle;
  color: #fff;
}

.fiber-tbl td {
  text-align: center;
}

.fiber-tbl th, .fiber-tbl td {
  padding: 1.1em 1.8em 1.1em 1.8em;
  min-height: 60px;
}

@media screen and (max-width: 767px) {
  .fiber-tbl th, .fiber-tbl td {
    font-size: 1.2rem;
  }
}

.fiber-tbl tr:first-child th:not(:last-child) {
  border-right: 1px solid #d8d8d8;
}

.fiber-tbl a {
  transition: opacity 300ms ease;
}

.fiber-tbl a.is-over {
  opacity: 0.6;
}

.link {
  display: grid;
  place-items: center;
  box-shadow: 0 2px 12px 0px rgba(0, 0, 0, 0.23);
  transition: box-shadow 300ms ease;
  padding: 10px 30px;
  margin: 0 auto 40px;
  width: fit-content;
  min-height: 60px;

  text-align: center;
  font-size: 90%;
}
.link:hover{
  box-shadow: 0 2px 12px 0px rgba(0, 0, 0, 0.05);
}
