@charset "utf-8";
/* CSS Document */

.main-ph .ttl img {
    width: 20px;
}
/*==========================================================
SDSページ
==========================================================*/

.sds-page {
  padding: 80px 0 100px;
  background: #f5f5f5;
}

.sds-content {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 70px;
  background: #fff;
  box-sizing: border-box;
}


/*==========================================================
SDS見出し
==========================================================*/

.sds-heading {
  margin: 0 auto 40px;
  text-align: center;
}

.sds-heading h1,
.sds-heading h3 {
  position: relative;
  margin: 0;
  padding: 0 0 20px;
  color: #333;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.6;
}

.sds-heading h1::before,
.sds-heading h3::before {
  display: none;
}

.sds-heading h1::after,
.sds-heading h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  margin: auto;
  background: #8b9fae;
}


/*==========================================================
SDSについて
==========================================================*/

.sds-description {
  margin: 0 auto 45px;
}

.sds-description h2,
.sds-description h4 {
  position: relative;
  margin: 0 0 25px;
  padding: 15px 20px 15px 25px;
  border-left: 5px solid #8b9fae;
  background: #f0f6fb;
  color: #333;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.6;
}

.sds-description h2::before,
.sds-description h2::after,
.sds-description h4::before,
.sds-description h4::after {
  display: none;
}

.sds-description > p {
  margin: 0 0 20px;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 2;
}

.sds-description > p:last-of-type {
  margin-bottom: 0;
}

.sds-description sup {
  font-size: 11px;
  vertical-align: super;
}


/*==========================================================
GHS説明
==========================================================*/

.sds-ghs {
  margin: 30px 0 0;
  padding: 25px 30px;
  background: #f5f5f5;
  box-sizing: border-box;
}

.sds-ghs h3,
.sds-ghs h5 {
  margin: 0 0 12px;
  padding: 0;
  color: #5d7384;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.7;
}

.sds-ghs h3::before,
.sds-ghs h3::after,
.sds-ghs h5::before,
.sds-ghs h5::after {
  display: none;
}

.sds-ghs p {
  margin: 0 0 15px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.9;
}

.sds-ghs p:last-child {
  margin-bottom: 0;
}


/*==========================================================
PDF資料部分
==========================================================*/

.sds-document {
  padding: 35px 40px;
  background: #f5f5f5;
  box-sizing: border-box;
}

.sds-document__title {
  margin: 0 auto 25px;
  color: #333;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.7;
  text-align: center;
}


/*==========================================================
閲覧・ダウンロードボタン
==========================================================*/

ul.text_tab.sds-link {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 0;
}

ul.text_tab.sds-link li {
  width: calc(50% - 10px);
  margin: 0 20px 0 0;
  list-style: none;
  text-align: center;
}

ul.text_tab.sds-link li:last-child {
  margin-right: 0;
}

ul.text_tab.sds-link li a {
  display: block;
  padding: 20px 40px;
  color: #5d7384;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  background:
    url("../img/common/arrow-b.svg") no-repeat center right 18px #fff;
  background-size: 4px;
  border-radius: 5px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  transition: 0.3s;
}

ul.text_tab.sds-link li a:hover {
  color: #5d7384;
  background-position: center right 14px;
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.14);
}


/*==========================================================
注意書き
==========================================================*/

.sds-document__note {
  margin: 15px 0 0;
  color: #777;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.7;
  text-align: center;
}


/*==========================================================
タブレット
==========================================================*/

@media screen and (max-width: 1000px) {

  .sds-page {
    padding: 60px 0 80px;
  }

  .sds-content {
    padding: 50px 45px;
  }
}


/*==========================================================
スマートフォン
==========================================================*/

@media screen and (max-width: 767px) {

  .sds-page {
    padding: 40px 0 60px;
  }

  .sds-content {
    width: 92%;
    padding: 35px 20px;
  }

  .sds-heading {
    margin-bottom: 30px;
  }

  .sds-heading h1,
  .sds-heading h3 {
    padding-bottom: 15px;
    font-size: 21px;
    letter-spacing: 1px;
  }

  .sds-description {
    margin-bottom: 30px;
  }

  .sds-description h2,
  .sds-description h4 {
    margin-bottom: 20px;
    padding: 12px 15px 12px 18px;
    font-size: 18px;
    letter-spacing: 1px;
  }

  .sds-description > p {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.9;
  }

  .sds-ghs {
    margin-top: 25px;
    padding: 20px 15px;
  }

  .sds-ghs h3,
  .sds-ghs h5 {
    font-size: 15px;
  }

  .sds-ghs p {
    font-size: 13px;
    letter-spacing: 0;
  }

  .sds-document {
    padding: 25px 15px;
  }

  .sds-document__title {
    margin-bottom: 20px;
    font-size: 16px;
  }

  ul.text_tab.sds-link {
    display: block;
  }

  ul.text_tab.sds-link li {
    width: 100%;
    margin: 0 0 10px;
  }

  ul.text_tab.sds-link li:last-child {
    margin-bottom: 0;
  }

  ul.text_tab.sds-link li a {
    padding: 15px 30px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .sds-document__note {
    font-size: 11px;
    letter-spacing: 0;
  }

      .main-ph .ttl img {
        width: 11px;
    }
}