@charset "UTF-8";
body:lang(en) {
  font-family: "Noto Sans", sans-serif;
}
body:lang(ko) {
  font-family: "Noto Sans KR", sans-serif;
}
body:lang(zh) {
  font-family: "Noto Sans TC", sans-serif;
}

#header {
  gap: 3rem;
  height: 6rem;
  border: none;
  -webkit-box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1109px) {
  #header {
    gap: 1.6rem;
    height: 5rem !important;
    padding-bottom: 0 !important;
  }
}
#header.-hasSubMenu {
  height: 9rem;
  padding-bottom: 3rem;
}
#header.-hasSubMenu + main {
  padding-top: 3rem;
}
@media screen and (max-width: 1109px) {
  #header.-hasSubMenu + main {
    padding-top: 0;
  }
}

.header__logo {
  width: 24rem;
}
@media screen and (max-width: 1109px) {
  .header__logo {
    width: 20rem;
  }
}

.header__block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3rem;
  margin: 0;
}
@media screen and (max-width: 1109px) {
  .header__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2rem;
    padding: 0 0 12rem;
  }
}

.header__link__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem 3rem;
}
@media screen and (max-width: 1109px) {
  .header__link__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding: 0 2rem;
  }
}

.header__contact {
  width: 14rem;
  height: 4rem;
  margin: 0;
  border-radius: calc(infinity * 1px);
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 1109px) {
  .header__contact {
    width: 100%;
    height: 7rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1109px) {
  .header__contact.-sp_btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 4rem;
    height: 4rem;
    margin-left: auto;
  }
  .header__contact.-sp_btn span {
    display: none;
  }
  .header__contact.-sp_btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    background: url(/files/technology/common/icon_mail.png) no-repeat center center;
    background-size: 2rem;
  }
}

.sp__contact {
  margin-top: 1rem;
  padding: 0;
}

#sp__btn {
  background-color: transparent;
}
#sp__btn span {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#sp__btn span, #sp__btn::before, #sp__btn::after {
  width: 2.4rem;
  background-color: #38485F;
}
#sp__btn.-open span {
  opacity: 0;
  visibility: hidden;
}
#sp__btn.-open::before {
  -webkit-transform: rotate(45deg) translate(0.2rem, -0.2rem);
          transform: rotate(45deg) translate(0.2rem, -0.2rem);
}
#sp__btn.-open::after {
  -webkit-transform: rotate(-45deg) translate(0.2rem, 0.2rem);
          transform: rotate(-45deg) translate(0.2rem, 0.2rem);
}

.header__sp__nav {
  width: 100%;
  display: none;
}
@media screen and (max-width: 1109px) {
  .header__sp__nav {
    display: block;
  }
}
.-hasSubMenu .header__sp__nav {
  display: block;
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1109px) {
  .-hasSubMenu .header__sp__nav {
    position: static;
  }
}

.header__sp__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100rem;
  height: 3rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.header__sp__nav__list li a {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #333;
}
.header__sp__nav__list li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1109px) {
  .header__sp__nav__list {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    border-top: 0.1rem solid #DADCE0;
  }
  .header__sp__nav__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 6.5rem;
    padding: 0 2rem;
    border-bottom: 0.1rem solid #DADCE0;
  }
  .header__sp__nav__list li a {
    width: 100%;
    font-size: 1.7rem;
    font-weight: 700;
    color: #000;
  }
  .header__sp__nav__list li a:hover {
    text-decoration: none;
  }
  .header__sp__nav__list li::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    border-width: 0.1rem 0.1rem 0 0;
    border-style: solid;
    border-color: #064A97;
    rotate: 45deg;
  }
}

#footer {
  background-color: transparent;
  padding-top: 0;
}

.core_technology__ {
  max-width: 100%;
  padding-bottom: 9rem;
}
.core_technology__ .__inner {
  max-width: 100rem;
}
.core_technology__ img {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  vertical-align: top;
}
.core_technology__ .contact {
  margin: 5rem 0 0;
  background-color: #DDE6F2;
}
.core_technology__ .button__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 4rem;
  padding: 4rem 2rem;
}
.core_technology__ .button__area a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 46rem;
  height: 7rem;
  background-color: #004EA2;
  border-radius: calc(infinity * 1px);
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.core_technology__ .button__area a:hover {
  opacity: 0.7;
}
.core_technology__ .title--border {
  font-size: 3.2rem;
  font-weight: 700;
  color: #004EA2;
  border-bottom: 0.1rem solid #D9D9D9;
  line-height: 1.3125;
  margin: 0 0 2.5rem;
}
.core_technology__ .title--border span {
  padding-bottom: 0.36em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.core_technology__ .title--border span::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #004EA2;
  position: absolute;
  left: 0;
  bottom: -0.1rem;
}
.core_technology__ .title--color {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004EA2;
  line-height: 1.545;
  margin: 0 0 1.6rem;
}
.core_technology__ .title__large {
  font-size: 2.6rem;
  font-weight: 600;
  color: #004EA2;
  line-height: 1.545;
}
.core_technology__ .column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.technology__index_mv {
  height: 46.5rem;
  padding: 6rem 0 0;
}
@media all and (max-width: 767px) {
  .technology__index_mv {
    height: auto;
  }
}
@media all and (max-width: 724px) {
  .technology__index_mv {
    padding-top: 3rem;
  }
}
.technology__index_mv .__inner {
  position: relative;
  height: 100%;
}
.technology__index_mv .__inner .technology__title {
  margin-bottom: 5rem;
}
.technology__index_mv .__inner .technology__title h1 {
  margin-bottom: 2.1rem;
}
.technology__index_mv .__inner .technology__title h1 img {
  height: 4.5rem;
}
.technology__index_mv .__inner .technology__title h1 img:nth-of-type(1) {
  width: 28rem;
}
.technology__index_mv .__inner .technology__title h1 img:nth-of-type(2) {
  width: 22.5rem;
}
body:lang(en) .technology__index_mv .__inner .technology__title h1 img:nth-of-type(1) {
  margin-right: 0.8rem;
  width: 30.5rem;
}
body:lang(en) .technology__index_mv .__inner .technology__title h1 img:nth-of-type(2) {
  width: 34rem;
}
body:lang(ko) .technology__index_mv .__inner .technology__title h1 img:nth-of-type(1) {
  margin-right: 1.6rem;
  width: 33rem;
}
body:lang(ko) .technology__index_mv .__inner .technology__title h1 img:nth-of-type(2) {
  width: 22rem;
}
body:lang(zh) .technology__index_mv .__inner .technology__title h1 img:nth-of-type(1) {
  width: 32rem;
}
body:lang(zh) .technology__index_mv .__inner .technology__title h1 img:nth-of-type(2) {
  width: 18rem;
}
@media all and (max-width: 724px) {
  .technology__index_mv .__inner .technology__title h1 img {
    max-height: 4rem;
  }
  .technology__index_mv .__inner .technology__title h1 img:nth-of-type(1) {
    margin-bottom: 1rem;
  }
}
.technology__index_mv .__inner .technology__title > img {
  height: 1.6rem;
  width: 29.6rem;
}
@media all and (max-width: 724px) {
  .technology__index_mv .__inner .technology__title {
    margin-bottom: 1.2rem;
  }
  .technology__index_mv .__inner .technology__title > img {
    width: 26rem;
    height: 1.43rem;
    max-width: 100%;
  }
}
.technology__index_mv .__inner p {
  width: 37.5rem;
  margin-bottom: 1.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}
@media all and (max-width: 767px) {
  .technology__index_mv .__inner p {
    width: 100%;
    margin-bottom: 1rem;
  }
  .technology__index_mv .__inner p br {
    display: none;
  }
}
.technology__index_mv .__inner p + p {
  width: 47.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 960px) {
  .technology__index_mv .__inner p + p {
    width: 37.5rem;
  }
}
@media all and (max-width: 767px) {
  .technology__index_mv .__inner p + p {
    width: 100%;
  }
}
.technology__index_mv .__inner .scroll__down {
  position: absolute;
  bottom: 3rem;
  left: 2.4rem;
  width: 2.4rem;
  height: 5.5rem;
}
@media all and (max-width: 767px) {
  .technology__index_mv .__inner .scroll__down {
    bottom: 0;
  }
}
.technology__index_mv .__inner .scroll__down div {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  color: #004EA2;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-decoration: none;
  height: 5.5rem;
  padding-left: 1rem;
  cursor: default;
  background: url(/files/technology/common/arrow_scroll.png) no-repeat left top;
  background-size: contain;
}
.technology__index_mv .__inner .mainvisual {
  position: absolute;
  top: -2rem;
  right: 0;
  width: 55.1%;
  max-width: 52.9rem;
}
@media all and (max-width: 960px) {
  .technology__index_mv .__inner .mainvisual {
    width: 52%;
  }
}
@media all and (max-width: 767px) {
  .technology__index_mv .__inner .mainvisual {
    position: relative;
    top: 0;
    width: 100%;
    margin: 1rem auto 0;
  }
}
@media screen and (max-width: 960px) {
  body:lang(en) .technology__index_mv .__inner .mainvisual {
    top: 6rem;
  }
}
@media all and (max-width: 767px) {
  body:lang(en) .technology__index_mv .__inner .mainvisual {
    top: 0;
  }
}
@media screen and (max-width: 960px) {
  body:lang(ko) .technology__index_mv .__inner .mainvisual {
    top: 5.2rem;
  }
}
@media all and (max-width: 767px) {
  body:lang(ko) .technology__index_mv .__inner .mainvisual {
    top: 0;
  }
}
.technology__index_mv .__inner .mainvisual img {
  width: 100%;
}

#Products {
  position: relative;
  background-image: url(/files/technology/common/bg.png);
  background-repeat: repeat;
  background-size: 20rem;
  background-position: left top;
  padding: 9.5rem 0 13.5rem;
}
@media all and (max-width: 724px) {
  #Products {
    padding: 6.2rem 0 7.2rem;
  }
}
#Products::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.5rem;
  background-image: url(/files/technology/common/wave_up.png);
  background-repeat: repeat;
  background-position: center top;
  background-size: 12.8rem 4.5rem;
}
@media all and (max-width: 724px) {
  #Products::before {
    height: 3.2rem;
    background-size: 9.1rem 3.2rem;
  }
}
#Products::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  height: 4.5rem;
  background-image: url(/files/technology/common/wave_down.png);
  background-repeat: repeat;
  background-position: center top;
  background-size: 12.8rem 4.5rem;
}
@media all and (max-width: 724px) {
  #Products::after {
    height: 3.2rem;
    background-size: 9.1rem 3.2rem;
  }
}
#Products .products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
#Products .products__list .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 2em;
  width: 100%;
  padding: 3rem 4rem;
  gap: 3rem;
}
@media all and (max-width: 724px) {
  #Products .products__list .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    border-radius: 1.5rem;
  }
}
#Products .products__list .product .text__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 56rem;
}
@media all and (max-width: 724px) {
  #Products .products__list .product .text__area {
    display: contents;
  }
}
#Products .products__list .product .text__area .product__text__header {
  margin-bottom: 1.5rem;
}
@media all and (max-width: 724px) {
  #Products .products__list .product .text__area .product__text__header {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#Products .products__list .product .text__area .product__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.4rem;
  padding-bottom: 1.8rem;
  border-bottom: solid 1px #C5D2E3;
}
#Products .products__list .product .text__area .product__title > img {
  height: 6rem;
  width: 4.2rem;
  margin-right: 2.2rem;
}
@media all and (max-width: 724px) {
  #Products .products__list .product .text__area .product__title > img {
    height: 5rem;
    margin-right: 1.5rem;
  }
}
#Products .products__list .product .text__area .product__title .title__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  line-height: 1.2;
}
@media all and (max-width: 724px) {
  #Products .products__list .product .text__area .product__title .title__text {
    gap: 0;
  }
}
#Products .products__list .product .text__area .product__title .title__text h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #000000;
  margin: 0 0 1rem;
  border-bottom: none;
}
@media all and (max-width: 724px) {
  #Products .products__list .product .text__area .product__title .title__text h3 {
    font-size: 2.6rem;
  }
}
#Products .products__list .product .text__area .athlete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}
#Products .products__list .product .text__area .athlete span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 2.7rem;
  margin-top: 0.2rem;
  margin-right: 1rem;
  padding: 0 1.5rem;
  background-color: #DDE6F2;
  border-radius: calc(infinity * 1px);
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 960px) {
  #Products .products__list .product .text__area .athlete {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  #Products .products__list .product .text__area .athlete span {
    margin: 0 auto;
  }
}
@media all and (max-width: 724px) {
  #Products .products__list .product .text__area .athlete {
    font-size: 2.2rem;
  }
  #Products .products__list .product .text__area .athlete span {
    margin: 0;
    font-size: 1.3rem;
  }
}
#Products .products__list .product .text__area p {
  margin-bottom: 2rem;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
#Products .products__list .product .text__area a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: end;
  color: #004EA2;
  margin-left: auto;
  text-decoration: none;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
#Products .products__list .product .text__area a::after {
  content: "";
  display: block;
  background: url(/files/technology/common/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media all and (max-width: 724px) {
  #Products .products__list .product .text__area a {
    font-size: 1.7rem;
  }
}
#Products .products__list .product .text__area .text__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (max-width: 724px) {
  #Products .products__list .product .text__area .text__body {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
#Products .products__list .product.item01 .text__area .product__title > img {
  width: 2.2rem;
  margin-right: 4rem;
}
#Products .products__list .product.item01 .text__area .product__title .title__text img {
  width: 17.9rem;
}
#Products .products__list .product.item02 .text__area .product__title .title__text img {
  width: 24rem;
}
#Products .products__list .product.item03 .text__area .product__title .title__text img {
  width: 24rem;
}
#Products .products__list .product.item04 .text__area .product__title .title__text img {
  width: 14.1rem;
}
#Products .products__list .product.item05 .text__area .product__title .title__text img:nth-of-type(1) {
  width: 19.4rem;
}
#Products .products__list .product.item05 .text__area .product__title .title__text img:nth-of-type(2) {
  width: 15rem;
}
#Products .products__list .product.item06 .text__area .product__title .title__text img {
  width: 16.2rem;
}
@media all and (max-width: 724px) {
  #Products .products__list .product.item01 .text__area .product__title > img {
    width: 2rem;
    margin-right: 2.5rem;
  }
  #Products .products__list .product.item01 .text__area .product__title .title__text img {
    width: 19rem;
  }
  #Products .products__list .product.item02 .text__area .product__title > img {
    width: 3.6rem;
  }
  #Products .products__list .product.item02 .text__area .product__title .title__text img {
    width: 25rem;
  }
  #Products .products__list .product.item03 .text__area .product__title > img {
    width: 4rem;
  }
  #Products .products__list .product.item03 .text__area .product__title .title__text img {
    width: 25rem;
  }
  #Products .products__list .product.item04 .text__area .product__title > img {
    width: 4rem;
  }
  #Products .products__list .product.item04 .text__area .product__title .title__text img {
    width: 15rem;
  }
  #Products .products__list .product.item05 .text__area .product__title > img {
    width: 3.6rem;
    min-width: 3.6rem;
  }
  #Products .products__list .product.item05 .text__area .product__title .title__text img:nth-of-type(1) {
    width: 21.16rem;
  }
  #Products .products__list .product.item05 .text__area .product__title .title__text img:nth-of-type(2) {
    width: 16.16rem;
  }
  #Products .products__list .product.item06 .text__area .product__title > img {
    width: 3.6rem;
  }
  #Products .products__list .product.item06 .text__area .product__title .title__text img {
    width: 17.66rem;
  }
}
#Products .products__list .product .img__area {
  width: 28.7rem;
  text-align: center;
}
#Products .products__list .product .img__area img {
  width: 100%;
}
@media all and (max-width: 724px) {
  #Products .products__list .product .img__area {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#Products .products__list .product.item01 .img__area img {
  max-width: 34rem;
}
#Products .products__list .product.item02 .img__area img {
  max-width: 28rem;
}

.products__list__title {
  margin-bottom: 4rem;
  text-align: center;
}
.products__list__title img {
  width: 35.5rem;
}
@media all and (max-width: 724px) {
  .products__list__title {
    margin-bottom: 2rem;
  }
  .products__list__title img {
    width: 24.5rem;
  }
}

#MainVisual {
  height: 32rem;
  background-image: url(/files/technology/common/bg.png);
  background-repeat: repeat;
  background-size: 20rem;
  background-position: center top;
}
@media all and (max-width: 724px) {
  #MainVisual {
    height: 23rem;
  }
}
#MainVisual .__inner {
  position: relative;
  height: 100%;
  padding-bottom: 5rem;
}
#MainVisual .__inner .breadcrumb__list {
  position: absolute;
  top: 1rem;
  right: 2rem;
  margin-bottom: 0;
  z-index: 999;
}
#MainVisual .__inner .mv__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media all and (max-width: 724px) {
  #MainVisual .__inner .mv__wrap {
    padding-bottom: 6rem;
  }
}
#MainVisual .__inner .mv__wrap .mv__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#MainVisual .__inner .mv__wrap .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.2rem;
  margin-bottom: 2.4rem;
}
@media all and (max-width: 724px) {
  #MainVisual .__inner .mv__wrap .title {
    gap: 1.5rem;
  }
}
.-epoxy #MainVisual .__inner .mv__wrap {
  gap: 5.2rem;
}
.-epoxy #MainVisual .__inner .mv__wrap .mv__img {
  width: 9.5rem;
}
@media all and (max-width: 724px) {
  .-epoxy #MainVisual .__inner .mv__wrap {
    gap: 1.7rem;
  }
  .-epoxy #MainVisual .__inner .mv__wrap .mv__img {
    width: 3rem;
  }
}
body:lang(ja) .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 18.6rem;
}
body:lang(en) .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 17.7rem;
}
body:lang(ko) .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 12.2rem;
}
body:lang(zh) .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 18.2rem;
}
.-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
  width: 28.4rem;
}
@media all and (max-width: 724px) {
  body:lang(ja) .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 9.25rem;
  }
  body:lang(en) .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 6.66rem;
  }
  body:lang(ko) .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 6.41rem;
  }
  body:lang(zh) .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 9.66rem;
  }
  .-epoxy #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
    width: 16.25rem;
  }
}
.-filler #MainVisual .__inner .mv__wrap {
  gap: 3.2rem;
}
.-filler #MainVisual .__inner .mv__wrap .mv__img {
  width: 26rem;
}
@media all and (max-width: 724px) {
  .-filler #MainVisual .__inner .mv__wrap {
    gap: 0;
  }
  .-filler #MainVisual .__inner .mv__wrap .mv__img {
    width: 9rem;
  }
}
body:lang(ja) .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 36rem;
}
body:lang(en) .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 66.4rem;
}
body:lang(ko) .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 27.3rem;
}
body:lang(zh) .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 27.2rem;
}
.-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
  width: 38.8rem;
}
@media all and (max-width: 724px) {
  body:lang(ja) .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 18rem;
  }
  body:lang(en) .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 25.3rem;
  }
  body:lang(ko) .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 14.33rem;
  }
  body:lang(zh) .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 14.58rem;
  }
  .-filler #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
    width: 21.83rem;
  }
}
.-micro #MainVisual .__inner .mv__wrap {
  gap: 5rem;
}
.-micro #MainVisual .__inner .mv__wrap .mv__img {
  width: 26rem;
}
@media all and (max-width: 724px) {
  .-micro #MainVisual .__inner .mv__wrap {
    gap: 1.6rem;
  }
  .-micro #MainVisual .__inner .mv__wrap .mv__img {
    width: 9rem;
  }
}
body:lang(ja) .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 13.6rem;
}
body:lang(en) .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 38.5rem;
}
body:lang(ko) .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 12.5rem;
}
body:lang(zh) .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 13.5rem;
}
.-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
  width: 39.1rem;
}
@media all and (max-width: 724px) {
  body:lang(ja) .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 6.75rem;
  }
  body:lang(en) .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 14.58rem;
  }
  body:lang(ko) .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 6.58rem;
  }
  body:lang(zh) .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 7.25rem;
  }
  .-micro #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
    width: 22rem;
  }
}
.-acrylic #MainVisual .__inner .mv__wrap {
  gap: 5.2rem;
}
.-acrylic #MainVisual .__inner .mv__wrap .mv__img {
  width: 21.2rem;
}
@media all and (max-width: 724px) {
  .-acrylic #MainVisual .__inner .mv__wrap {
    gap: 1.6rem;
  }
  .-acrylic #MainVisual .__inner .mv__wrap .mv__img {
    width: 7rem;
  }
}
body:lang(ja) .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 18.8rem;
}
body:lang(en) .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 19.6rem;
}
body:lang(ko) .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 12.4rem;
}
body:lang(zh) .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 13.4rem;
}
.-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
  width: 23.1rem;
}
@media all and (max-width: 724px) {
  body:lang(ja) .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 9.41rem;
  }
  body:lang(en) .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 7.41rem;
  }
  body:lang(ko) .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 6.5rem;
  }
  body:lang(zh) .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 7.16rem;
  }
  .-acrylic #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
    width: 13rem;
  }
}
.-pva_pvb #MainVisual .__inner .mv__wrap {
  gap: 5.3rem;
}
.-pva_pvb #MainVisual .__inner .mv__wrap .mv__img {
  width: 21.2rem;
}
@media all and (max-width: 724px) {
  .-pva_pvb #MainVisual .__inner .mv__wrap {
    gap: 1.7rem;
  }
  .-pva_pvb #MainVisual .__inner .mv__wrap .mv__img {
    width: 7rem;
  }
}
.-pva_pvb #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 23.6rem;
}
body:lang(en) .-pva_pvb #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 30.4rem;
}
@media all and (max-width: 724px) {
  .-pva_pvb #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 13.08rem;
  }
  body:lang(en) .-pva_pvb #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 11.5rem;
  }
}
.-pva_pvb #MainVisual .__inner .mv__wrap .title__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.-pva_pvb #MainVisual .__inner .mv__wrap .title__en img:nth-of-type(1) {
  width: 25.5rem;
}
.-pva_pvb #MainVisual .__inner .mv__wrap .title__en img:nth-of-type(2) {
  width: 18.6rem;
}
@media all and (max-width: 724px) {
  .-pva_pvb #MainVisual .__inner .mv__wrap .title__en {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .-pva_pvb #MainVisual .__inner .mv__wrap .title__en img:nth-of-type(1) {
    width: 17rem;
  }
  .-pva_pvb #MainVisual .__inner .mv__wrap .title__en img:nth-of-type(2) {
    width: 13rem;
  }
}
.-foam #MainVisual .__inner .mv__wrap {
  gap: 5.4rem;
}
.-foam #MainVisual .__inner .mv__wrap .mv__img {
  width: 19.5rem;
}
@media all and (max-width: 724px) {
  .-foam #MainVisual .__inner .mv__wrap {
    gap: 1.7rem;
  }
  .-foam #MainVisual .__inner .mv__wrap .mv__img {
    width: 7rem;
  }
}
body:lang(ja) .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 17rem;
}
body:lang(en) .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 14.9rem;
}
body:lang(ko) .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 3.8rem;
}
body:lang(zh) .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
  width: 8.5rem;
}
.-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
  width: 25rem;
}
@media all and (max-width: 724px) {
  body:lang(ja) .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 9.41rem;
  }
  body:lang(en) .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 5.66rem;
  }
  body:lang(ko) .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 2.08rem;
  }
  body:lang(zh) .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(1) {
    width: 4.75rem;
  }
  .-foam #MainVisual .__inner .mv__wrap .title > img:nth-of-type(2) {
    width: 15rem;
  }
}
#MainVisual .__inner p {
  font-size: 1.5rem;
  font-weight: 600;
}
#MainVisual .__inner p br.-tab {
  display: none;
}
@media screen and (max-width: 960px) {
  #MainVisual .__inner p br.-tab {
    display: block;
  }
}
@media all and (max-width: 724px) {
  #MainVisual .__inner p {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
  }
  body:lang(en) #MainVisual .__inner p {
    line-height: 1.4;
    font-size: 1.34rem;
  }
}
#MainVisual .__inner .tab {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding: 0 2rem;
}
@media all and (max-width: 724px) {
  #MainVisual .__inner .tab {
    gap: 0.8rem;
    padding: 0 1rem;
  }
}
#MainVisual .__inner .tab li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 5rem;
  background: #094EA2;
  border-radius: 0.6rem 0.6rem 0 0;
  padding: 0.3rem;
  cursor: pointer;
}
@media all and (max-width: 724px) {
  body:lang(en) #MainVisual .__inner .tab li {
    height: auto;
  }
}
#MainVisual .__inner .tab li.selected {
  background: #fff;
}
#MainVisual .__inner .tab li.selected a, #MainVisual .__inner .tab li.selected button {
  color: #004EA2;
}
#MainVisual .__inner .tab li a, #MainVisual .__inner .tab li button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
}
body:lang(en) #MainVisual .__inner .tab li a, body:lang(en) #MainVisual .__inner .tab li button {
  line-height: 1.2;
}
@media all and (max-width: 767px) {
  #MainVisual .__inner .tab li a, #MainVisual .__inner .tab li button {
    font-size: 1.3rem;
  }
}
#MainVisual .__inner .tab li a .-tab, #MainVisual .__inner .tab li button .-tab {
  display: none;
}
@media screen and (max-width: 960px) {
  #MainVisual .__inner .tab li a .-tab, #MainVisual .__inner .tab li button .-tab {
    display: block;
  }
}

.column2 > figure {
  margin-top: 0.8rem;
}
@media screen and (max-width: 724px) {
  .column2 > figure {
    margin-top: 0;
  }
}

.area {
  display: none;
  margin-bottom: 7rem;
  padding-top: 5rem;
  background: #fff;
}
.area.is-active {
  display: block;
  -webkit-animation-name: switchAnime;
          animation-name: switchAnime;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes switchAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes switchAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.area#about .__inner h5 {
  margin: 0 0 1.3rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.area#about .__inner > div.column2 {
  margin-bottom: 8rem;
}
.area#about .__inner > div.column2 > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 50%;
}
@media all and (max-width: 724px) {
  .area#about .__inner > div.column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .area#about .__inner > div.column2 > div {
    min-width: 100%;
  }
}
.area#about .__inner > div figure img {
  display: block;
  width: 100%;
}
.area#about .__inner > div figure.-w280 {
  width: 28rem;
}
.area#about .__inner > div figure.-w310 {
  width: 31rem;
}
.area#about .__inner > div figure.-w320 {
  width: 32rem;
}
.area#about .__inner > div figure.-w380 {
  width: 38rem;
}
.area#about .__inner > div figure.-w410 {
  width: 41rem;
}
.area#about .__inner > div figure.-w450 {
  width: 45rem;
}
.area#about .__inner > div figure.-w470 {
  width: 47rem;
}
@media screen and (max-width: 724px) {
  .area#about .__inner > div figure {
    width: 100% !important;
  }
  .area#about .__inner > div figure img {
    max-width: 100%;
  }
}
.-epoxy .area#about .__inner .content_02 figure img {
  display: block;
}
.-epoxy .area#about .__inner .content_02 figure img.-sp {
  display: none;
}
@media screen and (max-width: 724px) {
  .-epoxy .area#about .__inner .content_02 figure img {
    display: none;
  }
  .-epoxy .area#about .__inner .content_02 figure img.-sp {
    display: block;
  }
}
.-epoxy .area#about .__inner .content_03 figure {
  margin: 5rem auto 0;
  width: 43.7rem;
}
.-filler .area#about .__inner .content_03 {
  margin-bottom: 8rem;
}
.-filler .area#about .__inner .content_03 figure {
  margin: 2rem auto 0;
  width: 68.1rem;
}
.-filler .area#about .__inner .content_03 figure img {
  display: block;
}
.-filler .area#about .__inner .content_03 figure img.-sp {
  display: none;
}
@media screen and (max-width: 724px) {
  .-filler .area#about .__inner .content_03 figure img {
    display: none;
  }
  .-filler .area#about .__inner .content_03 figure img.-sp {
    display: block;
  }
}
.-filler .area#about .__inner .content_05 figure {
  margin: 5rem auto 0;
  width: 46rem;
}
.-acrylic .area#about .__inner#acrylic_about_likeas figure {
  margin: 5rem auto 0;
  width: 34.2rem;
}
@media all and (max-width: 724px) {
  .-acrylic .area#about .__inner#acrylic_about_likeas figure {
    width: 100%;
  }
}
.-micro .area#about .__inner#micro_about_likeas figure {
  margin: 5rem auto 0;
  width: 40.7rem;
}
@media all and (max-width: 724px) {
  .-micro .area#about .__inner#micro_about_likeas figure {
    width: 100%;
  }
}
.-pva_pvb .area#about .__inner#pva_pvb_about_likeas {
  margin-bottom: 8rem;
}
.-pva_pvb .area#about .__inner#pva_pvb_about_likeas .large__img {
  margin: 5rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11.5rem;
}
.-pva_pvb .area#about .__inner#pva_pvb_about_likeas .large__img img:first-child {
  width: 24.6rem;
}
.-pva_pvb .area#about .__inner#pva_pvb_about_likeas .large__img img:last-child {
  width: 59.4rem;
}
@media screen and (max-width: 724px) {
  .-pva_pvb .area#about .__inner#pva_pvb_about_likeas .large__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
  .-pva_pvb .area#about .__inner#pva_pvb_about_likeas .large__img img:first-child {
    width: 12.3rem;
  }
  .-pva_pvb .area#about .__inner#pva_pvb_about_likeas .large__img img:last-child {
    width: 29.7rem;
  }
}
.-foam .area#about .__inner#foam_about_likeas figure {
  margin: 5rem auto 0;
  width: 40.2rem;
}
@media all and (max-width: 724px) {
  .-foam .area#about .__inner#foam_about_likeas figure {
    width: 100%;
  }
}
.area#features .__inner .title--border {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .area#features .__inner .title--border {
    margin-bottom: 4rem;
  }
}
.area#features .__inner .features_box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .area#features .__inner .features_box {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
}
.area#features .__inner .features_box .feature {
  position: relative;
  border: 0.3rem solid #C7D6EA;
  border-radius: 2rem;
  padding: 3rem 4rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .area#features .__inner .features_box .feature {
    padding: 3rem 2rem;
  }
}
.area#features .__inner .features_box .feature.-wide:first-child {
  grid-column: 1/3 !important;
  grid-row: 1/2;
  padding: 3.5rem 4.7rem 4rem;
}
@media screen and (max-width: 767px) {
  .area#features .__inner .features_box .feature.-wide:first-child {
    grid-column: 1/2 !important;
    padding: 3rem 2rem;
  }
}
.area#features .__inner .features_box .feature.-wide:first-child::before {
  right: 3rem !important;
}
.area#features .__inner .features_box .feature.-wide:first-child .title img {
  width: 11rem;
  height: 11rem;
}
.area#features .__inner .features_box .feature.-wide:first-child h5 {
  margin-top: 2.5rem;
}
.area#features .__inner .features_box .feature::before {
  position: absolute;
  content: "";
  background: url(/files/technology/common/number_01.png) no-repeat center center #fff;
  background-size: contain;
  top: -0.4em;
  right: 3rem;
  width: 7.2rem;
  height: 4.1rem;
  padding: 0 1rem;
  font-size: 5rem;
  font-weight: 500;
  color: #004EA2;
  line-height: 1;
}
@media screen and (max-width: 724px) {
  .area#features .__inner .features_box .feature::before {
    height: 3.4rem;
  }
}
.area#features .__inner .features_box .feature:nth-child(2)::before {
  background-image: url(/files/technology/common/number_02.png);
}
.area#features .__inner .features_box .feature:nth-child(3)::before {
  background-image: url(/files/technology/common/number_03.png);
}
.area#features .__inner .features_box .feature:nth-child(4)::before {
  background-image: url(/files/technology/common/number_04.png);
}
.area#features .__inner .features_box .feature:nth-child(5)::before {
  background-image: url(/files/technology/common/number_05.png);
}
.area#features .__inner .features_box .feature:nth-child(6)::before {
  background-image: url(/files/technology/common/number_06.png);
}
.area#features .__inner .features_box .feature:nth-child(7)::before {
  background-image: url(/files/technology/common/number_07.png);
}
.area#features .__inner .features_box .feature:nth-child(8)::before {
  background-image: url(/files/technology/common/number_08.png);
}
.area#features .__inner .features_box .feature:nth-child(9)::before {
  background-image: url(/files/technology/common/number_09.png);
}
.area#features .__inner .features_box .feature:nth-child(10)::before {
  background-image: url(/files/technology/common/number_10.png);
}
.area#features .__inner .features_box .feature:nth-child(11)::before {
  background-image: url(/files/technology/common/number_11.png);
}
.area#features .__inner .features_box .feature:nth-child(12)::before {
  background-image: url(/files/technology/common/number_12.png);
}
.area#features .__inner .features_box .feature .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .area#features .__inner .features_box .feature .title {
    gap: 1rem;
  }
}
.area#features .__inner .features_box .feature .title img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 11rem;
  height: 11rem;
  min-width: auto;
}
@media screen and (max-width: 767px) {
  .area#features .__inner .features_box .feature .title img {
    width: 9rem !important;
    height: 9rem !important;
  }
}
.area#features .__inner .features_box .feature .title h4 {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 900;
  color: #A0A0A0;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .area#features .__inner .features_box .feature .title h4 br.-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .area#features .__inner .features_box .feature .title h4 {
    font-size: 2.2rem;
  }
}
body:lang(en) .area#features .__inner .features_box .feature .title img {
  width: 10rem;
  height: 10rem;
}
body:lang(en) .area#features .__inner .features_box .feature .title h4 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  body:lang(en) .area#features .__inner .features_box .feature .title h4 {
    font-size: 2.2rem;
  }
}
.area#features .__inner .features_box .feature h5 {
  margin: 2rem 0 1.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 960px) {
  .area#features .__inner .features_box .feature h5 br.-pc {
    display: none;
  }
}
.area#features .__inner .features_box .feature .-note {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
}
.area#features .__inner .features_box .feature .qanda_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 3rem;
  margin-top: 2rem;
  padding: 2rem 3rem 3rem;
  background-color: #EDF1F7;
}
@media screen and (max-width: 724px) {
  .area#features .__inner .features_box .feature .qanda_box {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem 2rem 2rem;
  }
}
.area#features .__inner .features_box .feature .qanda_box .qanda {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.area#features .__inner .features_box .feature .qanda_box .qanda h5 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
.area#features .__inner .features_box .feature .qanda_box .qanda h5.question {
  position: relative;
  color: #004EA2;
  padding-left: 2.9rem;
}
.area#features .__inner .features_box .feature .qanda_box .qanda h5.question::before {
  position: absolute;
  content: "Q.";
  left: 0;
  font-size: 2.4rem;
  line-height: 1.25;
}
.area#features .__inner .features_box .feature .qanda_box .qanda h5.answer {
  position: relative;
  margin: 1.2rem 0 1rem;
  padding-left: 2.6rem;
}
.area#features .__inner .features_box .feature .qanda_box .qanda h5.answer::before {
  position: absolute;
  content: "A.";
  left: 0;
  font-size: 2.4rem;
  line-height: 1.25;
}
.area#features .__inner .features_box .feature .qanda_box figure {
  padding-top: 1rem;
  width: 21rem;
}
.area#features .__inner .features_box .feature .qanda_box figure img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 724px) {
  .area#features .__inner .features_box .feature .qanda_box figure {
    width: 100%;
    padding-top: 0;
  }
  .area#features .__inner .features_box .feature .qanda_box figure img {
    max-width: 100%;
  }
}
.area#usage-products section .__inner .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 724px) {
  .area#usage-products section .__inner .nav_list {
    margin-bottom: 3rem;
  }
}
.area#usage-products section .__inner .nav_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.-filler .area#usage-products section .__inner .nav_list li br, .-acrylic .area#usage-products section .__inner .nav_list li br {
  display: none;
}
.area#usage-products section .__inner .nav_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #333333;
  text-decoration: none;
  line-height: 1.4;
}
.area#usage-products section .__inner .nav_list li a::before {
  content: "";
  display: block;
  background: url(/files/technology/common/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .area#usage-products #cases .__inner .nav_list li {
    width: calc((100% - 1.6rem) / 2);
  }
  .area#usage-products #cases .__inner .nav_list li br.-pc {
    display: none;
  }
}
@media screen and (max-width: 724px) {
  .area#usage-products #cases .__inner .nav_list li {
    width: 100%;
  }
}
body:lang(en) .area#usage-products #cases .__inner .nav_list li {
  width: calc((100% - 1.6rem) / 2);
}
@media screen and (max-width: 767px) {
  body:lang(en) .area#usage-products #cases .__inner .nav_list li {
    width: 100%;
  }
}
body:lang(ko) .area#usage-products #cases .__inner .nav_list, body:lang(zh) .area#usage-products #cases .__inner .nav_list {
  margin-right: 8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  body:lang(ko) .area#usage-products #cases .__inner .nav_list, body:lang(zh) .area#usage-products #cases .__inner .nav_list {
    margin-right: 0;
  }
}
.area#usage-products #cases .__inner .case {
  padding: 4rem 4.7rem;
  margin-bottom: 4rem;
  border: 0.3rem solid #C7D6EA;
  border-radius: 2rem;
}
.area#usage-products #cases .__inner .case:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 724px) {
  .area#usage-products #cases .__inner .case {
    padding: 2rem 2rem 3rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 724px) {
  .area#usage-products #cases .__inner .case .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
.area#usage-products #cases .__inner .case .column2 .explain {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 724px) {
  .area#usage-products #cases .__inner .case .column2 .explain {
    display: contents;
  }
}
.area#usage-products #cases .__inner .case .column2 .explain h4 {
  margin-bottom: 1.5rem;
  font-size: 2.6rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 960px) {
  .area#usage-products #cases .__inner .case .column2 .explain h4 br {
    display: none;
  }
}
@media screen and (max-width: 724px) {
  .area#usage-products #cases .__inner .case .column2 .explain h4 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
    font-size: 2.2rem;
  }
}
.area#usage-products #cases .__inner .case .column2 .explain p {
  margin: 0;
  color: #333;
}
@media screen and (max-width: 724px) {
  .area#usage-products #cases .__inner .case .column2 .explain p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.area#usage-products #cases .__inner .case .column2 figure {
  width: 50%;
  max-width: 32rem;
}
@media screen and (max-width: 724px) {
  .area#usage-products #cases .__inner .case .column2 figure {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.area#usage-products #cases .__inner .case .column2 figure img {
  display: block;
  width: 100%;
}
.-filler .area#usage-products #cases .__inner .case .column2 figure {
  position: relative;
}
.-filler .area#usage-products #cases .__inner .case .column2 figure::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: -12px;
  top: -12px;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .-filler .area#usage-products #cases .__inner .case .column2 figure::before {
    left: -3.2vw;
    top: -3.2vw;
    width: 16vw;
    height: 16vw;
    font-size: 2.9333333333vw;
  }
}
.-filler .area#usage-products #cases .__inner .case .column2 figure.-grease::before {
  background-color: #48937A;
}
body:lang(ja) .-filler .area#usage-products #cases .__inner .case .column2 figure.-grease::before {
  content: "グリス";
}
body:lang(en) .-filler .area#usage-products #cases .__inner .case .column2 figure.-grease::before {
  content: "Grease";
}
body:lang(ko) .-filler .area#usage-products #cases .__inner .case .column2 figure.-grease::before {
  content: "그리스";
}
body:lang(zh) .-filler .area#usage-products #cases .__inner .case .column2 figure.-grease::before {
  content: "潤滑脂";
}
.-filler .area#usage-products #cases .__inner .case .column2 figure.-paste::before {
  background-color: #48937A;
}
body:lang(ja) .-filler .area#usage-products #cases .__inner .case .column2 figure.-paste::before {
  content: "ペースト";
}
body:lang(en) .-filler .area#usage-products #cases .__inner .case .column2 figure.-paste::before {
  content: "Paste";
}
body:lang(ko) .-filler .area#usage-products #cases .__inner .case .column2 figure.-paste::before {
  content: "페이스트";
}
body:lang(zh) .-filler .area#usage-products #cases .__inner .case .column2 figure.-paste::before {
  content: "導熱膏";
}
.-filler .area#usage-products #cases .__inner .case .column2 figure.-sheet::before {
  background-color: #5291CD;
}
body:lang(ja) .-filler .area#usage-products #cases .__inner .case .column2 figure.-sheet::before {
  content: "シート";
}
body:lang(en) .-filler .area#usage-products #cases .__inner .case .column2 figure.-sheet::before {
  content: "Sheets";
}
body:lang(ko) .-filler .area#usage-products #cases .__inner .case .column2 figure.-sheet::before {
  content: "시트";
}
body:lang(zh) .-filler .area#usage-products #cases .__inner .case .column2 figure.-sheet::before {
  content: "導熱片";
}
.area#usage-products #cases .__inner .case .performance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 724px) {
  body:lang(en) .area#usage-products #cases .__inner .case .performance {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.area#usage-products #cases .__inner .case .performance p {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
}
.area#usage-products #cases .__inner .case .performance ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7rem 2rem;
}
@media screen and (max-width: 724px) {
  .area#usage-products #cases .__inner .case .performance ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.area#usage-products #cases .__inner .case .performance ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #A0A0A0;
}
.area#usage-products #cases .__inner .case .performance ul li img {
  width: 3rem;
  min-width: 3rem;
}
.area#usage-products #cases .__inner .case .performance ul li img + img {
  height: 1.4rem;
  -o-object-fit: contain;
     object-fit: contain;
  width: 3rem;
  min-width: 3rem;
}
.area#usage-products #products .__inner .nav_list {
  margin-right: 8rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .nav_list {
    margin-right: 0;
  }
  .area#usage-products #products .__inner .nav_list li {
    width: 100%;
  }
}
.area#usage-products #products .__inner h3 {
  margin-top: 0;
}
.area#usage-products #products .__inner .product {
  padding: 4rem 4.7rem;
  margin-bottom: 4rem;
  background: #fff;
  border: 0.3rem solid #C7D6EA;
  border-radius: 2rem;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .product {
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
  }
}
.-pva_pvb .area#usage-products #products .__inner .product + .product .column2 {
  margin-bottom: 0;
}
.area#usage-products #products .__inner .product .column2 {
  margin-bottom: 2rem;
}
.-filler .area#usage-products #products .__inner .product .column2, .-micro .area#usage-products #products .__inner .product .column2 {
  margin-bottom: 0;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .product .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.area#usage-products #products .__inner .product .column2.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.area#usage-products #products .__inner .product .column2.-reverse figure {
  width: 31rem;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .product .column2.-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .area#usage-products #products .__inner .product .column2.-reverse figure {
    width: 21rem;
  }
}
.area#usage-products #products .__inner .product .column2.-reverse + .column2 .product_info h5 {
  margin-top: 0;
}
.area#usage-products #products .__inner .product .column2 figure {
  width: 21rem;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .product .column2 figure {
    margin: 0 auto;
  }
}
.area#usage-products #products .__inner .product .column2 figure img {
  display: block;
  width: 100%;
}
.area#usage-products #products .__inner .product .column2 .product_info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.area#usage-products #products .__inner .product .column2 .product_info h4 {
  margin: 0 0 0.6rem;
  font-size: 2.6rem;
  font-weight: 600;
  color: #000;
}
.area#usage-products #products .__inner .product .column2 .product_info h4 + h5 {
  margin: 0 0 0.3rem;
}
.area#usage-products #products .__inner .product .column2 .product_info h5 {
  margin: 2rem 0 0.3rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.area#usage-products #products .__inner .product .column2 .product_info h5:not(:first) {
  margin-top: 2rem;
}
.area#usage-products #products .__inner .product .column2 .product_info p {
  margin: 0;
}
.area#usage-products #products .__inner .product .column2 .product_info ul li {
  position: relative;
  padding-left: 1.4rem;
}
.area#usage-products #products .__inner .product .column2 .product_info ul li::before {
  position: absolute;
  content: "";
  display: block;
  top: 1.1rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 100%;
  background: #004EA2;
}
.area#usage-products #products .__inner .product .explain {
  padding: 2rem 3rem 3rem;
  background: #EDF1F7;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .product .explain {
    padding: 2rem 1.5rem 1.5rem;
  }
}
.area#usage-products #products .__inner .product .explain h5 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.area#usage-products #products .__inner .product .explain p {
  margin-bottom: 2rem;
}
.area#usage-products #products .__inner .product .explain p:last-child {
  margin-bottom: 0;
}
.area#usage-products #products .__inner .product .explain p span {
  font-weight: 700;
}
.area#usage-products #products .__inner .product .explain figure {
  width: 100%;
}
.area#usage-products #products .__inner .product .explain figure img {
  display: block;
  width: 100%;
}
.area#usage-products #products .__inner .product .explain figure img.-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .area#usage-products #products .__inner .product .explain figure:has(.-sp) img {
    display: none;
  }
  .area#usage-products #products .__inner .product .explain figure:has(.-sp) img.-sp {
    display: block;
  }
}
.area#usage-products #products .__inner .product .explain .column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin: 0;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .product .explain .column3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
  }
}
.area#usage-products #products .__inner .product .button__area {
  margin-top: 3rem;
  padding: 0;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .product .button__area {
    margin-top: 2.5rem;
  }
}
.area#usage-products #products .__inner .product .button__area .__button {
  max-width: 32rem;
  height: 5rem;
  border-radius: 0.6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 724px) {
  .area#usage-products #products .__inner .product .button__area .__button {
    width: 100%;
    max-width: 100%;
  }
}
.area#usage-products #products .__inner .product#product_03 .explain figure {
  border: 3px solid #fff;
}
@media screen and (max-width: 767px) {
  .area#usage-products #products .__inner .product#product_03 .explain figure {
    border: 0.8vw solid #fff;
  }
}
.area#usage-products #products .__inner .product#product_04 .explain .column2 {
  padding: 23px 21.6px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .area#usage-products #products .__inner .product#product_04 .explain .column2 {
    padding: 6.1333333333vw 5.76vw;
  }
}
.area.wave section:nth-of-type(1) {
  padding: 0 0 8rem;
}
.area.wave section:nth-of-type(2n) {
  position: relative;
  background-image: url(/files/technology/common/bg.png);
  background-repeat: repeat;
  background-size: 200px;
  background-position: left top;
  padding: 105px 20px;
}
@media screen and (max-width: 767px) {
  .area.wave section:nth-of-type(2n) {
    padding: 16.5333333333vw 0;
  }
}
.area.wave section:nth-of-type(2n)::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-image: url(/files/technology/common/wave_up.png);
  background-repeat: repeat;
  background-size: 128px 45px;
}
@media screen and (max-width: 767px) {
  .area.wave section:nth-of-type(2n)::before {
    height: 8.5333333333vw;
    background-size: 24.2666666667vw 8.5333333333vw;
  }
}
.area.wave section:nth-of-type(2n)::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background-image: url(/files/technology/common/wave_down.png);
  background-repeat: repeat;
  background-size: 128px 45px;
}
@media screen and (max-width: 767px) {
  .area.wave section:nth-of-type(2n)::after {
    height: 8.5333333333vw;
    background-size: 24.2666666667vw 8.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .area.wave section:nth-of-type(2n) .__inner {
    padding: 0 5.3333333333vw;
  }
}

.--gray-bg .__button {
  max-width: 460px;
}
@media screen and (max-width: 767px) {
  .--gray-bg .__button {
    max-width: 100%;
  }
}

.to_index {
  margin-top: 4rem;
}
.to_index a {
  font-size: 1.8rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  line-height: 1.2;
}
.to_index a::before {
  content: "";
  display: block;
  background: url(/files/technology/common/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-right: 1rem;
}
.sticky_btn {
  position: initial;
}
.sticky_btn .dl_btn_container a:nth-child(1)::before {
  background-image: url(/common/images/icon_mail.svg);
  width: 2.2rem;
  height: 1.6rem;
  background-size: contain;
}
.sticky_btn .dl_btn_container a:not(:nth-child(1))::before {
  background-image: url(/common/images/icon_download.svg);
  width: 2rem;
  height: 1.9rem;
}

.sticky_btn.-sticky {
  position: sticky;
}

.-filler .nav_img figure {
  width: 48.2rem;
  margin: 3.6rem auto 5rem;
}
@media screen and (max-width: 724px) {
  .-filler .nav_img figure {
    width: 100%;
  }
}
.-filler .Social_contribution {
  margin-top: 7rem;
}
.-filler .Social_contribution .-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}
.-filler .Social_contribution .-grid > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 20rem;
  padding: 1.6rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  text-align: center;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.-filler .Social_contribution .-grid > div:first-child {
  background-image: url(/files/technology/filler/common/sec_usage-products_society01.png);
}
.-filler .Social_contribution .-grid > div:nth-child(2) {
  background-image: url(/files/technology/filler/common/sec_usage-products_society02.png);
}
.-filler .Social_contribution .-grid > div:last-child {
  background-image: url(/files/technology/filler/common/sec_usage-products_society03.png);
}
.-filler .Social_contribution .-grid > div p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.-filler .Social_contribution .-grid > div h4 {
  font-size: 1.8rem;
}

.-acrylic #usage-products .figure__box {
  margin-top: 3rem;
}
.-acrylic #usage-products .figure__box img {
  max-width: 53.8rem;
  padding: 3rem;
}
@media screen and (max-width: 724px) {
  .-acrylic #usage-products .figure__box img {
    padding: 0;
  }
}
.-acrylic #usage-products .explain .column3 figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.-pva_pvb .area#usage-products #products .__inner .product .explain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-bottom: 3rem;
}
.-pva_pvb .area#usage-products #products .__inner .product .explain:last-child {
  margin-bottom: 0;
}
.-pva_pvb .area#usage-products #products .__inner .product .explain figure {
  width: 25.6rem;
  max-width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 724px) {
  .-pva_pvb .area#usage-products #products .__inner .product .explain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
  .-pva_pvb .area#usage-products #products .__inner .product .explain figure {
    width: 100%;
    max-width: 100%;
  }
}

.-foam .area#usage-products #products .__inner .product .explain {
  margin-bottom: 3rem;
}
.-foam .area#usage-products #products .__inner .product .explain .explain__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.-foam .area#usage-products #products .__inner .product .explain .explain__text:last-child {
  margin-bottom: 0;
}
.-foam .area#usage-products #products .__inner .product .explain .explain__text h5 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14rem;
  margin-bottom: 0;
  line-height: 1.4;
}
.-foam .area#usage-products #products .__inner .product .explain .explain__text h5 span {
  display: block;
  font-size: 1.2rem;
}
@media all and (max-width: 724px) {
  .-foam .area#usage-products #products .__inner .product .explain .explain__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 2rem;
  }
  .-foam .area#usage-products #products .__inner .product .explain .explain__text:last-child {
    margin-bottom: 0;
  }
  .-foam .area#usage-products #products .__inner .product .explain .explain__text h5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 1rem;
    width: 100%;
  }
}

.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin: 8rem 0 4rem;
}
.products__item:first-child {
  margin-top: 0;
}
.products__item .-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 60rem;
}
.products__item .-text h4 {
  margin-bottom: 1.6rem;
  font-size: 2.6rem;
  font-weight: 600;
  color: #004EA2;
}
.products__item figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32rem;
}
.-filler #product_02 .products__item figure {
  background-color: #fff;
  padding: 1rem 3rem;
  margin-top: 6rem;
}
@media screen and (max-width: 724px) {
  .-filler #product_02 .products__item figure {
    margin-top: 0;
  }
}
.products__item figure img {
  width: 100%;
}
@media screen and (max-width: 724px) {
  .products__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin: 5rem 0 3rem;
  }
  .products__item:first-child {
    margin-top: 0;
  }
  .products__item .-text {
    display: contents;
  }
  .products__item .-text h4 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
  }
  .products__item .-text p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .products__item figure {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .products__item figure img {
    max-width: 100% !important;
  }
}

.products__box {
  margin-bottom: 5rem;
}
.products__box h4 {
  margin-bottom: 1.5rem;
  font-size: 2.6rem;
  font-weight: 600;
  color: #000;
}
.products__box#example figure img {
  max-width: 100%;
  width: min(100%, 45rem);
}

.figure__box {
  padding: 2rem;
  border: 0.1rem solid #C5C5C5;
  background-color: #fff;
  text-align: center;
}

.table--primary {
  width: 100%;
}
@media screen and (max-width: 724px) {
  .table--primary {
    width: 42rem;
  }
}
.table--primary thead tr {
  background-color: #1D3A66;
  border: 0.1rem solid #4A6185;
}
.table--primary thead tr th {
  padding: 1.2rem 1.8rem;
  border: 0.1rem solid #4A6185;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.table--primary tbody {
  border-width: 0 0.1rem;
  border-style: solid;
  border-color: #98B7D9;
}
.table--primary tbody tr th {
  width: 19.2rem;
  border-width: 0 0.1rem 0.1rem 0;
  border-style: solid;
  border-color: #98B7D9;
  background-color: #AFC2DC;
  font-size: 1.4rem;
  text-align: center;
  vertical-align: middle;
}
.table--primary tbody tr td {
  padding: 2.3rem 2rem;
  border-width: 0 0.1rem 0.1rem 0;
  border-style: solid;
  border-color: #C2D4E8;
  text-align: center;
}
.table--primary tbody tr td:last-child {
  border-right: 0;
}
.table--primary tbody tr:nth-child(odd) {
  background-color: #F2F6FA;
}
.table--primary tbody tr:nth-child(even) {
  background-color: #D9E5F1;
}

.-sp--scroll {
  width: 100%;
  overflow: auto;
}