@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__body {
  max-width: 1070px;
}

/* ------------------------------------------------------

    製品情報 - 家庭用品

------------------------------------------------------ */
/* ------------------------------------------------------
    リード文
------------------------------------------------------ */
.prod-lead {
  margin-bottom: 70px;
  text-align: center;
}

.prod-lead:not([data-status=show]) {
  opacity: 0;
}

.prod-lead[data-status=show] {
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.55, 0.085, 0.68, 0.53) 0ms;
}

@media screen and (max-width: 767px) {
  .prod-lead {
    margin-bottom: 45px;
  }
}

.prod-lead__head {
  margin-bottom: 10px;
  font-feature-settings: normal;
  font-size: 3.2rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .prod-lead__head {
    font-size: 1.8rem;
    letter-spacing: .05em;
  }
}

.prod-lead__body {
  font-feature-settings: normal;
  letter-spacing: .036em;
  color: #00a8ec;
}

/* ------------------------------------------------------
    製品リスト
------------------------------------------------------ */
.prod-list {
  display: flex;
  flex-wrap: wrap;
}

.prod-list:not([data-status=show]) {
  opacity: 0;
  transform: translateY(30px);
}

.prod-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) {
  .prod-list {
    max-width: 480px;
    margin: 0 auto;
  }
}

.prod-list__item {
  width: calc(50% - 40px);
  margin-bottom: 75px;
}

@media screen and (max-width: 767px) {
  .prod-list__item {
    width: 100%;
    margin-bottom: 45px;
  }
}

.prod-list__item:nth-child(2n+1) {
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .prod-list__item:nth-child(2n+1) {
    margin-right: 0;
  }
}

.prod-list__item:nth-child(2n) {
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .prod-list__item:nth-child(2n) {
    margin-left: 0;
  }
}

.prod-list__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .prod-list__item:last-child {
    margin-bottom: 40px;
  }
}

.prod-list img {
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.22);
}

.prod-list dl {
  padding: 25px 15px 25px;
}

@media screen and (max-width: 767px) {
  .prod-list dl {
    padding: 20px 10px 20px;
  }
}

.prod-list dl dt {
  margin-bottom: 20px;
  font-feature-settings: normal;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #00a8ec;
}

@media screen and (max-width: 767px) {
  .prod-list dl dt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.prod-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) {
  .prod-list dl dt::before {
    height: 16px;
    vertical-align: -3px;
  }
}

.prod-list dl dd {
  font-feature-settings: normal;
  text-align: justify;
  text-justify: inter-ideograph;
  letter-spacing: 0;
  line-height: 1.875;
}

@media screen and (max-width: 767px) {
  .prod-list dl dd {
    line-height: 1.72;
  }
}

.prod-list-end-note {
  text-align: right;
  margin: -25px 0 65px;
}

@media screen and (max-width: 767px) {
  .prod-list-end-note {
    margin: 0 0 65px;
  }
}

/* ------------------------------------------------------
    SPECIAL LINK
------------------------------------------------------ */
.pr-link-sp {
  display: inline-block;
  padding: 20px 22px;
  border-bottom: 2px solid #00a8ec;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #00a8ec;
}

@media screen and (max-width: 767px) {
  .pr-link-sp {
    font-size: 1.2rem;
    padding: 14px 14px;
    border-bottom: 1px solid #00a8ec;
  }
}

.pr-link-sp span {
  position: relative;
  display: block;
  padding-right: 30px;
}

.pr-link-sp span::before {
  content: '';
  position: absolute;
  display: block;
  top: -3px;
  right: 5px;
  width: 11px;
  height: 11px;
  background-color: #00a8ec;
}

.pr-link-sp span::after {
  content: '';
  position: absolute;
  display: block;
  top: 3px;
  right: 0px;
  width: 11px;
  height: 11px;
  border: 1px solid #00a8ec;
  background-color: #fff;
  z-index: 10;
}